Home | History | Annotate | Download | only in libevent

Lines Matching full:bufferevent

150 .Ft "struct bufferevent *"
153 .Fn "bufferevent_free" "struct bufferevent *bufev"
155 .Fn "bufferevent_write" "struct bufferevent *bufev" "void *data" "size_t size"
157 .Fn "bufferevent_write_buffer" "struct bufferevent *bufev" "struct evbuffer *buf"
159 .Fn "bufferevent_read" "struct bufferevent *bufev" "void *data" "size_t size"
161 .Fn "bufferevent_enable" "struct bufferevent *bufev" "short event"
163 .Fn "bufferevent_disable" "struct bufferevent *bufev" "short event"
165 .Fn "bufferevent_settimeout" "struct bufferevent *bufev" "int timeout_read" "int timeout_write"
167 .Fn "bufferevent_base_set" "struct event_base *base" "struct bufferevent *bufev"
487 should be called after preparing a bufferevent with
502 A new bufferevent is created by
512 .Fn "(*cb)" "struct bufferevent *bufev" "void *arg" .
515 .Fn "(*cb)" "struct bufferevent *bufev" "short what" "void *arg" .
519 .Fa bufferevent struct
524 Once initialized, the bufferevent structure can be used repeatedly with
530 When read enabled the bufferevent will try to read from the file
551 enabling the bufferevent for the first time.