Searched refs:hint (Results 26 - 43 of 43) sorted by relevance

12

/darwin-on-arm/xnu/bsd/netinet6/
H A Dnd6.c1703 * Upper-layer reachability hint for Neighbor Unreachability Detection.
2933 struct rtentry *rt = hint0, *hint = hint0; local
2976 if ((hint = rt = rtalloc1_scoped((struct sockaddr *)dst,
3029 /* If hint is now down, give up */
3105 * clone (hint) holds a reference to it. rt == gwrt.
3107 RT_LOCK_SPIN(hint);
3108 if ((hint->rt_flags & (RTF_WASCLONED | RTF_UP)) ==
3110 struct rtentry *prt = hint->rt_parent;
3113 RT_CONVERT_LOCK(hint);
3115 RT_UNLOCK(hint);
3498 nd6_lookup_ipv6(ifnet_t ifp, const struct sockaddr_in6 *ip6_dest, struct sockaddr_dl *ll_dest, size_t ll_dest_len, route_t hint, mbuf_t packet) argument
[all...]
H A Dnd6.h92 int ln_byhint; /* # of times we made it reachable by UL hint */
890 @param hint Any routing hint passed down from the protocol.
900 size_t ll_dest_len, route_t hint, mbuf_t packet);
/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_lro.c680 * The hint is non-zero for longer waits. The wait time dictated by coalesc_time
681 * takes precedence, so lro_timer_set is not set for the hint case
684 tcp_lro_sched_timer(uint64_t hint) argument
691 if (!hint) {
696 clock_interval_to_deadline(hint, NSEC_PER_SEC / TCP_RETRANSHZ,
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_sig.c149 static int filt_signal(struct knote *kn, long hint);
2829 filt_signal(struct knote *kn, long hint) argument
2832 if (hint & NOTE_SIGNAL) {
2833 hint &= ~NOTE_SIGNAL;
2835 if (kn->kn_id == (unsigned int)hint)
2837 } else if (hint & NOTE_EXIT) {
H A Dtty_ptmx.c1573 ptsd_kqops_event(struct knote *kn, long hint) argument
1599 if (hint == 0)
1622 if (hint == 0)
H A Duipc_socket2.c1854 soevent(struct socket *so, long hint) argument
1857 KNOTE(&so->so_klist, hint);
H A Dkern_proc.c2679 proc_knote(struct proc * p, long hint) argument
2682 KNOTE(&p->p_klist, hint);
H A Dpthread_synch.c229 #error Need to define a stack address hint for this architecture
1065 #error Need to define a stack address hint for this architecture
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_fsevents.c1782 * --First, notice if the vnode has been revoked: in so, override hint
1783 * --EVFILT_READ knotes are checked no matter what the hint is
1784 * --Other knotes activate based on hint.
1785 * --If hint is revoke, set special flags and activate
1788 filt_fsevent(struct knote *kn, long hint) argument
1794 if (NOTE_REVOKE == hint) {
1816 /* Check events this note matches against the hint */
1817 if (kn->kn_sfflags & hint) {
1818 kn->kn_fflags |= hint; /* Set which event occurred */
H A Dvfs_subr.c3485 static int filt_fsevent(struct knote *kn, long hint);
3512 filt_fsevent(struct knote *kn, long hint) argument
3519 if ((kn->kn_sfflags == 0) || (kn->kn_sfflags & hint)) {
3520 kn->kn_fflags |= hint;
/darwin-on-arm/xnu/bsd/miscfs/specfs/
H A Dspec_vnops.c1960 static int filt_spec(struct knote *kn, long hint);
2042 filt_spec(struct knote *kn, long hint) argument
2056 if (hint != 0) {
2057 panic("filt_spec(): nonzero hint?");
/darwin-on-arm/xnu/bsd/net/
H A Dbpf.c1888 filt_bpfread(struct knote *kn, long hint) argument
1893 if (hint == 0)
1944 if (hint == 0)
/darwin-on-arm/xnu/bsd/sys/
H A Dproc_internal.h736 void proc_knote(struct proc * p, long hint);
H A Dsocketvar.h690 extern void soevent(struct socket *so, long hint);
/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_map.h221 /* vm_behavior_t */ behavior:2, /* user paging behavior hint */
299 * by address. One hint is used to start
301 * insertion, or removal. Another hint is used to
321 vm_map_entry_t hint; /* hint for quick lookups */ member in struct:_vm_map
322 vm_map_entry_t first_free; /* First free space hint */
H A Dvm_map.c390 * entries; a single hint is used to speed up lookups.
760 result->hint = vm_map_to_entry(result);
1355 * Update the lookup hint
4900 * Fix the lookup hint now, rather than each
8711 * If the map has an interesting hint, try it before calling
8714 entry = map->hint;
8721 * Entry was either not a valid hint, or the vaddr
11064 * Update the free space hint and the lookup hint.
/darwin-on-arm/xnu/bsd/security/audit/
H A Daudit_pipe.c1071 audit_pipe_kqread(struct knote *kn, long hint) argument
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_vfsops.c2871 u_int32_t hint; local
2895 hint = hfs_pickencoding(unicode_name, bytes / 2);
2896 error = sysctl_int(oldp, oldlenp, USER_ADDR_NULL, 0, (int32_t *)&hint);
5485 bzero(&iterator.hint, sizeof(iterator.hint));

Completed in 291 milliseconds

12