OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:is_running_
(Results
1 - 12
of
12
) sorted by null
/external/libchrome/base/timer/
mock_timer.cc
11
is_running_
(false) {
20
is_running_
(false) {
27
return
is_running_
;
43
is_running_
= false;
50
is_running_
= true;
54
DCHECK(
is_running_
);
timer.cc
67
is_running_
(false) {
81
is_running_
(false) {
89
return
is_running_
;
110
is_running_
= false;
133
is_running_
= true;
152
is_running_
= true;
187
if (!
is_running_
)
mock_timer.h
36
bool
is_running_
;
member in class:base::MockTimer
timer.h
122
void set_is_running(bool running) {
is_running_
= running; }
127
bool is_running() const { return
is_running_
; }
195
bool
is_running_
;
member in class:base::Timer
/art/runtime/gc/
task_processor.cc
26
: lock_(new Mutex("Task processor lock", kReferenceProcessorLock)),
is_running_
(false),
48
if (!
is_running_
) {
59
if (!
is_running_
|| target_time <= current_time) {
98
return
is_running_
;
108
is_running_
= false;
115
is_running_
= true;
task_processor.h
78
bool
is_running_
GUARDED_BY(lock_);
/system/connectivity/shill/
http_request.cc
87
is_running_
(false) { }
99
DCHECK(!
is_running_
);
101
is_running_
= true;
140
<<
is_running_
;
local
142
if (!
is_running_
) {
153
is_running_
= false;
http_request.h
142
bool
is_running_
;
member in class:shill::HTTPRequest
http_request_unittest.cc
140
if (request_->
is_running_
) {
183
EXPECT_FALSE(request_->
is_running_
);
/system/connectivity/shill/wifi/
mac80211_monitor.cc
65
is_running_
(false),
80
CHECK(!
is_running_
);
88
is_running_
= true;
94
is_running_
= false;
120
CHECK(
is_running_
);
mac80211_monitor.h
131
bool
is_running_
;
member in class:shill::Mac80211Monitor
mac80211_monitor_unittest.cc
111
return mac80211_monitor_.
is_running_
&&
115
return !mac80211_monitor_.
is_running_
&&
Completed in 155 milliseconds