Home
last modified time | relevance | path

Searched refs:O_RDONLY (Results 1 – 9 of 9) sorted by relevance

/DragonOS-0.1.7/kernel/src/common/
Dfcntl.h13 #define O_RDONLY 00000000 // Open Read-only macro
/DragonOS-0.1.7/user/libs/libc/src/include/export/
Dfcntl.h17 #define O_RDONLY 00000000 // Open Read-only macro
/DragonOS-0.1.7/docs/userland/libc/apis/api-list/
Dfcntl.md14 #define O_RDONLY 00000000 // Open Read-only
/DragonOS-0.1.7/kernel/src/ipc/
Dsyscall.rs21 let read_file = File::new(pipe_ptr.clone(), FileMode::O_RDONLY); in do_pipe()
/DragonOS-0.1.7/user/libs/libc/src/
Dstdio.c75 o_flags = O_RDONLY; in fopen()
/DragonOS-0.1.7/kernel/src/filesystem/vfs/
Dfile.rs39 const O_RDONLY = 0o0; constant
218 if self.mode == FileMode::O_RDONLY { in writeable()
/DragonOS-0.1.7/kernel/src/driver/tty/
Dtty_device.rs125 if accmode == FileMode::O_RDONLY.accmode() { in open()
/DragonOS-0.1.7/kernel/src/process/
Dprocess.rs412 File::new(tty_inode.clone(), FileMode::O_RDONLY).expect("Init stdio: can't create stdin"); in init_stdio()
Dprocess.c149 tmp.r9 = O_RDONLY; in process_open_exec_file()