Home
last modified time | relevance | path

Searched refs:hiwat (Results 1 – 7 of 7) sorted by relevance

/dragonfly/sys/netinet/
H A Dtcp_output.c448 const int hiwat = so->so_snd.ssb_hiwat; in tcp_output() local
452 if ((tp->snd_wnd / 4 * 5) >= hiwat && in tcp_output()
453 so->so_snd.ssb_cc >= (hiwat / 8 * 7) && in tcp_output()
454 hiwat < tp->snd_bwnd + hiwat / 10 && in tcp_output()
455 hiwat + asbinc < tcp_autosndbuf_max && in tcp_output()
468 hiwat > tp->t_maxseg * 2 + asbinc && in tcp_output()
469 hiwat + asbinc >= tcp_autosndbuf_min && in tcp_output()
610 long hiwat; in tcp_output() local
634 if (hiwat > (long)so->so_rcv.ssb_hiwat) in tcp_output()
635 hiwat = (long)so->so_rcv.ssb_hiwat; in tcp_output()
[all …]
/dragonfly/sys/kern/
H A Dkern_resource.c1104 chgsbsize(struct uidinfo *uip, u_long *hiwat, u_long to, rlim_t max) in chgsbsize() argument
1110 sbsize = atomic_fetchadd_long(&uip->ui_sbsize, to - *hiwat); in chgsbsize()
1111 new = sbsize + to - *hiwat; in chgsbsize()
1122 if (to > *hiwat && to > MCLBYTES && new > max) { in chgsbsize()
1127 *hiwat = to; in chgsbsize()
H A Dtty.c1956 int hiwat; in ttycheckoutq() local
1960 hiwat = tp->t_ohiwat; in ttycheckoutq()
1965 if (tp->t_outq.c_cc > hiwat + OBUFSIZ + 100) { in ttycheckoutq()
1966 while (tp->t_outq.c_cc > hiwat) { in ttycheckoutq()
1968 if (tp->t_outq.c_cc <= hiwat) in ttycheckoutq()
1994 int i, hiwat, error; in ttwrite() local
2001 hiwat = tp->t_ohiwat; in ttwrite()
2056 if (tp->t_outq.c_cc > hiwat) in ttwrite()
2109 tp->t_outq.c_cc > hiwat) in ttwrite()
2142 tp->t_outq.c_cc > hiwat) in ttwrite()
[all …]
/dragonfly/sys/dev/misc/dimm/
H A Ddimm.c214 dimm_set_temp_thresh(struct dimm_softc *sc, int hiwat, int lowat) in dimm_set_temp_thresh() argument
216 sc->dimm_temp_hiwat = hiwat; in dimm_set_temp_thresh()
/dragonfly/sys/dev/video/meteor/
H A Dioctl_meteor.h159 int hiwat; /* kernel stops capture if > this number. member
/dragonfly/sys/sys/
H A Dresourcevar.h155 int chgsbsize (struct uidinfo *uip, u_long *hiwat, u_long to, rlim_t max);
/dragonfly/sys/dev/sound/midi/
H A Dmidi.c107 int hiwat; /* QLEN(outq)>High-water -> disable member
339 m->hiwat = outqsize / 2; in midi_init()
597 if (used && MIDIQ_AVAIL(m->outq) > m->hiwat) { in midi_out()
970 if (MIDIQ_AVAIL(m->outq) < m->hiwat) in midi_filter_write()