HomeSort by relevance Sort by last modified time
    Searched defs:EINVAL (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /external/e2fsprogs/lib/ext2fs/
llseek.c 116 errno = EINVAL;
125 #ifndef EINVAL
126 #define EINVAL EXT2_ET_INVALID_ARGUMENT
136 errno = EINVAL;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/OobTx/
OobTx.h 31 #define EINVAL 22 // Invalid argument
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/RawIp4Tx/
RawIp4Tx.h 31 #define EINVAL 22 // Invalid argument
  /external/jemalloc/test/integration/
posix_memalign.c 25 assert_d_eq(posix_memalign(&p, alignment, 1), EINVAL,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
StringIO.py 32 from errno import EINVAL
34 EINVAL = 22
202 raise IOError(EINVAL, "Negative size not allowed")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
StringIO.py 32 from errno import EINVAL
34 EINVAL = 22
202 raise IOError(EINVAL, "Negative size not allowed")
  /external/python/cpython2/Lib/
StringIO.py 32 from errno import EINVAL
34 EINVAL = 22
202 raise IOError(EINVAL, "Negative size not allowed")
  /prebuilts/gdb/darwin-x86/lib/python2.7/
StringIO.py 32 from errno import EINVAL
34 EINVAL = 22
202 raise IOError(EINVAL, "Negative size not allowed")
  /prebuilts/gdb/linux-x86/lib/python2.7/
StringIO.py 32 from errno import EINVAL
34 EINVAL = 22
202 raise IOError(EINVAL, "Negative size not allowed")
  /prebuilts/go/darwin-x86/misc/cgo/test/
basic.go 65 const EINVAL = C.EINVAL /* test #define */
  /prebuilts/go/linux-x86/misc/cgo/test/
basic.go 65 const EINVAL = C.EINVAL /* test #define */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
StringIO.py 32 from errno import EINVAL
34 EINVAL = 22
202 raise IOError(EINVAL, "Negative size not allowed")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
StringIO.py 32 from errno import EINVAL
34 EINVAL = 22
202 raise IOError(EINVAL, "Negative size not allowed")
  /bionic/libc/kernel/uapi/asm-generic/
errno-base.h 42 #define EINVAL 22
  /device/google/contexthub/firmware/os/inc/
toolchain.h 34 #define EINVAL 22
  /external/kernel-headers/original/uapi/asm-generic/
errno-base.h 26 #define EINVAL 22 /* Invalid argument */
  /external/libusb/msvc/
errno.h 46 #define EINVAL 22 /* Invalid argument */
  /external/syslinux/dos/
errno.h 25 #define EINVAL 22 /* Invalid argument */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
errno-base.h 25 #define EINVAL 22 /* Invalid argument */
  /prebuilts/go/darwin-x86/src/syscall/
errors_plan9.go 29 EINVAL = NewError("bad arg in system call")
  /prebuilts/go/linux-x86/src/syscall/
errors_plan9.go 29 EINVAL = NewError("bad arg in system call")
  /external/curl/tests/server/
util.c 57 #undef EINVAL
58 #define EINVAL 22 /* errno.h value */
227 errno = EINVAL;
  /external/jemalloc/test/unit/
mallctl.c 16 sizeof(epoch)-1), EINVAL,
17 "mallctl() should return EINVAL for input size mismatch");
19 sizeof(epoch)+1), EINVAL,
20 "mallctl() should return EINVAL for input size mismatch");
23 assert_d_eq(mallctl("epoch", (void *)&epoch, &sz, NULL, 0), EINVAL,
24 "mallctl() should return EINVAL for output size mismatch");
26 assert_d_eq(mallctl("epoch", (void *)&epoch, &sz, NULL, 0), EINVAL,
27 "mallctl() should return EINVAL for output size mismatch");
62 sizeof(epoch)-1), EINVAL,
63 "mallctlbymib() should return EINVAL for input size mismatch")
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixConstants.java 116 static final int EINVAL = OsConstants.EINVAL;
  /external/curl/lib/
curl_setup_once.h 447 #undef EINVAL /* override definition in errno.h */
448 #define EINVAL WSAEINVAL

Completed in 482 milliseconds

1 2 3 4 5