Searched refs:read (Results 1 – 19 of 19) sorted by relevance
/DragonOS-0.1.2/user/apps/shell/ |
D | cmd_test.c | 27 ret = read(fd[0], buf, sizeof(buf)); in shell_pipe_test()
|
D | cmd.c | 321 int l = read(fd, buf, 511); in shell_cmd_cat()
|
/DragonOS-0.1.2/user/libs/libc/src/ |
D | unistd.h | 21 ssize_t read(int fd, void *buf, size_t count);
|
D | unistd.c | 28 ssize_t read(int fd, void *buf, size_t count) in read() function
|
/DragonOS-0.1.2/kernel/src/driver/tty/ |
D | tty.c | 85 .read = tty_read,
|
/DragonOS-0.1.2/docs/userland/libc/apis/api-list/ |
D | unistd.md | 11 ``ssize_t read(int fd,void *buf,size_t count)`` : 从文件读取
|
D | fcntl.md | 18 #define O_RDWR 00000002 // Open read/write
|
D | errno.md | 101 … #define ENODATA 43 /* 队列头没有可读取的消息 No message is available on the STREAM head read queue.*/
|
/DragonOS-0.1.2/user/libs/libKeyboard/ |
D | keyboard.c | 530 read(fd, &ret, 1); in keyboard_get_scancode()
|
/DragonOS-0.1.2/kernel/src/driver/keyboard/ |
D | ps2_keyboard.c | 134 .read = ps2_keyboard_read,
|
/DragonOS-0.1.2/kernel/src/syscall/ |
D | syscall.c | 177 if (file_ptr->file_ops && file_ptr->file_ops->read) in sys_read() 178 ret = file_ptr->file_ops->read(file_ptr, (char *)buf, count, &(file_ptr->position)); in sys_read()
|
/DragonOS-0.1.2/kernel/src/ipc/ |
D | pipe.c | 105 .read = pipe_read,
|
/DragonOS-0.1.2/kernel/src/filesystem/VFS/ |
D | VFS.h | 188 long (*read)(struct vfs_file_t *file_ptr, char *buf, int64_t count, long *position); member
|
/DragonOS-0.1.2/kernel/src/process/ |
D | process.c | 180 retval = filp->file_ops->read(filp, (char *)buf, sizeof(Elf64_Ehdr), &pos); in process_load_elf_file() 223 …filp->file_ops->read(filp, (char *)buf, (uint64_t)ehdr.e_phentsize * (uint64_t)ehdr.e_phnum, &pos); in process_load_elf_file() 306 … val = filp->file_ops->read(filp, (char *)(virt_base + beginning_offset), to_trans, &pos); in process_load_elf_file()
|
/DragonOS-0.1.2/kernel/src/filesystem/rootfs/ |
D | rootfs.c | 100 .read = &rootfs_read,
|
/DragonOS-0.1.2/docs/kernel/filesystem/vfs/ |
D | overview.md | 7   与VFS相关的系统调用有open(), read(), write(), create()等。
|
/DragonOS-0.1.2/kernel/src/filesystem/devfs/ |
D | devfs.c | 121 .read = &devfs_read,
|
/DragonOS-0.1.2/kernel/src/filesystem/procfs/ |
D | procfs.c | 305 .read = &procfs_read,
|
/DragonOS-0.1.2/kernel/src/filesystem/fat32/ |
D | fat32.c | 835 .read = fat32_read,
|