| /llvm-project/lldb/source/Target/ |
| H A D | DynamicRegisterInfo.cpp | 180 if (reg_info_dict.GetValueForKeyAsInteger("offset", byte_offset)) in ByteOffsetFromRegInfoDict() 280 if (!reg_info_dict->GetValueForKeyAsInteger("bitsize", bitsize)) { in SetRegisterInfo() 301 reg_info_dict->GetValueForKeyAsInteger("format", reg_info.format, in SetRegisterInfo() 309 reg_info_dict->GetValueForKeyAsInteger("encoding", reg_info.encoding, in SetRegisterInfo() 313 if (!reg_info_dict->GetValueForKeyAsInteger("set", set) || in SetRegisterInfo() 327 reg_info_dict->GetValueForKeyAsInteger("gcc", eh_frame_regno, in SetRegisterInfo() 330 reg_info_dict->GetValueForKeyAsInteger("ehframe", eh_frame_regno, in SetRegisterInfo() 333 reg_info_dict->GetValueForKeyAsInteger( in SetRegisterInfo() 340 reg_info_dict->GetValueForKeyAsInteger( in SetRegisterInfo()
|
| H A D | ThreadSpec.cpp | 30 bool success = spec_dict.GetValueForKeyAsInteger( in CreateFromStructuredData() 36 spec_dict.GetValueForKeyAsInteger(GetKey(OptionNames::ThreadID), tid); in CreateFromStructuredData()
|
| /llvm-project/lldb/source/Plugins/Process/scripted/ |
| H A D | ScriptedThread.cpp | 192 if (!dict->GetValueForKeyAsInteger("pc", pc)) in LoadArtificialStackFrames() 235 if (!dict_sp->GetValueForKeyAsInteger("type", stop_reason_type)) in CalculateStopInfo() 253 data_dict->GetValueForKeyAsInteger("break_id", break_id, in CalculateStopInfo() 261 if (!data_dict->GetValueForKeyAsInteger("signal", signal)) { in CalculateStopInfo()
|
| H A D | ScriptedProcess.cpp | 475 dict->GetValueForKeyAsInteger("load_addr", load_addr); in GetLoadedDynamicLibrariesInfos() 476 dict->GetValueForKeyAsInteger("slide", slide); in GetLoadedDynamicLibrariesInfos()
|
| /llvm-project/lldb/source/Plugins/OperatingSystem/Python/ |
| H A D | OperatingSystemPython.cpp | 231 if (!thread_dict.GetValueForKeyAsInteger("tid", tid)) in CreateThreadFromThreadInfo() 239 thread_dict.GetValueForKeyAsInteger("core", core_number, UINT32_MAX); in CreateThreadFromThreadInfo() 240 thread_dict.GetValueForKeyAsInteger("register_data_addr", reg_data_addr, in CreateThreadFromThreadInfo()
|
| /llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
| H A D | TraceIntelPT.cpp | 666 dict->GetValueForKeyAsInteger("iptTraceSize", ipt_trace_size); in Start() 667 dict->GetValueForKeyAsInteger("processBufferSizeLimit", in Start() 670 dict->GetValueForKeyAsInteger("psbPeriod", psb_period); in Start() 717 dict->GetValueForKeyAsInteger("iptTraceSize", ipt_trace_size); in Start() 721 dict->GetValueForKeyAsInteger("psbPeriod", psb_period); in Start()
|
| /llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverFileLine.cpp | 54 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData() 63 options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Column), column); in CreateFromStructuredData()
|
| H A D | BreakpointResolverAddress.cpp | 40 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
|
| H A D | BreakpointResolver.cpp | 110 success = subclass_options->GetValueForKeyAsInteger( in CreateFromStructuredData()
|
| H A D | BreakpointResolverName.cpp | 106 options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Offset), offset); in CreateFromStructuredData()
|
| H A D | BreakpointOptions.cpp | 264 success = options_dict.GetValueForKeyAsInteger(key, ignore_count); in CreateFromStructuredData()
|
| /llvm-project/lldb/include/lldb/Utility/ |
| H A D | StructuredData.h | 437 bool GetValueForKeyAsInteger(llvm::StringRef key, IntType &result) const { in GetValueForKeyAsInteger() function 456 bool GetValueForKeyAsInteger(llvm::StringRef key, IntType &result, in GetValueForKeyAsInteger() function 458 bool success = GetValueForKeyAsInteger<IntType>(key, result); in GetValueForKeyAsInteger()
|
| /llvm-project/lldb/unittests/tools/lldb-server/tests/ |
| H A D | MessageObjects.cpp | 119 thread_info->GetValueForKeyAsInteger("signal", signal); in create() 121 thread_info->GetValueForKeyAsInteger("tid", tid); in create()
|
| /llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.cpp | 1192 if (event->GetValueForKeyAsInteger("timestamp", timestamp)) { in GetDescription() 1681 if (event.GetValueForKeyAsInteger("timestamp", timestamp)) { in DumpHeader()
|
| /llvm-project/lldb/unittests/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationClientTest.cpp | 301 ASSERT_TRUE(dict_sp->GetValueForKeyAsInteger("num_packets", num_packets)) in TEST_F()
|
| /llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
| H A D | PlatformRemoteGDBServer.cpp | 737 if (!dict->GetValueForKeyAsInteger("signo", signo)) in GetRemoteUnixSignals()
|
| /llvm-project/lldb/source/Plugins/SystemRuntime/MacOSX/ |
| H A D | SystemRuntimeMacOSX.cpp | 535 if (!dict->GetValueForKeyAsInteger("pc", pc)) in GetExtendedBacktraceThread()
|
| /llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 1452 if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>("tid", tid)) in UpdateThreadIDList() 1579 if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>( in GetThreadStopInfoFromJSON() 2122 if (mem_cache_dict->GetValueForKeyAsInteger<lldb::addr_t>( in SetThreadStopInfo()
|
| H A D | GDBRemoteCommunicationClient.cpp | 3913 if (!dict->GetValueForKeyAsInteger("file_offset", integer)) in ParseModuleSpec() 3917 if (!dict->GetValueForKeyAsInteger("file_size", integer)) in ParseModuleSpec()
|
| /llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 1438 if (dict->GetValueForKeyAsInteger("dwo_id", dwo_id)) in DumpDwoFilesTable() 1475 if (dict->GetValueForKeyAsInteger("oso_mod_time", oso_mod_time)) in DumpOsoFilesTable()
|
| /llvm-project/lldb/source/Plugins/ObjectFile/Mach-O/ |
| H A D | ObjectFileMachO.cpp | 5744 if (thread->GetValueForKeyAsInteger<lldb::tid_t>("thread_id", tid))
|