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

References

tools/lldb/source/Utility/DataExtractor.cpp
  991       if (sstr.GetSize() > 0) {
  992         log->PutString(sstr.GetString());
  993         sstr.Clear();
  997         sstr.Printf("0x%8.8" PRIx64 ":",
 1003       sstr.Printf(format ? format : " %2.2x", GetU8(&offset));
 1007       sstr.Printf(format ? format : " %c", isprint(ch) ? ch : ' ');
 1010       sstr.Printf(format ? format : " %4.4x", GetU16(&offset));
 1013       sstr.Printf(format ? format : " %8.8x", GetU32(&offset));
 1016       sstr.Printf(format ? format : " %16.16" PRIx64, GetU64(&offset));
 1019       sstr.Printf(format ? format : " 0x%" PRIx64, GetAddress(&offset));
 1022       sstr.Printf(format ? format : " 0x%" PRIx64, GetULEB128(&offset));
 1025       sstr.Printf(format ? format : " %" PRId64, GetSLEB128(&offset));
 1030   if (!sstr.Empty())
 1031     log->PutString(sstr.GetString());