reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/DataBufferHeap.h
   96   void CopyData(const void *src, lldb::offset_t src_len);

References

tools/lldb/include/lldb/Utility/DataBufferHeap.h
   97   void CopyData(llvm::StringRef src) { CopyData(src.data(), src.size()); }
tools/lldb/source/Commands/CommandObjectMemory.cpp
 1080           buffer.CopyData(&byte, 1);
 1084           buffer.CopyData(&word, 2);
 1088           buffer.CopyData(&lword, 4);
 1091           buffer.CopyData(&value, 8);
tools/lldb/source/Core/Value.cpp
   67     m_data_buffer.CopyData(v.m_data_buffer.GetBytes(),
   86       m_data_buffer.CopyData(rhs.m_data_buffer.GetBytes(),
   97   m_data_buffer.CopyData(bytes, len);
tools/lldb/source/Core/ValueObject.cpp
  851         heap_buf_ptr->CopyData((uint8_t *)(addr + offset), bytes_read);
tools/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.cpp
  248   buffer->CopyData(bytes.data(), size);
tools/lldb/source/Utility/DataBufferHeap.cpp
   26   CopyData(src, src_len);