HomeSort by relevance Sort by last modified time
    Searched full:errno (Results 151 - 175 of 5724) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/
errno.h 32 #include <linux/errno.h>
43 /* internal function returning the address of the thread-specific errno */
46 /* a macro expanding to the errno l-value */
47 #define errno (*__errno()) macro
50 /* use errno = xxxx instead in C code */
53 errno = n;
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/
errno.h 32 #include <linux/errno.h>
43 /* internal function returning the address of the thread-specific errno */
46 /* a macro expanding to the errno l-value */
47 #define errno (*__errno()) macro
50 /* use errno = xxxx instead in C code */
53 errno = n;
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/
errno.h 32 #include <linux/errno.h>
43 /* internal function returning the address of the thread-specific errno */
46 /* a macro expanding to the errno l-value */
47 #define errno (*__errno()) macro
50 /* use errno = xxxx instead in C code */
53 errno = n;
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/
errno.h 32 #include <linux/errno.h>
43 /* internal function returning the address of the thread-specific errno */
46 /* a macro expanding to the errno l-value */
47 #define errno (*__errno()) macro
50 /* use errno = xxxx instead in C code */
53 errno = n;
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/
errno.h 32 #include <linux/errno.h>
43 /* internal function returning the address of the thread-specific errno */
46 /* a macro expanding to the errno l-value */
47 #define errno (*__errno()) macro
50 /* use errno = xxxx instead in C code */
53 errno = n;
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/
errno.h 32 #include <linux/errno.h>
43 /* internal function returning the address of the thread-specific errno */
46 /* a macro expanding to the errno l-value */
47 #define errno (*__errno()) macro
50 /* use errno = xxxx instead in C code */
53 errno = n;
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/
errno.h 32 #include <linux/errno.h>
43 /* internal function returning the address of the thread-specific errno */
46 /* a macro expanding to the errno l-value */
47 #define errno (*__errno()) macro
50 /* use errno = xxxx instead in C code */
53 errno = n;
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/
errno.h 32 #include <linux/errno.h>
43 /* internal function returning the address of the thread-specific errno */
46 /* a macro expanding to the errno l-value */
47 #define errno (*__errno()) macro
50 /* use errno = xxxx instead in C code */
53 errno = n;
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/
errno.h 32 #include <linux/errno.h>
43 /* internal function returning the address of the thread-specific errno */
46 /* a macro expanding to the errno l-value */
47 #define errno (*__errno()) macro
50 /* use errno = xxxx instead in C code */
53 errno = n;
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/
errno.h 32 #include <linux/errno.h>
43 /* internal function returning the address of the thread-specific errno */
46 /* a macro expanding to the errno l-value */
47 #define errno (*__errno()) macro
50 /* use errno = xxxx instead in C code */
53 errno = n;
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
errno.h 32 #include <linux/errno.h>
43 /* internal function returning the address of the thread-specific errno */
46 /* a macro expanding to the errno l-value */
47 #define errno (*__errno()) macro
50 /* use errno = xxxx instead in C code */
53 errno = n;
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
errno.h 32 #include <linux/errno.h>
43 /* internal function returning the address of the thread-specific errno */
46 /* a macro expanding to the errno l-value */
47 #define errno (*__errno()) macro
50 /* use errno = xxxx instead in C code */
53 errno = n;
  /external/clang/test/CodeGen/
2009-09-24-SqrtErrno.c 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin %s -emit-llvm -o - -fmath-errno | FileCheck %s
10 // Check that this is not marked readonly when errno is used.
  /external/elfutils/tests/
rdwrmmap.c 1 #include <errno.h>
13 error (2, errno, "open: %s", argv[1]);
  /external/libselinux/src/
check_context.c 5 #include <errno.h>
18 errno = ENOENT;
disable.c 5 #include <errno.h>
19 errno = ENOENT;
procattr.c 7 #include <errno.h>
52 } while (ret < 0 && errno == EINTR);
70 errno_hold = errno;
72 errno = errno_hold;
101 } while (ret < 0 && errno == EINTR);
105 } while (ret < 0 && errno == EINTR);
106 errno_hold = errno;
108 errno = errno_hold;
setenforce.c 5 #include <errno.h>
19 errno = ENOENT;
  /external/valgrind/main/gdbserver_tests/
fork_chain.c 3 #include <errno.h>
26 if (errno != EINTR) {
  /hardware/libhardware/include/hardware/
qemu_pipe.h 26 #include <errno.h>
42 * Returns -1 on error, and errno gives the error code, e.g.:
62 errno = EINVAL;
70 D("%s: Could not open /dev/qemu_pipe: %s", __FUNCTION__, strerror(errno));
71 //errno = ENOSYS;
79 D("%s: Could not connect to %s pipe service: %s", __FUNCTION__, pipeName, strerror(errno));
81 errno = ECONNRESET;
83 errno = EINVAL;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
mmapped_buffer.h 37 AKLOGE("DICT: Can't open the source. path=%s errno=%d", path, errno);
48 AKLOGE("DICT: Can't mmap dictionary. errno=%d", errno);
65 AKLOGE("DICT: Failure in munmap. ret=%d errno=%d", ret, errno);
69 AKLOGE("DICT: Failure in close. ret=%d errno=%d", ret, errno);
  /system/core/toolbox/
chcon.c 4 #include <errno.h>
20 argv[0], argv[i], argv[1], strerror(errno));
ln.c 4 #include <errno.h>
32 fprintf(stderr, "link failed %s\n", strerror(errno));
restorecon.c 4 #include <errno.h>
29 pathname, strerror(errno));
34 strerror(errno));
44 pathname, newcontext, strerror(errno));
90 strerror(errno));
100 argv[0], strerror(errno));
111 strerror(errno));
128 strerror(errno));
  /external/dropbear/
sshpty.c 22 #include "errno.h"
59 "pty_allocate: openpty: %.100s", strerror(errno));
80 "pty_allocate: _getpty: %.100s", strerror(errno));
107 "pty_allocate: /dev/ptmx: %.100s", strerror(errno));
112 "grantpt: %.100s", strerror(errno));
117 "unlockpt: %.100s", strerror(errno));
132 "error opening pts %.100s: %.100s", namebuf, strerror(errno));
143 "ioctl I_PUSH ptem: %.100s", strerror(errno));
147 "ioctl I_PUSH ldterm: %.100s", strerror(errno));
152 "ioctl I_PUSH ttcompat: %.100s", strerror(errno));
    [all...]

Completed in 861 milliseconds

1 2 3 4 5 67 8 91011>>