HomeSort by: relevance | last modified time | path
    Searched defs:S_ISREG (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/external/gpl2/texinfo/dist/info/
filesys.h 86 #if !defined (S_ISREG) && defined (S_IFREG)
87 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
88 #endif /* !S_ISREG && S_IFREG */
  /src/external/bsd/libarchive/dist/tar/
bsdtar_windows.h 38 #ifndef S_ISREG
39 #define S_ISREG(a) (a & _S_IFREG)
  /src/external/gpl2/groff/dist/src/include/
posix.h 55 #ifndef S_ISREG
56 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  /src/crypto/external/apache2/openssl/dist/fuzz/
test-corpus.c 33 #if !defined(S_ISREG)
34 #define S_ISREG(m) ((m) & S_IFREG)
44 if (stat(pathname, &st) < 0 || !S_ISREG(st.st_mode))
  /src/crypto/external/bsd/openssl/dist/fuzz/
test-corpus.c 33 # if !defined(S_ISREG)
34 # define S_ISREG(m) ((m) & S_IFREG)
44 if (stat(pathname, &st) < 0 || !S_ISREG(st.st_mode))
  /src/crypto/external/bsd/openssl.old/dist/fuzz/
test-corpus.c 33 # if !defined(S_ISREG)
34 # define S_ISREG(m) ((m) & S_IFREG)
44 if (stat(pathname, &st) < 0 || !S_ISREG(st.st_mode))
  /src/external/gpl2/mkhybrid/dist/include/
statdefs.h 38 #undef S_ISREG /* Regular file */
95 #ifndef S_ISREG /* Regular file */
97 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
99 # define S_ISREG(m) (0)
  /src/external/mit/expat/dist/xmlwf/
readfilemap.c 65 #ifndef S_ISREG
72 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
73 #endif /* not S_ISREG */
106 if (! S_ISREG(sb.st_mode)) {
  /src/external/bsd/ntp/dist/libntp/lib/isc/win32/include/isc/
stat.h 58 #ifndef S_ISREG
59 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  /src/external/gpl3/gcc/dist/fixincludes/
system.h 221 #ifndef S_ISREG
222 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  /src/external/gpl3/gcc.old/dist/fixincludes/
system.h 221 #ifndef S_ISREG
222 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  /src/crypto/external/apache2/openssl/dist/crypto/rand/
randfile.c 57 #if !defined(S_ISREG)
58 #define S_ISREG(m) ((m) & S_IFREG)
120 if (S_ISREG(sb.st_mode))
193 if (stat(file, &sb) >= 0 && !S_ISREG(sb.st_mode)) {
  /src/crypto/external/bsd/openssl/dist/crypto/rand/
randfile.c 57 # if !defined(S_ISREG)
58 # define S_ISREG(m) ((m) & S_IFREG)
121 if (S_ISREG(sb.st_mode))
190 if (stat(file, &sb) >= 0 && !S_ISREG(sb.st_mode)) {
  /src/crypto/external/bsd/openssl.old/dist/crypto/rand/
randfile.c 48 # if !defined(S_ISREG)
49 # define S_ISREG(m) ((m) & S_IFREG)
112 if (S_ISREG(sb.st_mode))
182 if (stat(file, &sb) >= 0 && !S_ISREG(sb.st_mode)) {
  /src/external/bsd/ntp/dist/ntpd/
ntp_filegen.c 222 #ifndef S_ISREG
223 #define S_ISREG(mode) (((mode) & S_IFREG) == S_IFREG)
227 if (S_ISREG(stats.st_mode)) {
  /src/external/gpl2/xcvs/dist/lib/
stat-macros.h 24 # if ! defined S_ISREG && ! defined S_IFREG
43 # undef S_ISREG
122 # ifndef S_ISREG
124 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
126 # define S_ISREG(m) 0
  /src/external/gpl3/gdb/dist/readline/readline/
posixstat.h 34 # undef S_ISREG
91 #if defined (S_IFREG) && !defined (S_ISREG)
92 #define S_ISREG(m) (((m)&S_IFMT) == S_IFREG) /* file */
  /src/external/gpl3/gdb.old/dist/readline/readline/
posixstat.h 34 # undef S_ISREG
91 #if defined (S_IFREG) && !defined (S_ISREG)
92 #define S_ISREG(m) (((m)&S_IFMT) == S_IFREG) /* file */
  /src/external/bsd/ntp/dist/sntp/libopts/compat/
windows-config.h 107 #ifndef S_ISREG
109 # define S_ISREG(mode) (((mode) & S_IFREG) == S_IFREG)
  /src/external/gpl2/grep/dist/src/
system.h 105 # undef S_ISREG
110 #if !defined(S_ISREG) && defined(S_IFREG)
111 # define S_ISREG(Mode) (((Mode) & S_IFMT) == S_IFREG)
  /src/external/gpl2/xcvs/dist/diff/
system.h 46 #undef S_ISREG
52 #ifndef S_ISREG
53 #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
  /src/external/bsd/less/dist/
filename.c 43 #ifndef S_ISREG
44 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
1044 } else if (!S_ISREG(statbuf.st_mode))
  /src/external/gpl2/diffutils/dist/src/
system.h 71 # undef S_ISREG
77 #ifndef S_ISREG
78 # define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
  /src/external/gpl2/gmake/dist/
make.h 175 # ifdef S_ISREG
176 # undef S_ISREG
183 #ifndef S_ISREG
184 # define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
  /src/external/gpl3/gcc/dist/libcpp/
system.h 325 #ifndef S_ISREG
326 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)

Completed in 38 milliseconds

1 2