Lines Matching refs:txc
1558 lws_wsi_txc_check_skint(struct lws_tx_credit *txc, int32_t tx_cr) in lws_wsi_txc_check_skint() argument
1560 if (txc->tx_cr <= 0) { in lws_wsi_txc_check_skint()
1567 if (!txc->skint) in lws_wsi_txc_check_skint()
1568 lwsl_info("%s: %p: skint (%d)\n", __func__, txc, in lws_wsi_txc_check_skint()
1569 (int)txc->tx_cr); in lws_wsi_txc_check_skint()
1571 txc->skint = 1; in lws_wsi_txc_check_skint()
1576 if (txc->skint) in lws_wsi_txc_check_skint()
1577 lwsl_info("%s: %p: unskint (%d)\n", __func__, txc, in lws_wsi_txc_check_skint()
1578 (int)txc->tx_cr); in lws_wsi_txc_check_skint()
1580 txc->skint = 0; in lws_wsi_txc_check_skint()
1587 lws_wsi_txc_describe(struct lws_tx_credit *txc, const char *at, uint32_t sid) in lws_wsi_txc_describe() argument
1590 __func__, txc, at, (int)sid, txc->skint ? "SKINT, " : "", in lws_wsi_txc_describe()
1591 (int)txc->peer_tx_cr_est, (int)txc->tx_cr); in lws_wsi_txc_describe()
1613 if (!wsi->txc.manual) in lws_wsi_txc_report_manual_txcr_in()