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

  /system/core/libutils/tests/
Looper_test.cpp 116 StopWatch stopWatch("pollOnce");
117 int result = mLooper->pollOnce(100);
123 << "pollOnce result should be LOOPER_POLL_TIMEOUT";
129 StopWatch stopWatch("pollOnce");
130 int result = mLooper->pollOnce(1000);
136 << "pollOnce result should be Looper::POLL_CALLBACK because loop was awoken";
143 StopWatch stopWatch("pollOnce");
144 int result = mLooper->pollOnce(1000);
150 << "pollOnce result should be Looper::POLL_CALLBACK because loop was awoken";
154 StopWatch stopWatch("pollOnce");
    [all...]
  /packages/services/Car/libvehiclenetwork/native/
HandlerThread.cpp 66 mLooper->pollOnce(-1);
  /system/core/include/utils/
Looper.h 227 * pollOnce() is prepared to handle callback-less events itself.
263 int pollOnce(int timeoutMillis, int* outFd, int* outEvents, void** outData);
264 inline int pollOnce(int timeoutMillis) {
265 return pollOnce(timeoutMillis, NULL, NULL, NULL);
269 * Like pollOnce(), but performs all pending callbacks until all
291 * "ident" is an identifier for this event, which is returned from pollOnce().
467 // This state is only used privately by pollOnce and does not require a lock since
  /frameworks/base/core/jni/
android_os_MessageQueue.cpp 48 void pollOnce(JNIEnv* env, jobject obj, int timeoutMillis);
107 void NativeMessageQueue::pollOnce(JNIEnv* env, jobject pollObj, int timeoutMillis) {
110 mLooper->pollOnce(timeoutMillis);
191 nativeMessageQueue->pollOnce(env, obj, timeoutMillis);
  /frameworks/base/libs/hwui/tests/common/
TestContext.cpp 83 mLooper->pollOnce(-1);
  /frameworks/native/services/surfaceflinger/tests/vsync/
vsync.cpp 63 int32_t ret = loop->pollOnce(-1);
  /hardware/ti/omap4-aah/camera/inc/
SensorListener.h 55 int32_t ret = mLooper->pollOnce(-1);
  /hardware/ti/omap4xxx/camera/inc/
SensorListener.h 52 int32_t ret = mLooper->pollOnce(-1);
  /frameworks/base/native/android/
looper.cpp 60 return looper->pollOnce(timeoutMillis, outFd, outEvents, outData);
  /frameworks/native/services/sensorservice/tests/
sensorservicetest.cpp 89 int32_t ret = loop->pollOnce(-1);
  /frameworks/native/services/surfaceflinger/
MessageQueue.cpp 105 int32_t ret = mLooper->pollOnce(-1);
118 ALOGE("Looper::pollOnce() returned unknown status %d", ret);
SurfaceFlinger.cpp     [all...]
SurfaceFlinger_hwc1.cpp     [all...]
  /frameworks/native/libs/gui/
SensorEventQueue.cpp 103 result = looper->pollOnce(-1, NULL, &events, NULL);
  /hardware/qcom/camera/QCamera2/util/
QCameraDisplay.cpp 106 looper->pollOnce(CAMERA_VSYNC_WAIT_MS);
  /hardware/qcom/camera/msmcobalt/QCamera2/util/
QCameraDisplay.cpp 106 looper->pollOnce(CAMERA_VSYNC_WAIT_MS);
  /system/core/libutils/
Looper.cpp 187 int Looper::pollOnce(int timeoutMillis, int* outFd, int* outEvents, void** outData) {
198 ALOGD("%p ~ pollOnce - returning signalled identifier %d: "
211 ALOGD("%p ~ pollOnce - returning result %d", this, result);
225 ALOGD("%p ~ pollOnce - waiting: timeoutMillis=%d", this, timeoutMillis);
237 ALOGD("%p ~ pollOnce - next message in %" PRId64 "ns, adjusted timeout: timeoutMillis=%d",
279 ALOGD("%p ~ pollOnce - timeout", this);
287 ALOGD("%p ~ pollOnce - handling events from %d fds", this, eventCount);
334 ALOGD("%p ~ pollOnce - sending message: handler=%p, what=%d",
361 ALOGD("%p ~ pollOnce - invoking fd event callback %p: fd=%d, events=0x%x, data=%p",
385 result = pollOnce(timeoutMillis, outFd, outEvents, outData)
    [all...]
  /frameworks/base/libs/hwui/renderthread/
RenderThread.cpp 280 int result = mLooper->pollOnce(timeoutMillis);
  /cts/suite/audio_quality/lib/src/audio/
RemoteAudio.cpp 92 mLooper->pollOnce(10000);
  /frameworks/native/services/sensorservice/
SensorService.cpp 734 int ret = looper->pollOnce(timeout);
    [all...]
  /frameworks/native/services/inputflinger/
InputDispatcher.cpp 252 mLooper->pollOnce(timeoutMillis);
    [all...]

Completed in 2579 milliseconds