Home
last modified time | relevance | path

Searched refs:S_IFBLK (Results 1 – 6 of 6) sorted by relevance

/system/core/adb/sysdeps/
Dstat.h51 #undef S_IFBLK
52 #define S_IFBLK 0060000 macro
54 #define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)
61 static_assert(S_IFBLK == 0060000, "");
/system/vold/
DLoop.cpp153 mode_t mode = 0660 | S_IFBLK; in create()
157 rc = selabel_lookup(sehandle, &secontext, filename, S_IFBLK); in create()
DUtils.cpp66 if (!selabel_lookup(sehandle, &secontext, cpath, S_IFBLK)) { in CreateDeviceNode()
71 mode_t mode = 0660 | S_IFBLK; in CreateDeviceNode()
/system/update_engine/common/
Dtest_utils.cc169 S_IFBLK | 0660, in BindToUnusedLoopDevice()
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
Dutil.c208 if ((s == S_IFIFO || s == S_IFCHR || s == S_IFBLK in procfile()
/system/core/init/
Ddevices.cpp238 mode = get_device_perm(path, links, &uid, &gid) | (block ? S_IFBLK : S_IFCHR); in make_device()