• Home
  • Raw
  • Download

Lines Matching refs:tx_cr

255 	wsi->txc.tx_cr = nwsi->h2.h2n->peer_set.s[H2SET_INITIAL_WINDOW_SIZE];  in lws_wsi_server_new()
324 wsi->txc.tx_cr = nwsi->h2.h2n->peer_set.s[H2SET_INITIAL_WINDOW_SIZE]; in lws_wsi_h2_adopt()
371 wsi->txc.tx_cr = 65535; in lws_h2_issue_preface()
521 __func__, (int)w->txc.tx_cr, in lws_h2_settings()
523 (int)w->txc.tx_cr + b - in lws_h2_settings()
525 w->txc.tx_cr += b - settings->s[a]; in lws_h2_settings()
526 if (w->txc.tx_cr > 0 && in lws_h2_settings()
527 w->txc.tx_cr <= in lws_h2_settings()
585 int c = wsi->txc.tx_cr; in lws_h2_tx_cr_get()
592 __func__, wsi, c, (int)nwsi->txc.tx_cr); in lws_h2_tx_cr_get()
594 if (nwsi->txc.tx_cr < c) in lws_h2_tx_cr_get()
595 c = nwsi->txc.tx_cr; in lws_h2_tx_cr_get()
608 wsi->txc.tx_cr -= consumed; in lws_h2_tx_cr_consume()
611 nwsi->txc.tx_cr -= consumed; in lws_h2_tx_cr_consume()
636 sid, len, (int)wsi->txc.tx_cr, (int)nwsi->txc.tx_cr); in lws_h2_frame_write()
639 if (wsi->txc.tx_cr < (int)len) in lws_h2_frame_write()
642 len, (int)wsi->txc.tx_cr); in lws_h2_frame_write()
774 h2n->swsi->txc.tx_cr = in lws_h2_do_pps_send()
777 h2n->swsi, (int)h2n->swsi->txc.tx_cr); in lws_h2_do_pps_send()
1430 h2n->swsi->txc.tx_cr = in lws_h2_parse_end_of_frame()
1433 __func__, h2n->swsi, (int)h2n->swsi->txc.tx_cr); in lws_h2_parse_end_of_frame()
1438 wsi->txc.tx_cr = in lws_h2_parse_end_of_frame()
1443 wsi, (int)wsi->txc.tx_cr); in lws_h2_parse_end_of_frame()
1737 (uint64_t)eff_wsi->txc.tx_cr + (uint64_t)h2n->hpack_e_dep > in lws_h2_parse_end_of_frame()
1739 h2n->hpack_e_dep = 0x7fffffff - eff_wsi->txc.tx_cr; in lws_h2_parse_end_of_frame()
1741 if ((uint64_t)eff_wsi->txc.tx_cr + (uint64_t)h2n->hpack_e_dep > in lws_h2_parse_end_of_frame()
1758 n = eff_wsi->txc.tx_cr; in lws_h2_parse_end_of_frame()
1759 eff_wsi->txc.tx_cr += h2n->hpack_e_dep; in lws_h2_parse_end_of_frame()
1767 if (n <= 0 && eff_wsi->txc.tx_cr <= 0) in lws_h2_parse_end_of_frame()
1857 wsi->txc.tx_cr = 65535; in lws_h2_parser()