Home
last modified time | relevance | path

Searched refs:readcb (Results 1 – 15 of 15) sorted by relevance

/third_party/nghttp2/src/
Dshrpx_dns_resolver.cc85 void readcb(struct ev_loop *loop, ev_io *w, int revents) { in readcb() function
277 start_ev(revs_, loop_, fd, EV_READ, readcb, this); in start_rev()
Dshrpx_connection.h101 const RateLimitConfig &read_limit, IOCb writecb, IOCb readcb,
Dshrpx_live_check.cc38 void readcb(struct ev_loop *loop, ev_io *w, int revents) { in readcb() function
108 readcb, timeoutcb, this, get_config()->tls.dyn_rec.warmup_threshold,
Dshrpx_memcached_connection.cc59 void readcb(struct ev_loop *loop, ev_io *w, int revents) { in readcb() function
105 connectcb, readcb, timeoutcb, this, 0, 0., Proto::MEMCACHED),
Dshrpx_connection.cc60 IOCb readcb, TimerCb timeoutcb, void *data, in Connection() argument
77 ev_io_init(&rev, readcb, fd, EV_READ);
Dshrpx_http_downstream_connection.cc148 void readcb(struct ev_loop *loop, ev_io *w, int revents) { in readcb() function
207 {}, {}, connectcb, readcb, connect_timeoutcb, this, in HttpDownstreamConnection()
443 ev_set_cb(&conn_.rev, readcb); in initiate_connection()
Dshrpx_client_handler.cc88 void readcb(struct ev_loop *loop, ev_io *w, int revents) { in readcb() function
402 get_config()->conn.upstream.ratelimit.read, writecb, readcb, in ClientHandler()
Dshrpx_http2_session.cc129 void readcb(struct ev_loop *loop, ev_io *w, int revents) { in readcb() function
189 {}, {}, writecb, readcb, timeoutcb, this, in Http2Session()
DHttpServer.cc503 void readcb(struct ev_loop *loop, ev_io *w, int revents) { in readcb() function
537 ev_io_init(&rev_, readcb, fd, EV_READ); in Http2Handler()
Dh2load.cc185 void readcb(struct ev_loop *loop, ev_io *w, int revents) { in readcb() function
384 ev_io_init(&rev, readcb, 0, EV_READ);
Dnghttp.cc541 void readcb(struct ev_loop *loop, ev_io *w, int revents) { in readcb() function
601 ev_io_init(&rev, readcb, 0, EV_READ); in HttpClient()
/third_party/nghttp2/doc/sources/
Dtutorial-client.rst128 bufferevent_setcb(bev, readcb, writecb, eventcb, session_data);
139 sets up three callbacks: ``readcb``, ``writecb``, and ``eventcb``.
302 The next bufferevent callback is ``readcb()``, which is invoked when
305 static void readcb(struct bufferevent *bev, void *ptr) {
Dtutorial-server.rst193 bufferevent_setcb(session_data->bev, readcb, writecb, eventcb, session_data);
198 callbacks for the bufferevent: ``readcb``, ``writecb``, and
397 The next bufferevent callback is ``readcb()``, which is invoked when
400 static void readcb(struct bufferevent *bev _U_, void *ptr) {
/third_party/nghttp2/examples/
Dlibevent-client.c454 static void readcb(struct bufferevent *bev, void *ptr) { in readcb() function
558 bufferevent_setcb(bev, readcb, writecb, eventcb, session_data); in initiate_connection()
Dlibevent-server.c650 static void readcb(struct bufferevent *bev, void *ptr) { in readcb() function
741 bufferevent_setcb(session_data->bev, readcb, writecb, eventcb, session_data); in acceptcb()