rxbps            1281 src/simh/sim_console.c if (sim_con_ldsc.rxbps) {
rxbps            1282 src/simh/sim_console.c     fprintf (st, "Speed = %ld", (long)sim_con_ldsc.rxbps);
rxbps            1821 src/simh/sim_console.c     if ((sim_con_ldsc.rxbps) &&                             /* rate limiting && */
rxbps            1831 src/simh/sim_console.c         if (c && sim_con_ldsc.rxbps)                        /* got something && rate limiting? */
rxbps            1383 src/simh/sim_tmxr.c     ((!lp->rxbps) ||                                    /* (!rate limited || enough time passed)? */
rxbps            1400 src/simh/sim_tmxr.c if (lp->rxbps) {
rxbps            1729 src/simh/sim_tmxr.c if ((speed) && (lp->rxbps)) {                   /* consider speed and rate limiting? */
rxbps            2058 src/simh/sim_tmxr.c lp->rxbps = (uint32)strtotv (speed, &cptr, 10);
rxbps            2074 src/simh/sim_tmxr.c lp->txbps = lp->rxbps;
rxbps            2980 src/simh/sim_tmxr.c             if (mp->ldsc->rxbps) {
rxbps            2981 src/simh/sim_tmxr.c                 fprintf(st, ", Speed=%lu", (unsigned long)mp->ldsc->rxbps);
rxbps            3005 src/simh/sim_tmxr.c                 if (lp->rxbps) {
rxbps            3006 src/simh/sim_tmxr.c                     fprintf(st, ", Speed=%lu", (unsigned long)lp->rxbps);
rxbps             160 src/simh/sim_tmxr.h     uint32              rxbps;                          /* rcv bps speed (0 - unlimited) */
rxbps             278 src/simh/sim_tmxr.h # define tmxr_debug_return(lp, val) do {if (sim_deb && (val) && (lp)->mp && (lp)->mp->dptr && (TMXR_DBG_RET & (lp)->mp->dptr->dctrl)) { if ((lp)->rxbps) sim_debug (TMXR_DBG_RET, (lp)->mp->dptr, "Ln%d: 0x%x - Next after: %.0f\n", (int)((lp)-(lp)->mp->ldsc), val, (lp)->rxnexttime); else sim_debug (TMXR_DBG_RET, (lp)->mp->dptr, "Ln%d: 0x%x\n", (int)((lp)-(lp)->mp->ldsc), val); } } while (0)