/external/llvm-project/lldb/source/Plugins/Language/ObjC/ |
D | NSException.cpp | 54 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()
|
D | NSError.cpp | 45 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()
|
D | NSDictionary.cpp | 641 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()
|
D | NSString.cpp | 164 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()
|
D | NSSet.cpp | 501 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()
|
D | CF.cpp | 154 addr_t data_ptr = process_sp->ReadPointerFromMemory( in CFBitVectorSummaryProvider()
|
/external/llvm-project/lldb/examples/python/ |
D | diagnose_unwind.py | 88 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(
|
D | diagnose_nsstring.py | 150 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/ |
D | AppleObjCRuntimeV1.cpp | 202 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()
|
D | AppleObjCRuntimeV2.cpp | 1001 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/ |
D | LibStdcpp.cpp | 248 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/ |
D | CPPLanguageRuntime.cpp | 176 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/ |
D | TestBadAddressBreakpoints.py | 34 ptr = process.ReadPointerFromMemory(0x0, error)
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_process.py | 44 obj.ReadPointerFromMemory(0xff, error)
|
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
D | HexagonDYLDRendezvous.cpp | 38 info_addr = process->ReadPointerFromMemory(info_location, error); in ResolveRendezvousAddress() 232 *dst = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBProcess.i | 309 print('error: ', error)") ReadPointerFromMemory; 312 ReadPointerFromMemory (addr_t addr, lldb::SBError &error);
|
/external/llvm-project/lldb/include/lldb/Expression/ |
D | IRMemoryMap.h | 68 void ReadPointerFromMemory(lldb::addr_t *address,
|
/external/llvm-project/lldb/source/Plugins/SystemRuntime/MacOSX/ |
D | SystemRuntimeMacOSX.cpp | 128 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/ |
D | ItaniumABILanguageRuntime.cpp | 221 process->ReadPointerFromMemory(original_ptr, error); in GetDynamicTypeAndAddress() 585 m_process->ReadPointerFromMemory(result_ptr - ptr_size, error); in GetExceptionObjectForThread()
|
/external/llvm-project/lldb/source/Core/ |
D | DynamicLoader.cpp | 231 addr_t value = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
|
/external/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
D | DYLDRendezvous.cpp | 75 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/ |
D | SBProcess.h | 196 lldb::addr_t ReadPointerFromMemory(addr_t addr, lldb::SBError &error);
|
/external/llvm-project/lldb/source/API/ |
D | SBProcess.cpp | 942 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/ |
D | Materializer.cpp | 224 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/ |
D | ObjCLanguageRuntime.cpp | 248 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error); in GetClassDescriptor()
|