OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bufferevent
(Results
1 - 4
of
4
) sorted by null
/external/chromium/third_party/libevent/
evbuffer.c
79
struct
bufferevent
*bufev = arg;
95
struct
bufferevent
*bufev = arg;
166
struct
bufferevent
*bufev = arg;
233
struct
bufferevent
*
237
struct
bufferevent
*bufev;
239
if ((bufev = calloc(1, sizeof(struct
bufferevent
))) == NULL)
269
bufferevent_setcb(struct
bufferevent
*bufev,
280
bufferevent_setfd(struct
bufferevent
*bufev, int fd)
296
bufferevent_priority_set(struct
bufferevent
*bufev, int priority)
309
bufferevent_free(struct
bufferevent
*bufev
[
all
...]
event.h
70
@section
bufferevent
I/O Buffers
78
Once initialized via bufferevent_new(), the
bufferevent
structure can be
83
When read enabled the
bufferevent
will try to read from the file descriptor
745
struct
bufferevent
;
746
typedef void (*evbuffercb)(struct
bufferevent
*, void *);
747
typedef void (*everrorcb)(struct
bufferevent
*, short what, void *);
755
struct
bufferevent
{
struct
780
Create a new
bufferevent
.
788
Once initialized, the
bufferevent
structure can be used repeatedly with
791
When read enabled the
bufferevent
will try to read from the file descripto
[
all
...]
/external/chromium/third_party/libevent/test/
regress_http.c
161
http_readcb(struct
bufferevent
*bev, void *arg)
197
http_writecb(struct
bufferevent
*bev, void *arg)
207
http_errorcb(struct
bufferevent
*bev, short what, void *arg)
297
struct
bufferevent
*bev = arg;
308
struct
bufferevent
*bev;
795
http_failure_readcb(struct
bufferevent
*bev, void *arg)
811
struct
bufferevent
*bev;
1078
struct
bufferevent
*bev;
1134
http_chunked_readcb(struct
bufferevent
*bev, void *arg)
1140
http_chunked_errorcb(struct
bufferevent
*bev, short what, void *arg
[
all
...]
regress.c
1078
* simple
bufferevent
test
1082
readcb(struct
bufferevent
*bev, void *arg)
1091
writecb(struct
bufferevent
*bev, void *arg)
1098
errorcb(struct
bufferevent
*bev, short what, void *arg)
1106
struct
bufferevent
*bev1, *bev2;
1110
setup_test("
Bufferevent
: ");
1135
* test watermarks and
bufferevent
1139
wm_readcb(struct
bufferevent
*bev, void *arg)
1156
wm_writecb(struct
bufferevent
*bev, void *arg)
1163
wm_errorcb(struct
bufferevent
*bev, short what, void *arg
[
all
...]
Completed in 62 milliseconds