Home | History | Annotate | Download | only in libevent

Lines Matching defs:event_overlapped

36 struct event_overlapped;
39 typedef void (*iocp_callback)(struct event_overlapped *, ev_uintptr_t, ev_ssize_t, int success);
49 OVERLAPPED*, it upcasts the pointer to an event_overlapped, and calls the
50 iocp_callback function with the event_overlapped, the iocp key, and the
53 struct event_overlapped {
101 struct event_overlapped {
106 /** Initialize the fields in an event_overlapped.
108 @param overlapped The struct event_overlapped to initialize
113 void event_overlapped_init_(struct event_overlapped *, iocp_callback cb);
140 int evbuffer_launch_read_(struct evbuffer *buf, size_t n, struct event_overlapped *ol);
155 int evbuffer_launch_write_(struct evbuffer *buf, ev_ssize_t n, struct event_overlapped *ol);
189 struct event_overlapped *o,