HomeSort by: relevance | last modified time | path
    Searched defs:S_IFDIR (Results 1 - 14 of 14) sorted by relevancy

  /src/external/mit/libuv/dist/test/
test-getters-setters.c 28 # define S_IFDIR _S_IFDIR
103 ASSERT(uv_fs_get_statbuf(fs)->st_mode & S_IFDIR);
test-fs.c 54 # define S_IFDIR _S_IFDIR
546 ASSERT(((uv_stat_t*)stat_req.ptr)->st_mode & S_IFDIR);
2488 ASSERT(((uv_stat_t*)req.ptr)->st_mode & S_IFDIR);
  /src/sys/external/bsd/acpica/dist/include/platform/
acwin64.h 96 #define S_IFDIR _S_IFDIR
acwin.h 124 #define S_IFDIR _S_IFDIR
  /src/external/bsd/ntp/dist/libntp/lib/isc/win32/include/isc/
stat.h 45 #ifndef S_IFDIR
46 # define S_IFDIR _S_IFDIR
56 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  /src/external/gpl3/gdb/dist/readline/readline/
posixstat.h 39 #if !defined (S_IFDIR) && !defined (S_ISDIR)
40 # define S_IFDIR 0040000
41 #endif /* !S_IFDIR && !S_ISDIR */
60 #if defined (_S_IFDIR) && !defined (S_IFDIR)
61 #define S_IFDIR _S_IFDIR
87 #if defined (S_IFDIR) && !defined (S_ISDIR)
88 #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR) /* directory */
  /src/external/gpl3/gdb.old/dist/readline/readline/
posixstat.h 39 #if !defined (S_IFDIR) && !defined (S_ISDIR)
40 # define S_IFDIR 0040000
41 #endif /* !S_IFDIR && !S_ISDIR */
60 #if defined (_S_IFDIR) && !defined (S_IFDIR)
61 #define S_IFDIR _S_IFDIR
87 #if defined (S_IFDIR) && !defined (S_ISDIR)
88 #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR) /* directory */
  /src/crypto/external/bsd/openssl.old/dist/
e_os.h 119 # ifndef S_IFDIR
120 # define S_IFDIR _S_IFDIR
  /src/external/bsd/ntp/dist/sntp/libopts/compat/
windows-config.h 113 # define S_IFDIR _S_IFDIR
114 # define S_ISDIR(mode) (((mode) & S_IFDIR) == S_IFDIR)
  /src/crypto/external/apache2/openssl/dist/include/internal/
e_os.h 73 #ifndef S_IFDIR
74 #define S_IFDIR _S_IFDIR
  /src/crypto/external/bsd/openssl/dist/
e_os.h 73 # ifndef S_IFDIR
74 # define S_IFDIR _S_IFDIR
  /src/sys/sys/
stat.h 155 #define S_IFDIR _S_IFDIR
  /src/external/bsd/am-utils/dist/include/
am_defs.h 1291 # undef S_IFDIR
  /src/external/public-domain/sqlite/dist/
shell.c 2224 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
9375 ** Definitions for mode bitmasks S_IFDIR, S_IFREG and S_IFLNK.
9383 #ifndef S_IFDIR
9384 # define S_IFDIR 0040000
10399 if( !(mode & S_IFDIR)
10722 mode = (bIsDir ? (S_IFDIR + 0755) : (S_IFREG + 0644));
10731 case 'd': mode |= S_IFDIR; break;
10740 if( ((mode & S_IFDIR)==0)==bIsDir ){

Completed in 39 milliseconds