Home
last modified time | relevance | path

Searched refs:canwait (Results 1 – 6 of 6) sorted by relevance

/xnu-12377.1.9/bsd/netinet6/
H A Dip6_output.c3457 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.1.9/osfmk/vm/
H A Dvm_page_internal.h589 extern vm_page_t vm_page_create_guard(bool canwait);
H A Dvm_resident.c3887 vm_page_create_guard(bool canwait) in vm_page_create_guard() argument
3889 return vm_page_create(vm_page_guard_addr, false, canwait ? Z_WAITOK : Z_NOWAIT); in vm_page_create_guard()
/xnu-12377.1.9/bsd/sys/
H A Dsocketvar.h837 extern struct sockaddr *dup_sockaddr(struct sockaddr *sa, int canwait);
/xnu-12377.1.9/bsd/kern/
H A Duipc_socket2.c2788 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 Duipc_socket.c2812 int flags, struct mbuf **mp, struct mbuf **nextrecordp, int canwait) in soreceive_addr() argument
2898 *psa = dup_sockaddr(mtod(m, struct sockaddr *), canwait); in soreceive_addr()