Home
last modified time | relevance | path

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

/art/runtime/jit/
Ddebugger_interface.cc214 struct DexNativeInfo { struct
215 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()