Searched refs:thread_dict (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/lldb/source/Plugins/OperatingSystem/Python/ |
D | OperatingSystemPython.cpp | 203 if (auto thread_dict = thread_dict_obj->GetAsDictionary()) { in UpdateThreadList() local 205 *thread_dict, core_thread_list, old_thread_list, core_used_map, in UpdateThreadList() 229 StructuredData::Dictionary &thread_dict, ThreadList &core_thread_list, in CreateThreadFromThreadInfo() argument 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() 245 thread_dict.GetValueForKeyAsString("name", name); in CreateThreadFromThreadInfo() 246 thread_dict.GetValueForKeyAsString("queue", queue); in CreateThreadFromThreadInfo()
|
D | OperatingSystemPython.h | 72 lldb_private::StructuredData::Dictionary &thread_dict,
|
/external/llvm-project/lldb/test/API/tools/lldb-server/ |
D | TestGdbRemote_qThreadStopInfo.py | 182 for thread_dict in list(thread_dicts.values()): 183 name = thread_dict.get("name")
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | ProcessGDBRemote.cpp | 1541 StructuredData::Dictionary *thread_dict = object->GetAsDictionary(); in UpdateThreadIDList() local 1542 if (thread_dict) { in UpdateThreadIDList() 1544 SetThreadStopInfo(thread_dict); in UpdateThreadIDList() 1546 if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>("tid", tid)) in UpdateThreadIDList() 1680 StructuredData::Dictionary *thread_dict = in GetThreadStopInfoFromJSON() local 1682 if (thread_dict) { in GetThreadStopInfoFromJSON() 1683 if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>( in GetThreadStopInfoFromJSON() 1686 return (bool)SetThreadStopInfo(thread_dict); in GetThreadStopInfoFromJSON() 1971 ProcessGDBRemote::SetThreadStopInfo(StructuredData::Dictionary *thread_dict) { in SetThreadStopInfo() argument 2011 thread_dict->ForEach([this, &tid, &expedited_register_map, &thread_name, in SetThreadStopInfo() [all …]
|
D | ProcessGDBRemote.h | 363 lldb::ThreadSP SetThreadStopInfo(StructuredData::Dictionary *thread_dict);
|