| /freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/ |
| H A D | UnwindAssemblyInstEmulation.h | 70 m_inst_emulator_up->SetCallbacks(ReadMemory, WriteMemory, ReadRegister, in UnwindAssemblyInstEmulation() 81 WriteMemory(lldb_private::EmulateInstruction *instruction, void *baton, 103 size_t WriteMemory(lldb_private::EmulateInstruction *instruction,
|
| H A D | UnwindAssemblyInstEmulation.cpp | 317 size_t UnwindAssemblyInstEmulation::WriteMemory( in WriteMemory() function in UnwindAssemblyInstEmulation 323 ->WriteMemory(instruction, context, addr, dst, dst_len); in WriteMemory() 327 size_t UnwindAssemblyInstEmulation::WriteMemory( in WriteMemory() function in UnwindAssemblyInstEmulation
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | IRMemoryMap.cpp | 429 WriteMemory(aligned_address, zero_buf.data(), size, write_error); in Malloc() 543 void IRMemoryMap::WriteMemory(lldb::addr_t process_address, in WriteMemory() function in IRMemoryMap 554 process_sp->WriteMemory(process_address, bytes, size, error); in WriteMemory() 590 process_sp->WriteMemory(process_address, bytes, size, error); in WriteMemory() 598 process_sp->WriteMemory(process_address, bytes, size, error); in WriteMemory() 629 return WriteMemory(process_address, buf, mem_size, error); in WriteScalarToMemory()
|
| H A D | IRInterpreter.cpp | 250 m_execution_unit.WriteMemory(process_address, buf.GetBytes(), in AssignValue() 387 m_execution_unit.WriteMemory(process_address, buf.GetBytes(), in ResolveConstant() 1307 execution_unit.WriteMemory(D, buffer.GetBytes(), buffer.GetByteSize(), in Interpret() 1376 execution_unit.WriteMemory(R, buffer.GetBytes(), buffer.GetByteSize(), in Interpret()
|
| H A D | Materializer.cpp | 127 map.WriteMemory( in MakeAllocation() 584 map.WriteMemory(m_temporary_allocation, data.GetDataStart(), in Materialize() 1400 map.WriteMemory(load_addr, register_data.GetDataStart(), in Materialize()
|
| /freebsd/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBProcessDocstrings.i | 117 ) lldb::SBProcess::WriteMemory;
|
| H A D | SBProcessExtensions.i | 8 This functions the same as `WriteMemory` except a null-terminator is appended 15 return self.WriteMemory(addr, str, error)
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | RegisterContextMemory.cpp | 126 if (process_sp->WriteMemory(m_reg_data_addr, data_sp->GetBytes(), in WriteAllRegisterValues()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Expression/ |
| H A D | IRMemoryMap.h | 64 void WriteMemory(lldb::addr_t process_address, const uint8_t *bytes,
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/AIX/ |
| H A D | NativeProcessAIX.h | 83 Status WriteMemory(lldb::addr_t addr, const void *buf, size_t size,
|
| H A D | NativeProcessAIX.cpp | 197 Status NativeProcessAIX::WriteMemory(lldb::addr_t addr, const void *buf, in WriteMemory() function in NativeProcessAIX
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeProcessNetBSD.h | 63 Status WriteMemory(lldb::addr_t addr, const void *buf, size_t size,
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeProcessFreeBSD.h | 66 Status WriteMemory(lldb::addr_t addr, const void *buf, size_t size,
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/Hexagon/ |
| H A D | ABISysV_hexagon.cpp | 1093 proc->WriteMemory(sp, arg.data_up.get(), arg.size, error); in PrepareTrivialCall() 1144 proc->WriteMemory(sp + offs, (void *)¶m, sizeof(param), error); in PrepareTrivialCall()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/ |
| H A D | EmulateInstructionARM64.cpp | 838 if (!WriteMemory(context_t, address + 0, buffer.data(), in EmulateLDPSTP() 852 if (!WriteMemory(context_t2, address + size, buffer.data(), in EmulateLDPSTP() 1018 if (!WriteMemory(context, address, buffer.data(), reg_info_Rt->byte_size)) in EmulateLDRSTRImm()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | EmulateInstruction.cpp | 212 bool EmulateInstruction::WriteMemory(const Context &context, lldb::addr_t addr, in WriteMemory() function in EmulateInstruction 286 return process_sp->WriteMemory(addr, src, src_len, error); in WriteMemoryFrame()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARC/ |
| H A D | ABISysV_arc.cpp | 232 if (process->WriteMemory(sp, arg.data_up.get(), arg.size, error) < arg.size in PrepareTrivialCall() 289 if (process->WriteMemory(sp - offset, value, size, error) < size || in PrepareTrivialCall()
|
| /freebsd/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | NativeProcessProtocol.cpp | 398 error = WriteMemory(addr, saved.data(), saved.size(), bytes_written); in RemoveSoftwareBreakpoint() 457 error = WriteMemory(addr, expected_trap->data(), expected_trap->size(), in EnableSoftwareBreakpoint()
|
| H A D | NativeRegisterContext.cpp | 397 error = process.WriteMemory(dst_addr, dst.data(), bytes_copied, in WriteRegisterValueToMemory()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBProcess.h | 202 size_t WriteMemory(addr_t addr, const void *buf, size_t size,
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/ |
| H A D | EmulateInstructionPPC64.cpp | 312 WriteMemory(ctx, addr, &rs_val, sizeof(rs_val)); in EmulateSTD()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 747 process->WriteMemory(path_addr, path.c_str(), path_len, utility_error); in DoLoadImage() 823 process->WriteMemory(path_array_addr, path_array.data(), in DoLoadImage()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/ |
| H A D | NativeProcessProtocol.h | 129 virtual Status WriteMemory(lldb::addr_t addr, const void *buf, size_t size,
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectMemory.cpp | 1319 process->WriteMemory(addr, data_sp->GetBytes(), length, error); in DoExecute() 1451 if (process->WriteMemory(addr, entry.c_str(), len, error) == len) { in DoExecute() 1515 process->WriteMemory(addr, buffer_data, buffer_size, error); in DoExecute()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/ |
| H A D | ABISysV_riscv.cpp | 289 if (process->WriteMemory(sp, arg.data_up.get(), arg.size, error) < in PrepareTrivialCall() 344 if (process->WriteMemory(sp - offset, value, size, error) < size || in PrepareTrivialCall()
|