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

1 2

  /external/qemu/android/utils/
assert.h 61 #define _ANDROID_ASSERT_BOOL(cond_,expected_) \
63 int cond_result_ = !!(cond_); \
68 #cond_, \
75 #define _ANDROID_ASSERT_INT(cond_,expected_) \
77 int cond_result_ = (cond_); \
82 #cond_ , cond_result_, cond_expected_); \
86 #define _ANDROID_ASSERT_INT_OP(cond_,expected_,op_) \
88 int cond_result_ = (cond_); \
93 #cond_ , cond_result_, #op_, cond_expected_); \
97 # define _ANDROID_ASSERT_PTR(cond_,expected_)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/sdk_util/
thread_safe_queue.h 25 pthread_cond_init(&cond_, NULL);
29 pthread_cond_destroy(&cond_);
36 pthread_cond_signal(&cond_);
44 while (list_.empty()) pthread_cond_wait(&cond_, lock_.mutex());
56 pthread_cond_t cond_; member in class:sdk_util::ThreadSafeQueue
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
condition_variable_posix.cc 44 pthread_cond_init(&cond_, NULL);
56 result = pthread_cond_init(&cond_, &cond_attr);
69 pthread_cond_destroy(&cond_);
75 pthread_cond_wait(&cond_, &cs->mutex_);
116 const int res = pthread_cond_timedwait(&cond_, &cs->mutex_, &ts);
119 pthread_cond_wait(&cond_, &cs->mutex_);
125 pthread_cond_signal(&cond_);
129 pthread_cond_broadcast(&cond_);
condition_variable_posix.h 37 pthread_cond_t cond_; member in class:webrtc::ConditionVariablePosix
event_posix.h 50 pthread_cond_t cond_; member in class:webrtc::EventPosix
event_posix.cc 61 result = pthread_cond_init(&cond_, 0);
75 result = pthread_cond_init(&cond_, &cond_attr);
89 pthread_cond_destroy(&cond_);
108 pthread_cond_broadcast(&cond_);
143 ret_val = pthread_cond_timedwait(&cond_, &mutex_, &end_at);
145 ret_val = pthread_cond_wait(&cond_, &mutex_);
169 ret_val = pthread_cond_timedwait(&cond_, &mutex_, &wake_at);
  /external/chromium_org/base/threading/
thread_perftest.cc 230 : cond_(&lock_), signaled_(false) {
240 cond_.Signal();
246 cond_.Wait();
252 base::ConditionVariable cond_; member in class:base::__anon7152::ConditionVariableEvent
273 pthread_cond_init(&cond_, 0);
278 pthread_cond_destroy(&cond_);
286 pthread_cond_signal(&cond_);
292 pthread_cond_wait(&cond_, &mutex_);
300 pthread_cond_t cond_; member in class:base::__anon7152::PthreadEvent
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_dthread.h 34 pthread_cond_t *cond_; member in struct:VP9LfSyncData
vp9_dthread.c 47 pthread_cond_wait(&lf_sync->cond_[r - 1], mutex);
79 pthread_cond_signal(&lf_sync->cond_[r]);
238 CHECK_MEM_ERROR(cm, lf_sync->cond_,
239 vpx_malloc(sizeof(*lf_sync->cond_) * rows));
241 pthread_cond_init(&lf_sync->cond_[i], NULL);
268 if (lf_sync->cond_ != NULL) {
270 pthread_cond_destroy(&lf_sync->cond_[i]);
272 vpx_free(lf_sync->cond_);
  /external/libvpx/libvpx/vp9/decoder/
vp9_dthread.h 36 pthread_cond_t *cond_; member in struct:VP9LfSyncData
vp9_dthread.c 46 pthread_cond_wait(&lf_sync->cond_[r - 1],
79 pthread_cond_signal(&lf_sync->cond_[r]);
240 CHECK_MEM_ERROR(cm, lf_sync->cond_,
241 vpx_malloc(sizeof(*lf_sync->cond_) * rows));
243 pthread_cond_init(&lf_sync->cond_[i], NULL);
266 if (lf_sync->cond_ != NULL) {
268 pthread_cond_destroy(&lf_sync->cond_[i]);
270 vpx_free(lf_sync->cond_);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_dthread.h 36 pthread_cond_t *cond_; member in struct:VP9LfSyncData
vp9_dthread.c 46 pthread_cond_wait(&lf_sync->cond_[r - 1],
79 pthread_cond_signal(&lf_sync->cond_[r]);
232 CHECK_MEM_ERROR(cm, lf_sync->cond_,
233 vpx_malloc(sizeof(*lf_sync->cond_) * rows));
235 pthread_cond_init(&lf_sync->cond_[i], NULL);
258 if (lf_sync->cond_ != NULL) {
260 pthread_cond_destroy(&lf_sync->cond_[i]);
262 vpx_free(lf_sync->cond_);
  /art/runtime/
signal_catcher.h 55 ConditionVariable cond_ GUARDED_BY(lock_);
signal_catcher.cc 67 cond_("SignalCatcher::cond_", lock_),
77 cond_.Wait(self);
201 signal_catcher->cond_.Broadcast(self);
  /external/chromium_org/media/cast/receiver/
video_decoder_unittest.cc 44 cond_(&lock_) {
106 cond_.Wait();
135 cond_.Signal();
147 base::ConditionVariable cond_; member in class:media::cast::VideoDecoderTest
audio_decoder_unittest.cc 36 cond_(&lock_) {}
135 cond_.Wait();
175 cond_.Signal();
186 base::ConditionVariable cond_; member in class:media::cast::AudioDecoderTest
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
service_runtime.cc 479 NaClXCondVarCtor(&cond_);
735 NaClXCondVarTimedWaitRelative(&cond_, &mu_, &left_timespec);
745 NaClXCondVarSignal(&cond_);
751 NaClXCondVarWait(&cond_, &mu_);
759 NaClXCondVarSignal(&cond_);
850 NaClCondVarDtor(&cond_);
service_runtime.h 243 NaClCondVar cond_; member in class:plugin::ServiceRuntime
  /art/runtime/base/
mutex.cc 671 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
686 int rc = pthread_cond_destroy(&cond_);
721 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
738 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
776 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));
822 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
    [all...]
mutex.h 412 pthread_cond_t cond_; member in class:art::ConditionVariable
  /art/compiler/utils/arm/
assembler_thumb2.h 508 cond_(cond), rn_(R0) {
516 target_(kUnresolved), cond_(AL), rn_(rn) {
525 target_(target), cond_(cond), rn_(R0) {
602 cond_ = cond;
665 Condition cond_; member in class:art::arm::FINAL::Branch
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
js_fs_test.cc 49 pthread_cond_init(&cond_, NULL);
52 ~FakeMessagingInterfaceJsFs() { pthread_cond_destroy(&cond_); }
62 pthread_cond_signal(&cond_);
68 pthread_cond_wait(&cond_, lock_.mutex());
78 pthread_cond_t cond_; member in class:__anon12992::FakeMessagingInterfaceJsFs
  /art/dex2oat/
dex2oat.cc 611 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, nullptr), reason);
623 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_signal, (&cond_), reason);
628 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_destroy, (&cond_), reason);
673 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_,
714 pthread_cond_t cond_; member in class:art::WatchDog
    [all...]
  /external/chromium_org/v8/src/
ast.h 757 cond_ = cond;
760 Expression* cond() const { return cond_; }
769 cond_(NULL),
775 Expression* cond_; member in class:v8::internal::V8_FINAL
788 cond_ = cond;
791 Expression* cond() const { return cond_; }
806 cond_(NULL),
812 Expression* cond_; member in class:v8::internal::V8_FINAL
831 cond_ = cond;
836 Expression* cond() const { return cond_; }
868 Expression* cond_; member in class:v8::internal::V8_FINAL
    [all...]

Completed in 782 milliseconds

1 2