HomeSort by relevance Sort by last modified time
    Searched defs:mCond (Results 1 - 25 of 26) sorted by null

1 2

  /frameworks/av/media/libmedia/include/media/
TimeCheck.h 58 Condition mCond;
  /hardware/interfaces/broadcastradio/common/vts/utils/include/broadcastradio-vts-utils/
call-barrier.h 51 std::condition_variable mCond;
  /packages/services/Car/tests/vehiclehal_test/src/com/android/car/vehiclehal/test/
VhalEventVerifier.java 36 private ConditionVariable mCond;
55 mCond = new ConditionVariable(expectedEvents.isEmpty());
74 mCond.open();
83 mCond.block(timeout);
  /frameworks/native/cmds/surfacereplayer/replayer/
Event.h 48 std::condition_variable mCond;
  /hardware/interfaces/broadcastradio/common/utils/include/broadcastradio-utils/
WorkerThread.h 42 std::condition_variable mCond;
  /hardware/qcom/gps/msm8998/android/location_api/
GnssMeasurementAPIClient.h 67 pthread_cond_t mCond;
  /system/tools/hidl/test/hidl_test/
FooCallback.h 34 Condition mCond;
  /device/google/wahoo/power-libperfmgr/
InteractionHandler.h 67 std::condition_variable mCond;
  /hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
JsonFakeValueGenerator.h 63 std::condition_variable mCond;
  /system/chre/platform/slpi/include/chre/platform/slpi/smgr/
smr_helper.h 202 ConditionVariable mCond;
204 //! Used with mCond, and to protect access to member variables from other
  /frameworks/base/cmds/hid/src/com/android/commands/hid/
Device.java 41 private final Object mCond = new Object();
86 synchronized (mCond) {
87 mCond.wait();
124 synchronized (mCond) {
125 mCond.notify();
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
ConcurrentQueue.h 34 mCond.wait(g);
60 mCond.notify_one();
71 mCond.notify_all(); // To unblock all waiting consumers.
83 std::condition_variable mCond;
RecurrentTimer.h 66 mCond.notify_one();
74 mCond.notify_one();
125 mCond.wait_until(g, nextEventTime); // nextEventTime can be nanoseconds::max()
135 mCond.notify_one();
143 std::condition_variable mCond;
  /system/core/libutils/include/utils/
Condition.h 87 pthread_cond_t mCond;
110 pthread_cond_init(&mCond, &attr);
115 pthread_cond_destroy(&mCond);
118 return -pthread_cond_wait(&mCond, &mutex.mMutex);
150 return -pthread_cond_timedwait(&mCond, &mutex.mMutex, &ts);
153 pthread_cond_signal(&mCond);
156 pthread_cond_broadcast(&mCond);
  /frameworks/support/compat/src/androidTest/java/androidx/core/provider/
SelfDestructiveThreadTest.java 199 private final Condition mCond = mLock.newCondition();
219 mCond.signalAll();
235 remaining = mCond.awaitNanos(remaining);
  /system/tools/hidl/
ConstantExpression.h 197 ConstantExpression* const mCond;
  /frameworks/av/media/libstagefright/include/media/stagefright/
MediaCodecSource.h 155 Condition mCond;
  /system/chre/platform/slpi/include/chre/platform/slpi/see/
see_helper.h 270 ConditionVariable mCond;
272 //! Used with mCond, and to protect access to member variables from other
  /frameworks/av/media/libnblog/include/media/nblog/
NBLog.h 588 Condition mCond;
  /frameworks/av/services/audiopolicy/service/
AudioPolicyService.h 395 Mutex mLock; // mutex associated to mCond
396 Condition mCond; // condition for status return
    [all...]
  /frameworks/native/services/surfaceflinger/
DispSync.cpp 82 mCond.signal();
89 mCond.signal();
115 err = mCond.wait(mMutex);
132 err = mCond.wait(mMutex);
135 err = mCond.waitRelative(mMutex, targetTime - now);
192 mCond.signal();
204 mCond.signal();
226 mCond.signal();
366 Condition mCond;
  /device/google/marlin/camera/QCamera2/HAL/test/
qcamera_test.h 190 Condition mCond;
  /frameworks/av/services/audioflinger/
AudioFlinger.h 478 Condition mCond;
    [all...]
Threads.h 84 // 7. event->mCond.signal
94 Mutex mLock; // mutex associated with mCond
95 Condition mCond; // condition for status return
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/HAL/test/
qcamera_test.h 190 Condition mCond;

Completed in 634 milliseconds

1 2