| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
| H A 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()
|
| H A 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()
|
| H A D | NSDictionary.cpp | 644 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex() 647 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex() 771 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex() 774 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex() 879 lldb::addr_t value_at_idx = process_sp->ReadPointerFromMemory(key_ptr, error); in GetChildAtIndex() 882 lldb::addr_t key_at_idx = process_sp->ReadPointerFromMemory(value_ptr, error); in GetChildAtIndex() 1021 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex() 1024 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex() 1178 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex() 1181 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex()
|
| H A 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()
|
| H A D | NSSet.cpp | 495 obj_at_idx = process_sp->ReadPointerFromMemory(obj_at_idx, error); in GetChildAtIndex() 617 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex() 780 obj_at_idx = process_sp->ReadPointerFromMemory(obj_at_idx, error); in GetChildAtIndex()
|
| H A D | CF.cpp | 154 addr_t data_ptr = process_sp->ReadPointerFromMemory( in CFBitVectorSummaryProvider()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A 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() 410 isa = m_process->ReadPointerFromMemory(isa_addr, error); in UpdateISAToDescriptorMapIfNeeded()
|
| H A D | AppleObjCRuntimeV2.cpp | 1245 m_buckets_ptr = m_process->ReadPointerFromMemory(cursor, err); in ParseHeader() 1314 m_parent.m_process->ReadPointerFromMemory(pair_ptr, err); in operator *() 1317 lldb::addr_t value = m_parent.m_process->ReadPointerFromMemory( in operator *() 1345 m_parent.m_process->ReadPointerFromMemory(pair_ptr, err); in AdvanceToValidIndex() 1454 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error); in GetClassDescriptor() 1491 process->ReadPointerFromMemory(g_gdb_obj_obfuscator_ptr, error); in GetTaggedPointerObfuscator() 1521 m_isa_hash_table_ptr = process->ReadPointerFromMemory( in GetISAHashTablePointer() 2698 uintptr_t slot_data = process->ReadPointerFromMemory(slot_ptr, error); in GetClassDescriptor() 2788 uintptr_t slot_data = process->ReadPointerFromMemory(slot_ptr, error); in GetClassDescriptor()
|
| H A D | AppleObjCRuntime.cpp | 589 addr_t pc = m_process->ReadPointerFromMemory( in GetBacktraceThreadFromException()
|
| H A D | AppleObjCTrampolineHandler.cpp | 565 process_sp->ReadPointerFromMemory(m_trampoline_header, error); in ReadRegions()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A 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()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ |
| H A D | CPPLanguageRuntime.cpp | 174 process->ReadPointerFromMemory(member__f_pointer_value, status); in FindLibCppStdFunctionCallableInfo() 180 process->ReadPointerFromMemory(vtable_address + address_size, status); in FindLibCppStdFunctionCallableInfo() 189 process->ReadPointerFromMemory(address_after_vtable, status); in FindLibCppStdFunctionCallableInfo()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | HexagonDYLDRendezvous.cpp | 38 info_addr = process->ReadPointerFromMemory(info_location, error); in ResolveRendezvousAddress() 232 *dst = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBProcess.i | 307 print('error: ', error)") ReadPointerFromMemory; 310 ReadPointerFromMemory (addr_t addr, lldb::SBError &error);
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Expression/ |
| H A D | IRMemoryMap.h | 68 void ReadPointerFromMemory(lldb::addr_t *address,
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
| H A D | ItaniumABILanguageRuntime.cpp | 221 process->ReadPointerFromMemory(original_ptr, error); in GetDynamicTypeAndAddress() 585 m_process->ReadPointerFromMemory(result_ptr - ptr_size, error); in GetExceptionObjectForThread()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| H A D | DYLDRendezvous.cpp | 75 info_addr = process->ReadPointerFromMemory(info_location, error); in ResolveRendezvousAddress() 469 *dst = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | DynamicLoader.cpp | 231 addr_t value = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBProcess.h | 196 lldb::addr_t ReadPointerFromMemory(addr_t addr, lldb::SBError &error);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBProcess.cpp | 921 lldb::addr_t SBProcess::ReadPointerFromMemory(addr_t addr, in ReadPointerFromMemory() function in SBProcess 923 LLDB_RECORD_METHOD(lldb::addr_t, SBProcess, ReadPointerFromMemory, in ReadPointerFromMemory() 933 ptr = process_sp->ReadPointerFromMemory(addr, sb_error.ref()); in ReadPointerFromMemory() 1433 LLDB_REGISTER_METHOD(lldb::addr_t, SBProcess, ReadPointerFromMemory, in RegisterMethods()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | Materializer.cpp | 224 map.ReadPointerFromMemory(&location, load_addr, read_error); in Dematerialize() 369 map.ReadPointerFromMemory(&target_address, load_addr, err); in DumpToLog() 859 map.ReadPointerFromMemory(&address, load_addr, read_error); in Dematerialize()
|
| H A D | IRInterpreter.cpp | 1216 execution_unit.ReadPointerFromMemory(&R, P, read_error); in Interpret() 1295 execution_unit.ReadPointerFromMemory(&R, P, read_error); in Interpret()
|
| H A D | IRMemoryMap.cpp | 763 void IRMemoryMap::ReadPointerFromMemory(lldb::addr_t *address, in ReadPointerFromMemory() function in IRMemoryMap
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 928 lldb::addr_t token = process->ReadPointerFromMemory(return_addr, in DoLoadImage() 953 = process->ReadPointerFromMemory(return_addr + addr_size, utility_error); in DoLoadImage()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ |
| H A D | ObjCLanguageRuntime.cpp | 248 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error); in GetClassDescriptor()
|