Home
last modified time | relevance | path

Searched defs:S_ISCHR (Results 1 – 8 of 8) sorted by relevance

/external/curl/src/
Dtool_doswin.c75 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) macro
77 # define S_ISCHR(m) (0) /* cannot tell if file is a device */ macro
/external/python/cpython2/Lib/
Dstat.py43 def S_ISCHR(mode): function
/external/python/cpython3/Lib/
Dstat.py50 def S_ISCHR(mode): function
/external/u-boot/fs/yaffs2/
Dyportenv.h257 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) macro
/external/kernel-headers/original/uapi/linux/
Dstat.h24 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) macro
/external/python/cpython3/Include/
Dpyport.h249 #define S_ISCHR(x) (((x) & S_IFMT) == S_IFCHR) macro
/external/u-boot/include/linux/
Dstat.h25 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) macro
/external/python/cpython2/Lib/plat-atheos/
DIN.py587 def S_ISCHR(m): return (((m) & S_IFMT) == S_IFCHR) function