Home
last modified time | relevance | path

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

12

/llvm-project-15.0.7/lldb/source/Plugins/Language/ObjC/
H A 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()
H A DNSDictionary.cpp682 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex()
685 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex()
809 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex()
812 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex()
907 process_sp->ReadPointerFromMemory(valobj_addr + 3 * m_ptr_size, error); in Update()
936 key_at_idx = process_sp->ReadPointerFromMemory( in GetChildAtIndex()
940 val_at_idx = process_sp->ReadPointerFromMemory( in GetChildAtIndex()
1172 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex()
1175 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex()
1326 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex()
[all …]
H A 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()
H A DNSString.cpp145 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider()
196 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider()
266 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider()
H A DNSSet.cpp494 obj_at_idx = process_sp->ReadPointerFromMemory(obj_at_idx, error); in GetChildAtIndex()
616 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex()
778 obj_at_idx = process_sp->ReadPointerFromMemory(obj_at_idx, error); in GetChildAtIndex()
H A DCF.cpp154 addr_t data_ptr = process_sp->ReadPointerFromMemory( in CFBitVectorSummaryProvider()
/llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSDKernel/
H A DProcessFreeBSDKernel.cpp189 ReadPointerFromMemory(FindSymbol("allproc"), error); in DoUpdateThreadList()
191 proc = ReadPointerFromMemory(proc + offset_p_list, error)) { in DoUpdateThreadList()
202 ReadPointerFromMemory(proc + offset_p_threads, error); in DoUpdateThreadList()
203 td != 0; td = ReadPointerFromMemory(td + offset_td_plist, error)) { in DoUpdateThreadList()
207 ReadPointerFromMemory(td + offset_td_pcb, error); in DoUpdateThreadList()
/llvm-project-15.0.7/lldb/examples/python/
H A 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(
H A Ddiagnose_nsstring.py150 location = process.ReadPointerFromMemory(location, error)
161 location = process.ReadPointerFromMemory(location, error)
170 location = process.ReadPointerFromMemory(location, error)
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV1.cpp191 m_isa = process_sp->ReadPointerFromMemory(isa, error); in Initialize()
205 m_parent_isa = process_sp->ReadPointerFromMemory(m_isa + ptr_size, error); in Initialize()
218 process_sp->ReadPointerFromMemory(m_isa + 2 * ptr_size, error); in Initialize()
301 process->ReadPointerFromMemory(objc_debug_class_hash_addr, error); in GetISAHashTablePointer()
399 isa = m_process->ReadPointerFromMemory(isa_addr, error); in UpdateISAToDescriptorMapIfNeeded()
H A DAppleObjCRuntimeV2.cpp1332 m_buckets_ptr = m_process->ReadPointerFromMemory(cursor, err); in ParseHeader()
1401 m_parent.m_process->ReadPointerFromMemory(pair_ptr, err); in operator *()
1404 lldb::addr_t value = m_parent.m_process->ReadPointerFromMemory( in operator *()
1432 m_parent.m_process->ReadPointerFromMemory(pair_ptr, err); in AdvanceToValidIndex()
1541 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error); in GetClassDescriptor()
1584 process->ReadPointerFromMemory(g_gdb_obj_obfuscator_ptr, error); in GetTaggedPointerObfuscator()
1614 m_isa_hash_table_ptr = process->ReadPointerFromMemory( in GetISAHashTablePointer()
2898 uintptr_t slot_data = process->ReadPointerFromMemory(slot_ptr, error); in GetClassDescriptor()
2994 uintptr_t slot_data = process->ReadPointerFromMemory(slot_ptr, error); in GetClassDescriptor()
3204 addr = GetProcess()->ReadPointerFromMemory(addr, error); in GetCFBooleanValuesIfNeeded()
/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A 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()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp174 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()
/llvm-project-15.0.7/lldb/test/API/linux/aarch64/non_address_bit_memory_access/
H A DTestAArch64LinuxNonAddressBitMemoryAccess.py108 ptr = self.process().ReadPointerFromMemory(buf_with_non_address, error)
232 check_reads(addrs, self.process().ReadPointerFromMemory, None, 0x0000000042444c4c)
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_process.py44 obj.ReadPointerFromMemory(0xff, error)
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DHexagonDYLDRendezvous.cpp38 info_addr = process->ReadPointerFromMemory(info_location, error); in ResolveRendezvousAddress()
236 *dst = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBProcess.i307 print('error: ', error)") ReadPointerFromMemory;
310 ReadPointerFromMemory (addr_t addr, lldb::SBError &error);
/llvm-project-15.0.7/lldb/include/lldb/Expression/
H A DIRMemoryMap.h68 void ReadPointerFromMemory(lldb::addr_t *address,
/llvm-project-15.0.7/lldb/source/Plugins/SystemRuntime/MacOSX/
H A DSystemRuntimeMacOSX.cpp129 m_process->ReadPointerFromMemory(dispatch_qaddr, error); in GetQueueNameFromThreadQAddress()
137 m_process->ReadPointerFromMemory(pointer_to_label_address, error); in GetQueueNameFromThreadQAddress()
164 m_process->ReadPointerFromMemory(dispatch_qaddr, error); in GetLibdispatchQueueAddressFromThreadQAddress()
250 m_process->ReadPointerFromMemory(dispatch_qaddr, error); in GetQueueIDFromThreadQAddress()
/llvm-project-15.0.7/lldb/source/Core/
H A DDynamicLoader.cpp187 addr_t value = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp221 process->ReadPointerFromMemory(original_ptr, error); in GetDynamicTypeAndAddress()
573 m_process->ReadPointerFromMemory(result_ptr - ptr_size, error); in GetExceptionObjectForThread()
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/FreeBSDKernel/tools/
H A Dlldb-minimize-processes.patch20 ReadPointerFromMemory(FindSymbol("allproc"), error);
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp97 info_addr = m_process->ReadPointerFromMemory(info_location, error); in ResolveRendezvousAddress()
488 *dst = m_process->ReadPointerFromMemory(addr, error); in ReadPointer()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBProcess.h196 lldb::addr_t ReadPointerFromMemory(addr_t addr, lldb::SBError &error);
/llvm-project-15.0.7/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp901 lldb::addr_t token = process->ReadPointerFromMemory(return_addr, in DoLoadImage()
927 = process->ReadPointerFromMemory(return_addr + addr_size, utility_error); in DoLoadImage()

12