Home
last modified time | relevance | path

Searched refs:ReadPointerFromMemory (Results 1 – 25 of 40) sorted by relevance

12

/external/llvm-project/lldb/source/Plugins/Language/ObjC/
DNSException.cpp54 auto name = process_sp->ReadPointerFromMemory(ptr + 1 * ptr_size, error); in ExtractFields()
57 auto reason = process_sp->ReadPointerFromMemory(ptr + 2 * ptr_size, error); in ExtractFields()
60 auto userinfo = process_sp->ReadPointerFromMemory(ptr + 3 * ptr_size, error); in ExtractFields()
63 auto reserved = process_sp->ReadPointerFromMemory(ptr + 4 * ptr_size, error); in ExtractFields()
DNSError.cpp45 ptr_value = process_sp->ReadPointerFromMemory(ptr_value, error); in DerefToNSErrorPointer()
76 process_sp->ReadPointerFromMemory(domain_location, error); in NSError_SummaryProvider()
152 process_sp->ReadPointerFromMemory(userinfo_location, error); in Update()
DNSDictionary.cpp641 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex()
644 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex()
768 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex()
771 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex()
876 lldb::addr_t value_at_idx = process_sp->ReadPointerFromMemory(key_ptr, error); in GetChildAtIndex()
879 lldb::addr_t key_at_idx = process_sp->ReadPointerFromMemory(value_ptr, error); in GetChildAtIndex()
1018 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex()
1021 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex()
1175 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex()
1178 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex()
DNSString.cpp164 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider()
215 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider()
279 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider()
DNSSet.cpp501 obj_at_idx = process_sp->ReadPointerFromMemory(obj_at_idx, error); in GetChildAtIndex()
623 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex()
792 obj_at_idx = process_sp->ReadPointerFromMemory(obj_at_idx, error); in GetChildAtIndex()
DCF.cpp154 addr_t data_ptr = process_sp->ReadPointerFromMemory( in CFBitVectorSummaryProvider()
/external/llvm-project/lldb/examples/python/
Ddiagnose_unwind.py88 cur_fp = process.ReadPointerFromMemory(initial_fp, lldb.SBError())
89 cur_pc = process.ReadPointerFromMemory(
109 next_pc = process.ReadPointerFromMemory(
113 next_fp = process.ReadPointerFromMemory(cur_fp, error)
139 address = process.ReadPointerFromMemory(
Ddiagnose_nsstring.py150 location = process.ReadPointerFromMemory(location, error)
161 location = process.ReadPointerFromMemory(location, error)
170 location = process.ReadPointerFromMemory(location, error)
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntimeV1.cpp202 m_isa = process_sp->ReadPointerFromMemory(isa, error); in Initialize()
216 m_parent_isa = process_sp->ReadPointerFromMemory(m_isa + ptr_size, error); in Initialize()
229 process_sp->ReadPointerFromMemory(m_isa + 2 * ptr_size, error); in Initialize()
312 process->ReadPointerFromMemory(objc_debug_class_hash_addr, error); in GetISAHashTablePointer()
414 isa = m_process->ReadPointerFromMemory(isa_addr, error); in UpdateISAToDescriptorMapIfNeeded()
DAppleObjCRuntimeV2.cpp1001 m_buckets_ptr = m_process->ReadPointerFromMemory(cursor, err); in ParseHeader()
1070 m_parent.m_process->ReadPointerFromMemory(pair_ptr, err); in operator *()
1073 lldb::addr_t value = m_parent.m_process->ReadPointerFromMemory( in operator *()
1101 m_parent.m_process->ReadPointerFromMemory(pair_ptr, err); in AdvanceToValidIndex()
1211 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error); in GetClassDescriptor()
1249 m_tagged_pointer_obfuscator = process->ReadPointerFromMemory( in GetTaggedPointerObfuscator()
1279 m_isa_hash_table_ptr = process->ReadPointerFromMemory( in GetISAHashTablePointer()
2303 uintptr_t slot_data = process->ReadPointerFromMemory(slot_ptr, error); in GetClassDescriptor()
2391 uintptr_t slot_data = process->ReadPointerFromMemory(slot_ptr, error); in GetClassDescriptor()
/external/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
DLibStdcpp.cpp248 process_sp->ReadPointerFromMemory(addr_of_string, error); in LibStdcppStringSummaryProvider()
257 lldb::addr_t size_of_data = process_sp->ReadPointerFromMemory( in LibStdcppStringSummaryProvider()
309 process_sp->ReadPointerFromMemory(addr_of_string, error); in LibStdcppWStringSummaryProvider()
318 lldb::addr_t size_of_data = process_sp->ReadPointerFromMemory( in LibStdcppWStringSummaryProvider()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
DCPPLanguageRuntime.cpp176 process->ReadPointerFromMemory(member__f_pointer_value, status); in FindLibCppStdFunctionCallableInfo()
182 process->ReadPointerFromMemory(vtable_address + address_size, status); in FindLibCppStdFunctionCallableInfo()
191 process->ReadPointerFromMemory(address_after_vtable, status); in FindLibCppStdFunctionCallableInfo()
/external/llvm-project/lldb/test/API/functionalities/breakpoint/address_breakpoints/
DTestBadAddressBreakpoints.py34 ptr = process.ReadPointerFromMemory(0x0, error)
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_process.py44 obj.ReadPointerFromMemory(0xff, error)
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
DHexagonDYLDRendezvous.cpp38 info_addr = process->ReadPointerFromMemory(info_location, error); in ResolveRendezvousAddress()
232 *dst = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
/external/llvm-project/lldb/bindings/interface/
DSBProcess.i309 print('error: ', error)") ReadPointerFromMemory;
312 ReadPointerFromMemory (addr_t addr, lldb::SBError &error);
/external/llvm-project/lldb/include/lldb/Expression/
DIRMemoryMap.h68 void ReadPointerFromMemory(lldb::addr_t *address,
/external/llvm-project/lldb/source/Plugins/SystemRuntime/MacOSX/
DSystemRuntimeMacOSX.cpp128 m_process->ReadPointerFromMemory(dispatch_qaddr, error); in GetQueueNameFromThreadQAddress()
136 m_process->ReadPointerFromMemory(pointer_to_label_address, error); in GetQueueNameFromThreadQAddress()
163 m_process->ReadPointerFromMemory(dispatch_qaddr, error); in GetLibdispatchQueueAddressFromThreadQAddress()
249 m_process->ReadPointerFromMemory(dispatch_qaddr, error); in GetQueueIDFromThreadQAddress()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
DItaniumABILanguageRuntime.cpp221 process->ReadPointerFromMemory(original_ptr, error); in GetDynamicTypeAndAddress()
585 m_process->ReadPointerFromMemory(result_ptr - ptr_size, error); in GetExceptionObjectForThread()
/external/llvm-project/lldb/source/Core/
DDynamicLoader.cpp231 addr_t value = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DDYLDRendezvous.cpp75 info_addr = process->ReadPointerFromMemory(info_location, error); in ResolveRendezvousAddress()
468 *dst = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
/external/llvm-project/lldb/include/lldb/API/
DSBProcess.h196 lldb::addr_t ReadPointerFromMemory(addr_t addr, lldb::SBError &error);
/external/llvm-project/lldb/source/API/
DSBProcess.cpp942 lldb::addr_t SBProcess::ReadPointerFromMemory(addr_t addr, in ReadPointerFromMemory() function in SBProcess
944 LLDB_RECORD_METHOD(lldb::addr_t, SBProcess, ReadPointerFromMemory, in ReadPointerFromMemory()
954 ptr = process_sp->ReadPointerFromMemory(addr, sb_error.ref()); in ReadPointerFromMemory()
1410 LLDB_REGISTER_METHOD(lldb::addr_t, SBProcess, ReadPointerFromMemory, in RegisterMethods()
/external/llvm-project/lldb/source/Expression/
DMaterializer.cpp224 map.ReadPointerFromMemory(&location, load_addr, read_error); in Dematerialize()
369 map.ReadPointerFromMemory(&target_address, load_addr, err); in DumpToLog()
857 map.ReadPointerFromMemory(&address, load_addr, read_error); in Dematerialize()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
DObjCLanguageRuntime.cpp248 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error); in GetClassDescriptor()

12