Home
last modified time | relevance | path

Searched refs:Looper (Results 1 – 25 of 25) sorted by relevance

/external/qemu/android/
Dlooper.h72 typedef struct Looper Looper; typedef
75 Looper* looper_newGeneric(void);
81 Looper* looper_newCore(void);
90 struct Looper { struct
91 Duration (*now) (Looper* looper); argument
92 void (*timer_init)(Looper* looper, LoopTimer* timer, LoopTimerFunc callback, void* opaque); argument
93 void (*io_init) (Looper* looper, LoopIo* io, int fd, LoopIoFunc callback, void* opaque); argument
94 int (*run) (Looper* looper, Duration deadline_ms); argument
95 void (*forceQuit) (Looper* looper); argument
96 void (*destroy) (Looper* looper); argument
[all …]
Dlooper-generic.c44 static Duration glooper_now(Looper* ll);
86 glooptimer_startAbsolute(tt, timeout_ms + glooper_now((Looper*)tt->looper)); in glooptimer_startRelative()
118 glooper_timer_init(Looper* looper, in glooper_timer_init()
234 glooper_io_init(Looper* looper, LoopIo* user, int fd, LoopIoFunc callback, void* opaque) in glooper_io_init()
264 Looper looper;
350 glooper_now(Looper* ll) in glooper_now()
356 glooper_forceQuit(Looper* ll) in glooper_forceQuit()
363 glooper_run(Looper* ll, Duration loop_deadline_ms) in glooper_run()
465 glooper_free(Looper* ll) in glooper_free()
481 Looper* looper_newGeneric(void) in looper_newGeneric()
Dlooper-qemu.c82 qlooper_timer_init(Looper* looper, in qlooper_timer_init()
274 qlooper_io_init(Looper* looper, in qlooper_io_init()
289 Looper looper;
371 qlooper_now(Looper* ll) in qlooper_now()
379 qlooper_forceQuit(Looper* ll) in qlooper_forceQuit()
387 qlooper_run(Looper* ll, Duration deadline_ms) in qlooper_run()
394 qlooper_destroy(Looper* ll) in qlooper_destroy()
406 Looper*
Dasync-socket-connector.h105 Looper* looper);
Dasync-socket-connector.c51 Looper* looper;
297 Looper* looper) in async_socket_connector_new()
Dasync-socket.h149 Looper* looper);
Dhw-pipe-net.c187 netPipe_initFromAddress( void* hwpipe, const SockAddress* address, Looper* looper ) in netPipe_initFromAddress()
531 Looper* looper = looper_newCore();
Dasync-socket.c52 static Looper* _async_socket_get_looper(AsyncSocket* as);
367 Looper* looper;
396 static Looper*
1107 Looper* looper) in async_socket_new()
Dmain-common.c980 coreconsole_init(CoreConsole* cc, const SockAddress* address, Looper* looper) in coreconsole_init()
1012 Looper* looper; in list_running_cores()
Dadb-server.c84 Looper* looper;
Dandroid-device.c159 Looper* looper;
917 AINLINED Looper*
Dsdk-controller-socket.c264 Looper* looper;
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
DDecodeThread.java24 import android.os.Looper;
73 Looper.prepare(); in run()
76 Looper.loop(); in run()
DDecodeHandler.java28 import android.os.Looper;
57 Looper.myLooper().quit(); in handleMessage()
/external/qemu/android/protocol/
Dui-commands-impl.h33 extern int uiCmdImpl_create(SockAddress* console_socket, Looper* looper);
Dfb-updates-impl.h39 Looper* looper);
Dattach-ui-proxy.c36 Looper* looper;
Duser-events-impl.c49 Looper* looper;
Dui-commands-proxy.c34 Looper* looper;
Dui-commands-impl.c188 uiCmdImpl_create(SockAddress* console_socket, Looper* looper) in uiCmdImpl_create()
Dfb-updates-impl.c173 Looper* looper) in fbUpdatesImpl_create()
Dfb-updates-proxy.c44 Looper* looper;
Dcore-commands-impl.c50 Looper* looper;
/external/qemu/
Dvl-android-ui.c61 static Looper* mainLooper;
159 static void init_gui_timer(Looper* looper) in init_gui_timer()
/external/webkit/Source/WebCore/platform/haiku/
DSharedTimerHaiku.cpp92 BMessageRunner::StartSending(Looper(), new BMessage(FIRE_MESSAGE), intervalInMicroSeconds, 1); in start()