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

Declarations

tools/lldb/include/lldb/Utility/Stream.h
  154   size_t PutHex64(uint64_t uvalue,

References

tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 6226             buffer.PutHex64(segment.vmaddr);
 6227             buffer.PutHex64(segment.vmsize);
 6228             buffer.PutHex64(segment.fileoff);
 6229             buffer.PutHex64(segment.filesize);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  647     response.PutHex64(Size);
  650       response.PutHex64(Size); // TODO: replace with Host::GetSyswideErrorCode()
  786       response.PutHex64(Result->low());
  787       response.PutHex64(Result->high());
 1116   response.PutHex64(file_offset);
 1119   response.PutHex64(file_size);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
  773     response.PutHex64(tid_stop_info.details.exception.type);
  780       response.PutHex64(tid_stop_info.details.exception.data[i]);
 3152   response.PutHex64(file_load_address);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
  351     s.PutHex64(uvalue);
tools/lldb/source/Symbol/CompilerType.cpp
  916         strm.PutHex64(value.ULongLong());
  935         strm.PutHex64(value.SLongLong());
tools/lldb/source/Utility/Stream.cpp
  183   PutHex64(uval, m_byte_order);
  348     return PutHex64(uvalue, byte_order);
tools/lldb/unittests/Utility/StreamTest.cpp
  227   s.PutHex64(0x1234567890ABCDEFU, lldb::eByteOrderLittle);
  231   s.PutHex64(std::numeric_limits<uint64_t>::max(), lldb::eByteOrderLittle);
  235   s.PutHex64(0U, lldb::eByteOrderLittle);
  241   s.PutHex64(0x1234567890ABCDEFU, lldb::eByteOrderBig);
  245   s.PutHex64(std::numeric_limits<uint64_t>::max(), lldb::eByteOrderBig);
  249   s.PutHex64(0U, lldb::eByteOrderBig);