HomeSort by relevance Sort by last modified time
    Searched refs:errno (Results 426 - 450 of 9577) sorted by null

<<11121314151617181920>>

  /packages/apps/Test/connectivity/sl4n/
main.cpp 24 #include <errno.h>
63 << " Error: " << strerror(errno) << ", " << errno;
70 << " Error: " << strerror(errno) << ", " << errno;
77 << " Error: " << strerror(errno) << ", " << errno;
86 << " Error: " << strerror(errno) << ", " << errno;
99 << " Error: " << strerror(errno) << ", " << errno
    [all...]
  /system/core/adb/
adb_io.cpp 35 errno = EMSGSIZE;
82 D("readx: fd=%d error %d: %s", fd, errno, strerror(errno));
86 errno = 0;
107 D("writex: fd=%d error %d: %s", fd, errno, strerror(errno));
108 if (errno == EAGAIN) {
111 } else if (errno == EPIPE) {
113 errno = 0;
154 // If errno is EAGAIN, that means this function was called on
    [all...]
  /bionic/libc/bionic/
getauxval.cpp 34 #include <errno.h>
44 errno = ENOENT;
gethostname.cpp 29 #include <errno.h>
42 errno = ENAMETOOLONG;
  /bionic/libc/upstream-openbsd/lib/libc/gen/
verr.c 32 #include <errno.h>
43 sverrno = errno;
vwarn.c 32 #include <errno.h>
43 sverrno = errno;
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
reallocarray.c 19 #include <errno.h>
34 errno = ENOMEM;
  /cts/tests/tests/security/jni/
android_security_cts_KernelSettingsTest.cpp 21 #include <errno.h>
26 return ((result != -1) || (errno == ENODATA));
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
sethostname.c 39 #include <errno.h>
92 errno = ENOMEM;
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fileno.c 49 #include <errno.h>
70 errno = EINVAL;
fprintf.c 49 #include <errno.h>
62 errno = EINVAL;
  /external/compiler-rt/test/msan/
if_indextoname.cc 6 #include <errno.h>
17 assert(errno == ENXIO);
  /external/compiler-rt/test/tsan/
fork_deadlock.cc 3 #include <errno.h>
30 fprintf(stderr, "failed to fork (%d)\n", errno);
fork_multithreaded.cc 4 #include <errno.h>
33 fprintf(stderr, "failed to fork (%d)\n", errno);
  /external/curl/src/
tool_cb_rea.c 44 if(errno == EAGAIN) {
45 errno = 0;
  /external/giflib/
openbsd-reallocarray.c 19 #include <errno.h>
34 errno = ENOMEM;
  /external/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.objects/
generic_category.pass.cpp 32 errno = E2BIG; // something that message will never generate
36 assert(errno == E2BIG);
  /external/ltp/testcases/kernel/controllers/pids/
pids_task1.c 31 #include <errno.h>
53 if (newpid == -1 && errno == EAGAIN)
  /external/ltp/testcases/kernel/device-drivers/dev_sim_framework/user_space/
user_tmod.c 39 #include <errno.h>
44 #include <linux/errno.h>
61 if (errno == ENOENT) {
69 errno);
89 if (errno == ENOENT) {
97 errno);
120 printf("ERROR: Open of device %s failed %d errno = %d\n",
121 DEVICE_NAME, tmod_fd, errno);
122 return errno;
  /external/ltp/testcases/kernel/device-drivers/usb/user_usb/
user_tusb.c 23 #include <errno.h>
27 #include <linux/errno.h>
42 if (errno == ENOENT) {
50 errno);
70 if (errno == ENOENT) {
78 errno);
101 printf("ERROR: Open of device %s failed %d errno = %d\n",
102 DEVICE_NAME, tusb_fd, errno);
103 return errno;
  /external/ltp/testcases/kernel/fs/doio/
forker.c 63 * to stderr and the process will exit with a value of errno.
111 #include <errno.h>
128 * !0 : if fork failed, the return value will be the errno.
136 "%s: In %s background(), fork() failed, errno:%d %s\n",
137 prefix, __FILE__, errno, strerror(errno));
138 exit(errno);
174 "%s: %s,forker(): fork() failed, errno:%d %s\n",
175 prefix, __FILE__, errno,
176 strerror(errno));
    [all...]
  /external/ltp/testcases/kernel/syscalls/sendfile/
sendfile07.c 38 * -e : Turn on errno logging.
52 #include <errno.h>
98 "errno, expected: %d, got: %d",
129 tst_brkm(TBROK, cleanup, "creat failed in setup, errno: %d",
130 errno);
134 tst_brkm(TBROK, cleanup, "write failed, errno: %d", errno);
138 tst_brkm(TBROK, cleanup, "open failed, errno: %d", errno);
143 tst_brkm(TBROK, cleanup, "socketpair failed, errno: %d", errno)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/behavior/timers/
1-1.c 13 #include <errno.h>
33 "%s\n", i, strerror(errno));
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_cancel/
9-1.c 12 * io_cancel() shall return -1 and set errno in all other case.
17 * and errno is not 0
28 #include <errno.h>
47 if (errno == 0) {
48 printf(TNAME " bad errno value()\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_getres/
6-2.c 8 * Test that clock_getres() sets errno=EINVAL for a variety of
25 #include <errno.h>
44 if (EINVAL != errno) {
45 printf("errno != EINVAL\n");

Completed in 686 milliseconds

<<11121314151617181920>>