Searched refs:ka (Results 1 – 4 of 4) sorted by relevance
| /xnu-8019.80.24/osfmk/kern/ |
| H A D | copyout_shim.h | 59 #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-8019.80.24/osfmk/arm/ |
| H A D | loose_ends.c | 666 copyin_validate(const user_addr_t ua, uintptr_t ka, vm_size_t nbytes) in copyin_validate() argument 668 return copy_validate(ua, ka, nbytes, true); in copyin_validate() 672 copyin_user_validate(const user_addr_t ua, uintptr_t ka, vm_size_t nbytes) in copyin_user_validate() argument 674 return copy_validate(ua, ka, nbytes, false); in copyin_user_validate() 678 copyout_validate(uintptr_t ka, const user_addr_t ua, vm_size_t nbytes) in copyout_validate() argument 680 return copy_validate(ua, ka, nbytes, true); in copyout_validate()
|
| /xnu-8019.80.24/bsd/netinet/ |
| H A D | udp_usrreq.c | 1012 struct udp_keepalive_offload ka; in udp_ctloutput() local 1023 if (sopt->sopt_valsize != sizeof(ka)) { in udp_ctloutput() 1027 if ((error = sooptcopyin(sopt, &ka, sizeof(ka), in udp_ctloutput() 1028 sizeof(ka))) != 0) { in udp_ctloutput() 1033 if (ka.ka_type == 0) { in udp_ctloutput() 1037 if (ka.ka_interval == 0) { in udp_ctloutput() 1059 ka.ka_data_len, in udp_ctloutput() 1069 bcopy(ka.ka_data, in udp_ctloutput() 1077 ka.ka_interval); in udp_ctloutput() 1078 inp->inp_keepalive_type = ka.ka_type; in udp_ctloutput()
|
| H A D | tcp_log.h | 61 X(TLEF_KEEP_ALIVE, 0x4, ka) \
|