HomeSort by relevance Sort by last modified time
    Searched refs:cond_ (Results 1 - 4 of 4) sorted by null

  /external/qemu/android/utils/
assert.h 57 #define _ANDROID_ASSERT_BOOL(cond_,expected_) \
59 int cond_result_ = !!(cond_); \
64 #cond_, \
71 #define _ANDROID_ASSERT_INT(cond_,expected_) \
73 int cond_result_ = (cond_); \
78 #cond_ , cond_result_, cond_expected_); \
82 #define _ANDROID_ASSERT_INT_OP(cond_,expected_,op_) \
84 int cond_result_ = (cond_); \
89 #cond_ , cond_result_, #op_, cond_expected_); \
93 # define _ANDROID_ASSERT_PTR(cond_,expected_)
    [all...]
  /hardware/ril/mock-ril/src/cpp/
worker.cpp 53 pthread_cond_init(&cond_, NULL);
75 pthread_cond_signal(&cond_);
147 pthread_cond_wait(&cond_, &mutex_);
174 pthread_cond_timedwait(&cond_, &mutex_, &ts);
272 pthread_cond_signal(&wqt_->cond_);
299 pthread_cond_signal(&wqt_->cond_);
worker.h 37 * pthread_cond_wait(&cond_, &mutex_);
57 pthread_cond_t cond_; member in class:WorkerThread
  /external/v8/src/
ast.h 717 cond_ = cond;
720 Expression* cond() const { return cond_; }
737 cond_(NULL),
744 Expression* cond_; member in class:v8::internal::DoWhileStatement
757 cond_ = cond;
760 Expression* cond() const { return cond_; }
778 cond_(NULL),
784 Expression* cond_; member in class:v8::internal::WhileStatement
801 cond_ = cond;
806 Expression* cond() const { return cond_; }
841 Expression* cond_; member in class:v8::internal::ForStatement
    [all...]

Completed in 47 milliseconds