Home
last modified time | relevance | path

Searched refs:EISDIR (Results 1 - 25 of 118) sorted by relevance

12345

/third_party/ltp/testcases/kernel/syscalls/open/
H A Dopen11.c15 * 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 Dopen08.c13 * - 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 Dremove.c14 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 Dunlink08.c14 * - 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 Derrno.rs169 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 Dtest-fs-readfile-error.js50 assert.match(data, /EISDIR/);
55 assert.match(data, /EISDIR/);
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/
H A D3-2.c56 EISDIR, "EISDIR", EISDIR}, {
H A D4-1.c51 EISDIR, "EISDIR"}, {
/third_party/musl/porting/uniproton/kernel/src/stdio/
H A Dremove.c9 if (r==-EISDIR) r = rmdir(path); in remove()
/third_party/musl/porting/liteos_a/kernel/src/stdio/
H A Dremove.c9 if (r==-EISDIR) r = rmdir(path); in remove()
/third_party/musl/porting/liteos_m/kernel/src/stdio/
H A Dremove.c9 if (r==-EISDIR) r = rmdir(path); in remove()
/third_party/ltp/testcases/kernel/syscalls/rename/
H A Drename05.c11 * Verify that rename(2) fails with EISDIR when
32 EISDIR); in run() local
/third_party/libuv/include/uv/
H A Derrno.h185 #if defined(EISDIR) && !defined(_WIN32)
186 # define UV__EISDIR UV__ERR(EISDIR)
/third_party/node/deps/uv/include/uv/
H A Derrno.h185 #if defined(EISDIR) && !defined(_WIN32)
186 # define UV__EISDIR UV__ERR(EISDIR)
/third_party/ltp/testcases/kernel/syscalls/pread/
H A Dpread02.c14 * - 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 Dcp.js31 EISDIR,
93 errno: EISDIR,
94 code: 'EISDIR',
204 errno: EISDIR,
205 code: 'EISDIR',
/third_party/NuttX/fs/vfs/
H A Dfs_unlink.c42 return -EISDIR; in check_target()
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/
H A Derrno.h22 #define EISDIR 21 macro
/third_party/musl/porting/liteos_m/kernel/include/bits/
H A Derrno.h22 #define EISDIR 21 macro
/third_party/musl/porting/liteos_a/kernel/include/bits/
H A Derrno.h22 #define EISDIR 21 macro
/third_party/musl/porting/liteos_m/user/include/bits/
H A Derrno.h21 #define EISDIR 21 macro
/third_party/musl/porting/uniproton/kernel/include/bits/
H A Derrno.h22 #define EISDIR 21 macro
/third_party/ltp/testcases/kernel/syscalls/readv/
H A Dreadv02.c17 * - EISDIR the file descriptor is a directory
66 {&fd_dir, valid_iovec, 1, EISDIR},
/third_party/ltp/testcases/kernel/syscalls/preadv2/
H A Dpreadv202.c19 * 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 Dpreadv02.c27 * 7) preadv(2) should return -1 and set errno to EISDIR.
73 {&fd4, rd_iovec2, 1, 0, EISDIR},

Completed in 15 milliseconds

12345