Searched refs:EMFILE (Results 1 – 25 of 105) sorted by relevance
12345
/third_party/node/deps/npm/node_modules/graceful-fs/ |
D | README.md | 13 something closes if there is an EMFILE error from too many file 49 order to delay on EMFILE errors from any fs-using dependencies. You 66 The goal is to trade `EMFILE` errors for slower fs operations. So, if 71 that no `EMFILE` errors can possibly occur anywhere in your 96 * verify that we *never* get EMFILE errors 124 * Fix #3 Start at 1024 max files, then back off on EMFILE 126 * A full on-rewrite using a queue instead of just swallowing the EMFILE error
|
/third_party/glib/glib/ |
D | gspawn-private.h | 92 #ifdef EMFILE in _g_spawn_exec_err_to_g_error() 93 case EMFILE: in _g_spawn_exec_err_to_g_error()
|
/third_party/ltp/testcases/kernel/syscalls/pipe/ |
D | pipe06.c | 76 if (TEST_ERRNO != EMFILE) { in main() 104 if (errno != EMFILE) { in setup()
|
/third_party/musl/libc-test/src/regression/ |
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()
|
D | rlimit-open-files.c | 27 if (errno != EMFILE) in main()
|
/third_party/ltp/testcases/kernel/syscalls/open/ |
D | open04.c | 67 if (TEST_ERRNO != EMFILE) in main() 109 if (errno != EMFILE) { in setup()
|
/third_party/node/deps/npm/node_modules/rimraf/ |
D | README.md | 24 * `EMFILE` - Since `readdir` requires opening a file descriptor, it's 25 possible to hit `EMFILE` if too many file descriptors are in use. 62 If an `EMFILE` error is encountered, then rimraf will retry 66 If you repeatedly encounter `EMFILE` errors, then consider using
|
/third_party/boost/boost/ |
D | cerrno.hpp | 323 #ifndef EMFILE 324 #define EMFILE 9978 macro
|
/third_party/glib/gio/ |
D | gioerror.c | 227 #ifdef EMFILE in g_io_error_from_errno() 228 case EMFILE: in g_io_error_from_errno()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/ |
D | 3-2.c | 58 EMFILE, "EMFILE", EMFILE}, {
|
D | 4-1.c | 53 EMFILE, "EMFILE"}, {
|
/third_party/musl/libc-test/src/common/ |
D | fdfill.c | 10 if (errno == EMFILE) in t_fdfill()
|
/third_party/boost/boost/outcome/experimental/status-code/detail/ |
D | win32_code_to_generic_code.ipp | 4 case 0x4: return EMFILE; 50 case 0x2728: return EMFILE;
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/ |
D | 38-1.c | 31 if (errno == EMFILE) { in main()
|
/third_party/musl/porting/uniproton/kernel/src/stdio/ |
D | fopen.c | 28 errno = EMFILE; in fopen()
|
/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
D | fopen.c | 28 errno = EMFILE; in fopen()
|
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
D | fopen.c | 30 errno = EMFILE; in fopen()
|
/third_party/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl12.c | 39 TST_EXP_FAIL2(fcntl(1, F_DUPFD, 1), EMFILE, in verify_fcntl()
|
/third_party/NuttX/fs/vfs/ |
D | fs_dupfd.c | 93 set_errno(EMFILE); in file_dup()
|
/third_party/ltp/testcases/kernel/syscalls/dup/ |
D | dup03.c | 32 if (TST_ERR == EMFILE) in run()
|
/third_party/ltp/testcases/kernel/syscalls/creat/ |
D | creat05.c | 35 if (TST_ERR == EMFILE) in verify_creat()
|
/third_party/libuv/include/uv/ |
D | errno.h | 197 #if defined(EMFILE) && !defined(_WIN32) 198 # define UV__EMFILE UV__ERR(EMFILE)
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/speculative/ |
D | 26-1.c | 68 if (errno != EMFILE) { in main()
|
/third_party/ltp/testcases/kernel/syscalls/dup2/ |
D | dup205.c | 61 if (TST_ERR != EBADF && TST_ERR != EMFILE && TST_ERR != EINVAL) { in run()
|
/third_party/python/PC/ |
D | errmap.h | 117 return EMFILE; in winerror_to_errno()
|
12345