Home
last modified time | relevance | path

Searched refs:CopyData (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_ppc64le.cpp71 offset = m_fpr.CopyData(offset, reg_info->byte_size, &v); in ReadRegister()
80 offset = m_vmx.CopyData(offset, reg_info->byte_size, &v); in ReadRegister()
92 tmp_offset = m_vsx.CopyData(offset / 2, reg_info->byte_size / 2, &v); in ReadRegister()
99 tmp_offset = m_fpr.CopyData(offset / 2, reg_info->byte_size / 2, dst); in ReadRegister()
109 m_vmx.CopyData(offset - GetVSXSize() / 2, reg_info->byte_size, &v); in ReadRegister()
H A DRegisterContextPOSIXCore_powerpc.cpp76 offset = m_vec.CopyData(offset, reg_info->byte_size, &v); in ReadRegister()
H A DProcessElfCore.cpp406 core_objfile->CopyData(offset + file_start, bytes_to_read, buf); in DoReadMemory()
438 return core_objfile->CopyData(offset, length, dst); in ReadMemoryTags()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataBufferHeap.h99 void CopyData(const void *src, lldb::offset_t src_len);
100 void CopyData(llvm::StringRef src) { CopyData(src.data(), src.size()); } in CopyData() function
H A DDataExtractor.h358 lldb::offset_t CopyData(lldb::offset_t offset, lldb::offset_t length,
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DDataBufferHeap.cpp26 CopyData(src, src_len); in DataBufferHeap()
30 CopyData(data_buffer.GetBytes(), data_buffer.GetByteSize()); in DataBufferHeap()
53 void DataBufferHeap::CopyData(const void *src, uint64_t src_len) { in CopyData() function in DataBufferHeap
H A DDataExtractor.cpp679 lldb::offset_t DataExtractor::CopyData(offset_t offset, offset_t length, in CopyData() function in DataExtractor
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/
H A DObjectContainerMachOFileset.cpp152 data.CopyData(load_cmd_offset, sizeof(segment_command_64), &segment); in ParseFileset()
160 data.CopyData(load_cmd_offset, sizeof(fileset_entry_command), &entry); in ParseFileset()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp61 m_data_buffer.CopyData(v.m_data_buffer.GetBytes(), in Value()
79 m_data_buffer.CopyData(rhs.m_data_buffer.GetBytes(), in operator =()
90 m_data_buffer.CopyData(bytes, len); in SetBytes()
H A DValueObject.cpp708 heap_buf_ptr->CopyData((uint8_t *)(addr + offset), bytes_read); in GetPointeeData()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp469 size_t ObjectFile::CopyData(lldb::offset_t offset, size_t length, in CopyData() function in ObjectFile
473 return m_data.CopyData(offset, length, dst); in CopyData()
507 return CopyData(section->GetFileOffset() + section_offset, in ReadSectionData()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp1052 buffer.CopyData(str); in DoExecute()
1070 buffer.CopyData(&byte, 1); in DoExecute()
1074 buffer.CopyData(&word, 2); in DoExecute()
1078 buffer.CopyData(&lword, 4); in DoExecute()
1081 buffer.CopyData(&value, 8); in DoExecute()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h668 size_t CopyData(lldb::offset_t offset, size_t length, void *dst) const;
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp254 buffer->CopyData(bytes.data(), size); in MakeConstantLocationExpression()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.cpp102 if (m_reg_data.CopyData(parent_reg->byte_offset, parent_reg->byte_size, in ReadRegister()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp3529 return data.CopyData(section_offset, dst_len, dst); in ReadSectionData()