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

1234567891011>>

/freebsd-current/crypto/openssh/contrib/aix/
H A Dinventory.sh32 find . ! -name . -print | perl -ne '{
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.emptystack.exe29 exec find / > /dev/null 2>&1
/freebsd-current/sys/contrib/openzfs/contrib/debian/
H A Dopenzfs-zfs-zed.postinst8 find "${etcd}" -maxdepth 1 -lname '/dev/null' -delete
10 find "${etcd}" -maxdepth 1 -lname "${zedd}/*" -xtype l -delete
H A Dopenzfs-zfs-zed.postrm9 find "${etcd}" -maxdepth 1 -lname '/dev/null' -delete
11 find "${etcd}" -maxdepth 1 -lname "${zedd}/*" -xtype l -delete
/freebsd-current/tools/tools/find-sb/
H A DMakefile2 PROG= find-sb
/freebsd-current/sys/libkern/
H A Dstrstr.c39 * Find the first occurrence of find in s.
42 strstr(const char *s, const char *find) argument
47 if ((c = *find++) != 0) {
48 len = strlen(find);
54 } while (strncmp(s, find, len) != 0);
H A Dstrnstr.c42 * Find the first occurrence of find in s, where the search is limited to the
46 strnstr(const char *s, const char *find, size_t slen) argument
51 if ((c = *find++) != '\0') {
52 len = strlen(find);
60 } while (strncmp(s, find, len) != 0);
H A Dstrcasestr.c45 * Find the first occurrence of find in s, ignore case.
48 strcasestr(const char *s, const char *find) argument
53 if ((c = *find++) != 0) {
55 len = strlen(find);
61 } while (strncasecmp(s, find, len) != 0);
/freebsd-current/lib/libc/string/
H A Dstrnstr.c39 * Find the first occurrence of find in s, where the search is limited to the
43 strnstr(const char *s, const char *find, size_t slen) argument
48 if ((c = *find++) != '\0') {
49 len = strlen(find);
57 } while (strncmp(s, find, len) != 0);
H A Dstrcasestr.c45 * Find the first occurrence of find in s, ignore case.
48 strcasestr_l(const char *s, const char *find, locale_t locale) argument
54 if ((c = *find++) != 0) {
56 len = strlen(find);
62 } while (strncasecmp_l(s, find, len, locale) != 0);
68 strcasestr(const char *s, const char *find) argument
70 return strcasestr_l(s, find, __get_locale());
H A Dwcsstr.c38 * Find the first occurrence of find in s.
41 wcsstr(const wchar_t * __restrict s, const wchar_t * __restrict find) argument
46 if ((c = *find++) != L'\0') {
47 len = wcslen(find);
53 } while (wcsncmp(s, find, len) != 0);
/freebsd-current/crypto/heimdal/
H A Dautogen.sh6 find . \( -name '*-private.h' -o -name '*-protos.h' \) -delete
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dstrcasestr.c46 * Find the first occurrence of find in s, ignore case.
49 strcasestr(const char *s, const char *find) argument
54 if ((c = *find++) != 0) {
56 len = strlen(find);
62 } while (strncasecmp(s, find, len) != 0);
/freebsd-current/contrib/mandoc/
H A Dcompat_strcasestr.c44 * Find the first occurrence of find in s, ignore case.
47 strcasestr(const char *s, const char *find) argument
52 if ((c = *find++) != 0) {
54 len = strlen(find);
60 } while (strncasecmp(s, find, len) != 0);
/freebsd-current/contrib/kyua/bootstrap/
H A Datf_helpers.cpp65 if (enabled.find("fails") != std::string::npos)
67 if (enabled.find("passes") != std::string::npos)
69 if (enabled.find("skips") != std::string::npos)
/freebsd-current/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-current/tools/test/stress2/tools/
H A Dptsleak.sh33 n=`find /dev/pts -mtime +15m 2>/dev/null | wc -l`
H A Dptyleak.sh33 n=`find /dev -mtime +15m 2>/dev/null | \
/freebsd-current/contrib/libcbor/
H A Dclang-format.sh6 SOURCES=$(find ${DIRS} -name "*.c")
7 SOURCES+=" $(find ${DIRS} -name "*.h")"
8 SOURCES+=" $(find ${DIRS} -name "*.cpp")"
/freebsd-current/usr.bin/find/
H A DMakefile6 PROG= find
7 SRCS= find.c function.c ls.c main.c misc.c operator.c option.c \
/freebsd-current/tools/test/stress2/misc/
H A Dtmpfs2.sh42 ./$0 find &
47 if [ $1 = find ]; then
49 find ${mntpoint}* -type f > /dev/null 2>&1
/freebsd-current/tools/tools/kernelcruft/
H A Dkernelcruft.sh5 # Try to find *.c files in /sys which are orphaned
16 find * -name '*.c' -print | sed '
21 find * -name '*.[ch]' -print | xargs grep 'include.*c[>"]' > /tmp/_2
23 find * -name 'Makefile*' -print | xargs cat | sed '
/freebsd-current/sys/contrib/dev/acpica/
H A Dacpica_prep.sh56 find ${wrk} -name ${i} -type d -print | xargs rm -r
59 find ${wrk} -name ${i} -type f -delete
65 find ${wrk} -name ${i} -type d -print | xargs -J % mv % ${dst}
68 find ${wrk} -type f -print | xargs -J % mv % ${dst}
72 find ${dst} -name "*.[chly]" -type f -print | \
76 find ${dst}/common ${dst}/compiler ${dst}/components \
81 find ${dst}/include/platform -name "*.h" -type f -print | \
/freebsd-current/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dinterval_map_test.cpp24 EXPECT_TRUE(M.find(0) == M.end());
35 EXPECT_EQ(M.find(7), M.begin());
36 EXPECT_EQ(M.find(8), M.end());
53 EXPECT_EQ(M1.find(7), M1.find(8)); // 7 and 8 should point to same range.
65 EXPECT_NE(M2.find(7), M2.find(8)); // 7 and 8 should be different ranges.
82 EXPECT_EQ(M1.find(7), M1.find(8)); // 7 and 8 should point to same range.
110 EXPECT_NE(M1.find(
[all...]
H A Dinterval_set_test.cpp24 EXPECT_TRUE(S.find(0) == S.end());
35 EXPECT_EQ(S.find(7), S.begin());
36 EXPECT_EQ(S.find(8), S.end());
48 EXPECT_EQ(S.find(7), S.find(8)); // 7 and 8 should point to same range.
60 EXPECT_EQ(S.find(7), S.find(8)); // 7 and 8 should point to same range.
71 EXPECT_NE(S.find(7), S.find(9));
78 EXPECT_EQ(S.find(
[all...]

Completed in 159 milliseconds

1234567891011>>