Home
last modified time | relevance | path

Searched refs:GetValueForKey (Results 1 – 25 of 33) sorted by relevance

12

/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp494 ->GetValueForKey("issue_type") in FormatDescription()
618 ->GetValueForKey("description") in GenerateSummary()
627 ->GetValueForKey("mops") in GenerateSummary()
631 ->GetValueForKey("mops") in GenerateSummary()
635 ->GetValueForKey("trace"), in GenerateSummary()
639 ->GetValueForKey("stacks") in GenerateSummary()
643 ->GetValueForKey("stacks") in GenerateSummary()
647 ->GetValueForKey("trace"), in GenerateSummary()
655 ->GetValueForKey("locs") in GenerateSummary()
659 ->GetValueForKey("locs") in GenerateSummary()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderDarwin.cpp360 image_details->GetAsDictionary()->GetValueForKey("images"); in JSONImageInformationIntoImageInfo()
377 image->GetValueForKey("mach_header")->GetAsDictionary() == nullptr || in JSONImageInformationIntoImageInfo()
379 image->GetValueForKey("segments")->GetAsArray() == nullptr || in JSONImageInformationIntoImageInfo()
385 image->GetValueForKey("load_address")->GetAsInteger()->GetValue(); in JSONImageInformationIntoImageInfo()
387 image->GetValueForKey("mod_date")->GetAsInteger()->GetValue(); in JSONImageInformationIntoImageInfo()
389 image->GetValueForKey("pathname")->GetAsString()->GetValue(), in JSONImageInformationIntoImageInfo()
393 image->GetValueForKey("mach_header")->GetAsDictionary(); in JSONImageInformationIntoImageInfo()
395 mh->GetValueForKey("magic")->GetAsInteger()->GetValue(); in JSONImageInformationIntoImageInfo()
397 mh->GetValueForKey("cputype")->GetAsInteger()->GetValue(); in JSONImageInformationIntoImageInfo()
399 mh->GetValueForKey("cpusubtype")->GetAsInteger()->GetValue(); in JSONImageInformationIntoImageInfo()
[all …]
H A DDynamicLoaderMacOS.cpp165 ->GetValueForKey("process_state string") in IsFullyInitialized()
210 ->GetValueForKey("images") in DoInitialImageFetch()
399 ->GetValueForKey("images") in AddBinaries()
402 ->GetValueForKey("images") in AddBinaries()
572 base_address = info_dict->GetValueForKey("shared_cache_base_address") in GetSharedCacheInformation()
575 info_dict->GetValueForKey("shared_cache_uuid")->GetStringValue()); in GetSharedCacheInformation()
578 if (!info_dict->GetValueForKey("no_shared_cache")->GetBooleanValue()) in GetSharedCacheInformation()
582 if (info_dict->GetValueForKey("shared_cache_private_cache") in GetSharedCacheInformation()
H A DDynamicLoaderMacOSXDYLD.cpp563 ->GetValueForKey("images") in AddModulesUsingImageInfosAddress()
566 ->GetValueForKey("images") in AddModulesUsingImageInfosAddress()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp268 reg_dict->GetValueForKey(ConstString(sstr.GetString())); in LoadRegistersStateFromDictionary()
286 OptionValueSP value_sp = test_data->GetValueForKey(memory_key); in LoadStateFromDictionary()
296 value_sp = mem_dict->GetValueForKey(address_key); in LoadStateFromDictionary()
302 value_sp = mem_dict->GetValueForKey(data_key); in LoadStateFromDictionary()
320 value_sp = test_data->GetValueForKey(registers_key); in LoadStateFromDictionary()
331 value_sp = reg_dict->GetValueForKey(cpsr_name); in LoadStateFromDictionary()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DStructuredData.h405 ObjectSP GetValueForKey(llvm::StringRef key) const { in GetValueForKey() function
418 ObjectSP value_sp = GetValueForKey(key); in GetValueForKeyAsBoolean()
430 ObjectSP value_sp = GetValueForKey(key); in GetValueForKeyAsInteger()
451 ObjectSP value_sp = GetValueForKey(key); in GetValueForKeyAsString()
475 ObjectSP value_sp = GetValueForKey(key); in GetValueForKeyAsString()
496 ObjectSP value_sp = GetValueForKey(key); in GetValueForKeyAsDictionary()
506 ObjectSP value_sp = GetValueForKey(key); in GetValueForKeyAsArray()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp186 ->GetValueForKey("DBGSourcePathRemapping") in CreateInstance()
205 ->GetValueForKey("DBGVersion") in CreateInstance()
221 ->GetValueForKey("DBGSourcePathRemapping") in CreateInstance()
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DStructuredDataImpl.h113 StructuredData::ObjectSP GetValueForKey(const char *key) const { in GetValueForKey() function
117 return dict->GetValueForKey(llvm::StringRef(key)); in GetValueForKey()
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBStructuredData.cpp149 lldb::SBStructuredData SBStructuredData::GetValueForKey(const char *key) const { in GetValueForKey() function in SBStructuredData
153 result.m_impl_up->SetObjectSP(m_impl_up->GetValueForKey(key)); in GetValueForKey()
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Din_call_stack.py12 name = arg_dict.GetValueForKey('name').GetStringValue(1000)
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBStructuredData.i41 lldb::SBStructuredData GetValueForKey(const char *key) const;
/openbsd-src/gnu/llvm/lldb/examples/python/scripted_process/
H A Dcrashlog_scripted_process.py74 crashlog_path = args.GetValueForKey("file_path")
83 load_all_images = args.GetValueForKey("load_all_images")
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBStructuredData.h59 lldb::SBStructuredData GetValueForKey(const char *key) const;
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DOptionValueDictionary.h61 lldb::OptionValueSP GetValueForKey(ConstString key) const;
H A DOptionValueProperties.h99 virtual lldb::OptionValueSP GetValueForKey(const ExecutionContext *exe_ctx,
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Ddecorators.py886 value_node = config.GetValueForKey(key)
887 return value_node.GetValueForKey("value").GetBooleanValue(fail_value)
907 targets = config.GetValueForKey("targets").GetValueForKey("value")
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp733 auto object_sp = dict->GetValueForKey("suppress"); in GetRemoteUnixSignals()
738 object_sp = dict->GetValueForKey("stop"); in GetRemoteUnixSignals()
743 object_sp = dict->GetValueForKey("notify"); in GetRemoteUnixSignals()
748 object_sp = dict->GetValueForKey("description"); in GetRemoteUnixSignals()
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DOptionValueDictionary.cpp270 value_sp = GetValueForKey(ConstString(key)); in GetSubValue()
300 OptionValueDictionary::GetValueForKey(ConstString key) const { in GetValueForKey() function in OptionValueDictionary
H A DOptionValueProperties.cpp79 OptionValueProperties::GetValueForKey(const ExecutionContext *exe_ctx, in GetValueForKey() function in OptionValueProperties
106 value_sp = GetValueForKey(exe_ctx, key, will_modify); in GetSubValue()
699 lldb::OptionValueSP option_value_sp(GetValueForKey(exe_ctx, name, false)); in GetSubProperty()
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp194 ->GetValueForKey("description") in FormatDescription()
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp174 ->GetValueForKey("description") in NotifyBreakpointHit()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp300 module_env_option = map->GetValueForKey(name); in GetModuleSpecifications()
305 map->GetValueForKey(ConstString(llvm::StringRef(name_lower))); in GetModuleSpecifications()
311 module_env_option = map->GetValueForKey(ConstString(name_stripped)); in GetModuleSpecifications()
317 map->GetValueForKey(ConstString(llvm::StringRef(name_lower))); in GetModuleSpecifications()
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DStructuredData.cpp108 ObjectSP value = this->GetAsDictionary()->GetValueForKey(key); in GetObjectForDotSeparatedPath()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DThread.cpp1823 StructuredData::ObjectSP id = activity_dict->GetValueForKey("id"); in GetDescription()
1824 StructuredData::ObjectSP name = activity_dict->GetValueForKey("name"); in GetDescription()
1840 breadcrumb_dict->GetValueForKey("name"); in GetDescription()
1861 message_dict->GetValueForKey("message"); in GetDescription()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.cpp333 sorted_threads[idx] = thread_info_sp->GetValueForKey(key); in DoUpdateThreadList()

12