HomeSort by relevance Sort by last modified time
    Searched defs:ThreadList (Results 1 - 3 of 3) sorted by null

  /art/runtime/
thread_list.h 45 class ThreadList {
52 explicit ThreadList(uint64_t thread_suspend_timeout_ns);
53 ~ThreadList();
219 // Number of threads unregistering, ~ThreadList blocks until this hits 0.
230 // error to destroy a ThreadList instance without first calling ShutDown().
240 DISALLOW_COPY_AND_ASSIGN(ThreadList);
thread_list.cc 74 ThreadList::ThreadList(uint64_t thread_suspend_timeout_ns)
86 ThreadList::~ThreadList() {
90 void ThreadList::ShutDown() {
118 bool ThreadList::Contains(Thread* thread) {
122 bool ThreadList::Contains(pid_t tid) {
131 pid_t ThreadList::GetLockOwner() {
135 void ThreadList::DumpNativeStacks(std::ostream& os) {
145 void ThreadList::DumpForSigQuit(std::ostream& os)
    [all...]
  /external/oj-libjdwp/src/share/back/
threadControl.c 86 struct ThreadList *list; /* Tells us what list this thread is in */
91 typedef struct ThreadList {
93 } ThreadList;
119 static ThreadList runningThreads;
120 static ThreadList otherThreads;
208 nonTlsSearch(JNIEnv *env, ThreadList *list, jthread thread)
226 findThread(ThreadList *list, jthread thread)
261 /* Remove a ThreadNode from a ThreadList */
263 removeNode(ThreadList *list, ThreadNode *node)
284 /* Add a ThreadNode to a ThreadList */
    [all...]

Completed in 302 milliseconds