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

  /frameworks/hardware/interfaces/sensorservice/libsensorndkbridge/
ALooper.h 35 int pollOnce(int timeoutMillis, int *outFd, int *outEvents, void **outData);
ALooper.cpp 43 int ALooper::pollOnce(
85 LOG(VERBOSE) << "pollOnce returning " << result;
ASensorManager.cpp 439 int res = getTheLooper()->pollOnce(timeoutMillis, outFd, outEvents, outData);
  /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/libvehiclemonitor/native/
HandlerThread.cpp 66 mLooper->pollOnce(-1);
  /system/connectivity/wificond/
looper_backed_event_loop.cpp 126 looper_->pollOnce(-1);
131 looper_->pollOnce(timeout_millis);
  /system/core/libutils/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/native/services/surfaceflinger/tests/vsync/
vsync.cpp 63 int32_t ret = loop->pollOnce(-1);
  /frameworks/base/libs/hwui/tests/common/
TestContext.cpp 123 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 104 int32_t ret = mLooper->pollOnce(-1);
117 ALOGE("Looper::pollOnce() returned unknown status %d", ret);
SurfaceFlinger_hwc1.cpp     [all...]
  /device/google/marlin/camera/QCamera2/util/
QCameraDisplay.cpp 106 looper->pollOnce(CAMERA_VSYNC_WAIT_MS);
  /frameworks/native/libs/sensor/
SensorEventQueue.cpp 100 result = looper->pollOnce(-1, NULL, &events, NULL);
  /hardware/libhardware/modules/sensors/dynamic_sensor/
ConnectionDetector.cpp 217 int ret = mLooper->pollOnce(-1);
220 ALOGE("Unexpected value %d from pollOnce, quit", ret);
  /hardware/qcom/camera/msm8998/QCamera2/util/
QCameraDisplay.cpp 106 looper->pollOnce(CAMERA_VSYNC_WAIT_MS);
  /system/core/libutils/
Looper.cpp 178 int Looper::pollOnce(int timeoutMillis, int* outFd, int* outEvents, void** outData) {
189 ALOGD("%p ~ pollOnce - returning signalled identifier %d: "
202 ALOGD("%p ~ pollOnce - returning result %d", this, result);
216 ALOGD("%p ~ pollOnce - waiting: timeoutMillis=%d", this, timeoutMillis);
228 ALOGD("%p ~ pollOnce - next message in %" PRId64 "ns, adjusted timeout: timeoutMillis=%d",
270 ALOGD("%p ~ pollOnce - timeout", this);
278 ALOGD("%p ~ pollOnce - handling events from %d fds", this, eventCount);
325 ALOGD("%p ~ pollOnce - sending message: handler=%p, what=%d",
352 ALOGD("%p ~ pollOnce - invoking fd event callback %p: fd=%d, events=0x%x, data=%p",
376 result = pollOnce(timeoutMillis, outFd, outEvents, outData)
    [all...]
  /cts/suite/audio_quality/lib/src/audio/
RemoteAudio.cpp 92 mLooper->pollOnce(10000);
  /frameworks/base/libs/hwui/renderthread/
RenderThread.cpp 361 int result = mLooper->pollOnce(timeoutMillis);
  /frameworks/native/services/sensorservice/
SensorService.cpp 754 int ret = looper->pollOnce(timeout);
    [all...]
  /frameworks/native/services/inputflinger/
InputDispatcher.cpp 252 mLooper->pollOnce(timeoutMillis);
    [all...]

Completed in 1592 milliseconds