HomeSort by relevance Sort by last modified time
    Searched defs:ReadMemory (Results 1 - 13 of 13) sorted by null

  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DYLDRendezvous.cpp 91 if (!(cursor = ReadMemory(cursor, &info.version, word_size)))
94 if (!(cursor = ReadMemory(cursor + padding, &info.map_addr, address_size)))
97 if (!(cursor = ReadMemory(cursor, &info.brk, address_size)))
100 if (!(cursor = ReadMemory(cursor, &info.state, word_size)))
103 if (!(cursor = ReadMemory(cursor + padding, &info.ldbase, address_size)))
237 DYLDRendezvous::ReadMemory(addr_t addr, void *dst, size_t size)
282 if (!(addr = ReadMemory(addr, &entry.base_addr, address_size)))
285 if (!(addr = ReadMemory(addr, &entry.path_addr, address_size)))
288 if (!(addr = ReadMemory(addr, &entry.dyn_addr, address_size)))
291 if (!(addr = ReadMemory(addr, &entry.next, address_size))
    [all...]
  /external/lldb/source/Core/
EmulateInstruction.cpp 169 EmulateInstruction::ReadMemory (const Context &context,
301 return process_sp->ReadMemory (addr, dst, dst_len, error);
  /external/lldb/source/Expression/
IRMemoryMap.cpp 545 IRMemoryMap::ReadMemory (uint8_t *bytes, lldb::addr_t process_address, size_t size, Error &error)
557 process_sp->ReadMemory(process_address, bytes, size, error);
566 target_sp->ReadMemory(absolute_address, false, bytes, size, error);
600 process_sp->ReadMemory(process_address, bytes, size, error);
619 process_sp->ReadMemory(process_address, bytes, size, error);
628 log->Printf("IRMemoryMap::ReadMemory (0x%" PRIx64 ", 0x%" PRIx64 ", 0x%" PRId64 ") came from [0x%" PRIx64 "..0x%" PRIx64 ")",
645 ReadMemory(buf.GetBytes(), process_address, size, error);
730 process_sp->ReadMemory(allocation.m_process_start, allocation.m_data.GetBytes(), allocation.m_data.GetByteSize(), error);
  /external/lldb/source/Plugins/Process/mach-core/
ProcessMachCore.cpp 403 ProcessMachCore::ReadMemory (addr_t addr, void *buf, size_t size, Error &error)
405 // Don't allow the caching that lldb_private::Process::ReadMemory does
  /external/lldb/source/Plugins/UnwindAssembly/InstEmulation/
UnwindAssemblyInstEmulation.cpp 389 UnwindAssemblyInstEmulation::ReadMemory (EmulateInstruction *instruction,
401 strm.Printf ("UnwindAssemblyInstEmulation::ReadMemory (addr = 0x%16.16" PRIx64 ", dst = %p, dst_len = %" PRIu64 ", context = ",
  /external/lldb/source/Symbol/
ObjectFile.cpp 433 ObjectFile::ReadMemory (const ProcessSP &process_sp, lldb::addr_t addr, size_t byte_size)
440 const size_t bytes_read = process_sp->ReadMemory (addr,
481 return process_sp->ReadMemory (base_load_addr + section_offset, dst, dst_len, error);
530 DataBufferSP data_sp (ReadMemory (process_sp, base_load_addr, section->GetByteSize()));
  /external/lldb/source/API/
SBProcess.cpp 968 SBProcess::ReadMemory (addr_t addr, void *dst, size_t dst_len, SBError &sb_error)
978 log->Printf ("SBProcess(%p)::ReadMemory (addr=0x%" PRIx64 ", dst=%p, dst_len=%" PRIu64 ", SBError (%p))...",
992 bytes_read = process_sp->ReadMemory (addr, dst, dst_len, sb_error.ref());
997 log->Printf ("SBProcess(%p)::ReadMemory() => error: process is running", process_sp.get());
1010 log->Printf ("SBProcess(%p)::ReadMemory (addr=0x%" PRIx64 ", dst=%p, dst_len=%" PRIu64 ", SBError (%p): %s) => %" PRIu64,
    [all...]
  /external/lldb/source/Plugins/Process/elf-core/
ProcessElfCore.cpp 265 ProcessElfCore::ReadMemory (lldb::addr_t addr, void *buf, size_t size, Error &error)
267 // Don't allow the caching that lldb_private::Process::ReadMemory does
  /external/lldb/tools/debugserver/source/MacOSX/
MachTask.cpp 167 // MachTask::ReadMemory
170 MachTask::ReadMemory (nub_addr_t addr, nub_size_t size, void *buf)
178 DNBLogThreadedIf(LOG_MEMORY, "MachTask::ReadMemory ( addr = 0x%8.8llx, size = %llu, buf = %p) => %llu bytes read", (uint64_t)addr, (uint64_t)size, buf, (uint64_t)n);
    [all...]
MachProcess.cpp 565 // ReadMemory from the MachProcess level will always remove any software
568 // (m_task.ReadMemory()) as that version will give you what is actually
572 MachProcess::ReadMemory (nub_addr_t addr, nub_size_t size, void *buf)
578 nub_size_t bytes_read = m_task.ReadMemory(addr, size, buf);
847 if (m_task.ReadMemory(addr, break_op_size, curr_break_op) == break_op_size)
885 if (m_task.ReadMemory(addr, break_op_size, verify_opcode) == break_op_size)
    [all...]
  /external/lldb/source/Plugins/Process/FreeBSD/
ProcessMonitor.cpp 138 // Static implementations of ProcessMonitor::ReadMemory and
216 /// @brief Implements ProcessMonitor::ReadMemory.
    [all...]
  /external/lldb/source/Plugins/Process/Linux/
ProcessMonitor.cpp 206 // Static implementations of ProcessMonitor::ReadMemory and
393 /// @brief Implements ProcessMonitor::ReadMemory.
    [all...]
  /external/lldb/source/Target/
Target.cpp     [all...]

Completed in 1434 milliseconds