HomeSort by relevance Sort by last modified time
    Searched refs:errno (Results 126 - 150 of 2621) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/
mm.h 16 #include <linux/errno.h>
  /system/core/nexus/
LoopController.cpp 17 #include <errno.h>
  /external/bluetooth/glib/glib/
gstdio.c 37 #include <errno.h>
90 errno = EINVAL;
99 save_errno = errno;
103 errno = save_errno;
141 errno = EINVAL;
146 save_errno = errno;
150 errno = save_errno;
198 errno = EINVAL;
203 save_errno = errno;
207 errno = save_errno
    [all...]
  /external/valgrind/main/memcheck/tests/
writev.c 5 #include <errno.h>
36 fprintf(stderr, "open(2) failed: fname = %s, errno = %d\n",
37 f_name, errno);
40 fprintf(stderr, "write(2) failed: nbytes = %d, errno = %d\n",
41 nbytes, errno);
45 fprintf(stderr, "close failed: errno = %d\n", errno);
50 fprintf(stderr, "open failed: fname = %s, errno = %d\n",
51 f_name, errno);
57 if (errno == EFAULT)
    [all...]
  /external/fdlibm/
k_standard.c 16 #include <errno.h>
104 errno = EDOM;
109 errno = EDOM;
118 errno = EDOM;
123 errno = EDOM;
134 errno = EDOM;
139 errno = EDOM;
151 errno = ERANGE;
153 errno = ERANGE;
165 errno = ERANGE
    [all...]
s_ldexp.c 15 #include <errno.h>
26 if(!ieee_finite(value)||value==0.0) errno = ERANGE;
  /bionic/libc/unistd/
perror.c 28 #include <errno.h>
36 strerror_r( errno, buff, sizeof(buff) );
sleep.c 29 #include <errno.h>
48 if ( errno == EINTR )
usleep.c 29 #include <errno.h>
52 if ( errno != EINTR )
  /external/chromium/base/test/
test_file_util_mac.cc 8 #include <errno.h>
29 << ", errno: " << errno;
  /external/llvm/include/llvm/Support/
FEnv.h 38 errno = 0;
43 int errno_val = errno;
  /external/webkit/Source/WebKit2/Platform/CoreIPC/unix/
AttachmentUnix.cpp 31 #include <errno.h>
47 while (close(m_fileDescriptor) == -1 && (errno == EINTR)) { }
  /ndk/sources/host-tools/sed-4.2.1/lib/
malloc.c 33 #include <errno.h>
55 errno = ENOMEM;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
errno.h 25 # include <linux/errno.h>
42 /* Function to get address of global `errno' variable. */
46 /* When using threads, errno is a per-thread value. */
47 # define errno (*__errno_location ()) macro
  /system/core/libsysutils/src/
FrameworkCommand.cpp 16 #include <errno.h>
30 errno = ENOSYS;
  /system/core/toolbox/
rmdir.c 4 #include <errno.h>
23 fprintf(stderr, "rmdir failed for %s, %s\n", argv[0], strerror(errno));
  /system/extras/tests/bionic/libc/common/
test_semaphore.c 30 #include <errno.h>
54 printf( "thread 1: could not wait for semaphore: %s\n", strerror(errno) );
61 printf( "thread 2: could not post semaphore: %s\n", strerror(errno) );
74 printf( "thread 2: could not wait for semaphore: %s\n", strerror(errno) );
81 printf( "thread 2: could not post semaphore: %s\n", strerror(errno) );
95 printf( "thread 3: could not wait for semaphore: %s\n", strerror(errno) );
117 printf( "could not initialize semaphore: %s\n", strerror(errno) );
123 printf("could not create thread %d: %s\n", nn+1, strerror(errno) );
  /system/extras/tests/bionic/libc/other/
test_system.c 4 #include <errno.h>
16 fprintf(stderr, "Error calling system(): %d\n", errno);
  /frameworks/base/core/java/com/android/server/
NetworkManagementSocketTagger.java 83 int errno; local
86 errno = native_tagSocketFd(fd, tag, uid);
87 if (errno < 0) {
90 + uid + ") failed with errno" + errno);
104 int errno; local
107 errno = native_untagSocketFd(fd);
108 if (errno < 0) {
109 Log.w(TAG, "untagSocket(" + fd.getInt$() + ") failed with errno " + errno);
119 int errno = native_setCounterSet(counterSet, uid); local
126 int errno = native_deleteTagData(0, uid); local
    [all...]
  /ndk/sources/host-tools/make-3.81/w32/compat/
dirent.c 21 #include <errno.h>
37 errno = EINVAL;
41 errno = ENOENT;
45 errno = ENOTDIR;
89 errno = EINVAL;
95 errno = EINVAL;
114 errno = EINVAL;
120 errno = EINVAL;
145 errno = EINVAL;
151 errno = EINVAL;
    [all...]
  /external/bluetooth/bluez/compat/
lib.h 26 #include <errno.h>
53 if (errno == EINTR || errno == EAGAIN)
74 if (errno == EINTR || errno == EAGAIN)
  /external/e2fsprogs/lib/e2p/
fgetversion.c 21 #include <errno.h>
48 save_errno = errno;
52 errno = save_errno;
61 extern int errno;
62 errno = EOPNOTSUPP;
fsetversion.c 21 #include <errno.h>
49 save_errno = errno;
52 errno = save_errno;
59 extern int errno;
60 errno = EOPNOTSUPP;
  /external/iptables/iptables/
iptables-standalone.c 36 #include <errno.h>
73 if (errno == EINVAL) {
76 iptc_strerror(errno));
79 iptc_strerror(errno));
81 if (errno == EAGAIN) {
  /external/valgrind/main/none/tests/
syscall-restart1.c 4 #include <errno.h>
46 if (ret != -1 || errno != EINTR)
48 ret, strerror(errno), ch);
56 if (write(fds[1], "x", 1) != -1 || errno != EPIPE)
57 fprintf(stderr, "FAIL: expected write to fail with EPIPE, not %d\n", errno);

Completed in 348 milliseconds

1 2 3 4 56 7 8 91011>>