Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp203 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()
H A DOperatingSystemPython.h72 lldb_private::StructuredData::Dictionary &thread_dict,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1545 StructuredData::Dictionary *thread_dict = object->GetAsDictionary(); in UpdateThreadIDList() local
1546 if (thread_dict) { in UpdateThreadIDList()
1548 SetThreadStopInfo(thread_dict); in UpdateThreadIDList()
1684 StructuredData::Dictionary *thread_dict = in GetThreadStopInfoFromJSON() local
1686 if (thread_dict) { in GetThreadStopInfoFromJSON()
1687 if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>( in GetThreadStopInfoFromJSON()
1690 return (bool)SetThreadStopInfo(thread_dict); in GetThreadStopInfoFromJSON()
2035 thread_dict->ForEach([this, &tid, &expedited_register_map, &thread_name, in SetThreadStopInfo()
2706 StructuredData::Dictionary *thread_dict = in WillPublicStop() local
2708 if (thread_dict) in WillPublicStop()
[all …]
H A DProcessGDBRemote.h361 lldb::ThreadSP SetThreadStopInfo(StructuredData::Dictionary *thread_dict);