Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp1024 ProcessMonitor::GetCurrentThreadIDs(std::vector<lldb::tid_t> &thread_ids) { in GetCurrentThreadIDs() argument
1028 thread_ids.clear(); in GetCurrentThreadIDs()
1040 thread_ids = std::vector<lldb::tid_t>(tids, tids + tdcnt); in GetCurrentThreadIDs()
1042 return thread_ids.size(); in GetCurrentThreadIDs()
H A DProcessMonitor.h152 size_t GetCurrentThreadIDs(std::vector<lldb::tid_t> &thread_ids);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp739 std::vector<lldb::tid_t> thread_ids; in GetCurrentProcessID() local
742 size = GetCurrentThreadIDs(thread_ids, sequence_mutex_unavailable); in GetCurrentProcessID()
744 m_curr_pid = thread_ids.front(); in GetCurrentProcessID()
2710 std::vector<lldb::tid_t> &thread_ids, bool &sequence_mutex_unavailable) { in GetCurrentThreadIDs() argument
2711 thread_ids.clear(); in GetCurrentThreadIDs()
2732 thread_ids.push_back(tid); in GetCurrentThreadIDs()
2748 thread_ids.size() == 0 && IsConnected()) { in GetCurrentThreadIDs()
2749 thread_ids.push_back(1); in GetCurrentThreadIDs()
2761 return thread_ids.size(); in GetCurrentThreadIDs()
H A DGDBRemoteCommunicationClient.h366 size_t GetCurrentThreadIDs(std::vector<lldb::tid_t> &thread_ids,