Home
last modified time | relevance | path

Searched defs:DexNativeInfo (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/art/runtime/jit/
H A Ddebugger_interface.cc220 struct DexNativeInfo { struct
221 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()