Home
last modified time | relevance | path

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

/freebsd-13.1/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.cpp375 core_objfile->CopyData(offset + file_start, bytes_to_read, buf); in DoReadMemory()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataBufferHeap.h96 void CopyData(const void *src, lldb::offset_t src_len);
97 void CopyData(llvm::StringRef src) { CopyData(src.data(), src.size()); } in CopyData() function
H A DDataExtractor.h347 lldb::offset_t CopyData(lldb::offset_t offset, lldb::offset_t length,
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DDataBufferHeap.cpp26 CopyData(src, src_len); in DataBufferHeap()
54 void DataBufferHeap::CopyData(const void *src, uint64_t src_len) { in CopyData() function in DataBufferHeap
H A DDataExtractor.cpp680 lldb::offset_t DataExtractor::CopyData(offset_t offset, offset_t length, in CopyData() function in DataExtractor
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp63 m_data_buffer.CopyData(v.m_data_buffer.GetBytes(), in Value()
81 m_data_buffer.CopyData(rhs.m_data_buffer.GetBytes(), in operator =()
92 m_data_buffer.CopyData(bytes, len); in SetBytes()
H A DValueObject.cpp753 heap_buf_ptr->CopyData((uint8_t *)(addr + offset), bytes_read); in GetPointeeData()
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp464 size_t ObjectFile::CopyData(lldb::offset_t offset, size_t length, in CopyData() function in ObjectFile
468 return m_data.CopyData(offset, length, dst); in CopyData()
502 return CopyData(section->GetFileOffset() + section_offset, in ReadSectionData()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp1041 buffer.CopyData(m_memory_options.m_string.GetStringValue()); in DoExecute()
1057 buffer.CopyData(&byte, 1); in DoExecute()
1061 buffer.CopyData(&word, 2); in DoExecute()
1065 buffer.CopyData(&lword, 4); in DoExecute()
1068 buffer.CopyData(&value, 8); in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp248 buffer->CopyData(bytes.data(), size); in MakeConstantLocationExpression()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h640 size_t CopyData(lldb::offset_t offset, size_t length, void *dst) const;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp3346 return data.CopyData(section_offset, dst_len, dst); in ReadSectionData()