Lines Matching defs:Thread

284 Model::Team::AddThread(Thread* thread)
286 return fThreads.BinaryInsert(thread, &Thread::CompareByCreationTimeID);
290 // #pragma mark - Thread
293 Model::Thread::Thread(Team* team, const system_profiler_thread_added* event,
328 Model::Thread::~Thread()
342 Model::Thread::SetEvents(system_profiler_event_header** events,
351 Model::Thread::SetIORequests(IORequest** requests, size_t requestCount)
359 Model::Thread::ClosestRequestStartIndex(nanotime_t minRequestStartTime) const
378 Model::Thread::ThreadWaitObjectGroupFor(uint32 type, addr_t object) const
390 Model::Thread::AddRun(nanotime_t runTime)
403 Model::Thread::AddRerun(nanotime_t runTime)
416 Model::Thread::AddLatency(nanotime_t latency)
429 Model::Thread::AddPreemption(nanotime_t runTime)
436 Model::Thread::AddWait(nanotime_t waitTime)
444 Model::Thread::AddUnspecifiedWait(nanotime_t waitTime)
451 Model::Thread::AddThreadWaitObject(WaitObject* waitObject,
491 Model::Thread::SetIOs(int64 count, nanotime_t time)
577 Thread* thread = threadState->thread;
600 Thread* thread = threadState->thread;
722 for (int32 i = 0; Thread* thread = fThreads.ItemAt(i); i++)
816 Model::Thread*
823 Model::Thread*
826 return fThreads.BinarySearchByKey(id, &Thread::CompareWithID);
830 Model::Thread*
834 Thread* thread = ThreadByID(event->thread);
849 thread = new(std::nothrow) Thread(team, event, time);
852 ObjectDeleter<Thread> threadDeleter(thread);
854 if (!fThreads.BinaryInsert(thread, &Thread::CompareByID))
935 Thread* thread = ThreadByID(threadID);
946 Thread* thread = ThreadByID(threadID);