Home
last modified time | relevance | path

Searched refs:WriteMemory (Results 1 – 25 of 32) sorted by relevance

12

/NextBSD/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/
HDUnwindAssemblyInstEmulation.h84 WriteMemory (lldb_private::EmulateInstruction *instruction,
113 WriteMemory (lldb_private::EmulateInstruction *instruction,
149 m_inst_emulator_ap->SetCallbacks (ReadMemory, WriteMemory, ReadRegister, WriteRegister); in UnwindAssemblyInstEmulation()
HDUnwindAssemblyInstEmulation.cpp359 UnwindAssemblyInstEmulation::WriteMemory (EmulateInstruction *instruction, in WriteMemory() function in UnwindAssemblyInstEmulation
367 …return ((UnwindAssemblyInstEmulation *)baton)->WriteMemory (instruction, context, addr, dst, dst_l… in WriteMemory()
372 UnwindAssemblyInstEmulation::WriteMemory (EmulateInstruction *instruction, in WriteMemory() function in UnwindAssemblyInstEmulation
/NextBSD/contrib/llvm/tools/lldb/source/Expression/
HDIRMemoryMap.cpp448 IRMemoryMap::WriteMemory (lldb::addr_t process_address, const uint8_t *bytes, size_t size, Error &e… in WriteMemory() function in IRMemoryMap
460 process_sp->WriteMemory(process_address, bytes, size, error); in WriteMemory()
501 process_sp->WriteMemory(process_address, bytes, size, error); in WriteMemory()
510 process_sp->WriteMemory(process_address, bytes, size, error); in WriteMemory()
542 return WriteMemory(process_address, buf, mem_size, error); in WriteScalarToMemory()
HDIRInterpreter.cpp244 m_memory_map.WriteMemory(process_address, buf.GetBytes(), buf.GetByteSize(), write_error); in AssignValue()
372 …m_memory_map.WriteMemory(process_address, (const uint8_t*)buffer.GetData(), constant_size, write_e… in ResolveConstant()
1351 memory_map.WriteMemory(D, buffer.GetBytes(), buffer.GetByteSize(), write_error); in Interpret()
1451 memory_map.WriteMemory(R, buffer.GetBytes(), buffer.GetByteSize(), write_error); in Interpret()
HDIRExecutionUnit.cpp62 WriteMemory(allocation_process_addr, bytes, size, error); in WriteNow()
866WriteMemory (record.m_process_address, (uint8_t*)record.m_host_address, record.m_size, err); in WriteData()
HDMaterializer.cpp123 map.WriteMemory (mem, in MakeAllocation()
549 … map.WriteMemory(m_temporary_allocation, data.GetDataStart(), data.GetByteSize(), write_error); in Materialize()
1217 …map.WriteMemory(load_addr, register_data.GetDataStart(), register_data.GetByteSize(), write_error); in Materialize()
/NextBSD/contrib/llvm/tools/lldb/source/Host/common/
HDSoftwareBreakpoint.cpp136 error = process.WriteMemory(addr, bp_opcode_bytes, bp_opcode_size, bytes_written); in EnableSoftwareBreakpoint()
244 … error = m_process.WriteMemory (m_addr, m_saved_opcodes, m_opcode_size, bytes_written); in DoDisable()
HDNativeRegisterContext.cpp480 error = process_sp->WriteMemory(dst_addr, dst, bytes_copied, bytes_written); in WriteRegisterValueToMemory()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
HDRegisterContextMemory.cpp162 …if (process_sp->WriteMemory(m_reg_data_addr, data_sp->GetBytes(), data_sp->GetByteSize(), error) =… in WriteAllRegisterValues()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Expression/
HDIRMemoryMap.h57 … void WriteMemory (lldb::addr_t process_address, const uint8_t *bytes, size_t size, Error &error);
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/
HDABIMacOSX_i386.cpp434 … if (process->WriteMemory(sp, cstr, cstr_length + 1, error) != (cstr_length + 1)) in PrepareNormalCall()
469 …if (process->WriteMemory(sp + (index * 4), &argLayout[index], sizeof(uint32_t), error) != sizeof(u… in PrepareNormalCall()
476 …if (process->WriteMemory (sp, &returnAddressU32, sizeof(returnAddressU32), error) != sizeof(return… in PrepareNormalCall()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/
HDABISysV_hexagon.cpp260 proc.get( )->WriteMemory( sp, arg.data_ap.get(), arg.size, error ); in PrepareTrivialCall()
319 proc->WriteMemory( sp + offs, (void*)&param, sizeof( param ), error ); in PrepareTrivialCall()
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDEmulateInstruction.cpp222 EmulateInstruction::WriteMemory (const Context &context, in WriteMemory() function in EmulateInstruction
323 return process_sp->WriteMemory (addr, src, src_len, error); in WriteMemoryFrame()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
HDProcessMonitor.h104 WriteMemory(lldb::addr_t vm_addr, const void *buf, size_t size,
HDProcessPOSIX.cpp563 return m_monitor->WriteMemory(vm_addr, buf, size, error); in DoWriteMemory()
HDProcessMonitor.cpp1374 ProcessMonitor::WriteMemory(lldb::addr_t vm_addr, const void *buf, size_t size, in WriteMemory() function in ProcessMonitor
/NextBSD/contrib/llvm/tools/lldb/include/lldb/API/
HDSBProcess.h252 WriteMemory (addr_t addr, const void *buf, size_t size, lldb::SBError &error);
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Host/common/
HDNativeProcessProtocol.h97 WriteMemory(lldb::addr_t addr, const void *buf, size_t size, size_t &bytes_written) = 0;
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/
HDEmulateInstructionARM64.cpp802 if (!WriteMemory(context_t, address + 0, buffer, reg_info_Rt.byte_size)) in Emulate_ldstpair()
811 if (!WriteMemory(context_t2, address + size, buffer, reg_info_Rt2.byte_size)) in Emulate_ldstpair()
/NextBSD/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectMemory.cpp1467 … size_t bytes_written = process->WriteMemory (addr, data_sp->GetBytes(), length, error); in DoExecute()
1605 if (process->WriteMemory (addr, value_str, len, error) == len) in DoExecute()
1674 …if (process->WriteMemory (addr, buffer.GetString().c_str(), buffer.GetString().size(), error) == b… in DoExecute()
/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDRegisterContext.cpp424 … const uint32_t bytes_written = process_sp->WriteMemory (dst_addr, dst, bytes_copied, error); in WriteRegisterValueToMemory()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDEmulateInstruction.h489 WriteMemory (const Context &context,
/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBProcess.cpp1192 SBProcess::WriteMemory (addr_t addr, const void *src, size_t src_len, SBError &sb_error) in WriteMemory() function in SBProcess
1213 bytes_written = process_sp->WriteMemory (addr, src, src_len, sb_error.ref()); in WriteMemory()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
HDRenderScriptRuntime.cpp546 GetProcess()->WriteMemory(addr, &flag, sizeof(flag), error); in LoadModule()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Target/
HDProcess.h2330 WriteMemory (lldb::addr_t vm_addr, const void *buf, size_t size, Error &error);

12