/external/lldb/source/Plugins/UnwindAssembly/InstEmulation/ |
D | UnwindAssemblyInstEmulation.h | 79 WriteMemory (lldb_private::EmulateInstruction *instruction, 108 WriteMemory (lldb_private::EmulateInstruction *instruction, 145 m_inst_emulator_ap->SetCallbacks (ReadMemory, WriteMemory, ReadRegister, WriteRegister); in UnwindAssemblyInstEmulation()
|
D | UnwindAssemblyInstEmulation.cpp | 413 UnwindAssemblyInstEmulation::WriteMemory (EmulateInstruction *instruction, in WriteMemory() function in UnwindAssemblyInstEmulation 421 …return ((UnwindAssemblyInstEmulation *)baton)->WriteMemory (instruction, context, addr, dst, dst_l… in WriteMemory() 426 UnwindAssemblyInstEmulation::WriteMemory (EmulateInstruction *instruction, in WriteMemory() function in UnwindAssemblyInstEmulation
|
/external/lldb/source/Expression/ |
D | IRMemoryMap.cpp | 424 IRMemoryMap::WriteMemory (lldb::addr_t process_address, const uint8_t *bytes, size_t size, Error &e… in WriteMemory() function in IRMemoryMap 436 process_sp->WriteMemory(process_address, bytes, size, error); in WriteMemory() 477 process_sp->WriteMemory(process_address, bytes, size, error); in WriteMemory() 486 process_sp->WriteMemory(process_address, bytes, size, error); in WriteMemory() 518 return WriteMemory(process_address, buf, mem_size, error); in WriteScalarToMemory()
|
D | IRInterpreter.cpp | 208 m_memory_map.WriteMemory(process_address, buf.GetBytes(), buf.GetByteSize(), write_error); in AssignValue() 330 m_memory_map.WriteMemory(process_address, (uint8_t*)raw_data, constant_size, write_error); in ResolveConstant() 1247 memory_map.WriteMemory(D, buffer.GetBytes(), buffer.GetByteSize(), write_error); in Interpret() 1347 memory_map.WriteMemory(R, buffer.GetBytes(), buffer.GetByteSize(), write_error); in Interpret()
|
D | IRExecutionUnit.cpp | 59 WriteMemory(allocation_process_addr, bytes, size, error); in WriteNow() 686 WriteMemory (record.m_process_address, (uint8_t*)record.m_host_address, record.m_size, err); in WriteData()
|
D | Materializer.cpp | 122 map.WriteMemory (mem, in MakeAllocation() 522 … map.WriteMemory(m_temporary_allocation, data.GetDataStart(), data.GetByteSize(), write_error); in Materialize() 1171 …map.WriteMemory(load_addr, register_data.GetDataStart(), register_data.GetByteSize(), write_error); in Materialize()
|
/external/lldb/test/python_api/default-constructor/ |
D | sb_process.py | 38 obj.WriteMemory(0x0000ffff, "hi data", error)
|
/external/lldb/scripts/Python/interface/ |
D | SBProcess.i | 269 ") WriteMemory; 271 WriteMemory (addr_t addr, const void *buf, size_t size, lldb::SBError &error);
|
/external/lldb/tools/debugserver/source/MacOSX/ |
D | MachTask.h | 68 nub_size_t WriteMemory (nub_addr_t addr, nub_size_t size, const void *buf);
|
D | MachProcess.cpp | 597 MachProcess::WriteMemory (nub_addr_t addr, nub_size_t size, const void *buf) in WriteMemory() function in MachProcess 607 return m_task.WriteMemory(addr, size, buf); in WriteMemory() 632 … nub_size_t curr_bytes_written = m_task.WriteMemory(curr_addr, curr_size, ubuf + bytes_written); in WriteMemory() 651 …bytes_written += m_task.WriteMemory(addr + bytes_written, size - bytes_written, ubuf + bytes_writt… in WriteMemory() 858 … if (m_task.WriteMemory(addr, break_op_size, bp->SavedOpcodeBytes()) == break_op_size) in DisableBreakpoint() 1005 if (m_task.WriteMemory(addr, break_op_size, break_op) == break_op_size) in EnableBreakpoint()
|
D | MachProcess.h | 100 nub_size_t WriteMemory (nub_addr_t addr, nub_size_t size, const void *buf);
|
/external/lldb/test/python_api/process/ |
D | TestProcessAPI.py | 194 result = process.WriteMemory(location, 'a', error) 262 result = process.WriteMemory(location, new_value, error)
|
/external/lldb/include/lldb/Expression/ |
D | IRMemoryMap.h | 56 … void WriteMemory (lldb::addr_t process_address, const uint8_t *bytes, size_t size, Error &error);
|
/external/lldb/source/Plugins/Process/Utility/ |
D | RegisterContextMemory.cpp | 162 …if (process_sp->WriteMemory(m_reg_data_addr, data_sp->GetBytes(), data_sp->GetByteSize(), error) =… in WriteAllRegisterValues()
|
/external/lldb/include/lldb/API/ |
D | SBProcess.h | 224 WriteMemory (addr_t addr, const void *buf, size_t size, lldb::SBError &error);
|
/external/lldb/source/Plugins/Process/FreeBSD/ |
D | ProcessMonitor.h | 100 WriteMemory(lldb::addr_t vm_addr, const void *buf, size_t size,
|
/external/lldb/source/Plugins/Process/Linux/ |
D | ProcessMonitor.h | 105 WriteMemory(lldb::addr_t vm_addr, const void *buf, size_t size,
|
/external/lldb/source/Core/ |
D | EmulateInstruction.cpp | 222 EmulateInstruction::WriteMemory (const Context &context, in WriteMemory() function in EmulateInstruction 323 return process_sp->WriteMemory (addr, src, src_len, error); in WriteMemoryFrame()
|
/external/lldb/source/Plugins/ABI/MacOSX-i386/ |
D | ABIMacOSX_i386.cpp | 527 … if (process->WriteMemory(sp, cstr, cstr_length + 1, error) != (cstr_length + 1)) in PrepareNormalCall() 562 …if (process->WriteMemory(sp + (index * 4), &argLayout[index], sizeof(uint32_t), error) != sizeof(u… in PrepareNormalCall() 569 …if (process->WriteMemory (sp, &returnAddressU32, sizeof(returnAddressU32), error) != sizeof(return… in PrepareNormalCall()
|
/external/lldb/source/Commands/ |
D | CommandObjectMemory.cpp | 1129 … size_t bytes_written = process->WriteMemory (addr, data_sp->GetBytes(), length, error); in DoExecute() 1267 if (process->WriteMemory (addr, value_str, len, error) == len) in DoExecute() 1336 …if (process->WriteMemory (addr, buffer.GetString().c_str(), buffer.GetString().size(), error) == b… in DoExecute()
|
/external/lldb/source/Target/ |
D | RegisterContext.cpp | 402 … const uint32_t bytes_written = process_sp->WriteMemory (dst_addr, dst, bytes_copied, error); in WriteRegisterValueToMemory()
|
/external/lldb/include/lldb/Core/ |
D | EmulateInstruction.h | 489 WriteMemory (const Context &context,
|
/external/lldb/source/API/ |
D | SBProcess.cpp | 1108 SBProcess::WriteMemory (addr_t addr, const void *src, size_t src_len, SBError &sb_error) in WriteMemory() function in SBProcess 1132 bytes_written = process_sp->WriteMemory (addr, src, src_len, sb_error.ref()); in WriteMemory()
|
/external/lldb/source/Plugins/Process/POSIX/ |
D | ProcessPOSIX.cpp | 569 return m_monitor->WriteMemory(vm_addr, buf, size, error); in DoWriteMemory()
|
/external/lldb/scripts/Python/ |
D | python-typemaps.swig | 100 // And SBProcess::WriteMemory.
|