- t2ex
- t2ex_source/kernel/sysmain/src/command.c - 24.4KB - 884 lines
659: } else {
660: fd = fs_open(av[1], O_RDWR);
661: if (fd < 0) {
- t2ex_source/lib/libc/src/dirent/opendir.c - 2.6KB - 80 lines
60:
61: fd = fs_open(path, O_RDONLY | O_DIRECTORY, 0);
62: if (fd < 0) { er = ERRNO(fd); goto e1; }
- t2ex_source/lib/libc/src/stdio/stdio_fs.c - 3.2KB - 109 lines
63: {
64: return fs_open( path, oflags, mode );
65: }
- t2ex_source/t2ex/fs/fs/src/fs_main.c - 4.3KB - 132 lines
76: /* Open stdio */
77: stdinfd = fs_open("/console/stdin", O_RDONLY);
78: stdoutfd = fs_open("/console/stdout", O_WRONLY);
- More results from fs_main.c
- t2ex_source/t2ex/load/src/src_file.c - 3.4KB - 112 lines
99: {
100: int fd = fs_open((char*)prog->pmhdr, O_RDONLY);
101: if ( fd < E_OK ) {