/third_party/ltp/testcases/kernel/syscalls/open/ |
H A D | open11.c | 15 * 7. Open dir O_RDWR, expect EISDIR 24 * 16. Open sym link dir O_WRONLY, expect EISDIR 25 * 17. Open sym link dir O_RDWR, expect EISDIR 33 * 25. Open symlink dir O_RDONLY | O_CREAT, expect EISDIR 34 * 26. Open dir O_RDONLY | O_CREAT, expect EISDIR 115 .desc = "Open dir O_RDWR, expect EISDIR", 119 .err = EISDIR, 180 .desc = "Open sym link dir O_WRONLY, expect EISDIR", 184 .err = EISDIR, 187 .desc = "Open sym link dir O_RDWR, expect EISDIR", [all...] |
H A D | open08.c | 13 * - EISDIR when pathname refers to a directory and the access requested 43 {&dir_fname, FLAGS_DESC(O_RDWR), EISDIR},
|
/third_party/musl/src/stdio/ |
H A D | remove.c | 14 if (r==-EISDIR) r = __syscall(SYS_rmdir, path); in remove() 16 if (r==-EISDIR) r = __syscall(SYS_unlinkat, AT_FDCWD, path, AT_REMOVEDIR); in remove()
|
/third_party/ltp/testcases/kernel/syscalls/unlink/ |
H A D | unlink08.c | 14 * - EISDIR when deleting directory as root user 15 * - EISDIR when deleting directory as non-root user 34 {"regdir", "directory", EISDIR, 0}, 35 {"regdir", "directory", EISDIR, 1},
|
/third_party/rust/crates/nix/src/ |
H A D | errno.rs | 169 EISDIR => "Is a directory", 1145 EISDIR = libc::EISDIR, 1290 libc::EISDIR => EISDIR, 1435 EISDIR = libc::EISDIR, 1553 libc::EISDIR => EISDIR, 1671 EISDIR [all...] |
/third_party/node/test/parallel/ |
H A D | test-fs-readfile-error.js | 50 assert.match(data, /EISDIR/); 55 assert.match(data, /EISDIR/);
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/ |
H A D | 3-2.c | 56 EISDIR, "EISDIR", EISDIR}, {
|
H A D | 4-1.c | 51 EISDIR, "EISDIR"}, {
|
/third_party/musl/porting/uniproton/kernel/src/stdio/ |
H A D | remove.c | 9 if (r==-EISDIR) r = rmdir(path); in remove()
|
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
H A D | remove.c | 9 if (r==-EISDIR) r = rmdir(path); in remove()
|
/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
H A D | remove.c | 9 if (r==-EISDIR) r = rmdir(path); in remove()
|
/third_party/ltp/testcases/kernel/syscalls/rename/ |
H A D | rename05.c | 11 * Verify that rename(2) fails with EISDIR when 32 EISDIR); in run() local
|
/third_party/libuv/include/uv/ |
H A D | errno.h | 185 #if defined(EISDIR) && !defined(_WIN32) 186 # define UV__EISDIR UV__ERR(EISDIR)
|
/third_party/node/deps/uv/include/uv/ |
H A D | errno.h | 185 #if defined(EISDIR) && !defined(_WIN32) 186 # define UV__EISDIR UV__ERR(EISDIR)
|
/third_party/ltp/testcases/kernel/syscalls/pread/ |
H A D | pread02.c | 14 * - EISDIR when fd refers to a directory 36 {&dir_fd, K1, 0, "file descriptor is a directory", EISDIR}
|
/third_party/node/lib/internal/fs/cp/ |
H A D | cp.js | 31 EISDIR, 93 errno: EISDIR, 94 code: 'EISDIR', 204 errno: EISDIR, 205 code: 'EISDIR',
|
/third_party/NuttX/fs/vfs/ |
H A D | fs_unlink.c | 42 return -EISDIR; in check_target()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/ |
H A D | errno.h | 22 #define EISDIR 21 macro
|
/third_party/musl/porting/liteos_m/kernel/include/bits/ |
H A D | errno.h | 22 #define EISDIR 21 macro
|
/third_party/musl/porting/liteos_a/kernel/include/bits/ |
H A D | errno.h | 22 #define EISDIR 21 macro
|
/third_party/musl/porting/liteos_m/user/include/bits/ |
H A D | errno.h | 21 #define EISDIR 21 macro
|
/third_party/musl/porting/uniproton/kernel/include/bits/ |
H A D | errno.h | 22 #define EISDIR 21 macro
|
/third_party/ltp/testcases/kernel/syscalls/readv/ |
H A D | readv02.c | 17 * - EISDIR the file descriptor is a directory 66 {&fd_dir, valid_iovec, 1, EISDIR},
|
/third_party/ltp/testcases/kernel/syscalls/preadv2/ |
H A D | preadv202.c | 19 * 7) preadv2() fails and sets errno to EISDIR when fd refers to a directory. 66 {&fd4, rd_iovec2, 1, 0, 0, EISDIR},
|
/third_party/ltp/testcases/kernel/syscalls/preadv/ |
H A D | preadv02.c | 27 * 7) preadv(2) should return -1 and set errno to EISDIR. 73 {&fd4, rd_iovec2, 1, 0, EISDIR},
|