HomeSort by relevance Sort by last modified time
    Searched refs:EBADF (Results 176 - 200 of 345) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/sys/
_errdefs.h 47 __BIONIC_ERRDEF( EBADF , 9, "Bad file number" )
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py 57 ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, EAGAIN, \
61 EBADF))
411 if why.args[0] not in (ENOTCONN, EBADF):
583 if x.args[0] == EBADF:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asyncore.py 57 ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, EAGAIN, \
61 EBADF))
411 if why.args[0] not in (ENOTCONN, EBADF):
583 if x.args[0] == EBADF:
  /system/netd/server/
FwmarkServer.cpp 94 return -EBADF;
  /bionic/tests/
sys_stat_test.cpp 55 ASSERT_EQ(EBADF, errno);
67 ASSERT_EQ(EBADF, errno);
dirent_test.cpp 152 ASSERT_EQ(EBADF, errno);
171 ASSERT_EQ(EBADF, errno);
  /external/libmicrohttpd/src/platform/
w32functions.c 45 case WSA_INVALID_HANDLE: return EBADF;
405 case EBADF:
  /toolchain/binutils/binutils-2.25/libiberty/
strerror.c 100 #if defined (EBADF)
101 ENTRY(EBADF, "EBADF", "Bad file number"),
  /external/valgrind/memcheck/tests/x86-linux/
scalar.c 123 SY(__NR_lseek, x0-1, x0, x0); FAILx(EBADF);
271 SY(__NR_fcntl, x0-1, x0+F_GETFD, x0); FAILx(EBADF);
277 SY(__NR_fcntl, -1, F_DUPFD, x0); FAILx(EBADF);
279 // For F_GETLK the 3rd arg is 'lock'. On x86, this fails w/EBADF. But
283 SY(__NR_fcntl, -1, F_GETLK, x0); FAIL; //FAILx(EBADF);
982 SY(__NR_fcntl64, x0-1, x0+F_GETFD, x0); FAILx(EBADF);
986 SY(__NR_fcntl64, -1, F_DUPFD, x0); FAILx(EBADF);
989 // On x86, this fails w/EBADF. But on amd64 in 32-bit mode it fails
992 SY(__NR_fcntl64, -1, +F_GETLK, x0); FAIL; //FAILx(EBADF);
1044 SY(__NR_flistxattr, x0-1, x0, x0+1); FAIL; /* kernel returns EBADF, but both seem correct *
    [all...]
  /frameworks/native/libs/binder/
IPCThreadState.cpp 515 if (result < NO_ERROR && result != TIMED_OUT && result != -ECONNREFUSED && result != -EBADF) {
526 } while (result != -ECONNREFUSED && result != -EBADF);
538 return -EBADF;
827 return -EBADF;
885 err = -EBADF;
    [all...]
  /libcore/ojluni/src/main/native/
PlainDatagramSocketImpl.c 529 if (errno == EBADF) {
559 if (errno == EBADF) {
632 if (errno == EBADF) {
701 if (errno == EBADF) {
851 if (errno == EBADF) {
894 if (errno == EBADF) {
    [all...]
PlainSocketImpl.c 472 } else if ((errno == EISCONN) || (errno == EBADF)) {
681 if (errno == EBADF) {
726 errno = EBADF;
728 if (errno == EBADF) {
    [all...]
  /external/opencv3/3rdparty/openexr/Iex/
IexThrowErrnoExc.cpp 103 #if defined (EBADF)
104 case EBADF:
  /frameworks/base/packages/MtpDocumentsProvider/jni/
com_android_mtp_AppFuse.cpp 283 return -EBADF;
306 return -EBADF;
  /system/core/adb/
sysdeps_win32.cpp 210 errno = EBADF;
219 errno = EBADF;
    [all...]
  /external/boringssl/src/crypto/bio/
file.c 115 errno == EBADF)) /* UTF-8 decode succeeded, but no file, filename
  /external/dbus/dbus/
dbus-sysdeps-wince-glue.h 55 #define EBADF ERROR_INVALID_HANDLE
  /external/e2fsprogs/lib/ext2fs/
getsize.c 90 return EBADF;
  /external/libbrillo/brillo/errors/
error_codes.cc 43 ERROR_ENTRY(EBADF), // Bad file number
  /external/libchrome/sandbox/linux/seccomp-bpf/
syscall_unittest.cc 96 ASSERT_EQ(-EBADF, ret);
  /external/libcxx/test/std/diagnostics/syserr/
errc.pass.cpp 25 static_assert(static_cast<int>(std::errc::bad_file_descriptor) == EBADF, "");
  /external/libdaemon/libdaemon/
dpid.c 85 if (enable && errno == EBADF) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/
errc.pass.cpp 25 static_assert(static_cast<int>(std::errc::bad_file_descriptor) == EBADF, "");
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_epoll.py 143 self.assertEqual(e.args[0], errno.EBADF, e)
145 self.fail("epoll on closed fd didn't raise EBADF")
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_epoll.py 143 self.assertEqual(e.args[0], errno.EBADF, e)
145 self.fail("epoll on closed fd didn't raise EBADF")

Completed in 1778 milliseconds

1 2 3 4 5 6 78 91011>>