Home
last modified time | relevance | path

Searched defs:S_ISBLK (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/
Dstat.py46 def S_ISBLK(mode): function
/external/python/cpython3/Modules/
D_stat.c92 # define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK) macro
/external/python/cpython3/Lib/
Dstat.py58 def S_ISBLK(mode): function
/external/kernel-headers/original/uapi/linux/
Dstat.h25 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
/external/python/cpython2/Lib/plat-atheos/
DIN.py589 def S_ISBLK(m): return (((m) & S_IFMT) == S_IFBLK) function