Home
last modified time | relevance | path

Searched refs:checkpoint_function (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dthread_list.h104 size_t RunCheckpoint(Closure* checkpoint_function, Closure* callback = nullptr)
115 size_t RunCheckpointOnRunnableThreads(Closure* checkpoint_function)
183 size_t RunCheckpoint(Closure* checkpoint_function, bool includeSuspended)
Dthread_list.cc299 size_t ThreadList::RunCheckpoint(Closure* checkpoint_function, Closure* callback) { in RunCheckpoint() argument
316 if (thread->RequestCheckpoint(checkpoint_function)) { in RunCheckpoint()
341 checkpoint_function->Run(self); in RunCheckpoint()
366 checkpoint_function->Run(thread); in RunCheckpoint()
492 size_t ThreadList::RunCheckpointOnRunnableThreads(Closure* checkpoint_function) { in RunCheckpointOnRunnableThreads() argument
506 if (thread->RequestCheckpoint(checkpoint_function)) { in RunCheckpointOnRunnableThreads()
Dentrypoints_order_test.cc116 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, last_no_thread_suspension_cause, checkpoint_function, in CheckThreadOffsets()
118 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, checkpoint_function, active_suspend_barriers, in CheckThreadOffsets()
Dthread.cc1304 if (tlsPtr_.checkpoint_function != nullptr) { in RunCheckpointFunction()
1305 checkpoint = tlsPtr_.checkpoint_function; in RunCheckpointFunction()
1308 tlsPtr_.checkpoint_function = checkpoint_overflow_.front(); in RunCheckpointFunction()
1312 tlsPtr_.checkpoint_function = nullptr; in RunCheckpointFunction()
1350 if (tlsPtr_.checkpoint_function == nullptr) { in RequestCheckpoint()
1351 tlsPtr_.checkpoint_function = function; in RequestCheckpoint()
1982 tlsPtr_.checkpoint_function = nullptr; in Thread()
2126 CHECK(tlsPtr_.checkpoint_function == nullptr); in ~Thread()
Dthread.h1466 last_no_thread_suspension_cause(nullptr), checkpoint_function(nullptr), in PACKED()
1579 Closure* checkpoint_function GUARDED_BY(Locks::thread_suspend_count_lock_); in PACKED()