Home
last modified time | relevance | path

Searched refs:to_flags (Results 1 – 8 of 8) sorted by relevance

/xnu-12377.61.12/bsd/netinet/
H A Dtcp_input.c1250 if (rxtime > 0 && (to->to_flags & TOF_TS) && to->to_tsecr != 0 && in tcp_detect_bad_rexmt()
1379 if ((to->to_flags & TOF_TS) && to->to_tsecr != 0 in tcp_bad_rexmt_check()
1500 if (!(to->to_flags & (TOF_TFO | TOF_TFOREQ)) || in tcp_tfo_syn()
1505 if ((to->to_flags & TOF_TFOREQ)) { in tcp_tfo_syn()
1545 if (to->to_flags & TOF_TFO) { in tcp_tfo_synack()
1939 if ((to->to_flags & TOF_TS) != 0 && (to->to_tsecr != 0) && in tcp_input_process_accecn_synack()
2064 if ((to->to_flags & TOF_TS) != 0 && (to->to_tsecr != 0) && in tcp_input_process_accecn_last_ack()
2175 if ((to->to_flags & TOF_TS) != 0 && (to->to_tsecr != 0) && in tcp_process_accecn()
2643 tpi->to->to_flags |= TOF_SCALE; in tcp_setup_server_socket()
2646 tpi->to->to_flags |= TOF_MSS; in tcp_setup_server_socket()
[all …]
H A Dtcp_syncookie.c582 if (to->to_flags & TOF_MSS) { in syncookie_generate()
585 if (to->to_flags & TOF_SCALE) { in syncookie_generate()
617 if (to->to_flags & TOF_SACKPERM) { in syncookie_generate()
H A Dtcp_subr.c869 to.to_flags = 0; in tcp_filloptions()
873 to.to_flags = TOF_MSS; in tcp_filloptions()
874 if (peer_to->to_flags & TOF_SCALE) { in tcp_filloptions()
876 to.to_flags |= TOF_SCALE; in tcp_filloptions()
878 if (peer_to->to_flags & TOF_SACKPERM) { in tcp_filloptions()
879 to.to_flags |= TOF_SACKPERM; in tcp_filloptions()
882 if ((peer_to->to_flags & TOF_TS)) { in tcp_filloptions()
886 to.to_flags |= TOF_TS; in tcp_filloptions()
4459 if (((to->to_flags & TOF_TS) != 0) && (to->to_tsecr != 0)) { in tcp_segs_doack()
H A Dtcp_sack.c425 if (((to->to_flags & TOF_TS) != 0) && (to->to_tsecr != 0)) { in tcp_sack_doack()
H A Dtcp_output.c736 if ((to->to_flags & mask) != mask) { in tcp_addoptions()
742 switch (to->to_flags & mask) { in tcp_addoptions()
H A Dtcp_var.h1068 uint32_t to_flags; /* which options are present */ member
H A Dmptcp_opt.c1862 to->to_flags |= TOF_MPTCP; in tcp_do_mptcp_options()
/xnu-12377.61.12/tests/vm/
H A Dvm_allocation.c753 uint32_t to_flags; member
803 if (options.to_flags == 0) { in process_options()
808 if (options.to_flags & VM_TEST_ALLOCATE) { in process_options()
812 if (options.to_flags & VM_TEST_DEALLOCATE) { in process_options()
816 if (options.to_flags & VM_TEST_READ) { in process_options()
820 if (options.to_flags & VM_TEST_WRITE) { in process_options()
824 if (options.to_flags & VM_TEST_PROTECT) { in process_options()
828 if (options.to_flags & VM_TEST_COPY) { in process_options()
4172 test_options.to_flags = VM_TEST_ALLOCATE;
4183 test_options.to_flags = VM_TEST_DEALLOCATE;
[all …]