Home
last modified time | relevance | path

Searched refs:thread_dict (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp200 if (auto thread_dict = thread_dict_obj->GetAsDictionary()) { in UpdateThreadList() local
202 *thread_dict, core_thread_list, old_thread_list, core_used_map, in UpdateThreadList()
226 StructuredData::Dictionary &thread_dict, ThreadList &core_thread_list, in CreateThreadFromThreadInfo() argument
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()
242 thread_dict.GetValueForKeyAsString("name", name); in CreateThreadFromThreadInfo()
243 thread_dict.GetValueForKeyAsString("queue", queue); in CreateThreadFromThreadInfo()
H A DOperatingSystemPython.h69 lldb_private::StructuredData::Dictionary &thread_dict,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1444 StructuredData::Dictionary *thread_dict = object->GetAsDictionary(); in UpdateThreadIDList() local
1445 if (thread_dict) { in UpdateThreadIDList()
1447 SetThreadStopInfo(thread_dict); in UpdateThreadIDList()
1449 if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>("tid", tid)) in UpdateThreadIDList()
1573 StructuredData::Dictionary *thread_dict = in GetThreadStopInfoFromJSON() local
1575 if (thread_dict) { in GetThreadStopInfoFromJSON()
1576 if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>( in GetThreadStopInfoFromJSON()
1579 return (bool)SetThreadStopInfo(thread_dict); in GetThreadStopInfoFromJSON()
1961 ProcessGDBRemote::SetThreadStopInfo(StructuredData::Dictionary *thread_dict) { in SetThreadStopInfo() argument
2001 thread_dict->ForEach([this, &tid, &expedited_register_map, &thread_name, in SetThreadStopInfo()
[all …]
H A DProcessGDBRemote.h365 lldb::ThreadSP SetThreadStopInfo(StructuredData::Dictionary *thread_dict);