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