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

Declarations

tools/lldb/include/lldb/Utility/DataExtractor.h
  905   lldb::offset_t SetData(const DataExtractor &data, lldb::offset_t offset,

References

tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  416       if (segment_data.SetData(object_data, ph_offset, ph_size) != ph_size) {
  975   if (data.SetData(object_data, ph_offset, ph_size) != ph_size)
 1376   if (sh_data.SetData(object_data, sh_offset, sh_size) != sh_size)
 1395     if (shstr_data.SetData(object_data, offset, byte_size) == byte_size) {
 1411             if (section_size && (data.SetData(object_data, sheader.sh_offset,
 1477               data.SetData(object_data, sheader.sh_offset, section_size) == section_size)
 1483           if (section_size && (data.SetData(object_data, sheader.sh_offset,
 1504           if (section_size && (data.SetData(object_data, sheader.sh_offset,
 3219       if (data.SetData(m_data, H.p_offset, H.p_filesz) == H.p_filesz) {
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 2324     nlist_data.SetData(m_data, symtab_load_command.symoff,
 2326     strtab_data.SetData(m_data, symtab_load_command.stroff,
 2330       dyld_trie_data.SetData(m_data, dyld_info.export_off,
 2335       indirect_symbol_index_data.SetData(m_data, m_dysymtab.indirectsymoff,
 2339       function_starts_data.SetData(m_data, function_starts_load_command.dataoff,
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
  272     data.SetData(m_reg_data, reg_info->byte_offset, reg_info->byte_size);
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.cpp
  104     data.SetData(section_data, offsets->Offset, offsets->Length);
  106     data.SetData(section_data, 0, section_data.GetByteSize());
tools/lldb/source/Symbol/ObjectFile.cpp
  479   return data.SetData(m_data, offset, length);
tools/lldb/source/Utility/DataExtractor.cpp
  169     SetData(data, offset, length);