/external/llvm-project/lldb/source/Plugins/Process/Utility/ |
D | DynamicRegisterInfo.cpp | 117 reg_info_dict->GetValueForKeyAsInteger("offset", reg_info.byte_offset, in SetRegisterInfo() 262 if (!reg_info_dict->GetValueForKeyAsInteger("bitsize", bitsize)) { in SetRegisterInfo() 302 reg_info_dict->GetValueForKeyAsInteger("format", reg_info.format, in SetRegisterInfo() 310 reg_info_dict->GetValueForKeyAsInteger("encoding", reg_info.encoding, in SetRegisterInfo() 314 if (!reg_info_dict->GetValueForKeyAsInteger<size_t>("set", set, -1) || in SetRegisterInfo() 328 reg_info_dict->GetValueForKeyAsInteger("gcc", eh_frame_regno, in SetRegisterInfo() 331 reg_info_dict->GetValueForKeyAsInteger("ehframe", eh_frame_regno, in SetRegisterInfo() 334 reg_info_dict->GetValueForKeyAsInteger( in SetRegisterInfo() 341 reg_info_dict->GetValueForKeyAsInteger( in SetRegisterInfo()
|
/external/llvm-project/lldb/source/Target/ |
D | ThreadSpec.cpp | 32 bool success = spec_dict.GetValueForKeyAsInteger( in CreateFromStructuredData() 38 spec_dict.GetValueForKeyAsInteger(GetKey(OptionNames::ThreadID), tid); in CreateFromStructuredData()
|
/external/llvm-project/lldb/source/Plugins/OperatingSystem/Python/ |
D | OperatingSystemPython.cpp | 234 if (!thread_dict.GetValueForKeyAsInteger("tid", tid)) in CreateThreadFromThreadInfo() 242 thread_dict.GetValueForKeyAsInteger("core", core_number, UINT32_MAX); in CreateThreadFromThreadInfo() 243 thread_dict.GetValueForKeyAsInteger("register_data_addr", reg_data_addr, in CreateThreadFromThreadInfo()
|
/external/llvm-project/lldb/source/Breakpoint/ |
D | BreakpointResolverFileLine.cpp | 51 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData() 59 options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Column), column); in CreateFromStructuredData()
|
D | BreakpointResolverAddress.cpp | 44 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
|
D | BreakpointResolver.cpp | 104 success = subclass_options->GetValueForKeyAsInteger( in CreateFromStructuredData()
|
D | BreakpointResolverName.cpp | 109 options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Offset), offset); in CreateFromStructuredData()
|
D | BreakpointOptions.cpp | 280 success = options_dict.GetValueForKeyAsInteger(key, ignore_count); in CreateFromStructuredData()
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | StructuredData.h | 403 bool GetValueForKeyAsInteger(llvm::StringRef key, IntType &result) const { in GetValueForKeyAsInteger() function 415 bool GetValueForKeyAsInteger(llvm::StringRef key, IntType &result, in GetValueForKeyAsInteger() function 417 bool success = GetValueForKeyAsInteger<IntType>(key, result); in GetValueForKeyAsInteger()
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteCommunicationServerLLGS.cpp | 1120 json_dict->GetValueForKeyAsInteger("metabuffersize", metabuffersize); in Handle_jTraceStart() 1123 json_dict->GetValueForKeyAsInteger("buffersize", buffersize); in Handle_jTraceStart() 1126 json_dict->GetValueForKeyAsInteger("type", type); in Handle_jTraceStart() 1129 json_dict->GetValueForKeyAsInteger("threadid", tid); in Handle_jTraceStart() 1182 if (!json_dict->GetValueForKeyAsInteger("traceid", uid)) in Handle_jTraceStop() 1185 json_dict->GetValueForKeyAsInteger("threadid", tid); in Handle_jTraceStop() 1247 if (!json_dict->GetValueForKeyAsInteger("traceid", uid)) in Handle_jTraceConfigRead() 1251 json_dict->GetValueForKeyAsInteger("threadid", threadid); in Handle_jTraceConfigRead() 1314 if (!json_dict->GetValueForKeyAsInteger("traceid", uid) || in Handle_jTraceRead() 1315 !json_dict->GetValueForKeyAsInteger("offset", offset) || in Handle_jTraceRead() [all …]
|
D | GDBRemoteCommunicationClient.cpp | 3540 json_dict->GetValueForKeyAsInteger<uint64_t>("metabuffersize", in SendGetTraceConfigPacket() 3544 json_dict->GetValueForKeyAsInteger<uint64_t>("buffersize", buffersize); in SendGetTraceConfigPacket() 3547 json_dict->GetValueForKeyAsInteger<uint64_t>("type", type); in SendGetTraceConfigPacket() 3731 if (!dict->GetValueForKeyAsInteger("file_offset", integer)) in ParseModuleSpec() 3735 if (!dict->GetValueForKeyAsInteger("file_size", integer)) in ParseModuleSpec()
|
D | ProcessGDBRemote.cpp | 1546 if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>("tid", tid)) in UpdateThreadIDList() 1683 if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>( in GetThreadStopInfoFromJSON() 2091 if (mem_cache_dict->GetValueForKeyAsInteger<lldb::addr_t>( in SetThreadStopInfo()
|
/external/llvm-project/lldb/unittests/tools/lldb-server/tests/ |
D | MessageObjects.cpp | 115 thread_info->GetValueForKeyAsInteger("signal", signal); in create() 117 thread_info->GetValueForKeyAsInteger("tid", tid); in create()
|
/external/llvm-project/lldb/unittests/Process/gdb-remote/ |
D | GDBRemoteCommunicationClientTest.cpp | 302 ASSERT_TRUE(dict_sp->GetValueForKeyAsInteger("num_packets", num_packets)) in TEST_F() 595 ASSERT_TRUE(custom_params->GetValueForKeyAsInteger("psb", psb_value)); in TEST_F()
|
/external/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/ |
D | StructuredDataDarwinLog.cpp | 1214 if (event->GetValueForKeyAsInteger("timestamp", timestamp)) { in GetDescription() 1712 if (event.GetValueForKeyAsInteger("timestamp", timestamp)) { in DumpHeader()
|
/external/llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
D | PlatformRemoteGDBServer.cpp | 772 if (!dict->GetValueForKeyAsInteger("signo", signo)) in GetRemoteUnixSignals()
|