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

<<11121314151617181920>>

  /development/ndk/platforms/android-3/include/linux/
err.h 17 #include <asm/errno.h>
mm.h 16 #include <linux/errno.h>
  /external/bison/lib/
fprintf.c 24 #include <errno.h>
59 int saved_errno = errno;
61 errno = saved_errno;
71 errno = EOVERFLOW;
vfprintf.c 24 #include <errno.h>
56 int saved_errno = errno;
58 errno = saved_errno;
68 errno = EOVERFLOW;
  /external/bison/m4/
perror.m4 18 dnl The system's perror() cannot know about the new errno values we add
19 dnl to <errno.h>, or any fix for strerror(0). Replace it.
28 [[#include <errno.h>
37 errno = -1;
  /external/chromium/net/tools/flip_server/
create_listener.cc 8 #include <errno.h> // for strerror
45 // we can't be sure that errno is properly set since we're using a
76 << " errno=" << errno; local
84 << " errno=" << errno; local
146 << port << "): " << strerror(errno) << "\n";
179 int saved_errno = errno;
180 if ( !wait_for_iface || errno != EADDRNOTAVAIL) {
182 << port << "): " << strerror(errno) << "\n"
    [all...]
  /external/chromium/net/udp/
udp_socket_libevent.cc 7 #include <errno.h>
92 return MapSystemError(errno);
114 return MapSystemError(errno);
150 return MapSystemError(errno);
189 if (errno != EAGAIN && errno != EWOULDBLOCK)
190 return MapSystemError(errno);
195 DVLOG(1) << "WatchFileDescriptor failed on write, errno " << errno;
196 return MapSystemError(errno);
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_socket_test/
socket_test.cc 6 #include <errno.h>
82 return errno;
177 EXPECT_EQ(errno, EAFNOSUPPORT);
181 EXPECT_EQ(EPROTONOSUPPORT, errno);
185 EXPECT_EQ(EINVAL, errno);
322 EXPECT_EQ(EWOULDBLOCK, errno);
347 << "Failed with " << errno << ": " << strerror(errno);
354 << "socket write failed with: " << strerror(errno);
378 ASSERT_EQ(EINPROGRESS, errno)
    [all...]
  /external/chromium_org/net/tools/flip_server/
create_listener.cc 8 #include <errno.h>
39 // we can't be sure that errno is properly set since we're using a
66 << " errno=" << errno; local
74 << " errno=" << errno; local
138 << "): " << strerror(errno) << "\n";
177 int saved_errno = errno;
178 if (!wait_for_iface || errno != EADDRNOTAVAIL) {
180 << "): " << strerror(errno) << "\n"
    [all...]
  /external/clang/test/CodeGen/
2005-07-20-SqrtNoErrno.c 8 // Check that this is marked readonly when errno is ignored.
  /external/clang/test/Headers/
c89.c 5 // on win32 since we don't generally know how to find errno.h.
  /external/e2fsprogs/lib/e2p/
fgetflags.c 23 #include <errno.h>
80 save_errno = errno;
84 errno = save_errno;
95 errno = EOPNOTSUPP;
fsetflags.c 23 #include <errno.h>
87 save_errno = errno;
90 errno = save_errno;
99 errno = EOPNOTSUPP;
  /external/e2fsprogs/misc/
partinfo.c 19 #include <errno.h>
50 argv[i], strerror(errno));
56 argv[i], strerror(errno));
64 argv[i], strerror(errno));
  /external/iproute2/ip/
ipnetns.c 14 #include <errno.h>
37 errno = ENOSYS;
113 netns_name, etc_name, strerror(errno));
142 strerror(errno));
147 strerror(errno));
152 fprintf(stderr, "unshare failed: %s\n", strerror(errno));
157 fprintf(stderr, "umount of /sys failed: %s\n", strerror(errno));
161 fprintf(stderr, "mount of /sys failed: %s\n",strerror(errno));
170 cmd, strerror(errno));
189 netns_path, strerror(errno));
    [all...]
  /external/libsepol/man/man3/
sepol_genusers.3 47 Returns 0 on success or \-1 otherwise, with errno set appropriately.
48 An errno of ENOENT indicates that one or both of the user
49 configuration files did not exist. An errno of EINVAL indicates that
51 invalid. An errno of ENOMEM indicates that insufficient memory was
  /external/valgrind/main/drd/tests/
pth_detached3.c 4 #include <errno.h>
  /external/valgrind/main/helgrind/tests/
cond_timedwait_invalid.c 5 #include <errno.h>
  /frameworks/base/libs/androidfw/
ObbFile.cpp 17 #include <errno.h>
68 } while (_rc == -1 && errno == EINTR); \
93 ALOGW("couldn't open file %s: %s", filename, strerror(errno));
123 ALOGW("error seeking in ObbFile: %s\n", strerror(errno));
139 ALOGW("couldn't read footer signature: %s\n", strerror(errno));
167 ALOGW("seek %lld failed: %s\n", fileOffset, strerror(errno));
175 ALOGW("couldn't allocate scanBuf: %s\n", strerror(errno));
182 ALOGI("couldn't read ObbFile footer: %s\n", strerror(errno));
240 ALOGW("failed to write to %s: %s\n", filename, strerror(errno));
263 ALOGW("couldn't write signature version: %s\n", strerror(errno));
    [all...]
  /frameworks/base/tools/obbtool/
pbkdf2gen.cpp 20 #include <errno.h>
45 fprintf(stderr, "Could not open /dev/urandom: %s\n", strerror(errno));
53 fprintf(stderr, "Could not read salt from /dev/urandom: %s\n", strerror(errno));
63 fprintf(stderr, "Could not generate PBKDF2 output: %s\n", strerror(errno));
  /ndk/sources/android/support/src/musl-multibyte/
mbrlen.c 10 #include <errno.h>
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/gnu/
stubs-32.h 4 every time called, usually setting errno to ENOSYS. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/gnu/
stubs-32.h 4 every time called, usually setting errno to ENOSYS. */

Completed in 428 milliseconds

<<11121314151617181920>>