HomeSort by relevance Sort by last modified time
    Searched defs:Errno (Results 1 - 7 of 7) sorted by null

  /prebuilts/go/darwin-x86/src/syscall/
syscall_unix.go 29 func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
30 func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
31 func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
32 func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
49 addr, errno := m.mmap(0, uintptr(length), prot, flags, fd, offset)
50 if errno != nil {
51 return nil, errno
87 if errno := m.munmap(uintptr(unsafe.Pointer(&b[0])), uintptr(len(b))); errno != nil {
88 return errno
    [all...]
syscall_nacl.go 46 // An Errno is an unsigned number describing an error condition.
47 // It implements the error interface. The zero Errno is by convention
48 // a non-error, so code to convert from Errno to error should use:
50 // if errno != 0 {
51 // err = errno
53 type Errno uintptr
55 func (e Errno) Error() string {
62 return "errno " + itoa(int(e))
65 func (e Errno) Temporary() bool {
69 func (e Errno) Timeout() bool
    [all...]
syscall_windows.go 77 // Errno is the Windows error number.
78 type Errno uintptr
90 func (e Errno) Error() string {
112 func (e Errno) Temporary() bool {
116 func (e Errno) Timeout() bool {
342 var e1 Errno
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
syscall_unix.go 29 func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
30 func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
31 func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
32 func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
49 addr, errno := m.mmap(0, uintptr(length), prot, flags, fd, offset)
50 if errno != nil {
51 return nil, errno
87 if errno := m.munmap(uintptr(unsafe.Pointer(&b[0])), uintptr(len(b))); errno != nil {
88 return errno
    [all...]
syscall_nacl.go 46 // An Errno is an unsigned number describing an error condition.
47 // It implements the error interface. The zero Errno is by convention
48 // a non-error, so code to convert from Errno to error should use:
50 // if errno != 0 {
51 // err = errno
53 type Errno uintptr
55 func (e Errno) Error() string {
62 return "errno " + itoa(int(e))
65 func (e Errno) Temporary() bool {
69 func (e Errno) Timeout() bool
    [all...]
syscall_windows.go 77 // Errno is the Windows error number.
78 type Errno uintptr
90 func (e Errno) Error() string {
112 func (e Errno) Temporary() bool {
116 func (e Errno) Timeout() bool {
342 var e1 Errno
    [all...]
  /external/e2fsprogs/lib/ext2fs/
nt_io.c 182 #include <errno.h>
257 // This is a code to convert Win32 errors to unix errno
818 OUT unsigned *Errno OPTIONAL
830 if(ARGUMENT_PRESENT(Errno))
831 *Errno = ENOENT;
856 if(ARGUMENT_PRESENT(Errno))
857 *Errno = ENOENT;
872 if(ARGUMENT_PRESENT(Errno))
873 *Errno = _MapNtStatus(Status);
883 // Raw block io. Sets dos errno
    [all...]

Completed in 190 milliseconds