| /xnu-12377.41.6/bsd/netinet/ |
| H A D | in_proto.c | 128 .pr_flags = PR_ATOMIC | PR_ADDR | PR_PROTOLOCK | PR_PCBLOCK | 144 .pr_flags = PR_CONNREQUIRED | PR_WANTRCVD | PR_PCBLOCK | 162 .pr_flags = PR_ATOMIC | PR_ADDR, 174 .pr_flags = PR_ATOMIC | PR_ADDR | PR_LASTHDR, 185 .pr_flags = PR_ATOMIC | PR_ADDR | PR_LASTHDR, 196 .pr_flags = PR_ATOMIC | PR_ADDR | PR_LASTHDR, 208 .pr_flags = PR_ATOMIC | PR_ADDR, 221 .pr_flags = PR_ATOMIC | PR_ADDR | PR_PROTOLOCK, 229 .pr_flags = PR_ATOMIC | PR_ADDR | PR_PROTOLOCK, 238 .pr_flags = PR_ATOMIC | PR_ADDR | PR_LASTHDR, [all …]
|
| H A D | mp_proto.c | 48 .pr_flags = PR_CONNREQUIRED | PR_MULTICONN | PR_EVCONNINFO |
|
| H A D | ip_input.c | 478 VERIFY((pp->pr_flags & (PR_INITIALIZED | PR_ATTACHED)) == PR_ATTACHED); in ip_init() 712 } else if (!(ip_protox[ip->ip_p]->pr_flags & PR_PROTOLOCK)) { in ip_proto_dispatch_in() 1291 if (ip_protox[ip->ip_p]->pr_flags & PR_LASTHDR) { in ip_input_first_pass() 1600 if (ipsec_bypass == 0 && (ip_protox[ip->ip_p]->pr_flags & PR_LASTHDR)) { in ip_input_second_pass()
|
| H A D | raw_ip.c | 150 VERIFY((pp->pr_flags & (PR_INITIALIZED | PR_ATTACHED)) == PR_ATTACHED); in rip_init()
|
| H A D | mptcp_usrreq.c | 1038 if (so->so_proto->pr_flags & PR_WANTRCVD && so->so_pcb != NULL) { in mptcp_usr_rcvd()
|
| H A D | in_pcb.c | 723 if (so->so_proto->pr_flags & PR_PCBLOCK) { in in_pcballoc() 2102 if (so->so_proto->pr_flags & PR_PCBLOCK) { in in_pcbdispose()
|
| /xnu-12377.41.6/bsd/netinet6/ |
| H A D | in6_proto.c | 175 .pr_flags = PR_ATOMIC | PR_ADDR | PR_PROTOLOCK | PR_PCBLOCK | 191 .pr_flags = PR_CONNREQUIRED | PR_WANTRCVD | PR_PCBLOCK | 209 .pr_flags = PR_ATOMIC | PR_ADDR, 223 .pr_flags = PR_ATOMIC | PR_ADDR | PR_LASTHDR, 237 .pr_flags = PR_ATOMIC | PR_ADDR | PR_LASTHDR, 251 .pr_flags = PR_ATOMIC | PR_ADDR, 258 .pr_flags = PR_ATOMIC | PR_ADDR, 265 .pr_flags = PR_ATOMIC | PR_ADDR | PR_PROTOLOCK, 273 .pr_flags = PR_ATOMIC | PR_ADDR | PR_PROTOLOCK, 281 .pr_flags = PR_ATOMIC | PR_ADDR | PR_PROTOLOCK, [all …]
|
| H A D | ip6protosw.h | 161 u_int32_t pr_flags; /* see below */ member
|
| H A D | ip6_input.c | 364 VERIFY((pp->pr_flags & (PR_INITIALIZED | PR_ATTACHED)) == PR_ATTACHED); in ip6_init() 1398 (ip6_protox[nxt]->pr_flags & PR_LASTHDR) != 0) { in ip6_input() 1453 } else if (!(ip6_protox[nxt]->pr_flags & PR_PROTOLOCK)) { in ip6_input()
|
| H A D | ah_input.c | 552 if ((ip_protox[nxt]->pr_flags & PR_LASTHDR) != 0 && in ah4_input()
|
| H A D | esp_input.c | 786 if ((ip_protox[nxt]->pr_flags & PR_LASTHDR) != 0 && in esp4_input_extended()
|
| /xnu-12377.41.6/bsd/kern/ |
| H A D | uipc_domain.c | 140 VERIFY(pp->pr_flags & PR_OLD); in pr_init_old() 151 VERIFY(pp->pr_flags & PR_ATTACHED); in init_proto() 153 if (!(pp->pr_flags & PR_INITIALIZED)) { in init_proto() 158 pp->pr_flags |= PR_INITIALIZED; in init_proto() 166 VERIFY(!(pp->pr_flags & PR_ATTACHED)); in attach_proto() 171 pp->pr_flags |= PR_ATTACHED; in attach_proto() 183 VERIFY(pp->pr_flags & PR_ATTACHED); in detach_proto() 188 pp->pr_flags &= ~PR_ATTACHED; in detach_proto() 366 if (pp1->pr_flags & PR_OLD) { in net_del_domain_old() 398 VERIFY(!(pp->pr_flags & PR_ATTACHED)); in net_add_proto() [all …]
|
| H A D | uipc_proto.c | 86 .pr_flags = PR_CONNREQUIRED | PR_WANTRCVD | PR_RIGHTS | PR_PCBLOCK, 95 .pr_flags = PR_ATOMIC | PR_WANTRCVD | PR_ADDR | PR_RIGHTS,
|
| H A D | uipc_socket.c | 852 if ((so->so_proto->pr_flags & PR_CONNREQUIRED) == 0) { in solisten() 1542 ((so->so_proto->pr_flags & PR_CONNREQUIRED) || in soconnectlock() 1676 !(so->so_proto->pr_flags & PR_MULTICONN) && in soconnectxlocked() 1677 ((so->so_proto->pr_flags & PR_CONNREQUIRED) || in soconnectxlocked() 1702 if ((so->so_proto->pr_flags & PR_DATA_IDEMPOTENT) && in soconnectxlocked() 1719 if ((so->so_proto->pr_flags & PR_PRECONN_WRITE) && in soconnectxlocked() 1922 if ((so->so_proto->pr_flags & PR_CONNREQUIRED) != 0) { in sosendcheck() 1929 return (so->so_proto->pr_flags & PR_CONNREQUIRED) ? in sosendcheck() 2126 (so->so_proto->pr_flags & PR_ATOMIC); in sosend() 2407 (so->so_proto->pr_flags & PR_IMPLOPCL) && in sosend() [all …]
|
| H A D | vsock_domain.c | 1515 VERIFY((pp->pr_flags & (PR_INITIALIZED | PR_ATTACHED)) == PR_ATTACHED); in common_vsock_init() 1594 .pr_flags = PR_CONNREQUIRED | PR_WANTRCVD, 1602 .pr_flags = PR_CONNREQUIRED | PR_WANTRCVD,
|
| H A D | uipc_syscalls.c | 503 if ((head->so_proto->pr_flags & PR_CONNREQUIRED) == 0) { in accept_nocancel() 2210 !(so->so_proto->pr_flags & PR_CONNREQUIRED) && in recvit() 2572 !(so->so_proto->pr_flags & PR_CONNREQUIRED) && in recvmsg_x_array() 2693 !(so->so_proto->pr_flags & PR_CONNREQUIRED) && in recvmsg_x()
|
| H A D | kern_control.c | 191 .pr_flags = PR_ATOMIC | PR_CONNREQUIRED | PR_PCBLOCK | PR_WANTRCVD, 201 .pr_flags = PR_CONNREQUIRED | PR_PCBLOCK | PR_WANTRCVD,
|
| H A D | uipc_usrreq.c | 1400 if (so->so_proto->pr_flags & PR_CONNREQUIRED) { in unp_connect() 2627 (so->so_proto->pr_flags & PR_RIGHTS) == 0) { in unp_gc()
|
| H A D | uipc_socket2.c | 261 !(so->so_proto->pr_flags & PR_CONNREQUIRED) || in socanwrite() 2334 return so->so_proto->pr_flags & PR_ATOMIC; in sosendallatonce()
|
| /xnu-12377.41.6/bsd/sys/ |
| H A D | protosw.h | 175 unsigned int pr_flags; /* see below */ member 261 u_int32_t pr_flags; /* see below */ member
|
| /xnu-12377.41.6/bsd/net/ |
| H A D | if_gif.c | 137 .pr_flags = PR_ATOMIC | PR_ADDR, 147 .pr_flags = PR_ATOMIC | PR_ADDR,
|
| H A D | if_stf.c | 179 .pr_flags = PR_ATOMIC | PR_ADDR,
|
| H A D | ndrv.c | 1146 .pr_flags = PR_ATOMIC | PR_ADDR,
|
| H A D | rtsock.c | 2481 .pr_flags = PR_ATOMIC | PR_ADDR,
|
| /xnu-12377.41.6/bsd/netkey/ |
| H A D | keysock.c | 559 .pr_flags = PR_ATOMIC | PR_ADDR,
|