| /src/sys/external/bsd/acpica/dist/generate/lint/ |
| lset.bat | 1 set path=%PATH%;$G variable
|
| lset.bat | 1 set path=%PATH%;$G variable
|
| /src/games/cribbage/ |
| instr.c | 64 const char *path; local 75 path = "cat"; 77 if (!(path = getenv("PAGER")) || (*path == 0)) 78 path = _PATH_MORE; 88 execl("/bin/sh", "sh", "-c", path, (char *) NULL);
|
| instr.c | 64 const char *path; local 75 path = "cat"; 77 if (!(path = getenv("PAGER")) || (*path == 0)) 78 path = _PATH_MORE; 88 execl("/bin/sh", "sh", "-c", path, (char *) NULL);
|
| /src/lib/libc/gen/ |
| posix_spawnp.c | 55 const char *path, *p; local 61 /* "" is not a valid filename; check this before traversing PATH. */ 71 /* Get the path we're searching. */ 72 if ((path = getenv("PATH")) == NULL) 73 path = _PATH_DEFPATH; 76 * Find an executable image with the given name in the PATH 82 /* Find the end of this path element. */ 83 for (p = path; *path != 0 && *path != ':'; path++ [all...] |
| posix_spawnp.c | 55 const char *path, *p; local 61 /* "" is not a valid filename; check this before traversing PATH. */ 71 /* Get the path we're searching. */ 72 if ((path = getenv("PATH")) == NULL) 73 path = _PATH_DEFPATH; 76 * Find an executable image with the given name in the PATH 82 /* Find the end of this path element. */ 83 for (p = path; *path != 0 && *path != ':'; path++ [all...] |
| /src/usr.bin/make/unit-tests/ |
| modmisc.mk | 7 path= :/bin:/tmp::/:.:/no/such/dir:. macro 8 # strip cwd from path. 24 @echo "path='${path}'" 25 @echo "path='${path:${MOD_NODOT}}'" 26 @echo "path='${path:S,home,homes,:${MOD_NODOT}}'" 27 @echo "path=${path:${MOD_NODOTX}:ts:} [all...] |
| modmisc.mk | 7 path= :/bin:/tmp::/:.:/no/such/dir:. macro 8 # strip cwd from path. 24 @echo "path='${path}'" 25 @echo "path='${path:${MOD_NODOT}}'" 26 @echo "path='${path:S,home,homes,:${MOD_NODOT}}'" 27 @echo "path=${path:${MOD_NODOTX}:ts:} [all...] |
| /src/usr.bin/mkdep/ |
| findcc.c | 55 const char *path, *dir; local 70 if ((path = getenv("PATH")) == NULL) 73 for (dir = path; *dir != '\0'; ) {
|
| findcc.c | 55 const char *path, *dir; local 70 if ((path = getenv("PATH")) == NULL) 73 for (dir = path; *dir != '\0'; ) {
|
| /src/usr.bin/patch/ |
| pch.h | 39 char *path; member in struct:file_name
|
| pch.h | 39 char *path; member in struct:file_name
|
| /src/usr.bin/sort/ |
| tmp.c | 90 char path[MAXPATHLEN]; local 92 (void)snprintf(path, sizeof(path), "%s%s%s", tmpdir, 97 if ((fd = mkstemp(path)) < 0) 98 err(2, "ftmp: mkstemp(\"%s\")", path); 100 err(2, "ftmp: fdopen(\"%s\")", path); 102 (void)unlink(path);
|
| tmp.c | 90 char path[MAXPATHLEN]; local 92 (void)snprintf(path, sizeof(path), "%s%s%s", tmpdir, 97 if ((fd = mkstemp(path)) < 0) 98 err(2, "ftmp: mkstemp(\"%s\")", path); 100 err(2, "ftmp: fdopen(\"%s\")", path); 102 (void)unlink(path);
|
| /src/lib/libc/citrus/ |
| citrus_lc_ctype.c | 81 char path[PATH_MAX + 1]; local 89 snprintf(path, sizeof(path), 91 ret = _citrus_map_file(&r, path);
|
| citrus_lc_template.h | 36 char path[PATH_MAX + 1]; local 43 snprintf(path, sizeof(path), 45 ret = _map_file(&file, path);
|
| /src/lib/libc/db/db/ |
| dbfile.c | 85 char path[PATH_MAX]; local 92 len = snprintf(path, sizeof(path), "%s/%sXXXXXX", 94 if ((size_t)len >= sizeof(path)) { 102 if ((fd = mkstemp(path)) != -1) { 103 if (unlink(path) == -1)
|
| /src/lib/libc/db/hash/ |
| ndbm.c | 66 char path[MAXPATHLEN]; local 74 (void)strncpy(path, file, sizeof(path) - 1); 75 (void)strncat(path, DBM_SUFFIX, sizeof(path) - strlen(path) - 1); 80 return ((DBM *)__hash_open(path, flags, mode, &info, 0));
|
| /src/sbin/veriexecctl/ |
| veriexecctl_parse.y | 59 %token <string> PATH 66 | statement path type fingerprint flags eol { 115 path : PATH { label
|
| /src/sys/arch/hppa/stand/cdboot/ |
| cdboot.c | 89 char path[128]; local 96 devboot(boot_dev, path); 98 strncpy(path + strlen(path), ":/netbsd", 9); 100 printf(">> Booting %s: ", path); 108 if ((fd = loadfile(path, marks, LOAD_KERNEL)) == -1)
|
| /src/sys/compat/common/ |
| compat_util.c | 137 * If the path is exactly "/usr/libexec/ld.elf_so", first 144 char *path; local 146 path = PNBUF_GET(); 147 snprintf(path, MAXPATHLEN, "%s-%s", interp, interp_suffix); 148 error = namei_simple_kernel(path, 156 snprintf(interp, MAXPATHLEN, "%s", path); 158 PNBUF_PUT(path);
|
| /src/tests/lib/libc/stdio/ |
| t_clearerr.c | 36 static const char path[] = "/etc/passwd"; variable 49 fp = fopen(path, "r"); 75 fp = fopen(path, "r");
|
| /src/tests/lib/libc/stdlib/ |
| t_system.c | 40 static const char *path = "system"; variable 60 fd = open(path, O_RDONLY); 69 ATF_REQUIRE(unlink(path) == 0); 74 (void)unlink(path);
|
| /src/tests/lib/libc/sys/ |
| t_getsockname.c | 46 const char *path = "sock.unix"; local 63 strcpy(sun.sun_path, path); 70 ATF_CHECK(strcmp(sun.sun_path, path) == 0); 73 ATF_REQUIRE(unlink(path) != -1);
|
| /src/usr.bin/find/ |
| ls.c | 65 char *accpath, /* current valid path to filename */ 116 char path[MAXPATHLEN + 1]; local 118 if ((lnklen = readlink(name, path, sizeof(path) - 1)) == -1) { 122 path[lnklen] = '\0'; 123 (void)printf(" -> %s", path);
|