HomeSort by relevance Sort by last modified time
    Searched refs:ReadPointerFromMemory (Results 1 - 24 of 24) sorted by null

  /external/lldb/examples/python/
diagnose_nsstring.py 141 location = process.ReadPointerFromMemory(location,error)
152 location = process.ReadPointerFromMemory(location,error)
161 location = process.ReadPointerFromMemory(location,error)
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)
  /external/lldb/test/python_api/default-constructor/
sb_process.py 41 obj.ReadPointerFromMemory(0xff, error)
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntimeV1.cpp 233 m_isa = process_sp->ReadPointerFromMemory(isa, error);
249 m_parent_isa = process_sp->ReadPointerFromMemory(m_isa + ptr_size,error);
263 lldb::addr_t name_ptr = process_sp->ReadPointerFromMemory(m_isa + 2 * ptr_size,error);
341 lldb::addr_t objc_debug_class_hash_ptr = process->ReadPointerFromMemory(objc_debug_class_hash_addr, error);
448 isa = m_process->ReadPointerFromMemory(isa_addr, error);
AppleObjCRuntimeV2.cpp 643 m_buckets_ptr = m_process->ReadPointerFromMemory(cursor, err);
718 lldb::addr_t key = m_parent.m_process->ReadPointerFromMemory(pair_ptr, err);
721 lldb::addr_t value = m_parent.m_process->ReadPointerFromMemory(pair_ptr + m_parent.m_process->GetAddressByteSize(), err);
747 lldb::addr_t key = m_parent.m_process->ReadPointerFromMemory(pair_ptr, err);
    [all...]
AppleObjCTrampolineHandler.cpp     [all...]
  /external/lldb/include/lldb/Expression/
IRMemoryMap.h 61 void ReadPointerFromMemory (lldb::addr_t *address, lldb::addr_t process_address, Error &error);
  /external/lldb/include/lldb/API/
SBProcess.h 233 ReadPointerFromMemory (addr_t addr, lldb::SBError &error);
  /external/lldb/scripts/Python/interface/
SBProcess.i 312 ptr = ReadPointerFromMemory(0x1000, error)
318 ") ReadPointerFromMemory;
321 ReadPointerFromMemory (addr_t addr, lldb::SBError &error);
  /external/lldb/source/DataFormatters/
NSDictionary.cpp 353 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error);
356 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error);
517 key_at_idx = process_sp->ReadPointerFromMemory(key_at_idx, error);
520 val_at_idx = process_sp->ReadPointerFromMemory(val_at_idx, error);
NSSet.cpp 267 obj_at_idx = process_sp->ReadPointerFromMemory(obj_at_idx, error);
410 obj_at_idx = process_sp->ReadPointerFromMemory(obj_at_idx, error);
CF.cpp 152 addr_t data_ptr = process_sp->ReadPointerFromMemory(valobj_addr+2*ptr_size+2*ptr_size, error);
NSArray.cpp 254 m_items = process_sp->ReadPointerFromMemory(data_location, error);
  /external/lldb/source/Expression/
Materializer.cpp 225 map.ReadPointerFromMemory(&location, load_addr, read_error);
358 map.ReadPointerFromMemory (&target_address, load_addr, err);
799 map.ReadPointerFromMemory (&address, load_addr, read_error);
    [all...]
IRMemoryMap.cpp 675 IRMemoryMap::ReadPointerFromMemory (lldb::addr_t *address, lldb::addr_t process_address, Error &error)
IRInterpreter.cpp     [all...]
  /external/lldb/source/Target/
ObjCLanguageRuntime.cpp 546 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error);
Target.cpp     [all...]
Process.cpp     [all...]
  /external/lldb/source/API/
SBProcess.cpp 1080 SBProcess::ReadPointerFromMemory (addr_t addr, lldb::SBError &sb_error)
1090 ptr = process_sp->ReadPointerFromMemory (addr, sb_error.ref());
1096 log->Printf ("SBProcess(%p)::ReadPointerFromMemory() => error: process is running", process_sp.get());
    [all...]
  /external/lldb/include/lldb/Target/
Target.h 919 ReadPointerFromMemory (const Address& addr,
    [all...]
Process.h     [all...]
  /external/lldb/source/Core/
Address.cpp 743 addr_t dereferenced_load_addr = process->ReadPointerFromMemory(load_addr, memory_error);
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DynamicLoaderDarwinKernel.cpp     [all...]

Completed in 526 milliseconds