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

1234567891011>>

/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.emptystack.exe29 exec find / > /dev/null 2>&1
/freebsd-10.1-release/crypto/openssh/contrib/aix/
H A Dinventory.sh33 find . ! -name . -print | perl -ne '{
/freebsd-10.1-release/lib/libc/string/
H A Dstrstr.c42 * Find the first occurrence of find in s.
45 strstr(const char *s, const char *find) argument
50 if ((c = *find++) != '\0') {
51 len = strlen(find);
57 } while (strncmp(s, find, len) != 0);
H A Dstrcasestr.c46 * Find the first occurrence of find in s, ignore case.
49 strcasestr_l(const char *s, const char *find, locale_t locale) argument
55 if ((c = *find++) != 0) {
57 len = strlen(find);
63 } while (strncasecmp_l(s, find, len, locale) != 0);
69 strcasestr(const char *s, const char *find) argument
71 return strcasestr_l(s, find, __get_locale());
H A Dstrnstr.c43 * Find the first occurrence of find in s, where the search is limited to the
47 strnstr(const char *s, const char *find, size_t slen) argument
52 if ((c = *find++) != '\0') {
53 len = strlen(find);
61 } while (strncmp(s, find, len) != 0);
H A Dwcsstr.c44 * Find the first occurrence of find in s.
47 wcsstr(const wchar_t * __restrict s, const wchar_t * __restrict find) argument
52 if ((c = *find++) != L'\0') {
53 len = wcslen(find);
59 } while (wcsncmp(s, find, len) != 0);
/freebsd-10.1-release/crypto/heimdal/
H A Dautogen.sh6 find . \( -name '*-private.h' -o -name '*-protos.h' \) -delete
/freebsd-10.1-release/sys/libkern/
H A Dstrstr.c44 * Find the first occurrence of find in s.
47 strstr(const char *s, const char *find) argument
52 if ((c = *find++) != 0) {
53 len = strlen(find);
59 } while (strncmp(s, find, len) != 0);
/freebsd-10.1-release/tools/tools/find-sb/
H A DMakefile3 PROG= find-sb
/freebsd-10.1-release/usr.bin/find/
H A DMakefile4 PROG= find
5 SRCS= find.c function.c ls.c main.c misc.c operator.c option.c \
/freebsd-10.1-release/contrib/file/src/
H A Dstrcasestr.c64 * Find the first occurrence of find in s, ignore case.
67 strcasestr(const char *s, const char *find) argument
72 if ((c = *find++) != 0) {
74 len = strlen(find);
80 } while (_strncasecmp(s, find, len) != 0);
/freebsd-10.1-release/crypto/openssl/util/
H A DfixNT.sh11 /bin/rm -f `find . -name '*.$$$' -print` 2>/dev/null >/dev/null
13 perl -pi -e 's/\015//' `find . -type 'f' -print |grep -v '.obj$' |grep -v '.der$' |grep -v '.gz'`
H A Dperlpath.pl7 require "find.pl";
10 &find(".");
/freebsd-10.1-release/contrib/libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
H A Dfind_fn_imps.hpp44 * Contains implementations of cc_ht_map_'s find related functions.
50 find(const_key_reference r_key) function in class:PB_DS_CLASS_C_DEC
59 find(const_key_reference r_key) const function in class:PB_DS_CLASS_C_DEC
/freebsd-10.1-release/contrib/libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
H A Dfind_fn_imps.hpp44 * Contains implementations of gp_ht_map_'s find related functions.
50 find(const_key_reference r_key) function in class:PB_DS_CLASS_C_DEC
59 find(const_key_reference r_key) const function in class:PB_DS_CLASS_C_DEC
/freebsd-10.1-release/tools/tools/kernelcruft/
H A Dkernelcruft.sh5 # Try to find *.c files in /sys which are orphaned
17 find * -name '*.c' -print | sed '
22 find * -name '*.[ch]' -print | xargs grep 'include.*c[>"]' > /tmp/_2
24 find * -name 'Makefile*' -print | xargs cat | sed '
/freebsd-10.1-release/sys/contrib/dev/acpica/
H A Dacpica_prep.sh52 find ${wrk} -name ${i} -type d -print | xargs rm -r
55 find ${wrk} -name ${i} -type f -delete
61 find ${wrk} -name ${i} -type d -print | xargs -J % mv % ${dst}
64 find ${wrk} -type f -print | xargs -J % mv % ${dst}
68 find ${dst} -name "*.[chly]" -type f -print | \
72 find ${dst}/common ${dst}/compiler ${dst}/components \
77 find ${dst}/include/platform -name "*.h" -type f -print | \
/freebsd-10.1-release/tools/tools/nanobsd/pcengines/Files/root/
H A Dsave_cfg36 for i in "$@" `find * -type f`
/freebsd-10.1-release/usr.bin/locate/locate/
H A Dupdatedb.sh59 : ${find:=find}
93 if $find -s $SEARCHPATHS $excludes -or -print 2>/dev/null |
96 if [ -n "$($find $tmp -size -257c -print)" ]; then
/freebsd-10.1-release/contrib/ntp/scripts/build/
H A DcheckHtmlFileDates5 for i in `find * -type f -name '*.html' -print | grep -v SCCS/`
/freebsd-10.1-release/sys/netpfil/pf/
H A Dpf_osfp.c344 pf_osfp_find(struct pf_osfp_list *list, struct pf_os_fingerprint *find, argument
352 if (f->_field != find->_field) \
355 if (f->_field == 0 || find->_field % f->_field) \
361 if (f->fp_tcpopts != find->fp_tcpopts ||
362 f->fp_optcnt != find->fp_optcnt ||
363 f->fp_ttl < find->fp_ttl ||
364 f->fp_ttl - find->fp_ttl > ttldiff ||
366 (find->fp_flags & (PF_OSFP_DF|PF_OSFP_TS0)))
374 if (find->fp_mss == 0)
382 if ((find
419 pf_osfp_find_exact(struct pf_osfp_list *list, struct pf_os_fingerprint *find) argument
491 struct pf_os_fingerprint *f, *f2, find; local
[all...]
/freebsd-10.1-release/contrib/libstdc++/scripts/
H A Dcreate_testsuite_files33 # what has to happen when find(1) doesn't support -mindepth, or -xtype.
36 find $dlist "(" -type f -o -type l ")" -name "*.cc" -print > $tmp.01
37 find $dlist "(" -type f -o -type l ")" -name "*.c" -print > $tmp.02
/freebsd-10.1-release/contrib/llvm/lib/MC/
H A DMCFunction.cpp34 MCBasicBlock *MCFunction::find(uint64_t StartAddr) { function in class:MCFunction
41 const MCBasicBlock *MCFunction::find(uint64_t StartAddr) const { function in class:MCFunction
42 return const_cast<MCFunction *>(this)->find(StartAddr);
58 return std::find(Successors.begin(), Successors.end(),
68 return std::find(Predecessors.begin(), Predecessors.end(),
/freebsd-10.1-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Diidesc.c74 iidesc_find_t *find = arg2; local
75 iidesc_t *tgt = find->iif_tgt;
81 find->iif_ret = src;
89 iidesc_find_t find; local
91 find.iif_tgt = new;
92 find.iif_ret = NULL;
94 (void) hash_match(hash, new, iidesc_cmp, &find);
96 if (find.iif_ret != NULL) {
97 iidesc_t *old = find.iif_ret;
/freebsd-10.1-release/contrib/openpam/
H A Dpamgdb.in30 for libdir in $(find "${builddir}" -type d -name .libs -print) ; do

Completed in 139 milliseconds

1234567891011>>