Home
last modified time | relevance | path

Searched refs:started_ (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dthread_pool.cc109 if (started_ && waiting_count_ != 0) { in AddTask()
124 started_(false), in ThreadPool()
166 started_ = true; in StartWorkers()
174 started_ = false; in StopWorkers()
Dthread_pool.h149 return started_ && !tasks_.empty(); in HasOutstandingTasks()
156 volatile bool started_ GUARDED_BY(task_queue_lock_);
Druntime.h201 return started_; in IsStarted()
815 bool started_; variable
Druntime.cc233 started_(false), in Runtime()
714 started_ = true; in Start()
/art/compiler/
Delf_builder.h110 started_(false), in Section()
124 CHECK(!started_); in Start()
126 started_ = true; in Start()
157 CHECK(started_); in End()
175 CHECK(started_); in GetAddress()
184 CHECK(started_); in GetSize()
204 CHECK(started_); in WriteFully()
223 DCHECK(started_); in GetSectionIndex()
234 bool started_; variable
531 started_(false), in ElfBuilder()
[all …]
/art/runtime/hprof/
Dhprof.cc157 EndianOutput() : length_(0), sum_length_(0), max_length_(0), started_(false) {} in EndianOutput()
168 started_ = true; in StartNewRecord()
173 if (started_) { in EndRecord()
183 started_ = false; in EndRecord()
292 bool started_; // Was StartRecord called? member in art::hprof::EndianOutput
370 if (kIsDebugBuild && started_) { in HandleEndRecord()