/src/lib/libc/string/ |
strnstr.c | 49 * Find the first occurrence of find in s, where the search is limited to the 53 strnstr(const char *s, const char *find, size_t slen) 58 if ((c = *find++) != '\0') { 59 len = strlen(find); 67 } while (strncmp(s, find, len) != 0);
|
strcasestr.c | 46 * Find the first occurrence of find in s, ignore case. 49 strcasestr(const char *s, const char *find) 55 _DIAGASSERT(find != NULL); 57 if ((c = *find++) != 0) { 59 len = strlen(find); 65 } while (strncasecmp(s, find, len) != 0);
|
/src/sbin/gpt/ |
remove.c | 79 struct gpt_find find; local in function:cmd_remove 81 memset(&find, 0, sizeof(find)); 82 find.msg = "removed"; 86 if (gpt_add_find(gpt, &find, ch) == -1) 92 return gpt_change_ent(gpt, &find, change, NULL);
|
uuid.c | 103 struct gpt_find find; local in function:cmd_uuid 110 memset(&find, 0, sizeof(find)); 111 find.msg = "UUID changed"; 129 if (gpt_add_find(gpt, &find, ch) == -1) 140 rc = gpt_change_ent(gpt, &find, change_ent, &ctx); 144 if (find.all) 145 return gpt_change_hdr(gpt, &find, change_hdr, &ctx);
|
type.c | 81 struct gpt_find find; local in function:cmd_type 83 memset(&find, 0, sizeof(find)); 85 find.msg = "type changed"; 103 if (gpt == NULL || gpt_add_find(gpt, &find, ch) == -1) 114 return gpt_change_ent(gpt, &find, change, &newtype);
|
label.c | 127 struct gpt_find find; local in function:cmd_label 130 memset(&find, 0, sizeof(find)); 131 find.msg = "label changed"; 150 if (gpt_add_find(gpt, &find, ch) == -1) 161 return gpt_change_ent(gpt, &find, change, name);
|
/src/common/lib/libc/string/ |
strstr.c | 53 * Find the first occurrence of find in s. 56 strstr(const char *s, const char *find) 61 if ((c = *find++) != 0) { 62 len = strlen(find); 68 } while (strncmp(s, find, len) != 0);
|
/src/tests/usr.bin/find/ |
Makefile | 5 TESTSDIR= ${TESTSBASE}/usr.bin/find
|
/src/usr.bin/find/ |
Makefile | 6 PROG= find 7 SRCS= find.c function.c ls.c main.c misc.c operator.c option.c
|
/src/sys/external/bsd/drm2/ |
prepare-import.sh | 13 find . -name '*.h' \ 20 find . -name '*.c' \
|
/src/usr.bin/make/unit-tests/ |
directive-include.exp | 5 make: directive-include.mk:26: Could not find nonexistent.mk 6 make: directive-include.mk:49: Could not find " 9 make: directive-include.mk:56: Could not find nonexistent.mk
|
/src/lib/libc/time/ |
tzcode2netbsd | 30 echo you can find the current version in the Makefile
|
/src/sys/arch/alpha/compile/ |
rebuild_all | 5 cflist=`cd ../conf ; find . -type f ! -name "*[a-z]*" ! -name ".*" | \
|
build_all | 5 cflist=`cd ../conf ; find . -type f ! -name "*[a-z]*" ! -name ".*" | \
|
/src/sys/external/bsd/dwc2/ |
dwctwo2netbsd | 91 find $d -type f -name '*.[ch]' -print | while read c; do 106 find . -type d -name "CVS" -print | xargs rm -r 114 find . -type f -print | xargs chmod u+rw,go+r 115 find . -type d -print | xargs chmod u+rwx,go+rx
|
/src/sys/external/bsd/gnu-efi/ |
gnu-efi2netbsd | 63 find $r -type f -and \( -name '*.[Sch]' -or -name '*.lds' \) -print | while read c; do 77 find $r -type d -name "CVS" -print | xargs rm -r 83 find $r -type f -print | xargs chmod u+rw,go+r 84 find $r -type d -print | xargs chmod u+rwx,go+rx
|
/src/sys/external/bsd/acpica/ |
acpica2netbsd | 48 find . -type f -exec chmod a-x {} +
|
/src/sys/dist/pf/net/ |
pf_osfp.c | 431 /* Find a fingerprint in the list */ 433 pf_osfp_find(struct pf_osfp_list *list, struct pf_os_fingerprint *find, 441 if (f->_field != find->_field) \ 444 if (f->_field == 0 || find->_field % f->_field) \ 450 if (f->fp_tcpopts != find->fp_tcpopts || 451 f->fp_optcnt != find->fp_optcnt || 452 f->fp_ttl < find->fp_ttl || 453 f->fp_ttl - find->fp_ttl > ttldiff || 455 (find->fp_flags & (PF_OSFP_DF|PF_OSFP_TS0))) 463 if (find->fp_mss == 0 578 struct pf_os_fingerprint *f, *f2, find; local in function:pf_osfp_validate [all...] |
/src/regress/sys/kern/getcwd/ |
Makefile | 15 @find /usr -type d -print | ./getcwd -s
|
/src/sys/rump/librump/ |
makerumpif.sh | 64 [ `pwd` = '/' ] && boom Could not find rump topdir.
|
/src/tools/ |
mkheaderlist.sh | 16 cd ../sys/arch && find . -name disklabel.h -o -name elf_machdep.h | sort
|
/src/sys/arch/hpc/stand/ |
Makefile | 69 find . -name "*.vcp" -print | xargs rm -f 70 find . -name "*.vcl" -print | xargs rm -f 71 find . -name "*.vcn" -print | xargs rm -f 72 find . -name "*.dep" -print | xargs rm -f 75 find . -name "*.dsp" -print | xargs rm -f 82 find . -name "hpcboot.exe" -print | xargs rm -f 85 find binary -name "hpcboot*.exe*" -print | xargs rm -f 101 find binary -name "hpcboot*.exe" -print | \
|
/src/sys/external/gpl2/dts/ |
dts2netbsd | 89 find $d -type f -name '*.[ch]' -print | while read c; do 104 find . -type d -name "CVS" -print | xargs rm -r 112 find . -type f -print | xargs chmod u+rw,go+r 113 find . -type d -print | xargs chmod u+rwx,go+rx
|
/src/etc/rc.d/ |
certctl_init | 41 find -f "$certsdir" -- -maxdepth 0 -type d -empty -exit 1 )
|
/src/usr.sbin/lockstat/ |
elf32.c | 125 * Find the symbol table header, and make sure the binary isn't 167 NAME(findsym)(findsym_t find, char *name, uintptr_t *start, uintptr_t *end) 173 switch (find) { 189 for (i = lastptr[find];;) { 193 switch (find) { 233 if (i == lastptr[find]) 242 lastptr[find] = i;
|