/third_party/nghttp2/src/ |
D | shrpx_dns_resolver.cc | 85 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()
|
D | shrpx_connection.h | 101 const RateLimitConfig &read_limit, IOCb writecb, IOCb readcb,
|
D | shrpx_live_check.cc | 38 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,
|
D | shrpx_memcached_connection.cc | 59 void readcb(struct ev_loop *loop, ev_io *w, int revents) { in readcb() function 105 connectcb, readcb, timeoutcb, this, 0, 0., Proto::MEMCACHED),
|
D | shrpx_connection.cc | 60 IOCb readcb, TimerCb timeoutcb, void *data, in Connection() argument 77 ev_io_init(&rev, readcb, fd, EV_READ);
|
D | shrpx_http_downstream_connection.cc | 148 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()
|
D | shrpx_client_handler.cc | 88 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()
|
D | shrpx_http2_session.cc | 129 void readcb(struct ev_loop *loop, ev_io *w, int revents) { in readcb() function 189 {}, {}, writecb, readcb, timeoutcb, this, in Http2Session()
|
D | HttpServer.cc | 503 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()
|
D | h2load.cc | 185 void readcb(struct ev_loop *loop, ev_io *w, int revents) { in readcb() function 384 ev_io_init(&rev, readcb, 0, EV_READ);
|
D | nghttp.cc | 541 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/ |
D | tutorial-client.rst | 128 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) {
|
D | tutorial-server.rst | 193 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/ |
D | libevent-client.c | 454 static void readcb(struct bufferevent *bev, void *ptr) { in readcb() function 558 bufferevent_setcb(bev, readcb, writecb, eventcb, session_data); in initiate_connection()
|
D | libevent-server.c | 650 static void readcb(struct bufferevent *bev, void *ptr) { in readcb() function 741 bufferevent_setcb(session_data->bev, readcb, writecb, eventcb, session_data); in acceptcb()
|