Searched refs:ReadMemory (Results 26 - 50 of 70) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DEmulateInstruction.cpp157 size_t EmulateInstruction::ReadMemory(const Context &context, lldb::addr_t addr, function in class:EmulateInstruction
260 return process_sp->ReadMemory(addr, dst, dst_len, error);
H A DValue.cpp552 if (exe_ctx->GetTargetRef().ReadMemory(file_so_addr, prefer_file_cache,
567 process->ReadMemory(address, dst, byte_size, error);
H A DDisassembler.cpp1141 target.ReadMemory(m_instructions[i]->GetAddress(), prefer_file_cache,
1200 const size_t bytes_read = target->ReadMemory(
1246 target->ReadMemory(start, prefer_file_cache, heap_buffer->GetBytes(),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp40 if (process_sp->GetTarget().ReadMemory(
360 size_t UnwindAssemblyInstEmulation::ReadMemory( function in class:UnwindAssemblyInstEmulation
369 "UnwindAssemblyInstEmulation::ReadMemory (addr = 0x%16.16" PRIx64
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBTarget.i560 The amount of data read in host bytes.") ReadMemory;
562 ReadMemory (const SBAddress addr, void *buf, size_t size, lldb::SBError &error);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h604 static lldb::DataBufferSP ReadMemory(const lldb::ProcessSP &process_sp,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DNativeRegisterContext.cpp346 error = process.ReadMemory(src_addr, src, src_len, bytes_read);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h81 virtual Status ReadMemory(lldb::addr_t addr, void *buf, size_t size,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp392 m_execution_unit.ReadMemory(buf.GetBytes(), addr, length, read_error);
1230 execution_unit.ReadMemory(buffer.GetBytes(), R, buffer.GetByteSize(),
1309 execution_unit.ReadMemory(buffer.GetBytes(), D, buffer.GetByteSize(),
1448 execution_unit.ReadMemory(rawArgs[i].data_up.get(), addr, dataSize,
H A DIRExecutionUnit.cpp75 ReadMemory(my_buffer.GetBytes(), allocation_process_addr, size, err);
155 process->ReadMemory(func_remote_addr, buffer_sp->GetBytes(),
455 ReadMemory(my_buffer.GetBytes(), record.m_process_address,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp882 if (!ReadMemory(context_t, address, buffer, reg_info_Rt.byte_size))
897 if (!ReadMemory(context_t2, address + size, buffer,
1030 if (!ReadMemory(context, address, buffer, reg_info_Rt.byte_size))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp673 bytes_read = target->ReadMemory(address, false, data_sp->GetBytes(),
1009 m_process_sp->ReadMemory(m_base_addr + offset, &retval, 1, error)) {
1128 process->ReadMemory(
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTarget.h528 size_t ReadMemory(const SBAddress addr, void *buf, size_t size,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DEmulateInstruction.h411 size_t ReadMemory(const Context &context, lldb::addr_t addr, void *dst,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DRegisterContext.cpp337 process_sp->ReadMemory(src_addr, src, src_len, error);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp129 size_t bytes_read = process->ReadMemory(from_addr, data.GetBytes(),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp139 ctx.process->ReadMemory(sp, &arg.value, sizeof(uint32_t), err);
207 size_t read = ctx.process->ReadMemory(sp, &arg.value, size, err);
251 ctx.process->ReadMemory(sp, &arg.value, arg_size, err);
327 ctx.process->ReadMemory(sp, &arg.value, arg_size, err);
374 ctx.process->ReadMemory(sp, &arg.value, arg_size, err);
1159 m_process->ReadMemory(addr_t(args[eGroupName]), buffer.get(), len, err);
1204 m_process->ReadMemory(ptr_addr, &kernel_addr, target_ptr_size, err);
1305 size_t read = m_process->ReadMemory(addr, &result, target_ptr_size, err);
2383 GetProcess()->ReadMemory(data_ptr, buffer.get(), size, err);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp311 process_sp->ReadMemory(m_header_addr, memory_buffer, actual_size, error);
352 bytes_read = process_sp->ReadMemory(desc_ptr, dst, desc_array_size, error);
H A DAppleObjCRuntimeV2.cpp1455 if (process->ReadMemory(class_infos_addr, buffer.GetBytes(),
1765 if (process->ReadMemory(class_infos_addr, buffer.GetBytes(),
2538 size_t bytes_read = process->ReadMemory(
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/
H A DNativeProcessDarwin.cpp712 read_error = ReadMemory(info_array_count_addr, // source addr
1460 Status NativeProcessDarwin::ReadMemory(lldb::addr_t addr, void *buf, function in class:NativeProcessDarwin
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBProcess.cpp866 size_t SBProcess::ReadMemory(addr_t addr, void *dst, size_t dst_len, function in class:SBProcess
868 LLDB_RECORD_DUMMY(size_t, SBProcess, ReadMemory,
882 bytes_read = process_sp->ReadMemory(addr, dst, dst_len, sb_error.ref());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp264 process_sp->ReadMemory(addr, buffer_sp->GetBytes(),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-hexagon/
H A DABISysV_hexagon.cpp1173 proc->ReadMemory(addr, (void *)&data, sizeof(data), error);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp284 size_t ProcessElfCore::ReadMemory(lldb::addr_t addr, void *buf, size_t size, function in class:ProcessElfCore
286 // Don't allow the caching that lldb_private::Process::ReadMemory does since
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp453 return exe_ctx->GetProcessPtr()->ReadMemory(addr, dst, byte_size,

Completed in 448 milliseconds

123