OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TaskRunnerThread
(Results
1 - 2
of
2
) sorted by null
/external/perfetto/test/
task_runner_thread.cc
33
TaskRunnerThread
::
TaskRunnerThread
(const char* name) : name_(name) {}
34
TaskRunnerThread
::~
TaskRunnerThread
() {
38
void
TaskRunnerThread
::Start(std::unique_ptr<ThreadDelegate> delegate) {
44
thread_ = std::thread(&
TaskRunnerThread
::Run, this, std::move(delegate));
51
void
TaskRunnerThread
::Stop() {
62
uint64_t
TaskRunnerThread
::GetThreadCPUTimeNs() {
80
void
TaskRunnerThread
::Run(std::unique_ptr<ThreadDelegate> delegate) {
task_runner_thread.h
29
// Used to perform initialization work on a background
TaskRunnerThread
.
41
class
TaskRunnerThread
{
43
explicit
TaskRunnerThread
(const char* name);
44
~
TaskRunnerThread
();
Completed in 310 milliseconds