HomeSort by relevance Sort by last modified time
    Searched refs:EMFILE (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/ltp/testcases/kernel/syscalls/pipe/
pipe06.c 29 * Check that we get EMFILE.
76 if (TEST_ERRNO != EMFILE) {
79 tst_resm(TPASS, "failed with EMFILE");
104 if (errno != EMFILE) {
106 "didn't get EMFILE");
  /bionic/libc/kernel/uapi/asm-generic/
errno-base.h 44 #define EMFILE 24
  /external/kernel-headers/original/uapi/asm-generic/
errno-base.h 28 #define EMFILE 24 /* Too many open files */
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
38-1.c 10 * Test that the shm_open() function sets errno = EMFILE if too many file
31 if (errno == EMFILE) {
  /external/ltp/testcases/kernel/syscalls/dup/
dup03.c 142 if (TEST_ERRNO == EMFILE)
145 "EMFILE");
189 if (errno == EMFILE)
  /external/libusb/msvc/
errno.h 48 #define EMFILE 24 /* Too many open files */
  /external/ltp/testcases/kernel/syscalls/open/
open04.c 22 * Testcase to check that open(2) sets EMFILE if a process opens files
29 * file. This attempt should fail with EMFILE.
67 if (TEST_ERRNO != EMFILE)
68 tst_resm(TFAIL, "Expected EMFILE, got %d", TEST_ERRNO);
70 tst_resm(TPASS, "call returned expected EMFILE error");
109 if (errno != EMFILE) {
110 tst_brkm(TBROK, cleanup, "Expected EMFILE got "
  /external/libcxx/include/
errno.h 388 #ifndef EMFILE
389 #define EMFILE 9978
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/
3-2.c 58 EMFILE, "EMFILE", EMFILE}, {
4-1.c 53 EMFILE, "EMFILE"}, {
3-1-buildonly.c 44 int dummy33 = EMFILE;
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
errno.h 75 #define EMFILE 24 /* Too many open files */
  /external/ltp/testcases/kernel/syscalls/creat/
creat05.c 21 * Testcase to check that creat(2) system call returns EMFILE.
48 if (TST_ERR == EMFILE)
49 tst_res(TPASS, "creat() failed with EMFILE");
51 tst_res(TFAIL | TTERRNO, "Expected EMFILE");
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl12.c 25 * Testcase to test that fcntl() sets EMFILE for F_DUPFD command.
30 * for fcntl(), which should fail with EMFILE.
71 tst_resm(TINFO, "Test for errno EMFILE");
89 } else if (errno != EMFILE) {
90 tst_resm(TFAIL, "Expected EMFILE got %d",
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/speculative/
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) {
69 printf("errno != EMFILE on > ");
  /bionic/tests/headers/posix/
errno_h.c 67 MACRO(EMFILE);
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
socket.c 138 errno = EMFILE;
  /external/ltp/testcases/kernel/syscalls/dup2/
dup205.c 99 if (serrno != EBADF && serrno != EMFILE &&
  /external/python/cpython2/Lib/plat-irix5/
ERRNO.py 32 EMFILE = 24
  /external/u-boot/include/linux/
errno.h 27 #define EMFILE 24 /* Too many open files */
  /bionic/libc/bionic/
strerror.cpp 71 [EMFILE] = "Too many open files",
  /device/linaro/bootloader/edk2/StdLib/Include/
errno.h 76 #define EMFILE __EMFILE /* 24 Too many open file descriptors */
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
freopen.c 117 if (errno == ENFILE || errno == EMFILE) {
  /external/libchrome/base/memory/
shared_memory_helper.cc 102 if (errno == EMFILE) {
  /external/ltp/testcases/kernel/syscalls/fork/
fork09.c 102 if (errno == EMFILE)

Completed in 1355 milliseconds

1 2 3 4