/third_party/rust/crates/nix/src/ |
H A D | errno.rs | 172 EMFILE => "Too many open files", 1148 EMFILE = libc::EMFILE, 1293 libc::EMFILE => EMFILE, 1438 EMFILE = libc::EMFILE, 1556 libc::EMFILE => EMFILE, 1674 EMFILE [all...] |
/third_party/musl/libc-test/src/regression/ |
H A D | daemon-failure.c | 51 if (errno != EMFILE) in main() 52 t_error("daemon should have failed with %d [EMFILE] got %d [%s]\n", EMFILE, errno, strerror(errno)); in main()
|
H A D | rlimit-open-files.c | 27 if (errno != EMFILE) in main() 28 t_error("dup(1) failed with %s, wanted EMFILE\n", strerror(errno)); in main()
|
/third_party/ltp/testcases/kernel/syscalls/open/ |
H A D | open04.c | 10 * Verify that open(2) fails with EMFILE when per-process limit on the number 38 if (errno != EMFILE) in setup() 39 tst_brk(TBROK, "Expected EMFILE but got %d", errno); in setup() 50 TST_EXP_FAIL2(open(fname, O_RDWR | O_CREAT, 0777), EMFILE); in run()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/ |
H A D | 3-2.c | 58 EMFILE, "EMFILE", EMFILE}, {
|
H A D | 4-1.c | 53 EMFILE, "EMFILE"}, {
|
/third_party/musl/libc-test/src/common/ |
H A D | fdfill.c | 10 if (errno == EMFILE) in t_fdfill()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/ |
H A D | 38-1.c | 10 * Test that the shm_open() function sets errno = EMFILE if too many file 31 if (errno == EMFILE) { in main()
|
/third_party/NuttX/fs/vfs/ |
H A D | fs_dupfd.c | 96 set_errno(EMFILE); in file_dup()
|
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
H A D | fopen.c | 30 errno = EMFILE; in fopen()
|
/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
H A D | fopen.c | 28 errno = EMFILE;
in fopen()
|
/third_party/musl/porting/uniproton/kernel/src/stdio/ |
H A D | fopen.c | 28 errno = EMFILE;
in fopen()
|
/third_party/ltp/testcases/kernel/syscalls/pipe/ |
H A D | pipe06.c | 12 * Verify that, pipe(2) syscall fails with errno EMFILE when 41 TST_EXP_FAIL(pipe(fds), EMFILE); in run() local
|
H A D | pipe07.c | 75 TST_EXP_EQ_LI(errno, EMFILE); in run()
|
/third_party/ltp/testcases/kernel/syscalls/dup/ |
H A D | dup03.c | 10 * Verify that dup(2) syscall fails with errno EMFILE when the per-process 22 TST_EXP_FAIL2(dup(fd[0]), EMFILE, "dup(%d)", fd[0]); in run() local
|
/third_party/ltp/testcases/kernel/syscalls/fcntl/ |
H A D | fcntl12.c | 13 * - EMFILE when cmd is F_DUPFD and the per-process limit on the number of open 39 TST_EXP_FAIL2(fcntl(1, F_DUPFD, 1), EMFILE, in verify_fcntl()
|
/third_party/libuv/include/uv/ |
H A D | errno.h | 197 #if defined(EMFILE) && !defined(_WIN32) 198 # define UV__EMFILE UV__ERR(EMFILE)
|
/third_party/node/deps/uv/include/uv/ |
H A D | errno.h | 197 #if defined(EMFILE) && !defined(_WIN32) 198 # define UV__EMFILE UV__ERR(EMFILE)
|
/third_party/libfuse/example/ |
H A D | passthrough_hp.cc | 415 if (err == ENFILE || err == EMFILE) in sfs_lookup() 450 if (saverr == ENFILE || saverr == EMFILE) in mknod_symlink() 682 if (error == ENFILE || error == EMFILE) in sfs_opendir() 775 if (err == ENFILE || err == EMFILE) in do_readdir() 819 if (err == ENFILE || err == EMFILE) in sfs_create() 829 if (err == ENFILE || err == EMFILE) in sfs_create() 881 if (err == ENFILE || err == EMFILE) in sfs_open()
|
/third_party/ltp/testcases/kernel/syscalls/dup2/ |
H A D | dup205.c | 61 if (TST_ERR != EBADF && TST_ERR != EMFILE && TST_ERR != EINVAL) { in run()
|
/third_party/ltp/testcases/kernel/syscalls/creat/ |
H A D | creat05.c | 8 * Testcase to check that creat(2) system call returns EMFILE. 35 if (TST_ERR == EMFILE) in verify_creat() 36 tst_res(TPASS, "creat() failed with EMFILE"); in verify_creat() 38 tst_res(TFAIL | TTERRNO, "Expected EMFILE"); in verify_creat()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/speculative/ |
H A D | 26-1.c | 10 * Test that mq_open() fails with EMFILE if there are too many message 15 * descriptors or file descriptors open and check that errno == EMFILE. 68 if (errno != EMFILE) { in main() 69 printf("errno != EMFILE on > "); in main()
|
/third_party/libuv/test/ |
H A D | test-emfile.c | 75 ASSERT_EQ(errno, EMFILE); in TEST_IMPL() 78 /* Now connect and use up the last available file descriptor. The EMFILE in TEST_IMPL()
|
/third_party/ltp/testcases/kernel/containers/mqns/ |
H A D | mqns_03.c | 34 #define CHECK_MQ_OPEN_RET(x) ((x) >= 0 || ((x) == -1 && errno != EMFILE))
|
H A D | mqns_04.c | 32 #define CHECK_MQ_OPEN_RET(x) ((x) >= 0 || ((x) == -1 && errno != EMFILE))
|