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