Home | History | Annotate | Download | only in libevent

Lines Matching full:callback

35   servers.  The libevent API provides a mechanism to execute a callback
84 and call the read callback. The write callback is executed whenever the
90 libevent can also be used to create timers that invoke a callback after a
123 callbacks to handle incoming requests. Each URI can be assigned a callback
124 via the evhttp_set_cb() function. A generic callback function can also be
125 registered via evhttp_set_gencb(); this callback will be invoked if no other
224 short *ev_pncalls; /* Allows deletes in callback */
233 int ev_res; /* result passed to event callback */
332 to event_set as the argument to callback.
430 event_loopbreak() is typically invoked from this event's callback.
444 event_base_loopbreak() is typically invoked from this event's callback.
469 @param cb callback function
470 @param arg argument that will be passed to the callback function
497 * @param cb the callback to be invoked when the timeout expires
498 * @param arg the argument to be passed to the callback
540 @param fn callback function to be invoked when the event occurs
541 @param arg an argument to be passed to the callback function
552 a callback to be called exactly once and does not require the caller to
558 @param callback callback function to be invoked when the event occurs
559 @param arg an argument to be passed to the callback function
574 schedules a callback to be called exactly once and does not require the
581 @param callback callback function to be invoked when the event occurs
582 @param arg an argument to be passed to the callback function
589 void (*callback)(int, short, void *), void *arg,
792 and call the read callback. The write callback is executed whenever the
801 @param readcb callback to invoke when there is data to be read, or NULL if
802 no callback is desired
803 @param writecb callback to invoke when the file descriptor is ready for
804 writing, or NULL if no callback is desired
805 @param errorcb callback to invoke when there is an error on the file
850 @param readcb callback to invoke when there is data to be read, or NULL if
851 no callback is desired
852 @param writecb callback to invoke when the file descriptor is ready for
853 writing, or NULL if no callback is desired
854 @param errorcb callback to invoke when there is an error on the file
948 On input, a bufferevent does not invoke the user read callback unless
952 On output, the user write callback is invoked whenever the buffered data
1117 Set a callback to invoke when the evbuffer is modified.
1120 @param cb the callback function to invoke when the evbuffer is modified
1121 @param cbarg an argument to be provided to the callback function