/external/lldb/examples/python/ |
D | diagnose_unwind.py | 79 cur_fp = process.ReadPointerFromMemory (initial_fp, lldb.SBError()) 80 cur_pc = process.ReadPointerFromMemory (initial_fp + process.GetAddressByteSize(), lldb.SBError()) 96 next_pc = process.ReadPointerFromMemory(cur_fp + process.GetAddressByteSize(), error) 99 next_fp = process.ReadPointerFromMemory(cur_fp, error) 124 address = process.ReadPointerFromMemory(addr + (i * addr_size), error)
|
D | diagnose_nsstring.py | 141 location = process.ReadPointerFromMemory(location,error) 152 location = process.ReadPointerFromMemory(location,error) 161 location = process.ReadPointerFromMemory(location,error)
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleObjCRuntimeV1.cpp | 233 m_isa = process_sp->ReadPointerFromMemory(isa, error); in Initialize() 249 m_parent_isa = process_sp->ReadPointerFromMemory(m_isa + ptr_size,error); in Initialize() 263 lldb::addr_t name_ptr = process_sp->ReadPointerFromMemory(m_isa + 2 * ptr_size,error); in Initialize() 341 …lldb::addr_t objc_debug_class_hash_ptr = process->ReadPointerFromMemory(objc_debug_class_hash_addr… in GetISAHashTablePointer() 448 isa = m_process->ReadPointerFromMemory(isa_addr, error); in UpdateISAToDescriptorMapIfNeeded()
|
D | AppleObjCRuntimeV2.cpp | 643 m_buckets_ptr = m_process->ReadPointerFromMemory(cursor, err); in ParseHeader() 718 lldb::addr_t key = m_parent.m_process->ReadPointerFromMemory(pair_ptr, err); in operator *() 721 …lldb::addr_t value = m_parent.m_process->ReadPointerFromMemory(pair_ptr + m_parent.m_process->GetA… in operator *() 747 lldb::addr_t key = m_parent.m_process->ReadPointerFromMemory(pair_ptr, err); in AdvanceToValidIndex() 1633 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error); in GetClassDescriptor() 1674 … m_isa_hash_table_ptr = process->ReadPointerFromMemory(gdb_objc_realized_classes_ptr, error); in GetISAHashTablePointer() 2598 uintptr_t slot_data = process->ReadPointerFromMemory(slot_ptr, error); in GetClassDescriptor()
|
D | AppleObjCTrampolineHandler.cpp | 552 lldb::addr_t region_addr = m_process_sp->ReadPointerFromMemory (m_trampoline_header, error); in ReadRegions()
|
/external/lldb/source/DataFormatters/ |
D | NSDictionary.cpp | 353 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex() 356 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex() 517 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error); in GetChildAtIndex() 520 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error); in GetChildAtIndex()
|
D | NSSet.cpp | 267 obj_at_idx = process_sp->ReadPointerFromMemory(obj_at_idx, error); in GetChildAtIndex() 410 obj_at_idx = process_sp->ReadPointerFromMemory(obj_at_idx, error); in GetChildAtIndex()
|
D | CF.cpp | 152 addr_t data_ptr = process_sp->ReadPointerFromMemory(valobj_addr+2*ptr_size+2*ptr_size, error); in CFBitVectorSummaryProvider()
|
D | CXXFormatterFunctions.cpp | 1039 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider() 1078 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider() 1117 location = process_sp->ReadPointerFromMemory(location, error); in NSStringSummaryProvider()
|
D | NSArray.cpp | 254 m_items = process_sp->ReadPointerFromMemory(data_location, error); in Update()
|
/external/lldb/test/python_api/default-constructor/ |
D | sb_process.py | 41 obj.ReadPointerFromMemory(0xff, error)
|
/external/lldb/scripts/Python/interface/ |
D | SBProcess.i | 318 ") ReadPointerFromMemory; 321 ReadPointerFromMemory (addr_t addr, lldb::SBError &error);
|
/external/lldb/include/lldb/Expression/ |
D | IRMemoryMap.h | 61 void ReadPointerFromMemory (lldb::addr_t *address, lldb::addr_t process_address, Error &error);
|
/external/lldb/include/lldb/API/ |
D | SBProcess.h | 233 ReadPointerFromMemory (addr_t addr, lldb::SBError &error);
|
/external/lldb/source/Expression/ |
D | Materializer.cpp | 225 map.ReadPointerFromMemory(&location, load_addr, read_error); in Dematerialize() 358 map.ReadPointerFromMemory (&target_address, load_addr, err); in DumpToLog() 799 map.ReadPointerFromMemory (&address, load_addr, read_error); in Dematerialize()
|
D | IRInterpreter.cpp | 1221 memory_map.ReadPointerFromMemory(&R, P, read_error); in Interpret() 1321 memory_map.ReadPointerFromMemory(&R, P, read_error); in Interpret()
|
D | IRMemoryMap.cpp | 675 IRMemoryMap::ReadPointerFromMemory (lldb::addr_t *address, lldb::addr_t process_address, Error &err… in ReadPointerFromMemory() function in IRMemoryMap
|
/external/lldb/source/Target/ |
D | ObjCLanguageRuntime.cpp | 546 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error); in GetClassDescriptor()
|
D | Target.cpp | 1497 Target::ReadPointerFromMemory (const Address& addr, in ReadPointerFromMemory() function in Target
|
D | Process.cpp | 2524 Process::ReadPointerFromMemory (lldb::addr_t vm_addr, Error &error) in ReadPointerFromMemory() function in Process
|
/external/lldb/source/API/ |
D | SBProcess.cpp | 1080 SBProcess::ReadPointerFromMemory (addr_t addr, lldb::SBError &sb_error) in ReadPointerFromMemory() function in SBProcess 1090 ptr = process_sp->ReadPointerFromMemory (addr, sb_error.ref()); in ReadPointerFromMemory()
|
/external/lldb/include/lldb/Target/ |
D | Target.h | 919 ReadPointerFromMemory (const Address& addr,
|
D | Process.h | 2805 ReadPointerFromMemory (lldb::addr_t vm_addr,
|
/external/lldb/source/Core/ |
D | Address.cpp | 743 … addr_t dereferenced_load_addr = process->ReadPointerFromMemory(load_addr, memory_error); in Dump()
|
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
D | DynamicLoaderDarwinKernel.cpp | 1134 if (m_process->GetTarget().ReadPointerFromMemory (m_kext_summary_header_ptr_addr, in ReadKextSummaryHeader()
|