Home
last modified time | relevance | path

Searched refs:MBUFQ_FIRST (Results 1 – 6 of 6) sorted by relevance

/xnu-8020.140.41/bsd/net/classq/
H A Dclassq.c326 first->cp_mbuf = MBUFQ_FIRST(&qmbufq(q)); in _getq_all()
379 struct mbuf *n = MBUFQ_FIRST(head); in _getq_tail_mbuf()
390 (qlen(q) == 1 && m == MBUFQ_FIRST(head))); in _getq_tail_mbuf()
402 VERIFY(m == MBUFQ_FIRST(head)); in _getq_tail_mbuf()
454 m = MBUFQ_FIRST(head); in _getq_random_mbuf()
459 if ((MBUFQ_FIRST(head) = MBUFQ_NEXT(m)) == NULL) { in _getq_random_mbuf()
460 (head)->mq_last = &MBUFQ_FIRST(head); in _getq_random_mbuf()
523 m0 = MBUFQ_FIRST(head); in _removeq_mbuf()
538 mtail = &MBUFQ_FIRST(head); in _removeq_mbuf()
624 m_freem_list(MBUFQ_FIRST(&freeq)); in _flushq_flow_mbuf()
H A Dclassq.h188 (void *)MBUFQ_FIRST(&qmbufq(q)) : \
191 #define qhead(q) MBUFQ_FIRST(&qmbufq(q))
/xnu-8020.140.41/bsd/sys/
H A Dmbuf.h1006 MBUFQ_FIRST(q) = NULL; \
1007 (q)->mq_last = &MBUFQ_FIRST(q); \
1011 if ((MBUFQ_NEXT(m) = MBUFQ_FIRST(q)) == NULL) \
1013 MBUFQ_FIRST(q) = (m); \
1029 if (((m) = MBUFQ_FIRST(q)) != NULL) { \
1030 if ((MBUFQ_FIRST(q) = MBUFQ_NEXT(m)) == NULL) \
1031 (q)->mq_last = &MBUFQ_FIRST(q); \
1038 if (MBUFQ_FIRST(q) == (m)) { \
1041 struct mbuf *_m = MBUFQ_FIRST(q); \
1052 while ((__m0 = MBUFQ_FIRST(q)) != NULL) { \
[all …]
/xnu-8020.140.41/bsd/netinet/
H A Dflow_divert.c2104 mbuf_t next_record = MBUFQ_FIRST(&send_queue); in flow_divert_disable()
4227 next_packet = MBUFQ_FIRST(&group->send_queue); in flow_divert_kctl_rcvd()
/xnu-8020.140.41/bsd/net/
H A Dif_utun.c3269 (void) ifnet_input_extended(pcb->utun_ifp, MBUFQ_FIRST(&mbq), in utun_kpipe_sync_tx()
H A Dcontent_filter.c1117 return MBUFQ_FIRST(&cfq->q_mq); in cfil_queue_first()