Searched refs:canwait (Results 1 – 6 of 6) sorted by relevance
| /xnu-12377.61.12/bsd/netinet6/ |
| H A D | ip6_output.c | 3457 dst->f = kalloc_data(hlen, canwait); \ 3458 if (dst->f == NULL && canwait == Z_NOWAIT) \ 3475 copypktopts(struct ip6_pktopts *dst, struct ip6_pktopts *src, zalloc_flags_t canwait) in copypktopts() argument 3486 dst->ip6po_pktinfo = kalloc_type(struct in6_pktinfo, canwait); in copypktopts() 3487 if (dst->ip6po_pktinfo == NULL && canwait == Z_NOWAIT) { in copypktopts() 3493 dst->ip6po_nexthop = kalloc_data(src->ip6po_nexthop->sa_len, canwait); in copypktopts() 3494 if (dst->ip6po_nexthop == NULL && canwait == Z_NOWAIT) { in copypktopts() 3513 ip6_copypktopts(struct ip6_pktopts *src, zalloc_flags_t canwait) in ip6_copypktopts() argument 3518 dst = kalloc_type(struct ip6_pktopts, canwait); in ip6_copypktopts() 3524 if ((error = copypktopts(dst, src, canwait)) != 0) { in ip6_copypktopts()
|
| /xnu-12377.61.12/osfmk/vm/ |
| H A D | vm_page_internal.h | 605 extern vm_page_t vm_page_create_guard(bool canwait);
|
| H A D | vm_resident.c | 4239 vm_page_create_guard(bool canwait) in vm_page_create_guard() argument 4241 return vm_page_create(vm_page_guard_addr, false, canwait ? Z_WAITOK : Z_NOWAIT); in vm_page_create_guard()
|
| /xnu-12377.61.12/bsd/sys/ |
| H A D | socketvar.h | 837 extern struct sockaddr *dup_sockaddr(struct sockaddr *sa, int canwait);
|
| /xnu-12377.61.12/bsd/kern/ |
| H A D | uipc_socket2.c | 2788 dup_sockaddr(struct sockaddr *sa, int canwait) in dup_sockaddr() argument 2792 sa2 = SA(alloc_sockaddr(sa->sa_len, canwait ? Z_WAITOK : Z_NOWAIT)); in dup_sockaddr()
|
| H A D | uipc_socket.c | 2821 int flags, struct mbuf **mp, struct mbuf **nextrecordp, int canwait) in soreceive_addr() argument 2907 *psa = dup_sockaddr(mtod(m, struct sockaddr *), canwait); in soreceive_addr()
|