HomeSort by relevance Sort by last modified time
    Searched full:bufferevent (Results 1 - 7 of 7) 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...]
event.3 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 wit
    [all...]
http-internal.h 37 /* A stupid connection object - maybe make this a bufferevent later */
ChangeLog 68 o Fix a bug where setting the timeout on a bufferevent would take not effect if the event was already pending.
92 o fix a bug in bufferevent read water marks and add a test for them
  /external/chromium/third_party/libevent/test/
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...]
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...]

Completed in 207 milliseconds