/freebsd/libexec/rtld-elf/tests/ |
H A D | ld_library_pathfds.c | 47 struct descriptors files; in ATF_TC_BODY() local 49 setup(&files, tc); in ATF_TC_BODY() 50 expect_missing_library(files.binary, NULL); in ATF_TC_BODY() 57 struct descriptors files; in ATF_TC_BODY() local 60 setup(&files, tc); in ATF_TC_BODY() 62 asprintf(&pathfds, "LD_LIBRARY_PATH_FDS=%d", files.etc) > 0); in ATF_TC_BODY() 64 expect_missing_library(files.binary, pathfds); in ATF_TC_BODY() 71 struct descriptors files; in ATF_TC_BODY() local 74 setup(&files, tc); in ATF_TC_BODY() 77 expect_missing_library(files.binary, pathfds); in ATF_TC_BODY() [all …]
|
/freebsd/contrib/libarchive/cpio/test/ |
H A D | test_option_a.c | 17 } files[] = { variable 39 static const int numfiles = sizeof(files) / sizeof(files[0]); in test_create() 49 assertMakeFile(files[i].name, 0644, "a"); in test_create() 62 assertEqualInt(0, utime(files[i].name, ×)); in test_create() 67 assertEqualInt(0, stat(files[i].name, &st)); in test_create() 68 files[i].atime_sec = st.st_atime; in test_create() 72 sleepUntilAfter(files[numfiles - 1].atime_sec); in test_create() 89 if (st.st_atime == files[0].atime_sec) { in DEFINE_TEST() 101 …r = systemf("echo %s | %s -pd copy-no-a > copy-no-a.out 2>copy-no-a.err", files[1].name, testprog); in DEFINE_TEST() 105 assertEqualInt(0, stat(files[1].name, &st)); in DEFINE_TEST() [all …]
|
/freebsd/usr.bin/diff3/tests/ |
H A D | long-m.txt | 2 These lines are the same in all three files 3 These lines are the same in all three files 5 These lines are the same in all three files 6 These lines are the same in all three files 7 These lines are the same in all three files 9 These lines are the same in all three files 10 These lines are the same in all three files 12 These lines are the same in all three files 13 These lines are the same in all three files 14 These lines are the same in all three files [all …]
|
H A D | long-y.txt | 2 These lines are the same in all three files 3 These lines are the same in all three files 5 These lines are the same in all three files 6 These lines are the same in all three files 7 These lines are the same in all three files 9 These lines are the same in all three files 10 These lines are the same in all three files 12 These lines are the same in all three files 13 These lines are the same in all three files 14 These lines are the same in all three files [all …]
|
H A D | long-o.txt | 2 These lines are the same in all three files 3 These lines are the same in all three files 5 These lines are the same in all three files 6 These lines are the same in all three files 7 These lines are the same in all three files 9 These lines are the same in all three files 10 These lines are the same in all three files 12 These lines are the same in all three files 13 These lines are the same in all three files 14 These lines are the same in all three files [all …]
|
H A D | long-merge.out | 2 These lines are the same in all three files 3 These lines are the same in all three files 5 These lines are the same in all three files 6 These lines are the same in all three files 7 These lines are the same in all three files 9 These lines are the same in all three files 10 These lines are the same in all three files 16 These lines are the same in all three files 17 These lines are the same in all three files 18 These lines are the same in all three files [all …]
|
/freebsd/lib/libcasper/services/cap_fileargs/tests/ |
H A D | fileargs_test.c | 43 static char *files[MAX_FILES]; variable 62 files[i] = calloc(1, sizeof(template)); in prepare_files() 63 ATF_REQUIRE(files[i] != NULL); in prepare_files() 64 strncpy(files[i], template, sizeof(template) - 1); in prepare_files() 67 fds[i] = mkstemp(files[i]); in prepare_files() 71 ATF_REQUIRE(mktemp(files[i]) != NULL); in prepare_files() 82 for (i = 0; files[i] != NULL; i++) { in clear_files() 83 unlink(files[i]); in clear_files() 84 free(files[i]); in clear_files() 296 fa = fileargs_init(MAX_FILES, files, O_RDONLY, 0, &rights, in ATF_TC_BODY() [all …]
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_diff/ |
H A D | zfs_diff_001_pos.ksh | 43 log_must ${MKDIR} ${TESTDIR}/files 44 log_must ${TOUCH} ${TESTDIR}/files/leavealone 45 log_must ${TOUCH} ${TESTDIR}/files/modify 46 log_must ${TOUCH} ${TESTDIR}/files/rename 47 log_must ${TOUCH} ${TESTDIR}/files/delete 48 log_must ${MKDIR} ${TESTDIR}/files/srcdir 49 log_must ${MKDIR} ${TESTDIR}/files/dstdir 50 log_must ${TOUCH} ${TESTDIR}/files/srcdir/move 59 log_must ${DATE} >> ${TESTDIR}/files/modify 60 log_must ${MV} ${TESTDIR}/files/rename ${TESTDIR}/files/rename.new [all …]
|
H A D | zfs_diff_001_pos.golden | 2 + /testdir1526/files/create 4 - /testdir1526/files/delete 7 M /testdir1526/files 8 M /testdir1526/files/dstdir 9 M /testdir1526/files/modify 10 M /testdir1526/files/srcdir 12 R /testdir1526/files/rename -> /testdir1526/files/rename.new 13 R /testdir1526/files/srcdir/move -> /testdir1526/files/dstdir/move
|
/freebsd/crypto/heimdal/lib/roken/ |
H A D | getdtablesize.c | 67 int files = -1; in getdtablesize() local 69 files = sysconf(_SC_OPEN_MAX); in getdtablesize() 74 files = res.rlim_cur; in getdtablesize() 82 len = sizeof(files); in getdtablesize() 83 sysctl(&mib, 2, &files, sizeof(files), NULL, 0); in getdtablesize() 89 if (files < 0) in getdtablesize() 90 files = OPEN_MAX; in getdtablesize() 94 if (files < 0) in getdtablesize() 95 files = NOFILE; in getdtablesize() 98 return files; in getdtablesize()
|
/freebsd/contrib/bmake/mk/ |
H A D | dep.mk | 73 @files="${.ALLSRC:M*.[sS]}"; \ 74 set -x; for f in $$files; do ${_MKDEP} -a ${MKDEPFLAGS} \ 76 @files="${.ALLSRC:M*.c} ${.ALLSRC:M*.pc:T:.pc=.c}"; \ 77 set -x; for f in $$files; do ${_MKDEP} -a ${MKDEPFLAGS} \ 79 @files="${.ALLSRC:M*.cc} ${.ALLSRC:M*.C} ${.ALLSRC:M*.cxx}"; \ 80 set -x; for f in $$files; do ${_MKDEP} -a ${MKDEPFLAGS} \ 83 @files="${.ALLSRC:M*.[Ss]}"; \ 84 case "$$files" in *.[Ss]*) \ 86 ${CFLAGS:M-[ID]*} ${CPPFLAGS} ${AINC} $$files; \ 88 ${CFLAGS:M-[ID]*} ${CPPFLAGS} ${AINC} $$files;; \ [all...] |
/freebsd/sys/arm/allwinner/ |
H A D | std.allwinner | 7 files "../allwinner/files.allwinner" 8 files "../allwinner/a20/files.a20" 9 files "../allwinner/a31/files.a31" 10 files "../allwinner/a83t/files.a83t" 11 files "../allwinner/h3/files.h3"
|
H A D | std.allwinner_up | 7 files "../allwinner/files.allwinner_up" 8 files "../allwinner/files.allwinner" 9 files "../allwinner/a10/files.a10" 10 files "../allwinner/a13/files.a13"
|
/freebsd/usr.bin/vgrind/ |
H A D | vgrind.sh | 34 files="" 85 files="$files $1" 93 for i in $files; do 101 $vf $options -h "$head" $files 103 $vf $options $files 107 $vf $options -h "$head" $files 109 $vf $options $files 117 $vf $options -h "$head" $files 119 $vf $options $files 123 $vf $options -h "$head" $files [all …]
|
/freebsd/sys/arm/conf/ |
H A D | GENERIC | 15 # device lines is also present in the ../../conf/NOTES and NOTES files. 29 files "../allwinner/files.allwinner" 30 files "../allwinner/files.allwinner_up" 31 files "../allwinner/a10/files.a10" 32 files "../allwinner/a13/files.a13" 33 files "../allwinner/a20/files.a20" 34 files "../allwinner/a31/files.a31" 35 files "../allwinner/a33/files.a33" 36 files "../allwinner/a83t/files.a83t" 37 files "../allwinner/h3/files.h3" [all …]
|
/freebsd/usr.bin/jot/tests/ |
H A D | regress.wp5.out | 1 ftp://www.example.com/pub/uploaded%20files/disk001.iso 2 ftp://www.example.com/pub/uploaded%20files/disk002.iso 3 ftp://www.example.com/pub/uploaded%20files/disk003.iso 4 ftp://www.example.com/pub/uploaded%20files/disk004.iso 5 ftp://www.example.com/pub/uploaded%20files/disk005.iso 6 ftp://www.example.com/pub/uploaded%20files/disk006.iso 7 ftp://www.example.com/pub/uploaded%20files/disk007.iso 8 ftp://www.example.com/pub/uploaded%20files/disk008.iso 9 ftp://www.example.com/pub/uploaded%20files/disk009.iso 10 ftp://www.example.com/pub/uploaded%20files/disk010.iso
|
/freebsd/tools/regression/security/cap_test/ |
H A D | cap_test_fcntl.c | 69 struct fd files[] = { in test_fcntl() local 74 REQUIRE(files[0].f_fd); in test_fcntl() 75 REQUIRE(files[1].f_fd); in test_fcntl() 76 REQUIRE(files[2].f_fd); in test_fcntl() 79 { "file cap", cap_new(files[0].f_fd, rights) }, in test_fcntl() 80 { "socket cap", cap_new(files[1].f_fd, rights) }, in test_fcntl() 81 { "SHM cap", cap_new(files[2].f_fd, rights) }, in test_fcntl() 88 files[0], caps[0], in test_fcntl() 89 files[1], caps[1], in test_fcntl() 90 files[2], caps[2], in test_fcntl()
|
/freebsd/tools/tools/locale/ |
H A D | README | 1 Files in this directory are used to generate locale source files 2 from files in CLDR (Unicode Common Locale Data Repository). 4 To generate the files, do the following: 14 "make" downloads the necessary files, build them, and install the 15 results into /usr/src/share/* as source files for locales. 21 Destination path for the generated locale files. 33 clean up tools or posix locale source files generated 34 from the CLDR files because it takes a long time to generate 36 CLDR files. "make clean && make build" will 37 regenerate the locale source files for src/share/*def. [all …]
|
/freebsd/contrib/cortex-strings/ |
H A D | autogen.sh | 17 echo Cleaning autotools files... 38 echo Generating list of executable files... 39 rm -f debian/executable.files 40 find -type f -perm +111 ! -name '.*' -fprint debian/executable.files 48 echo Generating list of files that should be removed... 49 rm -f debian/deletable.files 50 touch debian/deletable.files 58 test -e "${filename}" || echo "${filename}" >>debian/deletable.files 63 echo Emptying list of files that should be deleted... 64 rm -f debian/deletable.files [all …]
|
/freebsd/contrib/diff/src/ |
H A D | context.c | 102 find_function_last_search = - files[0].prefix_lines; in print_context_script() 172 i = - files[0].prefix_lines; in pr_context_hunk() 175 if (last0 < files[0].valid_lines - context) in pr_context_hunk() 178 last0 = files[0].valid_lines - 1; in pr_context_hunk() 179 if (last1 < files[1].valid_lines - context) in pr_context_hunk() 182 last1 = files[1].valid_lines - 1; in pr_context_hunk() 187 function = find_function (files[0].linbuf, first0); in pr_context_hunk() 198 print_context_number_range (&files[0], first0, last0); in pr_context_hunk() 222 print_1_line (prefix, &files[0].linbuf[i]); in pr_context_hunk() 227 print_context_number_range (&files[1], first1, last1); in pr_context_hunk() [all …]
|
H A D | ed.c | 57 print_number_range (',', &files[0], f0, l0); in print_ed_hunk() 66 if (files[1].linbuf[i][0] == '.' && files[1].linbuf[i][1] == '\n') in print_ed_hunk() 75 print_1_line ("", &files[1].linbuf[i]); in print_ed_hunk() 105 print_number_range (' ', files, f0, l0); in pr_forward_ed_hunk() 117 print_1_line ("", &files[1].linbuf[i]); in pr_forward_ed_hunk() 147 translate_range (&files[0], f0, l0, &tf0, &tl0); in print_rcs_hunk() 162 translate_range (&files[1], f1, l1, &tf1, &tl1); in print_rcs_hunk() 167 print_1_line ("", &files[1].linbuf[i]); in print_rcs_hunk()
|
/freebsd/contrib/libcbor/doc/ |
H A D | Makefile | 26 @echo " html to make standalone HTML files" 27 @echo " dirhtml to make HTML files named index.html in directories" 29 @echo " pickle to make pickle files" 30 @echo " json to make JSON files" 31 @echo " htmlhelp to make HTML files and a HTML help project" 32 @echo " qthelp to make HTML files and a qthelp project" 33 @echo " devhelp to make HTML files and a Devhelp project" 35 @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" 36 @echo " latexpdf to make LaTeX files and run them through pdflatex" 37 @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" [all …]
|
/freebsd/tools/test/stress2/misc/ |
H A D | seekdir.sh | 72 char *files[100]; 82 /* Put a set of sample files in the target directory */ 97 files[i] = malloc(20); 100 /* enumerate and delete small sets of files, one group */ 107 /* i will be the number of files we hold */ 111 strcpy(files[i], dp->d_name); 114 offset, files[i]); 135 printf("file %s returned\n", files[i]); 143 if (*files[j] == '.') { 144 printf ("skipping %s\n", files[j]); [all …]
|
/freebsd/crypto/openssl/Configurations/ |
H A D | README-design.md | 7 The unified scheme takes all its data from the `build.info` files seen 8 throughout the source tree. These files hold the minimum information 9 needed to build end product files from diverse sources. See the 10 section on `build.info` files below. 12 From the information in `build.info` files, `Configure` builds up an 18 generate the rules for building end product files as well as 19 intermediary files with the help of a few functions found in the 23 build.info files 26 As mentioned earlier, `build.info` files are meant to hold the minimum 27 information needed to build output files, and therefore only (with a [all …]
|
/freebsd/contrib/llvm-project/lld/ELF/Arch/ |
H A D | MipsArchTree.cpp | 65 static void checkFlags(ArrayRef<FileFlags> files) { in checkFlags() argument 66 assert(!files.empty() && "expected non-empty file list"); in checkFlags() 68 uint32_t abi = files[0].flags & (EF_MIPS_ABI | EF_MIPS_ABI2); in checkFlags() 69 bool nan = files[0].flags & EF_MIPS_NAN2008; in checkFlags() 70 bool fp = files[0].flags & EF_MIPS_FP64; in checkFlags() 72 for (const FileFlags &f : files) { in checkFlags() 93 static uint32_t getMiscFlags(ArrayRef<FileFlags> files) { in getMiscFlags() argument 95 for (const FileFlags &f : files) in getMiscFlags() 102 static uint32_t getPicFlags(ArrayRef<FileFlags> files) { in getPicFlags() argument 104 bool isPic = files[0].flags & (EF_MIPS_PIC | EF_MIPS_CPIC); in getPicFlags() [all …]
|