Home
last modified time | relevance | path

Searched refs:write (Results 1 – 17 of 17) sorted by relevance

/DragonOS-0.1.3/user/apps/shell/
Dcmd_test.c23 ret = write(fd[1], msg, strlen(msg)); in shell_pipe_test()
/DragonOS-0.1.3/user/libs/libc/src/include/
Dunistd.h35 ssize_t write(int fd, void const *buf, size_t count);
/DragonOS-0.1.3/kernel/src/driver/tty/
Dtty.c86 .write = tty_write,
/DragonOS-0.1.3/docs/userland/libc/apis/api-list/
Dunistd.md17 ``ssize_t write(int fd,void const *buf,size_t count)`` : 写入文件
Dfcntl.md18 #define O_RDWR 00000002 // Open read/write
/DragonOS-0.1.3/user/libs/libc/src/
Dstdio.c24 write(stream->fd, buf, len); in fprintf()
Dunistd.c41 ssize_t write(int fd, void const *buf, size_t count) in write() function
/DragonOS-0.1.3/kernel/src/driver/keyboard/
Dps2_keyboard.c135 .write = ps2_keyboard_write,
/DragonOS-0.1.3/kernel/src/ipc/
Dpipe.c106 .write = pipe_write,
/DragonOS-0.1.3/kernel/src/filesystem/vfs/
DVFS.h189 long (*write)(struct vfs_file_t *file_ptr, char *buf, int64_t count, long *position); member
/DragonOS-0.1.3/kernel/src/syscall/
Dsyscall.c243 if (file_ptr->file_ops && file_ptr->file_ops->write) in sys_write()
244 ret = file_ptr->file_ops->write(file_ptr, (char *)buf, count, &(file_ptr->position)); in sys_write()
/DragonOS-0.1.3/kernel/src/filesystem/rootfs/
Drootfs.c101 .write = &rootfs_write,
/DragonOS-0.1.3/docs/kernel/filesystem/vfs/
Doverview.md7   与VFS相关的系统调用有open(), read(), write(), create()等。
/DragonOS-0.1.3/kernel/src/filesystem/devfs/
Ddevfs.c122 .write = &devfs_write,
/DragonOS-0.1.3/kernel/src/filesystem/procfs/
Dprocfs.c306 .write = &procfs_write,
/DragonOS-0.1.3/
DLICENSE251 programs whose distribution conditions are different, write to the author
253 Software Foundation, write to the Free Software Foundation; we sometimes
307 with this program; if not, write to the Free Software Foundation, Inc.,
/DragonOS-0.1.3/kernel/src/filesystem/fat32/
Dfat32.c836 .write = fat32_write,