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

<<11121314151617181920>>

  /system/extras/tests/bionic/libc/common/
test_executable_destructor.c 30 #include <errno.h>
82 fprintf(stderr, "Could not fork process: %s\n", strerror(errno));
92 fprintf(stderr, "Could not wait for child: %s\n", strerror(errno));
  /system/netd/
TetherController.cpp 18 #include <errno.h>
67 LOGE("Failed to open ip_forward (%s)", strerror(errno));
72 LOGE("Failed to write ip_forward (%s)", strerror(errno));
84 LOGE("Failed to open ip_forward (%s)", strerror(errno));
90 LOGE("Failed to read ip_forward (%s)", strerror(errno));
102 errno = EBUSY;
112 LOGE("pipe failed (%s)", strerror(errno));
121 LOGE("fork failed (%s)", strerror(errno));
131 LOGE("dup2 failed (%s)", strerror(errno));
153 LOGE("execl failed (%s)", strerror(errno));
    [all...]
  /external/bluetooth/bluez/compat/
msdun.c 30 #include <errno.h>
65 if (errno == EINTR || errno == EAGAIN)
130 errno = 0;
134 errno = EPROTO;
138 errno = ETIMEDOUT;
  /external/chromium/base/
file_util_android.cc 73 errno = EINVAL;
83 errno = EINVAL;
118 errno = ENOTDIR;
131 if (errno != EEXIST)
136 if (errno != EEXIST)
139 return(errno == ENOENT ? 1 : 0);
file_util_linux.cc 9 #include <errno.h>
17 if (errno == ENOENT)
rand_util_posix.cc 8 #include <errno.h>
26 CHECK_GE(fd_, 0) << "Cannot open /dev/urandom: " << errno;
  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocatorPosix.cpp 29 #include <errno.h>
41 while (madvise(result, bytes, MADV_FREE_REUSABLE) == -1 && errno == EAGAIN) { }
92 while (madvise(address, bytes, MADV_FREE_REUSE) == -1 && errno == EAGAIN) { }
103 while (madvise(address, bytes, MADV_FREE_REUSABLE) == -1 && errno == EAGAIN) { }
105 while (madvise(address, bytes, MADV_FREE) == -1 && errno == EAGAIN) { }
107 while (madvise(address, bytes, MADV_DONTNEED) == -1 && errno == EAGAIN) { }
  /frameworks/base/tools/aapt/tests/
CrunchCache_test.cpp 6 #include <errno.h>
22 errno += ((got == expected) ? 0 : 1);
27 errno = 0;
60 errno += ((result > 0) ? 0 : 1);
78 if (errno == 0)
81 cout << errno << " TESTS FAILED" << endl;
  /system/core/adb/
test_track_devices.c 6 #include <errno.h>
12 fprintf(stderr, "PANIC: %s: %s\n", msg, strerror(errno));
23 if (errno == EINTR || errno == EAGAIN)
41 if (errno == EINTR || errno == EAGAIN)
test_track_jdwp.c 6 #include <errno.h>
12 fprintf(stderr, "PANIC: %s: %s\n", msg, strerror(errno));
23 if (errno == EINTR || errno == EAGAIN)
41 if (errno == EINTR || errno == EAGAIN)
  /system/core/nexus/
TiwlanWifiController.cpp 19 #include <errno.h>
82 strerror(errno));
103 errno = EBUSY;
108 LOGE("socket failed (%s)", strerror(errno));
120 LOGE("bind failed (%s)", strerror(errno));
127 LOGE("Error starting driver listener (%s)", strerror(errno));
  /bionic/libc/bionic/
semaphore.c 29 #include <errno.h>
93 errno = EINVAL;
99 errno = EINVAL;
116 errno = EINVAL;
121 errno = EBUSY;
134 errno = ENOSYS;
142 errno = EINVAL;
145 errno = ENOSYS;
152 errno = ENOSYS;
251 errno = EINVAL
    [all...]
  /bionic/libc/stdio/
flags.c 37 #include <errno.h>
71 errno = EINVAL;
fpurge.c 34 #include <errno.h>
49 errno = EBADF;
funopen.c 35 #include <errno.h>
48 errno = EINVAL;
wbuf.c 35 #include <errno.h>
58 errno = EBADF;
  /external/bluetooth/bluez/tools/
csr_3wire.c 29 #include <errno.h>
45 errno = EIO;
  /external/e2fsprogs/lib/ext2fs/
flushb.c 15 #include <errno.h>
61 return errno;
getsectsize.c 21 #include <errno.h>
49 return errno;
  /external/fdlibm/
w_scalb.c 22 #include <errno.h>
52 if(!ieee_finite(fn)) errno = ERANGE;
  /external/ppp/pppd/plugins/radius/
lock.c 29 if ((res == -1) && (errno == EAGAIN))
30 errno = EWOULDBLOCK;
  /external/qemu/android/
sync-utils.c 23 #include "errno.h"
70 if (errno == EINPROGRESS || errno == EAGAIN || errno == EWOULDBLOCK) {
82 } else if (errno != EINTR) {
128 errno = EINVAL;
139 errno = EINVAL;
150 errno = EINVAL;
161 errno = EINVAL;
177 errno = EINVAL
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
lstat.c 38 #include <errno.h>
50 If the referent is a non-directory, then set errno to ENOTDIR
79 Fail with errno set to ENOTDIR to indicate the contradiction. */
80 errno = ENOTDIR;
realloc.c 42 #include <errno.h>
83 errno = ENOMEM;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
error.h 52 * \param err Value of \c errno, or 0 if not relevant.
65 #define SYSERR(...) snd_lib_error(__FILE__, __LINE__, __FUNCTION__, errno, __VA_ARGS__) /**< Shows a system error message (related to \c errno). */
68 #define SYSERR(args...) snd_lib_error(__FILE__, __LINE__, __FUNCTION__, errno, ##args) /**< Shows a system error message (related to \c errno). */

Completed in 2341 milliseconds

<<11121314151617181920>>