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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.h151 size_t GetCurrentThreadIDs(std::vector<lldb::tid_t> &thread_ids);
H A DProcessMonitor.cpp1009 ProcessMonitor::GetCurrentThreadIDs(std::vector<lldb::tid_t> &thread_ids) { argument
1013 thread_ids.clear();
1025 thread_ids = std::vector<lldb::tid_t>(tids, tids + tdcnt);
1027 return thread_ids.size();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h351 size_t GetCurrentThreadIDs(std::vector<lldb::tid_t> &thread_ids,
H A DGDBRemoteCommunicationClient.cpp736 std::vector<lldb::tid_t> thread_ids; local
739 size = GetCurrentThreadIDs(thread_ids, sequence_mutex_unavailable);
741 m_curr_pid = thread_ids.front();
2744 std::vector<lldb::tid_t> &thread_ids, bool &sequence_mutex_unavailable) {
2745 thread_ids.clear();
2766 thread_ids.push_back(tid);
2782 thread_ids.size() == 0 && IsConnected()) {
2783 thread_ids.push_back(1);
2794 return thread_ids.size();

Completed in 175 milliseconds