Searched refs:IoLooper (Results 1 – 3 of 3) sorted by relevance
8 typedef struct IoLooper IoLooper; typedef10 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 );19 int iolooper_poll( IoLooper* iol );20 int iolooper_wait( IoLooper* iol, int64_t duration );[all …]
12 struct IoLooper { struct21 IoLooper* argument24 IoLooper* iol = qemu_malloc(sizeof(*iol)); in iolooper_new()30 iolooper_free( IoLooper* iol ) in iolooper_free()36 iolooper_reset( IoLooper* iol ) in iolooper_reset()45 iolooper_add_fd( IoLooper* iol, int fd ) in iolooper_add_fd()53 iolooper_del_fd( IoLooper* iol, int fd ) in iolooper_del_fd()60 iolooper_fd_count( IoLooper* iol ) in iolooper_fd_count()82 iolooper_add_read( IoLooper* iol, int fd ) in iolooper_add_read()91 iolooper_add_write( IoLooper* iol, int fd ) in iolooper_add_write()[all …]
122 IoLooper* looper; in qemu_aio_wait()