/src/lib/libc/compat/gen/ |
compat__readdir_unlocked30.c | 5 #include <dirent.h> 6 #include <compat/include/dirent.h> 10 "warning: reference to compatibility _readdir_unlocked(); include <dirent.h> for correct reference") 16 struct dirent *
|
compat_alphasort.c | 6 #include <dirent.h> 7 #include <compat/include/dirent.h> 15 "warning: reference to compatibility alphasort(); include <dirent.h> for correct reference") 18 #define dirent dirent12 macro
|
compat_scandir.c | 6 #include <dirent.h> 7 #include <compat/include/dirent.h> 15 "warning: reference to compatibility scandir(); include <dirent.h> for correct reference") 18 #define dirent dirent12 macro
|
compat__readdir_unlocked30.c | 5 #include <dirent.h> 6 #include <compat/include/dirent.h> 10 "warning: reference to compatibility _readdir_unlocked(); include <dirent.h> for correct reference") 16 struct dirent *
|
compat_alphasort.c | 6 #include <dirent.h> 7 #include <compat/include/dirent.h> 15 "warning: reference to compatibility alphasort(); include <dirent.h> for correct reference") 18 #define dirent dirent12 macro
|
compat_scandir.c | 6 #include <dirent.h> 7 #include <compat/include/dirent.h> 15 "warning: reference to compatibility scandir(); include <dirent.h> for correct reference") 18 #define dirent dirent12 macro
|
compat_opendir.c | 8 #include <dirent.h> 9 #include <compat/include/dirent.h> 18 "warning: reference to compatibility opendir(); include <dirent.h> for correct reference") 20 "warning: reference to compatibility __opendir2(); include <dirent.h> for correct reference") 23 #define dirent dirent12 macro
|
compat_opendir.c | 8 #include <dirent.h> 9 #include <compat/include/dirent.h> 18 "warning: reference to compatibility opendir(); include <dirent.h> for correct reference") 20 "warning: reference to compatibility __opendir2(); include <dirent.h> for correct reference") 23 #define dirent dirent12 macro
|
/src/lib/libc/compat/include/ |
dirent.h | 1 /* $NetBSD: dirent.h,v 1.8 2016/12/16 04:45:04 mrg Exp $ */ 31 * @(#)dirent.h 8.2 (Berkeley) 7/28/94 37 #include <compat/sys/dirent.h> 46 int __readdir_r30(DIR * __restrict, struct dirent * __restrict, 47 struct dirent ** __restrict); 50 struct dirent *__readdir30(DIR *); 55 struct dirent *___readdir_unlocked50(DIR *, int); 56 struct dirent *___readdir_unlocked30(DIR *); 63 int __scandir30(const char *, struct dirent ***, 64 int (*)(const struct dirent *), [all...] |
dirent.h | 1 /* $NetBSD: dirent.h,v 1.8 2016/12/16 04:45:04 mrg Exp $ */ 31 * @(#)dirent.h 8.2 (Berkeley) 7/28/94 37 #include <compat/sys/dirent.h> 46 int __readdir_r30(DIR * __restrict, struct dirent * __restrict, 47 struct dirent ** __restrict); 50 struct dirent *__readdir30(DIR *); 55 struct dirent *___readdir_unlocked50(DIR *, int); 56 struct dirent *___readdir_unlocked30(DIR *); 63 int __scandir30(const char *, struct dirent ***, 64 int (*)(const struct dirent *), [all...] |
/src/bin/ksh/ |
ksh_dir.h | 7 # include <dirent.h> 8 # define NLENGTH(dirent) (strlen(dirent->d_name)) 10 # define dirent direct macro 11 # define NLENGTH(dirent) (dirent->d_namlen)
|
ksh_dir.h | 7 # include <dirent.h> 8 # define NLENGTH(dirent) (strlen(dirent->d_name)) 10 # define dirent direct macro 11 # define NLENGTH(dirent) (dirent->d_namlen)
|
/src/sys/sys/ |
dir.h | 35 * The information in this file should be obtained from <dirent.h> 44 #error "Please use <sys/dirent.h> instead" 47 #include <dirent.h> 52 #define direct dirent
|
dir.h | 35 * The information in this file should be obtained from <dirent.h> 44 #error "Please use <sys/dirent.h> instead" 47 #include <dirent.h> 52 #define direct dirent
|
/src/lib/libc/gen/ |
alphasort.c | 44 #include <dirent.h> 48 #define ALPHASORTARG struct dirent ** 61 return (strcmp((*(const struct dirent *const *)d1)->d_name, 62 (*(const struct dirent *const *)d2)->d_name));
|
alphasort.c | 44 #include <dirent.h> 48 #define ALPHASORTARG struct dirent ** 61 return (strcmp((*(const struct dirent *const *)d1)->d_name, 62 (*(const struct dirent *const *)d2)->d_name));
|
dirent_private.h | 21 struct dirent; 22 struct dirent *_readdir_unlocked(struct _dirdesc *, int)
|
dirent_private.h | 21 struct dirent; 22 struct dirent *_readdir_unlocked(struct _dirdesc *, int)
|
/src/include/ |
dirent.h | 1 /* $NetBSD: dirent.h,v 1.38 2022/12/28 11:51:21 nia Exp $ */ 31 * @(#)dirent.h 8.2 (Berkeley) 7/28/94 44 #include <sys/dirent.h> 99 struct dirent *readdir(DIR *) __RENAME(__readdir30); 100 int readdir_r(DIR * __restrict, struct dirent * __restrict, 101 struct dirent ** __restrict) __RENAME(__readdir_r30); 111 int scandir(const char *, struct dirent ***, 112 int (*)(const struct dirent *), int (*)(const struct dirent **, 113 const struct dirent **)) [all...] |
dirent.h | 1 /* $NetBSD: dirent.h,v 1.38 2022/12/28 11:51:21 nia Exp $ */ 31 * @(#)dirent.h 8.2 (Berkeley) 7/28/94 44 #include <sys/dirent.h> 99 struct dirent *readdir(DIR *) __RENAME(__readdir30); 100 int readdir_r(DIR * __restrict, struct dirent * __restrict, 101 struct dirent ** __restrict) __RENAME(__readdir_r30); 111 int scandir(const char *, struct dirent ***, 112 int (*)(const struct dirent *), int (*)(const struct dirent **, 113 const struct dirent **)) [all...] |
/src/sys/arch/ia64/stand/common/ |
readdir.c | 36 #include <sys/dirent.h> 41 int skifs_readdir(struct open_file *f, struct dirent *d); 43 struct dirent * 46 static struct dirent dir; /* XXX not thread safe. eh ??? */
|
readdir.c | 36 #include <sys/dirent.h> 41 int skifs_readdir(struct open_file *f, struct dirent *d); 43 struct dirent * 46 static struct dirent dir; /* XXX not thread safe. eh ??? */
|
/src/tests/fs/hfs/ |
t_pathconvert.c | 7 #include <dirent.h> 39 struct dirent *dirent; local in function:ATF_TC_BODY 62 for (offset = 0; offset < nbytes; offset += dirent->d_reclen) { 63 dirent = (struct dirent *)(buf + offset); 64 if (strchr(dirent->d_name, '/')) 65 atf_tc_fail("dirent with slash: %s", dirent->d_name); 66 if (0 == strcmp(FUNNY_FILENAME, dirent->d_name) [all...] |
t_pathconvert.c | 7 #include <dirent.h> 39 struct dirent *dirent; local in function:ATF_TC_BODY 62 for (offset = 0; offset < nbytes; offset += dirent->d_reclen) { 63 dirent = (struct dirent *)(buf + offset); 64 if (strchr(dirent->d_name, '/')) 65 atf_tc_fail("dirent with slash: %s", dirent->d_name); 66 if (0 == strcmp(FUNNY_FILENAME, dirent->d_name) [all...] |
/src/usr.sbin/mmcformat/ |
defs.h | 36 #include <dirent.h>
|