HomeSort by relevance Sort by last modified time
    Searched refs:pollOnce (Results 1 - 16 of 16) 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 ALOOPER_POLL_TIMEOUT";
129 StopWatch stopWatch("pollOnce");
130 int result = mLooper->pollOnce(1000);
136 << "pollOnce result should be ALOOPER_POLL_CALLBACK because loop was awoken";
143 StopWatch stopWatch("pollOnce");
144 int result = mLooper->pollOnce(1000);
150 << "pollOnce result should be ALOOPER_POLL_CALLBACK because loop was awoken";
154 StopWatch stopWatch("pollOnce");
    [all...]
  /device/samsung/manta/bubblelevel/
BubbleLevelImpl.h 43 int pollOnce();
121 virtual int pollOnce() {
122 return mBubbleLevel->pollOnce();
BubbleLevel.h 45 virtual int pollOnce() = 0;
BubbleLevelImpl.cpp 185 mLooper->pollOnce(BL_SENSOR_POLL_TIMEOUT_MS);
241 int BubbleLevelImpl::pollOnce()
334 return bl->bubble_level->pollOnce();
  /system/core/include/utils/
Looper.h 138 * pollOnce() is prepared to handle callback-less events itself.
174 int pollOnce(int timeoutMillis, int* outFd, int* outEvents, void** outData);
175 inline int pollOnce(int timeoutMillis) {
176 return pollOnce(timeoutMillis, NULL, NULL, NULL);
180 * Like pollOnce(), but performs all pending callbacks until all
202 * "ident" is an identifier for this event, which is returned from pollOnce().
372 // This state is only used privately by pollOnce and does not require a lock since
  /frameworks/base/core/jni/
android_os_MessageQueue.cpp 40 void pollOnce(JNIEnv* env, int timeoutMillis);
95 void NativeMessageQueue::pollOnce(JNIEnv* env, int timeoutMillis) {
97 mLooper->pollOnce(timeoutMillis);
136 nativeMessageQueue->pollOnce(env, timeoutMillis);
  /frameworks/base/native/android/
looper.cpp 52 return looper->pollOnce(timeoutMillis, outFd, outEvents, outData);
  /frameworks/native/services/surfaceflinger/tests/vsync/
vsync.cpp 62 int32_t ret = loop->pollOnce(-1);
  /hardware/ti/omap4xxx/camera/inc/
SensorListener.h 52 int32_t ret = mLooper->pollOnce(-1);
  /frameworks/native/services/sensorservice/tests/
sensorservicetest.cpp 88 int32_t ret = loop->pollOnce(-1);
  /system/core/libutils/
Looper.cpp 159 int Looper::pollOnce(int timeoutMillis, int* outFd, int* outEvents, void** outData) {
170 ALOGD("%p ~ pollOnce - returning signalled identifier %d: "
183 ALOGD("%p ~ pollOnce - returning result %d", this, result);
197 ALOGD("%p ~ pollOnce - waiting: timeoutMillis=%d", this, timeoutMillis);
209 ALOGD("%p ~ pollOnce - next message in %lldns, adjusted timeout: timeoutMillis=%d",
244 ALOGD("%p ~ pollOnce - timeout", this);
252 ALOGD("%p ~ pollOnce - handling events from %d fds", this, eventCount);
299 ALOGD("%p ~ pollOnce - sending message: handler=%p, what=%d",
326 ALOGD("%p ~ pollOnce - invoking fd event callback %p: fd=%d, events=0x%x, data=%p",
346 result = pollOnce(timeoutMillis, outFd, outEvents, outData)
    [all...]
  /frameworks/native/libs/gui/
SensorEventQueue.cpp 97 result = looper->pollOnce(-1, NULL, &events, NULL);
  /frameworks/native/services/surfaceflinger/
MessageQueue.cpp 115 int32_t ret = mLooper->pollOnce(-1);
127 ALOGE("Looper::pollOnce() returned unknown status %d", ret);
SurfaceFlinger.cpp     [all...]
  /cts/suite/audio_quality/lib/src/audio/
RemoteAudio.cpp 92 mLooper->pollOnce(10000);
  /frameworks/base/services/input/
InputDispatcher.cpp 245 mLooper->pollOnce(timeoutMillis);
    [all...]

Completed in 876 milliseconds