Searched defs:DexNativeInfo (Results 1 – 1 of 1) sorted by relevance
220 struct DexNativeInfo { struct221 static constexpr bool kCopySymfileData = false; // Just reference DEX files.222 static JITDescriptor& Descriptor() { return __dex_debug_descriptor; } in Descriptor()223 static void NotifyNativeDebugger() { __dex_debug_register_code_ptr(); } in NotifyNativeDebugger()224 static const void* Alloc(size_t size) { return malloc(size); } in Alloc()225 static void Free(const void* ptr) { free(const_cast<void*>(ptr)); } in Free()226 template<class T> static T* Writable(const T* v) { return const_cast<T*>(v); } in Writable()