Lines Matching refs:rv

450   ssize_t rv;  in proxy_h2_process_pending_input()  local
454 rv = nghttp2_session_mem_recv(ctx->h2, (const uint8_t *)buf, blen); in proxy_h2_process_pending_input()
455 CURL_TRC_CF(data, cf, "[0] %zu bytes to nghttp2 -> %zd", blen, rv); in proxy_h2_process_pending_input()
456 if(rv < 0) { in proxy_h2_process_pending_input()
459 "%zd:%s", rv, nghttp2_strerror((int)rv)); in proxy_h2_process_pending_input()
463 Curl_bufq_skip(&ctx->inbufq, (size_t)rv); in proxy_h2_process_pending_input()
529 int rv = 0; in proxy_h2_progress_egress() local
532 while(!rv && !ctx->nw_out_blocked && nghttp2_session_want_write(ctx->h2)) in proxy_h2_progress_egress()
533 rv = nghttp2_session_send(ctx->h2); in proxy_h2_progress_egress()
535 if(nghttp2_is_fatal(rv)) { in proxy_h2_progress_egress()
537 nghttp2_strerror(rv), rv); in proxy_h2_progress_egress()
1178 int rv; in cf_h2_proxy_shutdown() local
1188 rv = nghttp2_submit_goaway(ctx->h2, NGHTTP2_FLAG_NONE, in cf_h2_proxy_shutdown()
1192 if(rv) { in cf_h2_proxy_shutdown()
1194 nghttp2_strerror(rv), rv); in cf_h2_proxy_shutdown()
1283 ssize_t rv = 0; in h2_handle_tunnel_close() local
1306 rv = 0; in h2_handle_tunnel_close()
1308 ctx->tunnel.stream_id, rv, *err); in h2_handle_tunnel_close()
1309 return rv; in h2_handle_tunnel_close()
1405 int rv; in cf_h2_proxy_send() local
1429 rv = nghttp2_session_resume_data(ctx->h2, ctx->tunnel.stream_id); in cf_h2_proxy_send()
1430 if(nghttp2_is_fatal(rv)) { in cf_h2_proxy_send()
1496 int rv = nghttp2_session_resume_data(ctx->h2, ctx->tunnel.stream_id); in cf_h2_proxy_flush() local
1497 if(nghttp2_is_fatal(rv)) { in cf_h2_proxy_flush()