/external/llvm-project/lldb/include/lldb/Utility/ |
D | DataBufferHeap.h | 96 void CopyData(const void *src, lldb::offset_t src_len); 97 void CopyData(llvm::StringRef src) { CopyData(src.data(), src.size()); } in CopyData() function
|
D | DataExtractor.h | 347 lldb::offset_t CopyData(lldb::offset_t offset, lldb::offset_t length,
|
/external/llvm-project/lldb/source/Plugins/Process/elf-core/ |
D | RegisterContextPOSIXCore_ppc64le.cpp | 71 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()
|
D | RegisterContextPOSIXCore_powerpc.cpp | 76 offset = m_vec.CopyData(offset, reg_info->byte_size, &v); in ReadRegister()
|
/external/libbrillo/brillo/streams/ |
D | stream_utils_test.cc | 205 stream_utils::CopyData( in TEST_F() 225 stream_utils::CopyData( in TEST_F() 243 stream_utils::CopyData( in TEST_F() 263 stream_utils::CopyData( in TEST_F() 277 stream_utils::CopyData( in TEST_F() 293 stream_utils::CopyData( in TEST_F()
|
D | stream_utils.h | 92 BRILLO_EXPORT void CopyData(StreamPtr in_stream, 104 BRILLO_EXPORT void CopyData(StreamPtr in_stream,
|
D | stream_utils.cc | 192 void CopyData(StreamPtr in_stream, in CopyData() function 196 CopyData(std::move(in_stream), std::move(out_stream), in CopyData() 201 void CopyData(StreamPtr in_stream, in CopyData() function
|
/external/llvm-project/lldb/source/Utility/ |
D | DataBufferHeap.cpp | 26 CopyData(src, src_len); in DataBufferHeap() 54 void DataBufferHeap::CopyData(const void *src, uint64_t src_len) { in CopyData() function in DataBufferHeap
|
D | DataExtractor.cpp | 681 lldb::offset_t DataExtractor::CopyData(offset_t offset, offset_t length, in CopyData() function in DataExtractor
|
/external/llvm-project/openmp/libomptarget/deviceRTLs/common/ |
D | omptargeti.h | 66 INLINE void omptarget_nvptx_TaskDescr::CopyData( in CopyData() function 73 CopyData(sourceTaskDescr); in Copy() 79 CopyData(parentTaskDescr); in CopyParent()
|
D | omptarget.h | 125 INLINE void CopyData(omptarget_nvptx_TaskDescr *sourceTaskDescr);
|
/external/google-breakpad/src/common/linux/ |
D | elf_core_dump.h | 136 bool CopyData(void* buffer, Addr virtual_address, size_t length);
|
D | elf_core_dump.cc | 149 bool ElfCoreDump::CopyData(void* buffer, Addr virtual_address, size_t length) { in CopyData() function in google_breakpad::ElfCoreDump
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_pageobject.cpp | 74 void CPDF_PageObject::CopyData(const CPDF_PageObject* pSrc) { in CopyData() function in CPDF_PageObject
|
D | cpdf_pageobject.h | 81 void CopyData(const CPDF_PageObject* pSrcObject);
|
D | cpdf_textobject.cpp | 159 obj->CopyData(this); in Clone()
|
/external/llvm-project/lldb/source/Core/ |
D | Value.cpp | 66 m_data_buffer.CopyData(v.m_data_buffer.GetBytes(), in Value() 84 m_data_buffer.CopyData(rhs.m_data_buffer.GetBytes(), in operator =() 95 m_data_buffer.CopyData(bytes, len); in SetBytes()
|
/external/mesa3d/src/gallium/frontends/nine/ |
D | basetexture9.h | 104 BOOL CopyData );
|
D | basetexture9.c | 418 BOOL CopyData ) in NineBaseTexture9_CreatePipeResource() argument 454 if (old && CopyData) { /* Don't return without releasing old ! */ in NineBaseTexture9_CreatePipeResource()
|
/external/llvm-project/lldb/source/Symbol/ |
D | ObjectFile.cpp | 488 size_t ObjectFile::CopyData(lldb::offset_t offset, size_t length, in CopyData() function in ObjectFile 492 return m_data.CopyData(offset, length, dst); in CopyData() 526 return CopyData(section->GetFileOffset() + section_offset, in ReadSectionData()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectMemory.cpp | 1058 buffer.CopyData(m_memory_options.m_string.GetStringValue()); in DoExecute() 1074 buffer.CopyData(&byte, 1); in DoExecute() 1078 buffer.CopyData(&word, 2); in DoExecute() 1082 buffer.CopyData(&lword, 4); in DoExecute() 1085 buffer.CopyData(&value, 8); in DoExecute()
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
D | linux_core_dumper.cc | 89 if (!core_.CopyData(dest, virtual_address, length)) { in CopyFromProcess()
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
D | DWARFLocationExpression.cpp | 248 buffer->CopyData(bytes.data(), size); in MakeConstantLocationExpression()
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | ObjectFile.h | 630 size_t CopyData(lldb::offset_t offset, size_t length, void *dst) const;
|
/external/llvm-project/lldb/source/Plugins/Process/mach-core/ |
D | ProcessMachCore.cpp | 616 const size_t curr_bytes_read = core_objfile->CopyData( in DoReadMemory()
|