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

References

tools/lldb/include/lldb/Core/StructuredDataImpl.h
  110         return dict->GetValueForKey(llvm::StringRef(key));
tools/lldb/include/lldb/Utility/StructuredData.h
  392       ObjectSP value_sp = GetValueForKey(key);
  404       ObjectSP value_sp = GetValueForKey(key);
  425       ObjectSP value_sp = GetValueForKey(key);
  449       ObjectSP value_sp = GetValueForKey(key);
  470       ObjectSP value_sp = GetValueForKey(key);
  480       ObjectSP value_sp = GetValueForKey(key);
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
  342       image_details->GetAsDictionary()->GetValueForKey("images");
  359         image->GetValueForKey("mach_header")->GetAsDictionary() == nullptr ||
  361         image->GetValueForKey("segments")->GetAsArray() == nullptr ||
  367         image->GetValueForKey("load_address")->GetAsInteger()->GetValue();
  369         image->GetValueForKey("mod_date")->GetAsInteger()->GetValue();
  371         image->GetValueForKey("pathname")->GetAsString()->GetValue(),
  375         image->GetValueForKey("mach_header")->GetAsDictionary();
  377         mh->GetValueForKey("magic")->GetAsInteger()->GetValue();
  379         mh->GetValueForKey("cputype")->GetAsInteger()->GetValue();
  381         mh->GetValueForKey("cpusubtype")->GetAsInteger()->GetValue();
  383         mh->GetValueForKey("filetype")->GetAsInteger()->GetValue();
  386       std::string os_name = image->GetValueForKey("min_version_os_name")
  406           image->GetValueForKey("min_version_os_sdk")
  416           mh->GetValueForKey("flags")->GetAsInteger()->GetValue();
  422           mh->GetValueForKey("ncmds")->GetAsInteger()->GetValue();
  428           mh->GetValueForKey("sizeofcmds")->GetAsInteger()->GetValue();
  433         image->GetValueForKey("segments")->GetAsArray();
  440           ConstString(seg->GetValueForKey("name")->GetAsString()->GetValue());
  442           seg->GetValueForKey("vmaddr")->GetAsInteger()->GetValue();
  444           seg->GetValueForKey("vmsize")->GetAsInteger()->GetValue();
  446           seg->GetValueForKey("fileoff")->GetAsInteger()->GetValue();
  448           seg->GetValueForKey("filesize")->GetAsInteger()->GetValue();
  450           seg->GetValueForKey("maxprot")->GetAsInteger()->GetValue();
  457             seg->GetValueForKey("initprot")->GetAsInteger()->GetValue();
  463             seg->GetValueForKey("flags")->GetAsInteger()->GetValue();
  469             seg->GetValueForKey("nsects")->GetAsInteger()->GetValue();
  477         image->GetValueForKey("uuid")->GetAsString()->GetValue());
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.cpp
  172           ->GetValueForKey("images")
  319           ->GetValueForKey("images")
  322               ->GetValueForKey("images")
  479       base_address = info_dict->GetValueForKey("shared_cache_base_address")
  482           info_dict->GetValueForKey("shared_cache_uuid")->GetStringValue();
  485       if (!info_dict->GetValueForKey("no_shared_cache")->GetBooleanValue())
  489       if (info_dict->GetValueForKey("shared_cache_private_cache")
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp
  542           ->GetValueForKey("images")
  545               ->GetValueForKey("images")
tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
  194                                 ->GetValueForKey("description")
tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
  175                                 ->GetValueForKey("description")
tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
  491                                 ->GetValueForKey("issue_type")
  616                             ->GetValueForKey("description")
  625           ->GetValueForKey("mops")
  629                                         ->GetValueForKey("mops")
  633                                         ->GetValueForKey("trace"),
  637           ->GetValueForKey("stacks")
  641                                         ->GetValueForKey("stacks")
  645                                         ->GetValueForKey("trace"),
  653           ->GetValueForKey("locs")
  657                                        ->GetValueForKey("locs")
  661                                   ->GetValueForKey("object_type")
  668                       ->GetValueForKey("address")
  673                  ->GetValueForKey("start")
  686                    ->GetValueForKey("file_descriptor")
  722           ->GetValueForKey("locs")
  726                                        ->GetValueForKey("locs")
  730         loc->GetAsDictionary()->GetValueForKey("type")->GetStringValue();
  733                         ->GetValueForKey("address")
  752                         ->GetValueForKey("start")
  756                       ->GetValueForKey("size")
  760                                     ->GetValueForKey("object_type")
  772                     ->GetValueForKey("thread_id")
  778                     ->GetValueForKey("thread_id")
  784                    ->GetValueForKey("file_descriptor")
  981         o->GetAsDictionary()->GetValueForKey("type")->GetStringValue();
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  758         auto object_sp = dict->GetValueForKey("suppress");
  763         object_sp = dict->GetValueForKey("stop");
  768         object_sp = dict->GetValueForKey("notify");
  773         object_sp = dict->GetValueForKey("description");
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
 2551             element->GetValueForKey(llvm::StringRef("port")))
 2556             element->GetValueForKey(llvm::StringRef("socket_name")))
 3470           json_dict->GetValueForKey("params");
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
 1069       json_dict->GetValueForKey("params");
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  351           target_definition_sp->GetValueForKey("host-info"));
  355               host_info_dict->GetValueForKey("triple");
  367           target_definition_sp->GetValueForKey("breakpoint-pc-offset");
tools/lldb/source/Target/Target.cpp
 1101         bkpt_dict->GetValueForKey(Breakpoint::GetSerializationKey());
tools/lldb/source/Target/Thread.cpp
 1985       StructuredData::ObjectSP id = activity_dict->GetValueForKey("id");
 1986       StructuredData::ObjectSP name = activity_dict->GetValueForKey("name");
 2002           breadcrumb_dict->GetValueForKey("name");
 2023                 message_dict->GetValueForKey("message");
tools/lldb/source/Utility/StructuredData.cpp
  102     ObjectSP value = this->GetAsDictionary()->GetValueForKey(key);
tools/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp
  296   object_sp = dict_sp->GetValueForKey("packet_speeds");
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
  551   auto string_sp = dict_sp->GetValueForKey(string_key0)->GetAsString();
  552   auto int_sp = dict_sp->GetValueForKey(string_key1)->GetAsInteger();
  620           structured_dict_ptr->GetValueForKey(key_name);