Home
last modified time | relevance | path

Searched refs:S_IFCHR (Results 1 – 5 of 5) sorted by relevance

/DragonOS/kernel/src/filesystem/vfs/
H A Dsyscall.rs54 const S_IFCHR = 0o020000; constant
1322 FileType::CharDevice => kstat.mode.insert(ModeType::S_IFCHR), in do_fstat()
1326 FileType::KvmDevice => kstat.mode.insert(ModeType::S_IFCHR), in do_fstat()
1327 FileType::FramebufferDevice => kstat.mode.insert(ModeType::S_IFCHR), in do_fstat()
1493 FileType::CharDevice => tmp.stx_mode.insert(ModeType::S_IFCHR), in do_statx()
1497 FileType::KvmDevice => tmp.stx_mode.insert(ModeType::S_IFCHR), in do_statx()
1498 FileType::FramebufferDevice => tmp.stx_mode.insert(ModeType::S_IFCHR), in do_statx()
/DragonOS/kernel/src/filesystem/devpts/
H A Dmod.rs243 metadata.mode.insert(ModeType::S_IFCHR); in create_with_data()
/DragonOS/kernel/src/filesystem/overlayfs/
H A Dmod.rs219 let whiteout_mode = vfs::syscall::ModeType::S_IFCHR; in create_whiteout()
/DragonOS/kernel/src/filesystem/ramfs/
H A Dmod.rs620 } else if mode.contains(ModeType::S_IFCHR) { in mknod()
/DragonOS/kernel/src/filesystem/fat/
H A Dfs.rs1828 } else if mode.contains(ModeType::S_IFCHR) { in mknod()