Searched defs:bufferevent (Results 1 - 3 of 3) sorted by relevance

/external/libevent/include/event2/
H A Dbufferevent_struct.h63 Shared implementation of a bufferevent.
70 struct bufferevent { struct
71 /** Event base for which this bufferevent was created. */
74 bufferevent behaves. */
79 bufferevent. */
83 bufferevent. */
86 /** An input buffer. Only the bufferevent is allowed to add data to
90 /** An input buffer. Only the bufferevent is allowed to drain data
H A Dbufferevent.h31 @file event2/bufferevent.h
38 A bufferevent provides input and output buffers that get filled and
39 drained automatically. The user of a bufferevent no longer deals
43 Once initialized, the bufferevent structure can be used repeatedly
46 When reading is enabled, the bufferevent will try to read from the
48 When writing is enabled, the bufferevent will try to write data onto its
56 <dd>A bufferevent that reads and writes data onto a network
65 <dd>A bufferevent that transforms data, and sends or receives it
66 over another underlying bufferevent. Created with
70 <dd>A bufferevent tha
113 struct bufferevent struct
[all...]
/external/libevent/
H A Dbufferevent_openssl.c56 #include "event2/bufferevent.h"
63 #include "bufferevent-internal.h"
72 * Define an OpenSSL bio that targets a bufferevent.
81 bufferevent. We'll want to use this only when none of OpenSSL's built-in
114 BIO_set_data(b, NULL); /* We'll be putting the bufferevent in this field.*/
162 struct bufferevent *bufev = BIO_get_data(b);
194 struct bufferevent *bufev = BIO_get_data(b);
230 /* Method table for the bufferevent BIO */
238 methods_bufferevent = BIO_meth_new(BIO_TYPE_LIBEVENT, "bufferevent");
251 /* Create a new BIO to wrap communication around a bufferevent
254 BIO_new_bufferevent(struct bufferevent *bufferevent, int close_flag) argument
[all...]

Completed in 750 milliseconds