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

Declarations

tools/lldb/include/lldb/Utility/DataExtractor.h
  620   uint8_t GetU8(lldb::offset_t *offset_ptr) const;

References

tools/lldb/source/API/SBData.cpp
  192     value = m_opaque_sp->GetU8(&offset);
tools/lldb/source/Core/DumpDataExtractor.cpp
  262         s->Printf("%2.2x", DE.GetU8(&offset));
tools/lldb/source/Expression/DWARFExpression.cpp
  425     const uint8_t op = m_data.GetU8(&offset);
  461     const uint8_t op = m_data.GetU8(&offset);
  505     const uint8_t op = m_data.GetU8(&offset);
  547     const uint8_t op = m_data.GetU8(&offset);
 1053     const uint8_t op = opcodes.GetU8(&offset);
 1225       uint8_t size = opcodes.GetU8(&offset);
 1282                 stack.back().GetScalar() = addr_data.GetU8(&addr_data_offset);
 1371       stack.push_back(Scalar((uint8_t)opcodes.GetU8(&offset)));
 1374       stack.push_back(Scalar((int8_t)opcodes.GetU8(&offset)));
 1444       uint8_t pick_idx = opcodes.GetU8(&offset);
 2675     switch (debug_loc_data.GetU8(offset_ptr)) {
 2717   uint8_t opcode = data.GetU8(offset_ptr);
 2853     sint = (int8_t)data.GetU8(offset_ptr);
 2873     uint = data.GetU8(offset_ptr);
 2992   uint8_t opcode = opcodes.GetU8(&op_offset);
tools/lldb/source/Expression/IRMemoryMap.cpp
  744       scalar = extractor.GetU8(&offset);
tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
  186           m_opcode.SetOpcode8(data.GetU8(&data_offset), byte_order);
  332             const uint8_t uval8 = data.GetU8(&offset);
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp
  483           data.GetU8(&offset);
  484       m_dyld_all_image_infos.libSystemInitialized = data.GetU8(&offset);
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
 1237   uint8_t FormatVersion = data.GetU8(&Offset);
 1252     uint8_t Tag = data.GetU8(&Offset);
 1419               switch (data.GetU8(&offset)) {
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 1981   const uint8_t childrenCount = data.GetU8(&children_offset);
tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp
  461     m_coff_header_opt.major_linker_version = m_data.GetU8(offset_ptr);
  462     m_coff_header_opt.minor_linker_version = m_data.GetU8(offset_ptr);
  684             symbol.storage = symtab_data.GetU8(&offset);
  685             symbol.naux = symtab_data.GetU8(&offset);
tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
  361   pr_state = data.GetU8(&offset);
  362   pr_sname = data.GetU8(&offset);
  363   pr_zomb = data.GetU8(&offset);
  364   pr_nice = data.GetU8(&offset);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
   42   m_has_children = data.GetU8(offset_ptr);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.cpp
   59   m_header.addr_size = data.GetU8(offset_ptr);
   60   m_header.seg_size = data.GetU8(offset_ptr);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp
   26   uint8_t flags = debug_macro_data.GetU8(offset);
   45   uint8_t entry_count = debug_macro_data.GetU8(offset);
   48     debug_macro_data.GetU8(offset);
   54       debug_macro_data.GetU8(offset);
   65       static_cast<llvm::dwarf::MacroEntryType>(debug_macro_data.GetU8(offset));
  124         debug_macro_data.GetU8(offset));
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
  133     switch (data.GetU8(offset_ptr)) {
  263   uint8_t addrSize = data.GetU8(&offset);
  266   if (data.GetU8(&offset) != 0) {
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
   50       m_value.value.uval = data.GetU8(offset_ptr);
   86       m_value.value.uval = data.GetU8(offset_ptr);
  221     dw_uleb128_t size = debug_info_data.GetU8(offset_ptr);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
  751     header.m_unit_type = data.GetU8(offset_ptr);
  752     header.m_addr_size = data.GetU8(offset_ptr);
  758     header.m_addr_size = data.GetU8(offset_ptr);
tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
  267     cie_sp->version = m_cfi_data.GetU8(&offset);
  276       cie_sp->augmentation[i] = m_cfi_data.GetU8(&offset);
  298       cie_sp->address_size = m_cfi_data.GetU8(&offset);
  299       cie_sp->segment_size = m_cfi_data.GetU8(&offset);
  308             : m_cfi_data.GetU8(&offset);
  334             cie_sp->lsda_addr_encoding = m_cfi_data.GetU8(&offset);
  350               uint8_t arg_ptr_encoding = m_cfi_data.GetU8(&offset);
  364             cie_sp->ptr_encoding = m_cfi_data.GetU8(&offset);
  383       uint8_t inst = m_cfi_data.GetU8(&offset);
  639     uint8_t inst = m_cfi_data.GetU8(&offset);
  707           row->SlideOffset(m_cfi_data.GetU8(&offset) * code_align);
tools/lldb/source/Utility/DataExtractor.cpp
  533     return GetU8(offset_ptr);
 1003       sstr.Printf(format ? format : " %2.2x", GetU8(&offset));
 1006       char ch = GetU8(&offset);
tools/lldb/source/Utility/Scalar.cpp
 2557       operator=(data.GetU8(&offset));
 2604       operator=(static_cast<int8_t>(data.GetU8(&offset)));