Home
last modified time | relevance | path

Searched refs:JITDescriptor (Results 1 – 5 of 5) sorted by relevance

/system/unwinding/libunwindstack/
DGlobalDebugImpl.h63 struct JITDescriptor { struct
77 static constexpr size_t kSizeOfDescriptorV1 = offsetof(JITDescriptor, magic); argument
78 static constexpr size_t kSizeOfDescriptorV2 = sizeof(JITDescriptor);
98 JITDescriptor desc{}; in ReadDescriptor()
237 if (!ReadNextField(descriptor_addr_ + offsetof(JITDescriptor, first_entry), &uid, race)) { in ReadNewEntries()
409 static_assert(sizeof(typename Impl::JITDescriptor) == 48, "layout"); in CreateGlobalDebugImpl()
417 static_assert(sizeof(typename Impl::JITDescriptor) == 48, "layout"); in CreateGlobalDebugImpl()
427 static_assert(sizeof(typename Impl::JITDescriptor) == 56, "layout"); in CreateGlobalDebugImpl()
/system/core/debuggerd/
Dcrash_test.cpp23 JITDescriptor __dex_debug_descriptor = {.version = 1};
Dcrash_test.h33 struct JITDescriptor { struct
Ddebuggerd_test.cpp2843 JITDescriptor* dex_debug = in TEST_F()
2844 reinterpret_cast<JITDescriptor*>(dlsym(handle, "__dex_debug_descriptor")); in TEST_F()
/system/extras/simpleperf/
DJITDebugReader.cpp67 struct JITDescriptor { struct
153 using JITDescriptor32 = JITDescriptor<uint32_t>;
154 using JITDescriptor64 = JITDescriptor<uint64_t>;
174 bool JITDescriptor<ADDRT>::Valid() const { in Valid()