OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:iol
(Results
1 - 3
of
3
) sorted by null
/external/qemu/android/
iolooper-select.c
25
IoLooper*
iol
= malloc(sizeof(*
iol
));
local
26
iolooper_reset(
iol
);
27
return
iol
;
31
iolooper_free( IoLooper*
iol
)
33
free(
iol
);
37
iolooper_reset( IoLooper*
iol
)
39
FD_ZERO(
iol
->reads);
40
FD_ZERO(
iol
->writes);
41
iol
->max_fd = -1
[
all
...]
looper-generic.c
366
IoLooper*
iol
= looper->iolooper;
local
389
ret = iolooper_wait_absolute(
iol
, deadline);
404
if (iolooper_is_read(
iol
, io->fd))
407
if (iolooper_is_write(
iol
, io->fd))
/sdk/emulator/opengl/tests/event_injector/
iolooper-select.c
43
IoLooper*
iol
= malloc(sizeof(*
iol
));
local
44
iolooper_reset(
iol
);
45
return
iol
;
49
iolooper_free( IoLooper*
iol
)
51
free(
iol
);
55
iolooper_reset( IoLooper*
iol
)
57
FD_ZERO(
iol
->reads);
58
FD_ZERO(
iol
->writes);
59
iol
->max_fd = -1
[
all
...]
Completed in 2134 milliseconds