Home
last modified time | relevance | path

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

/xnu-12377.61.12/osfmk/kern/
H A Dcopyout_shim.h59 #define CALL_COPYOUT_SHIM_NRML(ka, ua, nb) \ argument
60 … if(copyout_shim_fn && (co_src_flags & CO_SRC_NORMAL)) {copyout_shim_fn(ka,ua,nb,CO_SRC_NORMAL); }
62 #define CALL_COPYOUT_SHIM_MSG(ka, ua, nb) \ argument
63 if(copyout_shim_fn && (co_src_flags & CO_SRC_MSG)){copyout_shim_fn(ka,ua,nb,CO_SRC_MSG); }
65 #define CALL_COPYOUT_SHIM_PHYS(ka, ua, nb) \ argument
66 if(copyout_shim_fn && (co_src_flags & CO_SRC_PHYS)){copyout_shim_fn(ka,ua,nb,CO_SRC_PHYS); }
70 #define CALL_COPYOUT_SHIM_NRML(ka, ua, nb) argument
71 #define CALL_COPYOUT_SHIM_MSG(ka, ua, nb) argument
72 #define CALL_COPYOUT_SHIM_PHYS(ka, ua, nb) argument
/xnu-12377.61.12/bsd/netinet/
H A Dudp_usrreq.c1134 struct udp_keepalive_offload ka; in udp_ctloutput() local
1145 if (sopt->sopt_valsize != sizeof(ka)) { in udp_ctloutput()
1149 if ((error = sooptcopyin(sopt, &ka, sizeof(ka), in udp_ctloutput()
1150 sizeof(ka))) != 0) { in udp_ctloutput()
1155 if (ka.ka_type == 0) { in udp_ctloutput()
1159 if (ka.ka_interval == 0) { in udp_ctloutput()
1180 ka.ka_data_len, in udp_ctloutput()
1193 bcopy(ka.ka_data, in udp_ctloutput()
1202 ka.ka_interval); in udp_ctloutput()
1203 inp->inp_keepalive_type = ka.ka_type; in udp_ctloutput()
H A Dtcp_log.h38 X(TLEF_KEEP_ALIVE, 0x00000004, ka) \