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

  /device/samsung/manta/bubblelevel/
BubbleLevelImpl.cpp 185 mLooper->pollOnce(BL_SENSOR_POLL_TIMEOUT_MS);
241 int BubbleLevelImpl::pollOnce()
334 return bl->bubble_level->pollOnce();
BubbleLevelImpl.h 43 int pollOnce();
121 virtual int pollOnce() {
122 return mBubbleLevel->pollOnce();
  /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);
  /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().
461 // This state is only used privately by pollOnce and does not require a lock since
  /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...]

Completed in 625 milliseconds