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 27 func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
28 func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
29 func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
30 func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
47 addr, errno := m.mmap(0, uintptr(length), prot, flags, fd, offset)
48 if errno != nil {
49 return nil, errno
85 if errno := m.munmap(uintptr(unsafe.Pointer(&b[0])), uintptr(len(b))); errno != nil {
86 return errno
    [all...]
syscall_nacl.go 61 // An Errno is an unsigned number describing an error condition.
62 // It implements the error interface. The zero Errno is by convention
63 // a non-error, so code to convert from Errno to error should use:
65 // if errno != 0 {
66 // err = errno
68 type Errno uintptr
70 func (e Errno) Error() string {
77 return "errno " + itoa(int(e))
80 func (e Errno) Temporary() bool {
84 func (e Errno) Timeout() bool
    [all...]
syscall_windows.go 80 // Errno is the Windows error number.
81 type Errno uintptr
93 func (e Errno) Error() string {
115 func (e Errno) Temporary() bool {
119 func (e Errno) Timeout() bool {
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
syscall_unix.go 27 func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
28 func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
29 func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
30 func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
47 addr, errno := m.mmap(0, uintptr(length), prot, flags, fd, offset)
48 if errno != nil {
49 return nil, errno
85 if errno := m.munmap(uintptr(unsafe.Pointer(&b[0])), uintptr(len(b))); errno != nil {
86 return errno
    [all...]
syscall_nacl.go 61 // An Errno is an unsigned number describing an error condition.
62 // It implements the error interface. The zero Errno is by convention
63 // a non-error, so code to convert from Errno to error should use:
65 // if errno != 0 {
66 // err = errno
68 type Errno uintptr
70 func (e Errno) Error() string {
77 return "errno " + itoa(int(e))
80 func (e Errno) Temporary() bool {
84 func (e Errno) Timeout() bool
    [all...]
syscall_windows.go 80 // Errno is the Windows error number.
81 type Errno uintptr
93 func (e Errno) Error() string {
115 func (e Errno) Temporary() bool {
119 func (e Errno) Timeout() bool {
    [all...]
  /external/e2fsprogs/lib/ext2fs/
nt_io.c 181 #include <errno.h>
258 // This is a code to convert Win32 errors to unix errno
819 OUT unsigned *Errno OPTIONAL
831 if(ARGUMENT_PRESENT(Errno))
832 *Errno = ENOENT;
857 if(ARGUMENT_PRESENT(Errno))
858 *Errno = ENOENT;
873 if(ARGUMENT_PRESENT(Errno))
874 *Errno = _MapNtStatus(Status);
884 // Raw block io. Sets dos errno
    [all...]

Completed in 595 milliseconds