/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)
|
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/lib/libc/compat/gen/ |
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_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_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_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_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_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_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_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_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
|
/src/sys/arch/ews4800mips/stand/common/ |
fileread_bfs.c | 51 struct bfs_dirent *dirent = (void *)SDBOOT_DIRENTADDR; local in function:fileread 108 err = dk_read(bfs_sector + inode->start_sector, 1, dirent); 114 for (i = 0; i < n; i++, dirent++) 115 if (strcmp(dirent->name, fname) == 0) 122 DPRINTF("%s (%d)\n", dirent->name, dirent->inode); 123 inode = &inode[dirent->inode - BFS_ROOT_INODE];
|
fileread_bfs.c | 51 struct bfs_dirent *dirent = (void *)SDBOOT_DIRENTADDR; local in function:fileread 108 err = dk_read(bfs_sector + inode->start_sector, 1, dirent); 114 for (i = 0; i < n; i++, dirent++) 115 if (strcmp(dirent->name, fname) == 0) 122 DPRINTF("%s (%d)\n", dirent->name, dirent->inode); 123 inode = &inode[dirent->inode - BFS_ROOT_INODE];
|
fileread_bfs.c | 51 struct bfs_dirent *dirent = (void *)SDBOOT_DIRENTADDR; local in function:fileread 108 err = dk_read(bfs_sector + inode->start_sector, 1, dirent); 114 for (i = 0; i < n; i++, dirent++) 115 if (strcmp(dirent->name, fname) == 0) 122 DPRINTF("%s (%d)\n", dirent->name, dirent->inode); 123 inode = &inode[dirent->inode - BFS_ROOT_INODE];
|
/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...] |
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/share/examples/puffs/pgfs/ |
newfs.sql | 56 -- filetype and the dirent table. however, users expect that getattr is 79 -- a row in the dirent table describes a directory entry. 81 CREATE TABLE dirent ( table 90 CREATE INDEX dirent_child ON dirent (child_fileid);
|
newfs.sql | 56 -- filetype and the dirent table. however, users expect that getattr is 79 -- a row in the dirent table describes a directory entry. 81 CREATE TABLE dirent ( table 90 CREATE INDEX dirent_child ON dirent (child_fileid);
|
newfs.sql | 56 -- filetype and the dirent table. however, users expect that getattr is 79 -- a row in the dirent table describes a directory entry. 81 CREATE TABLE dirent ( table 90 CREATE INDEX dirent_child ON dirent (child_fileid);
|
/src/sys/arch/mac68k/nubus/ |
if_ae_nubus.c | 457 nubus_dirent dirent; local in function:ae_nb_get_enaddr 470 &dir, 0x08, &dirent); 475 rv = nubus_find_rsrc(bst, bsh, na->fmt, &dir, 0x80, &dirent); 480 nubus_get_dir_from_rsrc(na->fmt, &dirent, &dir); 481 if (nubus_find_rsrc(bst, bsh, na->fmt, &dir, 0x80, &dirent) <= 0) 484 na->fmt, &dirent, ep, ETHER_ADDR_LEN) <= 0)
|
if_ae_nubus.c | 457 nubus_dirent dirent; local in function:ae_nb_get_enaddr 470 &dir, 0x08, &dirent); 475 rv = nubus_find_rsrc(bst, bsh, na->fmt, &dir, 0x80, &dirent); 480 nubus_get_dir_from_rsrc(na->fmt, &dirent, &dir); 481 if (nubus_find_rsrc(bst, bsh, na->fmt, &dir, 0x80, &dirent) <= 0) 484 na->fmt, &dirent, ep, ETHER_ADDR_LEN) <= 0)
|
if_ae_nubus.c | 457 nubus_dirent dirent; local in function:ae_nb_get_enaddr 470 &dir, 0x08, &dirent); 475 rv = nubus_find_rsrc(bst, bsh, na->fmt, &dir, 0x80, &dirent); 480 nubus_get_dir_from_rsrc(na->fmt, &dirent, &dir); 481 if (nubus_find_rsrc(bst, bsh, na->fmt, &dir, 0x80, &dirent) <= 0) 484 na->fmt, &dirent, ep, ETHER_ADDR_LEN) <= 0)
|
/src/sbin/newfs_sysvbfs/ |
newfs_sysvbfs.c | 183 struct bfs_dirent *dirent = (void *)buf; local in function:bfs_newfs 224 /* dirent table */ 226 dirent->inode = BFS_ROOT_INODE; 227 strcpy(dirent->name, "."); 228 dirent++; 229 dirent->inode = BFS_ROOT_INODE; 230 strcpy(dirent->name, ".."); 232 perror("write dirent");
|