Searched refs:not_inserted (Results 1 – 1 of 1) sorted by relevance
| /xnu-11417.101.15/bsd/netinet/ |
| H A D | tcp_subr.c | 4063 struct tcp_seg_sent *not_inserted = RB_INSERT(tcp_seg_sent_tree_head, &tp->t_segs_sent_tree, seg); in tcp_seg_sent_insert_before() local 4064 if (not_inserted) { in tcp_seg_sent_insert_before() 4065 os_log(OS_LOG_DEFAULT, "segment %p[%u %u) was not inserted in the RB tree", not_inserted, in tcp_seg_sent_insert_before() 4066 not_inserted->start_seq, not_inserted->end_seq); in tcp_seg_sent_insert_before() 4080 struct tcp_seg_sent *not_inserted = RB_INSERT(tcp_seg_sent_tree_head, &tp->t_segs_sent_tree, seg); in tcp_seg_rto_insert_end() local 4081 if (not_inserted) { in tcp_seg_rto_insert_end() 4082 os_log(OS_LOG_DEFAULT, "segment %p[%u %u) was not inserted in the RB tree", not_inserted, in tcp_seg_rto_insert_end() 4083 not_inserted->start_seq, not_inserted->end_seq); in tcp_seg_rto_insert_end() 4116 struct tcp_seg_sent *not_inserted = RB_INSERT(tcp_seg_sent_tree_head, in tcp_seg_sent_insert() local 4118 if (not_inserted) { in tcp_seg_sent_insert() [all …]
|