Home
last modified time | relevance | path

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

/external/curl/src/
Dtool_doswin.c49 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) macro
51 # 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.py54 def S_ISCHR(mode): function
/external/kernel-headers/original/uapi/linux/
Dstat.h24 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) macro
/external/python/cpython3/Include/
Dpyport.h263 #define S_ISCHR(x) (((x) & S_IFMT) == S_IFCHR) macro
/external/python/cpython2/Lib/plat-atheos/
DIN.py587 def S_ISCHR(m): return (((m) & S_IFMT) == S_IFCHR) function