HomeSort by relevance Sort by last modified time
    Searched defs:shutting_down (Results 1 - 3 of 3) 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...]
  /external/valgrind/main/coregrind/
vgdb.c 77 Bool shutting_down = False; variable
202 /* This function loops till shutting_down becomes true. In this loop,
226 while (!shutting_down) {
442 shutting_down = True;
466 shutting_down = True;
679 shutting_down = True;
682 shutting_down = True;
860 (shutting_down ?
868 shutting_down = True;
878 shutting_down = True
    [all...]

Completed in 110 milliseconds