Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dsweeper-thread.cc17 SweeperThread::SweeperThread(Isolate* isolate) in SweeperThread() function in v8::internal::SweeperThread
30 void SweeperThread::Run() { in Run()
51 void SweeperThread::Stop() { in Stop()
59 void SweeperThread::StartSweeping() { start_sweeping_semaphore_.Signal(); } in StartSweeping()
62 void SweeperThread::WaitForSweeperThread() { end_sweeping_semaphore_.Wait(); } in WaitForSweeperThread()
65 bool SweeperThread::SweepingCompleted() { in SweepingCompleted()
74 int SweeperThread::NumberOfThreads(int max_available) { in NumberOfThreads()
Dsweeper-thread.h20 class SweeperThread : public base::Thread {
22 explicit SweeperThread(Isolate* isolate);
23 ~SweeperThread() {} in ~SweeperThread()
/external/v8/src/
Disolate.h66 class SweeperThread; variable
1066 SweeperThread** sweeper_threads() { in sweeper_threads()
1318 SweeperThread** sweeper_thread_;
1335 friend class SweeperThread; variable
Disolate.cc1946 SweeperThread::NumberOfThreads(max_available_threads_); in Init()
1957 sweeper_thread_ = new SweeperThread*[num_sweeper_threads_]; in Init()
1959 sweeper_thread_[i] = new SweeperThread(this); in Init()