Lines Matching full:callback
60 * callback, or no more watchers are registered.
62 * You can register/unregister watchers from a callback, or call various
92 void (*timer_init)(Looper* looper, LoopTimer* timer, LoopTimerFunc callback, void* opaque);
93 void (*io_init) (Looper* looper, LoopIo* io, int fd, LoopIoFunc callback, void* opaque);
125 /* Initialize a LoopTimer with a callback and an 'opaque' value.
131 LoopTimerFunc callback,
134 looper->timer_init(looper, timer, callback, opaque);
223 loopIo_init(LoopIo* io, Looper* looper, int fd, LoopIoFunc callback, void* opaque)
225 looper->io_init(looper, io, fd, callback, opaque);
236 /* The following functions are used to indicate whether you want the callback