Home
last modified time | relevance | path

Searched refs:send_queue (Results 1 – 3 of 3) sorted by relevance

/xnu-10002.81.5/osfmk/kern/
H A Dhost_notify.c147 queue_head_t send_queue = QUEUE_HEAD_INITIALIZER(send_queue); in host_notify_all() local
163 enqueue_tail(&send_queue, e); in host_notify_all()
176 if (queue_empty(&send_queue)) { in host_notify_all()
186 qe_foreach_safe(e, &send_queue) { in host_notify_all()
/xnu-10002.81.5/bsd/netinet/
H A Dflow_divert.h90 MBUFQ_HEAD(send_queue_head) send_queue;
H A Dflow_divert.c1221 if (MBUFQ_EMPTY(&fd_cb->group->send_queue)) { in flow_divert_send_packet()
1234 MBUFQ_ENQUEUE(&fd_cb->group->send_queue, packet); in flow_divert_send_packet()
2310 MBUFQ_HEAD(send_queue_head) send_queue; in flow_divert_disable()
2311 MBUFQ_INIT(&send_queue); in flow_divert_disable()
2323 MBUFQ_ENQUEUE(&send_queue, record); in flow_divert_disable()
2327 while (!MBUFQ_EMPTY(&send_queue)) { in flow_divert_disable()
2328 mbuf_t next_record = MBUFQ_FIRST(&send_queue); in flow_divert_disable()
2336 MBUFQ_DEQUEUE(&send_queue, next_record); in flow_divert_disable()
3312 MBUFQ_DRAIN(&group->send_queue); in flow_divert_close_all()
4383 MBUFQ_INIT(&new_group->send_queue); in flow_divert_allocate_group()
[all …]