HomeSort by relevance Sort by last modified time
    Searched defs:IoLooper (Results 1 - 4 of 4) sorted by null

  /external/qemu/
iolooper.h 6 /* An IOLooper is an abstraction for select() */
8 typedef struct IoLooper IoLooper;
10 IoLooper* iolooper_new(void);
11 void iolooper_free( IoLooper* iol );
12 void iolooper_reset( IoLooper* iol );
14 void iolooper_add_read( IoLooper* iol, int fd );
15 void iolooper_add_write( IoLooper* iol, int fd );
16 void iolooper_del_read( IoLooper* iol, int fd );
17 void iolooper_del_write( IoLooper* iol, int fd )
    [all...]
iolooper-select.c 1 #include "iolooper.h"
4 /* An implementation of iolooper.h based on Unix select() */
13 struct IoLooper {
22 IoLooper*
25 IoLooper* iol = malloc(sizeof(*iol));
31 iolooper_free( IoLooper* iol )
37 iolooper_reset( IoLooper* iol )
46 iolooper_add_fd( IoLooper* iol, int fd )
54 iolooper_del_fd( IoLooper* iol, int fd )
61 iolooper_modify( IoLooper* iol, int fd, int oldflags, int newflags
    [all...]
  /sdk/emulator/opengl/tests/event_injector/
iolooper.h 25 /* An IOLooper is an abstraction for select() */
27 typedef struct IoLooper IoLooper;
29 IoLooper* iolooper_new(void);
30 void iolooper_free( IoLooper* iol );
31 void iolooper_reset( IoLooper* iol );
33 void iolooper_add_read( IoLooper* iol, int fd );
34 void iolooper_add_write( IoLooper* iol, int fd );
35 void iolooper_del_read( IoLooper* iol, int fd );
36 void iolooper_del_write( IoLooper* iol, int fd )
    [all...]
iolooper-select.c 18 #include "iolooper.h"
21 /* An implementation of iolooper.h based on Unix select() */
31 struct IoLooper {
40 IoLooper*
43 IoLooper* iol = malloc(sizeof(*iol));
49 iolooper_free( IoLooper* iol )
55 iolooper_reset( IoLooper* iol )
64 iolooper_add_fd( IoLooper* iol, int fd )
72 iolooper_del_fd( IoLooper* iol, int fd )
79 iolooper_modify( IoLooper* iol, int fd, int oldflags, int newflags
    [all...]

Completed in 401 milliseconds