HomeSort by: relevance | last modified time | path
    Searched refs:S_ISSOCK (Results 1 - 25 of 63) sorted by relevancy

1 2 3

  /src/external/ibm-public/postfix/dist/src/global/
mail_trigger.c 90 if (status < 0 && S_ISSOCK(st.st_mode))
92 } else if (S_ISSOCK(st.st_mode)) {
  /src/external/gpl2/mkhybrid/dist/include/
statdefs.h 42 #undef S_ISSOCK /* UNIX domain socket */
123 #ifndef S_ISSOCK /* UNIX domain socket */
125 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
127 # define S_ISSOCK(m) (0)
  /src/external/gpl3/binutils/dist/binutils/
filemode.c 166 #ifndef S_ISSOCK
168 #define S_ISSOCK(i) (((i) & S_IFMT) == S_IFSOCK)
170 #define S_ISSOCK(i) 0
172 #endif /* ! defined (S_ISSOCK) */
193 if (S_ISSOCK (bits))
  /src/external/gpl3/binutils.old/dist/binutils/
filemode.c 166 #ifndef S_ISSOCK
168 #define S_ISSOCK(i) (((i) & S_IFMT) == S_IFSOCK)
170 #define S_ISSOCK(i) 0
172 #endif /* ! defined (S_ISSOCK) */
193 if (S_ISSOCK (bits))
  /src/external/gpl2/xcvs/dist/diff/
system.h 47 #undef S_ISSOCK
65 #ifndef S_ISSOCK
68 # define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK)
70 # define S_ISSOCK(mode) ((mode) & S_IFSOCK)
74 # define S_ISSOCK S_ISNAM
76 #endif /* !S_ISSOCK */
  /src/external/gpl2/xcvs/dist/lib/
stat-macros.h 44 # undef S_ISSOCK
130 # ifndef S_ISSOCK
132 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
134 # define S_ISSOCK(m) 0
  /src/external/gpl3/gdb/dist/readline/readline/
posixstat.h 103 #if defined (S_IFSOCK) && !defined (S_ISSOCK)
104 #define S_ISSOCK(m) (((m)&S_IFMT) == S_IFSOCK) /* socket */
colors.c 255 #if defined (S_ISSOCK)
256 else if (S_ISSOCK (mode))
  /src/external/gpl3/gdb.old/dist/readline/readline/
posixstat.h 103 #if defined (S_IFSOCK) && !defined (S_ISSOCK)
104 #define S_ISSOCK(m) (((m)&S_IFMT) == S_IFSOCK) /* socket */
colors.c 255 #if defined (S_ISSOCK)
256 else if (S_ISSOCK (mode))
  /src/external/gpl3/gdb/dist/gnulib/import/
chown.c 107 && (S_ISFIFO (st.st_mode) || S_ISSOCK (st.st_mode)));
sys_stat.in.h 172 # undef S_ISSOCK
261 #ifndef S_ISSOCK
263 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
265 # define S_ISSOCK(m) 0
  /src/external/gpl3/gdb.old/dist/gnulib/import/
chown.c 107 && (S_ISFIFO (st.st_mode) || S_ISSOCK (st.st_mode)));
sys_stat.in.h 172 # undef S_ISSOCK
261 #ifndef S_ISSOCK
263 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
265 # define S_ISSOCK(m) 0
  /src/external/gpl2/diffutils/dist/src/
system.h 72 # undef S_ISSOCK
89 #if !defined S_ISSOCK && defined S_IFSOCK
90 # define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK)
  /src/external/gpl3/gcc/dist/libcpp/
system.h 345 #ifndef S_ISSOCK
347 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
349 # define S_ISSOCK(m) 0
  /src/external/gpl3/gcc.old/dist/libcpp/
system.h 345 #ifndef S_ISSOCK
347 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
349 # define S_ISSOCK(m) 0
  /src/external/bsd/elftoolchain/dist/libelf/
libelf_open.c 168 !S_ISSOCK(mode)) {
  /src/external/bsd/unbound/dist/compat/
getentropy_solaris.c 393 S_ISSOCK(st.st_mode)) {
402 } else if (S_ISSOCK(st.st_mode)) {
getentropy_osx.c 369 S_ISSOCK(st.st_mode)) {
380 } else if (S_ISSOCK(st.st_mode)) {
  /src/external/gpl3/gdb/dist/readline/readline/examples/rlfe/
os.h 349 #if defined(S_IFSOCK) && defined(S_IFMT) && !defined(S_ISSOCK)
350 #define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK)
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/rlfe/
os.h 349 #if defined(S_IFSOCK) && defined(S_IFMT) && !defined(S_ISSOCK)
350 #define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK)
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/sys/
stat.d 1381 S_ISSOCK(m)
1415 extern (D) bool S_ISSOCK( mode_t mode ) { return S_ISTYPE( mode, S_IFSOCK ); }
1452 extern (D) bool S_ISSOCK( mode_t mode ) { return S_ISTYPE( mode, S_IFSOCK ); }
1485 extern (D) bool S_ISSOCK( mode_t mode ) { return S_ISTYPE( mode, S_IFSOCK ); }
1526 extern (D) bool S_ISSOCK( mode_t mode ) { return S_ISTYPE( mode, S_IFSOCK ); }
1551 extern (D) bool S_ISSOCK(mode_t mode) { return (mode & S_IFMT) == S_IFSOCK; }
1584 extern (D) bool S_ISSOCK( mode_t mode ) { return S_ISTYPE( mode, S_IFSOCK ); }
1617 extern (D) bool S_ISSOCK(mode_t mode) { return S_ISTYPE(mode, S_IFSOCK); }
1652 extern (D) bool S_ISSOCK( uint mode ) { return S_ISTYPE( mode, S_IFSOCK ); }
1692 extern (D) bool S_ISSOCK( mode_t mode ) { return S_ISTYPE( mode, S_IFSOCK );
    [all...]
  /src/external/ibm-public/postfix/dist/src/util/
sys_defs.h 319 /* Ultrix misses just S_ISSOCK, the others are there */
320 #define S_ISSOCK(mode) (((mode) & (S_IFMT)) == (S_IFSOCK))
1227 #ifndef S_ISSOCK
1228 #define S_ISSOCK(mode) ((mode&0xF000) == 0xC000)
1260 /* SCO5 misses just S_ISSOCK, the others are there
1264 #define S_ISSOCK(mode) (((mode) & (S_IFMT)) == (C_ISSOCK))
1566 #define S_ISSOCK(mode) (((mode) & (_S_IFMT)) == (_S_IFSOCK))
  /src/bin/ksh/
c_test.c 292 #ifdef S_ISSOCK
293 return test_stat(opnd1, &b1) == 0 && S_ISSOCK(b1.st_mode);

Completed in 38 milliseconds

1 2 3