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

/external/lldb/source/Host/linux/
H A DHost.cpp300 Host::FindProcessThreads (const lldb::pid_t pid, TidMap &tids_to_attach) argument
317 TidMap::iterator it = tids_to_attach.find(tid);
318 if (it == tids_to_attach.end())
320 tids_to_attach.insert(TidPair(tid, false));
/external/lldb/include/lldb/Host/
H A DHost.h443 FindProcessThreads (const lldb::pid_t pid, TidMap &tids_to_attach);
/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.cpp1299 Host::TidMap tids_to_attach; local
1307 while (Host::FindProcessThreads(pid, tids_to_attach))
1309 for (Host::TidMap::iterator it = tids_to_attach.begin();
1310 it != tids_to_attach.end(); ++it)
1324 tids_to_attach.erase(it);
1343 tids_to_attach.erase(it);
1371 if (tids_to_attach.size() > 0)
/external/lldb/source/Host/common/
H A DHost.cpp1297 Host::FindProcessThreads (const lldb::pid_t pid, TidMap &tids_to_attach) argument

Completed in 108 milliseconds