Searched defs:ReadMemory (Results 1 - 13 of 13) sorted by relevance

/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp91 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) function in class:DYLDRendezvous
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(add
[all...]
/external/lldb/source/Expression/
H A DIRMemoryMap.cpp545 IRMemoryMap::ReadMemory (uint8_t *bytes, lldb::addr_t process_address, size_t size, Error &error) function in class:IRMemoryMap
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/
H A DProcessMachCore.cpp403 ProcessMachCore::ReadMemory (addr_t addr, void *buf, size_t size, Error &error) function in class:ProcessMachCore
405 // Don't allow the caching that lldb_private::Process::ReadMemory does
/external/lldb/source/Symbol/
H A DObjectFile.cpp433 ObjectFile::ReadMemory (const ProcessSP &process_sp, lldb::addr_t addr, size_t byte_size) function in class:ObjectFile
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/Core/
H A DEmulateInstruction.cpp169 EmulateInstruction::ReadMemory (const Context &context, function in class:EmulateInstruction
301 return process_sp->ReadMemory (addr, dst, dst_len, error);
/external/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp389 UnwindAssemblyInstEmulation::ReadMemory (EmulateInstruction *instruction, function in class:UnwindAssemblyInstEmulation
401 strm.Printf ("UnwindAssemblyInstEmulation::ReadMemory (addr = 0x%16.16" PRIx64 ", dst = %p, dst_len = %" PRIu64 ", context = ",
/external/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp265 ProcessElfCore::ReadMemory (lldb::addr_t addr, void *buf, size_t size, Error &error) function in class:ProcessElfCore
267 // Don't allow the caching that lldb_private::Process::ReadMemory does
/external/lldb/source/API/
H A DSBProcess.cpp968 SBProcess::ReadMemory (addr_t addr, void *dst, size_t dst_len, SBError &sb_error) function in class:SBProcess
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,
/external/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp138 // Static implementations of ProcessMonitor::ReadMemory and
216 /// @brief Implements ProcessMonitor::ReadMemory.
1471 ProcessMonitor::ReadMemory(lldb::addr_t vm_addr, void *buf, size_t size, function in class:ProcessMonitor
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachTask.cpp167 // MachTask::ReadMemory
170 MachTask::ReadMemory (nub_addr_t addr, nub_size_t size, void *buf) function in class:MachTask
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);
H A DMachProcess.cpp565 // 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) function in class:MachProcess
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)
1002 if (m_task.ReadMemory(addr, break_op_size, bp->SavedOpcodeBytes()) == break_op_size)
1008 if (m_task.ReadMemory(addr, break_op_size, verify_break_op) == break_op_size)
1122 if (m_task.ReadMemory(info_array_count_addr, 4, &info_array_count) == 4)
/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.cpp206 // Static implementations of ProcessMonitor::ReadMemory and
393 /// @brief Implements ProcessMonitor::ReadMemory.
1992 ProcessMonitor::ReadMemory(lldb::addr_t vm_addr, void *buf, size_t size, function in class:ProcessMonitor
/external/lldb/source/Target/
H A DTarget.cpp1265 Target::ReadMemory (const Address& addr, function in class:Target
1332 bytes_read = m_process_sp->ReadMemory(load_addr, dst, dst_len, error);
1413 size_t bytes_read = ReadMemory (address, false, curr_dst, bytes_to_read, error);
1456 size_t bytes_read = ReadMemory (addr, prefer_file_cache, &uval, byte_size, error);

Completed in 431 milliseconds