Home
last modified time | relevance | path

Searched refs:_S_IFCHR (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/sys/sys/
H A Dstat.h140 #define _S_IFCHR 0020000 /* character special */ macro
154 #define S_IFCHR _S_IFCHR
172 #define S_ISCHR(m) (((m) & _S_IFMT) == _S_IFCHR) /* char special */
/netbsd-src/external/gpl3/gdb/dist/readline/readline/
H A Dposixstat.h57 #if defined (_S_IFCHR) && !defined (S_IFCHR)
58 #define S_IFCHR _S_IFCHR
/netbsd-src/external/apache2/llvm/dist/libcxx/src/filesystem/
H A Dposix_compat.h86 #undef _S_IFCHR
95 #define _S_IFCHR 0x2000 macro
111 #define S_ISCHR(m) (((m) & _S_IFMT) == _S_IFCHR)
/netbsd-src/sys/rump/librump/rumpkern/
H A Dcons.c145 sb->st_mode = 0600 | _S_IFCHR; in rumpcons_stat()
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/
H A Dstat-w32.c390 buf->st_mode = (type == FILE_TYPE_PIPE ? _S_IFIFO : _S_IFCHR); in _gl_fstat_by_handle()
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/roken/
H A Droken.h.in363 #define S_ISCHR(m) (((m) & _S_IFCHR) == _S_IFCHR)
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dsys_defs.h1544 #define S_ISCHR(mode) (((mode) & (_S_IFMT)) == (_S_IFCHR))
/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c1723 # define STAT_CHR_SRC(mode) ((mode & (_S_IFCHR|_S_IFIFO|_S_IFREG))!=0) in openChrSource()