/src/lib/libc/gen/ |
ftw.c | 42 char * const paths[2] = { __UNCONST(path), NULL }; local in function:ftw 53 ftsp = fts_open(paths, FTS_COMFOLLOW | FTS_NOCHDIR, NULL);
|
nftw.c | 43 char * const paths[2] = { __UNCONST(path), NULL }; local in function:nftw 63 ftsp = fts_open(paths, ftsflags, NULL);
|
/src/usr.sbin/btattach/ |
firmload.c | 42 firmware_search(char *paths, const char *drvname, const char *imgname) 48 p = strtok(paths, HW_FIRMWARE_PATH_DELIM); 72 char *paths; local in function:firmware_open 75 paths = asysctlbyname(HW_FIRMWARE_PATH, &len); 76 if (paths == NULL) 79 fd = firmware_search(paths, drvname, imgname); 81 free(paths);
|
/src/tests/lib/libc/gen/ |
t_realpath.c | 46 } paths[] = { variable in typeref:typename:const struct __anon83ecf9bc0108[] 76 for (i = 0; i < __arraycount(paths); i++) { 80 ptr = realpath(paths[i].path, buf); 82 if (ptr == NULL && paths[i].result == NULL) 85 if (ptr == NULL && paths[i].result != NULL) 86 atf_tc_fail("realpath failed for '%s'", paths[i].path); 88 if (strcmp(paths[i].result, buf) != 0) 90 paths[i].result, buf);
|
/src/sys/arch/evbarm/integrator/ |
integrator_boot.h | 12 char paths[8][128]; member in union:intbootinfo::__anon994e634a030a
|
/src/tests/include/ |
t_paths.c | 39 #include <paths.h> 55 } paths[] = { variable in typeref:typename:const struct __anon2c81d7260108[] 117 ATF_TC(paths); 118 ATF_TC_HEAD(paths, tc) 120 atf_tc_set_md_var(tc, "descr", "A basic test for <paths.h>"); 123 ATF_TC_BODY(paths, tc) 137 for (i = 0; i < __arraycount(paths); i++) { 138 (void)fprintf(stderr, "testing '%s'\n", paths[i].path); 141 fd = open(paths[i].path, O_RDONLY); 145 if ((paths[i].flags & PATH_OPT) == 0) [all...] |
/src/sys/arch/netwinder/include/ |
netwinder_boot.h | 18 char paths[8][128]; member in union:nwbootinfo::__anonba3f6713030a
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_linux_test.cc | 231 const char *paths[] = { "", "/", "/path/to/" }; local in function:__sanitizer::TEST 235 for (uptr i = 0; i < ARRAY_SIZE(paths); i++) 239 paths[i], base_names[k], suffixes[j]);
|
/src/libexec/makewhatis/ |
makewhatis.c | 56 #include <paths.h> 134 char *paths[2], **p, *sl; local in function:main 183 paths[1] = NULL; 202 * glob malloc()s space for the paths, so it's 206 paths[0] = *p; 210 makewhatis(paths); 216 exit(makewhatis(paths)); 220 makewhatis(paths);
|
/src/usr.sbin/installboot/ |
evboards.c | 459 * Returns an array of u-boot package paths to scan for 498 * Because we want to follow the usual "paths are listed in priority 499 * order" semantics, we reverse the order of the paths when we put 827 char **paths; local in function:evb_db_load_overlays 833 paths = evb_uboot_pkg_paths(params, NULL, &pathsbuf); 834 if (paths == NULL) { 839 fts = fts_open(paths, FTS_COMFOLLOW | FTS_LOGICAL | FTS_NOCHDIR, NULL);
|
/src/usr.bin/make/ |
parse.c | 1207 ClearPaths(ParseSpecial special, SearchPathList *paths) 1209 if (paths != NULL) { 1211 for (ln = paths->first; ln != NULL; ln = ln->next) 1343 HandleDependencySourcesEmpty(ParseSpecial special, SearchPathList *paths) 1360 ClearPaths(special, paths); 1380 AddToPaths(const char *dir, SearchPathList *paths) 1382 if (paths != NULL) { 1384 for (ln = paths->first; ln != NULL; ln = ln->next) 1396 SearchPathList *paths) 1404 AddToPaths(word, paths); 1690 SearchPathList *paths; \/* search paths to alter when parsing a list local in function:ParseDependency [all...] |