OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pollOnce
(Results
1 - 2
of
2
) sorted by null
/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);
/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
Completed in 527 milliseconds