Home | History | Annotate | Download | only in android

Lines Matching refs:looper

28  * A looper is the state tracking an event loop for a thread.
42 * Returns the looper associated with the calling thread, or NULL if
49 * Option for ALooper_prepare: this looper will accept calls to
59 * Prepares a looper associated with the calling thread, and returns it.
60 * If the thread already has a looper, it is returned. Otherwise, a new
99 void ALooper_acquire(ALooper* looper);
104 void ALooper_release(ALooper* looper);
107 * Flags for file descriptor events that a looper can monitor.
125 * The looper always sends notifications about errors; it is not necessary
134 * The looper always sends notifications about hangups; it is not necessary
143 * The looper always sends notifications about invalid file descriptors; it is not necessary
156 * to have this file descriptor and callback unregistered from the looper.
201 void ALooper_wake(ALooper* looper);
204 * Adds a new file descriptor to be polled by the looper.
229 int ALooper_addFd(ALooper* looper, int fd, int ident, int events,
233 * Removes a previously added file descriptor from the looper.
235 * When this method returns, it is safe to close the file descriptor since the looper
249 int ALooper_removeFd(ALooper* looper, int fd);