Searched refs:find (Results 1 - 25 of 34) sorted by relevance

12

/xnu-2782.1.97/bsd/net/
H A Dpf_osfp.c403 pf_osfp_find(struct pf_osfp_list *list, struct pf_os_fingerprint *find, argument
411 if (f->_field != find->_field) \
414 if (f->_field == 0 || find->_field % f->_field) \
420 if (f->fp_tcpopts != find->fp_tcpopts ||
421 f->fp_optcnt != find->fp_optcnt ||
422 f->fp_ttl < find->fp_ttl ||
423 f->fp_ttl - find->fp_ttl > ttldiff ||
425 (find->fp_flags & (PF_OSFP_DF|PF_OSFP_TS0)))
433 if (find->fp_mss == 0)
441 if ((find
478 pf_osfp_find_exact(struct pf_osfp_list *list, struct pf_os_fingerprint *find) argument
550 struct pf_os_fingerprint *f, *f2, find; local
[all...]
H A Dif_llreach.c270 struct if_llreach find, *lr; local
274 find.lr_key.proto = llproto;
275 bcopy(addr, &find.lr_key.addr, IF_LLREACH_MAXLEN);
278 lr = RB_FIND(ll_reach_tree, &ifp->if_ll_srcs, &find);
294 struct if_llreach find, *lr; local
302 find.lr_key.proto = llproto;
303 bcopy(addr, &find.lr_key.addr, IF_LLREACH_MAXLEN);
306 lr = RB_FIND(ll_reach_tree, &ifp->if_ll_srcs, &find);
326 lr = RB_FIND(ll_reach_tree, &ifp->if_ll_srcs, &find);
/xnu-2782.1.97/tools/lldbmacros/plugins/
H A Diosspeedtracer.sh10 if security find-internet-password -s ios.apple.com > $TMPFILE2; then
12 PW=$(security find-internet-password -a $USER -s ios.apple.com -w)
/xnu-2782.1.97/libsyscall/xcodescripts/
H A Dcompile-syscalls.pl61 chomp(my $CC = `xcrun -sdk "$ENV{'SDKROOT'}" -find cc`);
69 chomp(my $LIBTOOL = `xcrun -sdk "$ENV{'SDKROOT'}" -find libtool`);
H A Dmach_install_mig.sh33 MIG=`xcrun -sdk "$SDKROOT" -find mig`
34 MIGCC=`xcrun -sdk "$SDKROOT" -find cc`
/xnu-2782.1.97/makedefs/
H A DMakeInc.cmd78 export CC := $(shell $(XCRUN) -sdk $(SDKROOT) -find clang)
81 export CXX := $(shell $(XCRUN) -sdk $(SDKROOT) -find clang++)
84 export MIG := $(shell $(XCRUN) -sdk $(SDKROOT) -find mig)
87 export MIGCOM := $(shell $(XCRUN) -sdk $(SDKROOT) -find migcom)
93 export STRIP := $(shell $(XCRUN) -sdk $(SDKROOT) -find strip)
96 export LIPO := $(shell $(XCRUN) -sdk $(SDKROOT) -find lipo)
99 export LIBTOOL := $(shell $(XCRUN) -sdk $(SDKROOT) -find libtool)
102 export NM := $(shell $(XCRUN) -sdk $(SDKROOT) -find nm)
105 export UNIFDEF := $(shell $(XCRUN) -sdk $(SDKROOT) -find unifdef)
108 export DSYMUTIL := $(shell $(XCRUN) -sdk $(SDKROOT) -find dsymuti
[all...]
/xnu-2782.1.97/osfmk/libsa/
H A Dstring.h84 extern char *strnstr(char *s, const char *find, size_t slen);
/xnu-2782.1.97/tools/tests/superpages/
H A DMakefile10 CC:=$(shell xcrun -sdk "$(SDKROOT)" -find cc)
/xnu-2782.1.97/tools/tests/execperf/
H A DMakefile18 CC = $(shell xcrun -sdk "$(SDKROOT)" -find cc)
19 STRIP = $(shell xcrun -sdk "$(SDKROOT)" -find strip)
20 CODESIGN = $(shell xcrun -sdk "$(SDKROOT)" -find codesign)
21 export CODESIGN_ALLOCATE := $(shell xcrun -sdk "$(SDKROOT)" -find codesign_allocate)
22 DSYMUTIL = $(shell xcrun -sdk "$(SDKROOT)" -find dsymutil)
/xnu-2782.1.97/tools/tests/libMicro/
H A DMakefile.Darwin42 CC = $(shell xcrun -sdk "$(SDKROOT)" -find gcc)
/xnu-2782.1.97/tools/tests/libMicro/apple/
H A DMakefile.Darwin43 CC = $(shell xcrun -sdk "$(SDKROOT)" -find gcc)
/xnu-2782.1.97/osfmk/device/
H A Dsubrs.c574 strnstr(char *s, const char *find, size_t slen) argument
579 if ((c = *find++) != '\0') {
580 len = strlen(find);
588 } while (strncmp(s, find, len) != 0);
/xnu-2782.1.97/tools/tests/jitter/
H A DMakefile10 CC:=$(shell xcrun -sdk "$(SDKROOT)" -find cc)
/xnu-2782.1.97/tools/tests/kqueue_tests/
H A DMakefile8 CC:=$(shell xcrun -sdk "$(SDKROOT)" -find cc)
/xnu-2782.1.97/tools/tests/zero-to-n/
H A DMakefile8 CC:=$(shell xcrun -sdk "$(SDKROOT)" -find cc)
/xnu-2782.1.97/tools/tests/affinity/
H A DMakefile8 CC:=$(shell xcrun -sdk "$(SDKROOT)" -find cc)
/xnu-2782.1.97/tools/tests/memorystatus/
H A DMakefile4 CC:=$(shell xcrun -sdk "$(SDKROOT)" -find clang)
/xnu-2782.1.97/libkern/kxld/
H A Dkxld_util.c763 * Find the first occurrence of find in s.
766 kxld_strstr(s, find)
767 const char *s, *find;
773 if ((c = *find++) != 0) {
774 len = strlen(find);
780 } while (strncmp(s, find, len) != 0);
785 return strstr(s, find);
H A Dkxld_util.h126 #define kKxldLogMissingVtable "Cannot find the vtable '%s' for class '%s'. This vtable symbol is required for binary compatibility, and it may have been stripped."
198 const char * kxld_strstr(const char *s, const char *find)
/xnu-2782.1.97/tools/lldbmacros/
H A Dutils.py92 if arg_string.find('0x') >=0:
118 if so.find(searchstr) >=0 :
152 offset = platdir.find("Contents/Developer")
339 print "Error: Unable to find syms for %s" % uuid
370 None - if failed to find information
/xnu-2782.1.97/tools/tests/MPMMTest/
H A DMakefile8 CC:=$(shell xcrun -sdk "$(SDKROOT)" -find cc)
/xnu-2782.1.97/tools/
H A Dremote_build.sh158 "${SRC}/tools/xcrun_cache.sh" -c "${BUILDTOOLSDIR}" -sdk "${MAKE_SDKROOT}" -find make >/dev/null || die "Could not cache make"
171 MAKE=\`\$PWD/tools/xcrun_cache.sh -u "\$PWD/${REMOTE_BUILDTOOLSREL}" -sdk / -find make\`
H A Dxcrun_cache.sh9 # mode, so '$(XCRUN) -sdk foo -find bar' copies 'bar' from wherever
50 -find)
181 # SDKROOTs used to find tools are all using cached SDKs in
194 TOOLPATH=`/usr/bin/xcrun $VERBOSE -sdk "$REALSDKROOT" -find "$FINDTOOL"`
/xnu-2782.1.97/bsd/netinet6/
H A Din6_mcast.c392 struct ip6_msource find; local
408 find.im6s_addr = psa->sin6.sin6_addr;
409 in6_clearscope(&find.im6s_addr); /* XXX */
410 ims = RB_FIND(ip6_msource_tree, &imf->im6f_sources, &find);
643 struct ip6_msource find; local
648 find.im6s_addr = *addr;
649 ims = RB_FIND(ip6_msource_tree, &inm->in6m_srcs, &find);
658 nims->im6s_addr = find.im6s_addr;
689 struct ip6_msource find; local
698 find
761 struct ip6_msource find; local
902 struct ip6_msource find; local
[all...]
/xnu-2782.1.97/bsd/netinet/
H A Din_mcast.c383 struct ip_msource find; local
400 find.ims_haddr = ntohl(psa->sin.sin_addr.s_addr);
401 ims = RB_FIND(ip_msource_tree, &imf->imf_sources, &find);
707 struct ip_msource find; local
712 find.ims_haddr = ntohl(naddr);
713 ims = RB_FIND(ip_msource_tree, &inm->inm_srcs, &find);
722 nims->ims_haddr = find.ims_haddr;
753 struct ip_msource find; local
763 find.ims_haddr = ntohl(psin->sin_addr.s_addr);
764 ims = RB_FIND(ip_msource_tree, &imf->imf_sources, &find);
826 struct ip_msource find; local
968 struct ip_msource find; local
[all...]

Completed in 85 milliseconds

12