OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:shutting_down
(Results
1 - 2
of
2
) sorted by null
/art/runtime/
scoped_thread_state_change.h
64
bool
shutting_down
= (runtime == NULL) || runtime->IsShuttingDown(nullptr);
variable
65
CHECK(
shutting_down
);
variable
/art/runtime/base/
mutex.cc
286
bool
shutting_down
= IsShuttingDown();
local
289
LOG(
shutting_down
? WARNING : FATAL) << "destroying mutex with owner: "
293
LOG(
shutting_down
? WARNING : FATAL) << "unexpectedly found an owner on unlocked mutex "
297
LOG(
shutting_down
? WARNING : FATAL) << "unexpectedly found a contender on mutex " << name_;
308
PLOG(
shutting_down
? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
486
bool
shutting_down
= runtime == NULL || runtime->IsShuttingDownLocked();
487
PLOG(
shutting_down
? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
693
bool
shutting_down
= runtime == nullptr || runtime->IsShuttingDown(Thread::Current());
local
694
LOG(
shutting_down
? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
705
bool
shutting_down
= (runtime == NULL) || runtime->IsShuttingDownLocked()
[
all
...]
Completed in 367 milliseconds