Home
last modified time | relevance | path

Searched refs:qp (Results 1 – 2 of 2) sorted by relevance

/xnu-10063.141.1/bsd/netinet/
H A Dip_dummynet.c224 static void cp_queue_to_64_user( struct dn_flow_queue *q, struct dn_flow_queue_64 *qp);
230 static void cp_queue_to_32_user( struct dn_flow_queue *q, struct dn_flow_queue_32 *qp);
427 cp_queue_to_32_user( struct dn_flow_queue *q, struct dn_flow_queue_32 *qp) in cp_queue_to_32_user() argument
429 qp->id = q->id; in cp_queue_to_32_user()
430 qp->len = q->len; in cp_queue_to_32_user()
431 qp->len_bytes = q->len_bytes; in cp_queue_to_32_user()
432 qp->numbytes = q->numbytes; in cp_queue_to_32_user()
433 qp->tot_pkts = q->tot_pkts; in cp_queue_to_32_user()
434 qp->tot_bytes = q->tot_bytes; in cp_queue_to_32_user()
435 qp->drops = q->drops; in cp_queue_to_32_user()
[all …]
/xnu-10063.141.1/bsd/kern/
H A Dtty.c2098 struct clist *qp; in ttread() local
2174 qp = ISSET(lflag, ICANON) ? &tp->t_canq : &tp->t_rawq; in ttread()
2177 if (qp->c_cc > 0) { in ttread()
2201 if (qp->c_cc < m) { in ttread()
2204 if (qp->c_cc > 0) { in ttread()
2215 if (qp->c_cc <= 0) { in ttread()
2218 if (qp->c_cc >= m) { in ttread()
2222 if (!has_etime || qp->c_cc > last_cc) { in ttread()
2240 last_cc = qp->c_cc; in ttread()
2242 if (qp->c_cc > 0) { in ttread()
[all …]