Searched refs:dirent (Results 1 - 25 of 472) sorted by relevance

1234567891011>>

/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Ddirent.h1 /* Generic dirent.h */
21 # include <dirent.h>
22 # define NAMLEN(dirent) strlen((dirent)->d_name)
28 struct dirent { struct
33 struct dirent data;
38 struct dirent *readdir(DIR *dir);
41 # define dirent direct macro
42 # define NAMLEN(dirent) (dirent)
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Ddir.h65 * The information in this file should be obtained from <dirent.h>
73 #include <sys/dirent.h>
75 #include <dirent.h>
81 #define direct dirent
/macosx-10.10.1/tcl-105/tcl/tcl/compat/
H A Ddirent.h2 * dirent.h --
4 * This file is a replacement for <dirent.h> in systems that
13 * RCS: @(#) $Id: dirent.h,v 1.2 1998/09/14 18:39:44 stanton Exp $
21 #define dirent direct macro
H A Ddirent2.h2 * dirent.h --
5 * in the POSIX style ("struct dirent").
31 struct dirent { struct
57 extern struct dirent * readdir _ANSI_ARGS_((DIR *dirp));
/macosx-10.10.1/tcl-105/tcl84/tcl/compat/
H A Ddirent.h2 * dirent.h --
4 * This file is a replacement for <dirent.h> in systems that
13 * RCS: @(#) $Id: dirent.h,v 1.2 1998/09/14 18:39:44 stanton Exp $
21 #define dirent direct macro
H A Ddirent2.h2 * dirent.h --
5 * in the POSIX style ("struct dirent").
31 struct dirent { struct
57 extern struct dirent * readdir _ANSI_ARGS_((DIR *dirp));
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dscandir.c40 * struct dirent (through namelist). Returns -1 if there were any errors.
44 #include <dirent.h>
51 * entry. This requires the amount of space in struct dirent without the
59 struct dirent ***namelist;
60 int (*select)(const struct dirent *);
61 int (*_dcomp)(const struct dirent **, const struct dirent **);
63 struct dirent *d, *p, **names = NULL;
73 names = (struct dirent **)malloc(arraysz * sizeof(struct dirent *));
[all...]
H A Dscandir_b.c40 * struct dirent (through namelist). Returns -1 if there were any errors.
44 #include <dirent.h>
51 * entry. This requires the amount of space in struct dirent without the
59 struct dirent ***namelist;
60 int (^select)(const struct dirent *);
61 int (^_dcomp)(const struct dirent **, const struct dirent **);
63 struct dirent *d, *p, **names = NULL;
73 names = (struct dirent **)malloc(arraysz * sizeof(struct dirent *));
[all...]
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Ddirfd.h22 #include <dirent.h>
H A Ddirent_.h1 /* Wrapper around <dirent.h>.
22 # include_next <dirent.h>
/macosx-10.10.1/ruby-106/ruby/nacl/
H A Ddirent.h9 * dirent.h */
10 int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result);
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/
H A Dgen-unix.h36 #include <sys/types.h> /* Required on some systems for dirent.h. */
38 #include <dirent.h>
71 struct dirent *dirent; local
76 dirent = readdir(dir->handle);
77 if (dirent != NULL)
78 dir->filename = dirent->d_name;
/macosx-10.10.1/emacs-93/emacs/mac/inc/
H A Ddirent.h1 /* Replacement dirent.h file for building GNU Emacs on the Macintosh.
33 struct dirent { struct
47 extern struct dirent *readdir(DIR *);
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/dir/
H A Ddirstd.h26 * <dirent.h> for systems with no opendir()
40 struct dirent struct
57 extern struct dirent* readdir(DIR*);
H A Dreaddir.c39 struct dirent*
42 register struct dirent* dp;
53 dp = (struct dirent*)((char*)dirp->dd_buf + dirp->dd_loc);
/macosx-10.10.1/libarchive-30/libarchive/tar/
H A Dbsdtar_platform.h70 * Include "dirent.h" (or it's equivalent on several different platforms).
73 * In particular, FreeBSD includes d_namlen in it's dirent structure,
78 # include <dirent.h>
80 # define DIRENT_NAMLEN(dirent) (dirent)->d_namlen
82 # define DIRENT_NAMLEN(dirent) strlen((dirent)->d_name)
85 # define dirent direct macro
86 # define DIRENT_NAMLEN(dirent) (dirent)
[all...]
/macosx-10.10.1/Libc-1044.1.2/include/
H A Ddirent.h55 * @(#)dirent.h 8.2 (Berkeley) 7/28/94
65 #include <sys/dirent.h>
122 struct dirent *readdir(DIR *) __DARWIN_INODE64(readdir);
123 int readdir_r(DIR *, struct dirent *, struct dirent **) __DARWIN_INODE64(readdir_r);
176 int alphasort(const struct dirent **, const struct dirent **) __DARWIN_INODE64(alphasort);
194 int scandir(const char *, struct dirent ***,
195 int (*)(const struct dirent *), int (*)(const struct dirent **, cons
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-closefrom.c34 # include <dirent.h>
35 # define NAMLEN(dirent) strlen((dirent)->d_name)
37 # define dirent direct macro
38 # define NAMLEN(dirent) (dirent)->d_namlen
74 struct dirent *dent;
/macosx-10.10.1/sudo-73/src/
H A Dclosefrom.c34 # include <dirent.h>
35 # define NAMLEN(dirent) strlen((dirent)->d_name)
37 # define dirent direct macro
38 # define NAMLEN(dirent) (dirent)->d_namlen
107 struct dirent *dent;
/macosx-10.10.1/bash-94.1.2/bash-3.2/include/
H A Dposixdir.h21 /* This file should be included instead of <dirent.h> or <sys/dir.h>. */
27 # include <dirent.h>
43 # if !defined (dirent)
44 # define dirent direct macro
45 # endif /* !dirent */
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dposixdir.h21 /* This file should be included instead of <dirent.h> or <sys/dir.h>. */
27 # include <dirent.h>
43 # if !defined (dirent)
44 # define dirent direct macro
45 # endif /* !dirent */
/macosx-10.10.1/tcsh-65/tcsh/win32/
H A Ddirent.h1 /*$Header: /p/tcsh/cvsroot/tcsh/win32/dirent.h,v 1.6 2006/03/03 22:08:45 amold Exp $*/
32 * dirent.h
33 * directory interface functions. Sort of like dirent functions on unix.
52 struct dirent { struct
65 struct dirent *dd_buf;
69 struct dirent *readdir(DIR*);
/macosx-10.10.1/Libc-1044.1.2/gen/
H A Ddirfd.c24 #include <dirent.h>
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Dcominit_ux.c120 #include <dirent.h>
125 static int scandir(const char *, struct dirent ***, int (*)(const struct dirent *), int (*)(const void *, const void *));
130 static int select_module(const struct dirent * dirent);
136 switch((*(const struct dirent**)a)->d_name[3]) {
142 switch((*(const struct dirent**)b)->d_name[3]) {
155 static int select_module(const struct dirent * dirent) argument
157 size_t len = strlen(dirent
[all...]
/macosx-10.10.1/ncurses-44/ncurses/progs/
H A Dprogs.priv.h68 # include <dirent.h>
69 # define NAMLEN(dirent) strlen((dirent)->d_name)
74 # define DIRENT struct dirent
77 # define DIRENT struct dirent
81 # define NAMLEN(dirent) (dirent)->d_namlen

Completed in 158 milliseconds

1234567891011>>