Searched refs:thread_dict (Results 1 – 4 of 4) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/source/Plugins/OperatingSystem/Python/ |
| H A D | OperatingSystemPython.cpp | 191 if (auto thread_dict = thread_dict_obj->GetAsDictionary()) { in UpdateThreadList() local 193 *thread_dict, core_thread_list, old_thread_list, core_used_map, in UpdateThreadList() 217 StructuredData::Dictionary &thread_dict, ThreadList &core_thread_list, in CreateThreadFromThreadInfo() argument 222 if (!thread_dict.GetValueForKeyAsInteger("tid", tid)) in CreateThreadFromThreadInfo() 230 thread_dict.GetValueForKeyAsInteger("core", core_number, UINT32_MAX); in CreateThreadFromThreadInfo() 231 thread_dict.GetValueForKeyAsInteger("register_data_addr", reg_data_addr, in CreateThreadFromThreadInfo() 233 thread_dict.GetValueForKeyAsString("name", name); in CreateThreadFromThreadInfo() 234 thread_dict.GetValueForKeyAsString("queue", queue); in CreateThreadFromThreadInfo()
|
| H A D | OperatingSystemPython.h | 69 lldb_private::StructuredData::Dictionary &thread_dict,
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 1436 StructuredData::Dictionary *thread_dict = object->GetAsDictionary(); in UpdateThreadIDList() local 1437 if (thread_dict) { in UpdateThreadIDList() 1439 SetThreadStopInfo(thread_dict); in UpdateThreadIDList() 1441 if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>("tid", tid)) in UpdateThreadIDList() 1565 StructuredData::Dictionary *thread_dict = in GetThreadStopInfoFromJSON() local 1567 if (thread_dict) { in GetThreadStopInfoFromJSON() 1568 if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>( in GetThreadStopInfoFromJSON() 1571 return (bool)SetThreadStopInfo(thread_dict); in GetThreadStopInfoFromJSON() 1892 ProcessGDBRemote::SetThreadStopInfo(StructuredData::Dictionary *thread_dict) { in SetThreadStopInfo() argument 1933 thread_dict->ForEach([this, &tid, &expedited_register_map, &thread_name, in SetThreadStopInfo() [all …]
|
| H A D | ProcessGDBRemote.h | 359 lldb::ThreadSP SetThreadStopInfo(StructuredData::Dictionary *thread_dict);
|