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

1 2 3 4 5 6 7 891011>>

  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
mempolicy.h 15 #include <linux/errno.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/sys/
syscall.h 31 #include <errno.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
kmod.h 16 #include <linux/errno.h>
mempolicy.h 15 #include <linux/errno.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/sys/
syscall.h 31 #include <errno.h>
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/
kmod.h 16 #include <linux/errno.h>
mempolicy.h 15 #include <linux/errno.h>
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/sys/
syscall.h 31 #include <errno.h>
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/
kmod.h 16 #include <linux/errno.h>
mempolicy.h 15 #include <linux/errno.h>
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/sys/
syscall.h 31 #include <errno.h>
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/
kmod.h 16 #include <linux/errno.h>
mempolicy.h 15 #include <linux/errno.h>
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/sys/
syscall.h 31 #include <errno.h>
  /system/core/libsysutils/src/
FrameworkClient.cpp 2 #include <errno.h>
19 errno = EHOSTUNREACH;
26 SLOGW("Unable to send msg '%s' (%s)", msg, strerror(errno));
36 errno = -ENOMEM;
  /system/vold/tests/
VolumeManager_test.cpp 17 #include <errno.h>
44 EXPECT_TRUE(VolumeManager::asecHash(exp1, (char*)NULL, sizeof(buffer)) == NULL && errno == ESPIPE)
45 << "Should return NULL and set errno to ESPIPE when destination buffer is NULL";
46 EXPECT_TRUE(VolumeManager::asecHash(exp1, dst, 0) == NULL && errno == ESPIPE)
47 << "Should return NULL and set errno to ESPIPE when destination buffer length is 0";
48 EXPECT_TRUE(VolumeManager::asecHash((const char*)NULL, dst, sizeof(buffer)) == NULL && errno == ESPIPE)
49 << "Should return NULL and set errno to ESPIPE when source buffer is NULL";
  /bionic/libc/bionic/
realpath.c 33 #include <errno.h>
55 serrno = errno;
73 errno = ENAMETOOLONG;
88 errno = ENAMETOOLONG;
98 errno = ENAMETOOLONG;
129 errno = ENAMETOOLONG;
133 if (errno == ENOENT && p == NULL) {
134 errno = serrno;
141 errno = ELOOP;
167 errno = ENAMETOOLONG
    [all...]
  /frameworks/base/cmds/ip-up-vpn/
ip-up-vpn.c 20 #include <errno.h>
43 errno = EINVAL;
70 LOGE("Cannot create state: %s", strerror(errno));
99 if (errno != ESRCH) {
100 LOGE("Cannot remove host route: %s", strerror(errno));
107 (ioctl(s, SIOCADDRT, &rt) && errno != EEXIST)) {
108 LOGE("Cannot create host route: %s", strerror(errno));
116 LOGE("Cannot bring up %s: %s", interface, strerror(errno));
123 LOGE("Cannot set address: %s", strerror(errno));
130 LOGE("Cannot set netmask: %s", strerror(errno));
    [all...]
  /bionic/libc/stdio/
putc.c 35 #include <errno.h>
47 errno = EBADF;
  /bionic/libc/unistd/
gethostname.c 28 #include <errno.h>
44 errno = EINVAL;
mmap.c 29 #include <errno.h>
38 errno = EINVAL;
sbrk.c 29 #include <errno.h>
54 errno = ENOMEM;
  /device/moto/wingray/taudio/
tplay.c 7 #include <errno.h>
47 FAILIF(ifd < 0, "could not open %s: %s\n", name, strerror(errno));
50 FAILIF(ofd < 0, "could not open output: %s\n", strerror(errno));
53 FAILIF(ofd_c < 0, "could not open output control: %s\n", strerror(errno));
57 "Could not get output config: %s\n", strerror(errno));
75 FAILIF(nr < 0, "Could not read from %s: %s\n", name, strerror(errno));
77 FAILIF(nw < 0, "Could not copy to output: %s\n", strerror(errno));
82 "Could not get error count: %s\n", strerror(errno));
  /external/dbus/dbus/
dbus-pipe-unix.c 32 #include <errno.h>
58 _dbus_strerror (errno));
  /external/openssl/crypto/
o_dir_test.c 36 #include <errno.h>
58 if (errno)

Completed in 1083 milliseconds

1 2 3 4 5 6 7 891011>>