Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp496 ->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 …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp266 OptionValueSP value_sp = reg_dict->GetValueForKey(sstr.GetString()); in LoadRegistersStateFromDictionary()
284 OptionValueSP value_sp = test_data->GetValueForKey(memory_key); in LoadStateFromDictionary()
294 value_sp = mem_dict->GetValueForKey(address_key); in LoadStateFromDictionary()
300 value_sp = mem_dict->GetValueForKey(data_key); in LoadStateFromDictionary()
318 value_sp = test_data->GetValueForKey(registers_key); in LoadStateFromDictionary()
329 value_sp = reg_dict->GetValueForKey(cpsr_name); in LoadStateFromDictionary()
H A DEmulateInstructionARM.cpp14360 OptionValueSP value_sp = test_data->GetValueForKey(opcode_key); in TestEmulation()
14388 value_sp = test_data->GetValueForKey(before_key); in TestEmulation()
14401 value_sp = test_data->GetValueForKey(after_key); in TestEmulation()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStructuredData.h419 ObjectSP GetValueForKey(llvm::StringRef key) const {
425 ObjectSP value_sp = GetValueForKey(key);
438 ObjectSP value_sp = GetValueForKey(key); in Dictionary()
466 ObjectSP value_sp = GetValueForKey(key); in GetValueForKey()
491 ObjectSP value_sp = GetValueForKey(key); in GetValueForKeyAsInteger()
501 ObjectSP value_sp = GetValueForKey(key); in GetValueForKeyAsInteger()
464 ObjectSP GetValueForKey(llvm::StringRef key) const { GetValueForKey() function
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DStructuredDataImpl.h103 StructuredData::ObjectSP GetValueForKey(const char *key) const { in GetValueForKey() function
107 return dict->GetValueForKey(llvm::StringRef(key)); in GetValueForKey()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBStructuredData.cpp178 lldb::SBStructuredData SBStructuredData::GetValueForKey(const char *key) const { in GetValueForKey() function in SBStructuredData
182 result.m_impl_up->SetObjectSP(m_impl_up->GetValueForKey(key)); in GetValueForKey()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueDictionary.h61 lldb::OptionValueSP GetValueForKey(llvm::StringRef key) const;
H A DOptionValueProperties.h94 virtual lldb::OptionValueSP GetValueForKey(const ExecutionContext *exe_ctx,
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueProperties.cpp53 OptionValueProperties::GetValueForKey(const ExecutionContext *exe_ctx, in GetValueForKey() function in OptionValueProperties
80 value_sp = GetValueForKey(exe_ctx, key); in GetSubValue()
484 lldb::OptionValueSP option_value_sp(GetValueForKey(exe_ctx, name)); in GetSubProperty()
H A DOptionValueDictionary.cpp277 value_sp = GetValueForKey(key); in GetSubValue()
307 OptionValueDictionary::GetValueForKey(llvm::StringRef key) const { in GetValueForKey() function in OptionValueDictionary
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBStructuredData.h69 lldb::SBStructuredData GetValueForKey(const char *key) const;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp742 auto object_sp = dict->GetValueForKey("suppress"); in GetRemoteUnixSignals()
747 object_sp = dict->GetValueForKey("stop"); in GetRemoteUnixSignals()
752 object_sp = dict->GetValueForKey("notify"); in GetRemoteUnixSignals()
757 object_sp = dict->GetValueForKey("description"); in GetRemoteUnixSignals()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp1433 StructuredData::ObjectSP obj_sp = opt_dict->GetValueForKey("groups"); in SetOptionsFromArray()
1443 obj_sp = opt_dict->GetValueForKey("required"); in SetOptionsFromArray()
1458 obj_sp = opt_dict->GetValueForKey("short_option"); in SetOptionsFromArray()
1493 obj_sp = opt_dict->GetValueForKey("value_type"); in SetOptionsFromArray()
1519 obj_sp = opt_dict->GetValueForKey("completion_type"); in SetOptionsFromArray()
1542 obj_sp = opt_dict->GetValueForKey("help"); in SetOptionsFromArray()
1562 obj_sp = opt_dict->GetValueForKey("enum_values"); in SetOptionsFromArray()
1932 = arg_dict->GetValueForKey("arg_type"); in CommandObjectScriptingObjectParsed()
1948 obj_sp = arg_dict->GetValueForKey("repeat"); in CommandObjectScriptingObjectParsed()
1965 obj_sp = arg_dict->GetValueForKey("groups"); in CommandObjectScriptingObjectParsed()
H A DCommandObjectBreakpoint.cpp2222 bkpt_dict->GetValueForKey(Breakpoint::GetSerializationKey()); in HandleOptionArgumentCompletion()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
H A DReportRetriever.cpp154 ->GetValueForKey("description") in FormatDescription()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DTelemetry.cpp125 auto value = dict->GetValueForKey(key); in GetAsNanosec()
H A DDisassembler.cpp942 OptionValueSP value_sp = data_dictionary->GetValueForKey(description_key); in TestEmulation()
952 value_sp = data_dictionary->GetValueForKey(triple_key); in TestEmulation()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp175 ->GetValueForKey("description") in NotifyBreakpointHit()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DStructuredData.cpp111 ObjectSP value = GetAsDictionary()->GetValueForKey(key); in GetObjectForDotSeparatedPath()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThread.cpp1874 StructuredData::ObjectSP id = activity_dict->GetValueForKey("id"); in GetDescription()
1875 StructuredData::ObjectSP name = activity_dict->GetValueForKey("name"); in GetDescription()
1891 breadcrumb_dict->GetValueForKey("name"); in GetDescription()
1912 message_dict->GetValueForKey("message"); in GetDescription()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.cpp360 sorted_threads[idx] = thread_info_sp->GetValueForKey(key); in DoUpdateThreadList()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp340 target_definition_sp->GetValueForKey("host-info")); in ParsePythonTargetDefinition()
344 host_info_dict->GetValueForKey("triple"); in ParsePythonTargetDefinition()
357 target_definition_sp->GetValueForKey("breakpoint-pc-offset"); in ParsePythonTargetDefinition()
H A DGDBRemoteCommunicationClient.cpp2709 element->GetValueForKey(llvm::StringRef("port"))) in QueryGDBServer()
2714 element->GetValueForKey(llvm::StringRef("socket_name"))) in QueryGDBServer()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp2516 info_dict->GetValueForKey("shared_cache_base_address"); in GetSharedCacheBaseAddress()

12