Home
last modified time | relevance | path

Searched refs:GetValueForKeyAsInteger (Results 1 – 16 of 16) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Process/Utility/
DDynamicRegisterInfo.cpp117 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/
DThreadSpec.cpp32 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/
DOperatingSystemPython.cpp234 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/
DBreakpointResolverFileLine.cpp51 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
59 options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Column), column); in CreateFromStructuredData()
DBreakpointResolverAddress.cpp44 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
DBreakpointResolver.cpp104 success = subclass_options->GetValueForKeyAsInteger( in CreateFromStructuredData()
DBreakpointResolverName.cpp109 options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Offset), offset); in CreateFromStructuredData()
DBreakpointOptions.cpp280 success = options_dict.GetValueForKeyAsInteger(key, ignore_count); in CreateFromStructuredData()
/external/llvm-project/lldb/include/lldb/Utility/
DStructuredData.h403 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/
DGDBRemoteCommunicationServerLLGS.cpp1120 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 …]
DGDBRemoteCommunicationClient.cpp3540 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()
DProcessGDBRemote.cpp1546 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/
DMessageObjects.cpp115 thread_info->GetValueForKeyAsInteger("signal", signal); in create()
117 thread_info->GetValueForKeyAsInteger("tid", tid); in create()
/external/llvm-project/lldb/unittests/Process/gdb-remote/
DGDBRemoteCommunicationClientTest.cpp302 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/
DStructuredDataDarwinLog.cpp1214 if (event->GetValueForKeyAsInteger("timestamp", timestamp)) { in GetDescription()
1712 if (event.GetValueForKeyAsInteger("timestamp", timestamp)) { in DumpHeader()
/external/llvm-project/lldb/source/Plugins/Platform/gdb-server/
DPlatformRemoteGDBServer.cpp772 if (!dict->GetValueForKeyAsInteger("signo", signo)) in GetRemoteUnixSignals()