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

References

tools/lldb/include/lldb/Utility/StructuredData.h
  417       bool success = GetValueForKeyAsInteger<IntType>(key, result);
tools/lldb/source/Breakpoint/BreakpointOptions.cpp
  279     success = options_dict.GetValueForKeyAsInteger(key, ignore_count);
tools/lldb/source/Breakpoint/BreakpointResolver.cpp
  105   success = subclass_options->GetValueForKeyAsInteger(
tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
   46   success = options_dict.GetValueForKeyAsInteger(
tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
   53   success = options_dict.GetValueForKeyAsInteger(
   61       options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Column), column);
tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
  111       options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Offset), offset);
tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
  231   if (!thread_dict.GetValueForKeyAsInteger("tid", tid))
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  749         if (!dict->GetValueForKeyAsInteger("signo", signo))
tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
  264     if (!reg_info_dict->GetValueForKeyAsInteger("bitsize", bitsize)) {
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
 3459       json_dict->GetValueForKeyAsInteger<uint64_t>("metabuffersize",
 3463       json_dict->GetValueForKeyAsInteger<uint64_t>("buffersize", buffersize);
 3466       json_dict->GetValueForKeyAsInteger<uint64_t>("type", type);
 3611   if (!dict->GetValueForKeyAsInteger("file_offset", integer))
 3615   if (!dict->GetValueForKeyAsInteger("file_size", integer))
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
 1056   json_dict->GetValueForKeyAsInteger("metabuffersize", metabuffersize);
 1059   json_dict->GetValueForKeyAsInteger("buffersize", buffersize);
 1062   json_dict->GetValueForKeyAsInteger("type", type);
 1065   json_dict->GetValueForKeyAsInteger("threadid", tid);
 1118   if (!json_dict->GetValueForKeyAsInteger("traceid", uid))
 1121   json_dict->GetValueForKeyAsInteger("threadid", tid);
 1156   if (!json_dict->GetValueForKeyAsInteger("traceid", uid))
 1160   json_dict->GetValueForKeyAsInteger("threadid", threadid);
 1223   if (!json_dict->GetValueForKeyAsInteger("traceid", uid) ||
 1224       !json_dict->GetValueForKeyAsInteger("offset", offset) ||
 1225       !json_dict->GetValueForKeyAsInteger("buffersize", byte_count))
 1228   json_dict->GetValueForKeyAsInteger("threadid", tid);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 1581           if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>("tid", tid))
 2124             if (mem_cache_dict->GetValueForKeyAsInteger<lldb::addr_t>(
tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
 1212           if (event->GetValueForKeyAsInteger("timestamp", timestamp)) {
 1710     if (event.GetValueForKeyAsInteger("timestamp", timestamp)) {
tools/lldb/source/Target/ThreadSpec.cpp
   32   bool success = spec_dict.GetValueForKeyAsInteger(
   38       spec_dict.GetValueForKeyAsInteger(GetKey(OptionNames::ThreadID), tid);
tools/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp
  302   ASSERT_TRUE(dict_sp->GetValueForKeyAsInteger("num_packets", num_packets))
  516   ASSERT_TRUE(custom_params->GetValueForKeyAsInteger("psb", psb_value));
tools/lldb/unittests/tools/lldb-server/tests/MessageObjects.cpp
  114     thread_info->GetValueForKeyAsInteger("signal", signal);
  116     thread_info->GetValueForKeyAsInteger("tid", tid);