Home
last modified time | relevance | path

Searched refs:HasKey (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderDarwin.cpp374 !image->HasKey("pathname") || in JSONImageInformationIntoImageInfo()
375 !image->HasKey("mod_date") || in JSONImageInformationIntoImageInfo()
376 !image->HasKey("mach_header") || in JSONImageInformationIntoImageInfo()
378 !image->HasKey("segments") || in JSONImageInformationIntoImageInfo()
380 !image->HasKey("uuid")) { in JSONImageInformationIntoImageInfo()
442 if (mh->HasKey("flags")) in JSONImageInformationIntoImageInfo()
448 if (mh->HasKey("ncmds")) in JSONImageInformationIntoImageInfo()
454 if (mh->HasKey("sizeofcmds")) in JSONImageInformationIntoImageInfo()
483 if (seg->HasKey("initprot")) in JSONImageInformationIntoImageInfo()
489 if (seg->HasKey("flags")) in JSONImageInformationIntoImageInfo()
[all …]
H A DDynamicLoaderMacOS.cpp179 all_image_info_json_sp->GetAsDictionary()->HasKey("images") && in DoInitialImageFetch()
368 binaries_info_sp->GetAsDictionary()->HasKey("images") && in AddBinaries()
540 if (info_dict && info_dict->HasKey("shared_cache_uuid") && in GetSharedCacheInformation()
541 info_dict->HasKey("no_shared_cache") && in GetSharedCacheInformation()
542 info_dict->HasKey("shared_cache_base_address")) { in GetSharedCacheInformation()
H A DDynamicLoaderMacOSXDYLD.cpp551 image_infos_json_sp->GetAsDictionary()->HasKey("images") && in AddModulesUsingImageInfosAddress()
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp239 if (key && options_dict.HasKey(key)) { in CreateFromStructuredData()
249 if (key && options_dict.HasKey(key)) { in CreateFromStructuredData()
259 if (key && options_dict.HasKey(key)) { in CreateFromStructuredData()
269 if (key && options_dict.HasKey(key)) { in CreateFromStructuredData()
279 if (key && options_dict.HasKey(key)) { in CreateFromStructuredData()
H A DBreakpointResolverAddress.cpp49 success = options_dict.HasKey(GetKey(OptionNames::ModuleName)); in CreateFromStructuredData()
/llvm-project-15.0.7/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.cpp430 bool has_path = dict->HasKey("path"); in GetLoadedDynamicLibrariesInfos()
431 bool has_uuid = dict->HasKey("uuid"); in GetLoadedDynamicLibrariesInfos()
434 if (!dict->HasKey("load_addr")) in GetLoadedDynamicLibrariesInfos()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp184 plist_sp->GetAsDictionary()->HasKey( in CreateInstance()
203 if (plist_sp->GetAsDictionary()->HasKey("DBGVersion")) { in CreateInstance()
/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/
H A DPythonDataObjectsTests.cpp521 EXPECT_TRUE(dict_sp->HasKey(string_key0)); in TEST_F()
522 EXPECT_TRUE(dict_sp->HasKey(string_key1)); in TEST_F()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DStructuredData.h498 bool HasKey(llvm::StringRef key) const { in HasKey() function