| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ |
| H A D | NSException.cpp | 55 auto name = process_sp->ReadPointerFromMemory(ptr + 1 * ptr_size, error); in ExtractFields() 58 auto reason = process_sp->ReadPointerFromMemory(ptr + 2 * ptr_size, error); in ExtractFields() 61 auto userinfo = process_sp->ReadPointerFromMemory(ptr + 3 * ptr_size, error); in ExtractFields() 64 auto reserved = process_sp->ReadPointerFromMemory(ptr + 4 * ptr_size, error); in ExtractFields()
|
| H A D | NSError.cpp | 46 ptr_value = process_sp->ReadPointerFromMemory(ptr_value, error); in DerefToNSErrorPointer() 77 process_sp->ReadPointerFromMemory(domain_location, error); in NSError_SummaryProvider() 153 process_sp->ReadPointerFromMemory(userinfo_location, error); in Update()
|
| H A D | NSDictionary.cpp | 606 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex() 609 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex() 707 lldb::addr_t value_at_idx = process_sp->ReadPointerFromMemory(key_ptr, error); in GetChildAtIndex() 710 lldb::addr_t key_at_idx = process_sp->ReadPointerFromMemory(value_ptr, error); in GetChildAtIndex() 850 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex() 853 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex() 1008 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex() 1011 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex()
|
| H A D | NSString.cpp | 168 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider() 219 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider() 283 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider()
|
| H A D | NSSet.cpp | 470 obj_at_idx = process_sp->ReadPointerFromMemory(obj_at_idx, error); in GetChildAtIndex() 637 obj_at_idx = process_sp->ReadPointerFromMemory(obj_at_idx, error); in GetChildAtIndex()
|
| H A D | CF.cpp | 161 addr_t data_ptr = process_sp->ReadPointerFromMemory( in CFBitVectorSummaryProvider()
|
| /freebsd-12.1/contrib/llvm/tools/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() 413 isa = m_process->ReadPointerFromMemory(isa_addr, error); in UpdateISAToDescriptorMapIfNeeded()
|
| H A D | AppleObjCRuntimeV2.cpp | 978 m_buckets_ptr = m_process->ReadPointerFromMemory(cursor, err); in ParseHeader() 1047 m_parent.m_process->ReadPointerFromMemory(pair_ptr, err); in operator *() 1050 lldb::addr_t value = m_parent.m_process->ReadPointerFromMemory( in operator *() 1078 m_parent.m_process->ReadPointerFromMemory(pair_ptr, err); in AdvanceToValidIndex() 1186 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error); in GetClassDescriptor() 1225 m_tagged_pointer_obfuscator = process->ReadPointerFromMemory( in GetTaggedPointerObfuscator() 1255 m_isa_hash_table_ptr = process->ReadPointerFromMemory( in GetISAHashTablePointer() 2302 uintptr_t slot_data = process->ReadPointerFromMemory(slot_ptr, error); in GetClassDescriptor() 2390 uintptr_t slot_data = process->ReadPointerFromMemory(slot_ptr, error); in GetClassDescriptor()
|
| H A D | AppleObjCRuntime.cpp | 552 addr_t pc = m_process->ReadPointerFromMemory( in GetBacktraceThreadFromException()
|
| H A D | AppleObjCTrampolineHandler.cpp | 565 process_sp->ReadPointerFromMemory(m_trampoline_header, error); in ReadRegions()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | LibStdcpp.cpp | 249 process_sp->ReadPointerFromMemory(addr_of_string, error); in LibStdcppStringSummaryProvider() 258 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-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | CPPLanguageRuntime.cpp | 121 process->ReadPointerFromMemory(member__f_pointer_value, status); in FindLibCppStdFunctionCallableInfo() 130 process->ReadPointerFromMemory(address_after_vtable, status); in FindLibCppStdFunctionCallableInfo()
|
| H A D | ObjCLanguageRuntime.cpp | 251 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error); in GetClassDescriptor()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | HexagonDYLDRendezvous.cpp | 39 info_addr = process->ReadPointerFromMemory(info_location, error); in ResolveRendezvousAddress() 233 *dst = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/ |
| H A D | IRMemoryMap.h | 71 void ReadPointerFromMemory(lldb::addr_t *address,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
| H A D | ItaniumABILanguageRuntime.cpp | 228 process->ReadPointerFromMemory(original_ptr, error); in GetDynamicTypeAndAddress() 601 m_process->ReadPointerFromMemory(result_ptr - ptr_size, error); in GetExceptionObjectForThread()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| H A D | DYLDRendezvous.cpp | 81 info_addr = process->ReadPointerFromMemory(info_location, error); in ResolveRendezvousAddress() 432 *dst = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | DynamicLoader.cpp | 234 addr_t value = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
|
| H A D | Address.cpp | 737 process->ReadPointerFromMemory(load_addr, memory_error); in Dump()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBProcess.h | 209 lldb::addr_t ReadPointerFromMemory(addr_t addr, lldb::SBError &error);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/ |
| H A D | Materializer.cpp | 237 map.ReadPointerFromMemory(&location, load_addr, read_error); in Dematerialize() 382 map.ReadPointerFromMemory(&target_address, load_addr, err); in DumpToLog() 855 map.ReadPointerFromMemory(&address, load_addr, read_error); in Dematerialize()
|
| H A D | IRInterpreter.cpp | 1349 execution_unit.ReadPointerFromMemory(&R, P, read_error); in Interpret() 1442 execution_unit.ReadPointerFromMemory(&R, P, read_error); in Interpret()
|
| H A D | IRMemoryMap.cpp | 760 void IRMemoryMap::ReadPointerFromMemory(lldb::addr_t *address, in ReadPointerFromMemory() function in IRMemoryMap
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 1267 lldb::addr_t token = process->ReadPointerFromMemory(return_addr, in DoLoadImage() 1292 = process->ReadPointerFromMemory(return_addr + addr_size, utility_error); in DoLoadImage()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBProcess.cpp | 1038 lldb::addr_t SBProcess::ReadPointerFromMemory(addr_t addr, in ReadPointerFromMemory() function in SBProcess 1047 ptr = process_sp->ReadPointerFromMemory(addr, sb_error.ref()); in ReadPointerFromMemory()
|