Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 175 for nosys (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	ENONET          = syscall.Errno(0x40)
    	ENOPKG          = syscall.Errno(0x41)
    	ENOPROTOOPT     = syscall.Errno(0x63)
    	ENOSR           = syscall.Errno(0x3f)
    	ENOSTR          = syscall.Errno(0x3c)
    	ENOSYS          = syscall.Errno(0x59)
    	ENOTCONN        = syscall.Errno(0x86)
    	ENOTEMPTY       = syscall.Errno(0x5d)
    	ENOTNAM         = syscall.Errno(0x89)
    	ENOTRECOVERABLE = syscall.Errno(0xa6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    	if ts == nil {
    		err := utimensat(AT_FDCWD, path, nil, 0)
    		if err != ENOSYS {
    			return err
    		}
    		return utimes(path, nil)
    	}
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	err := utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    	if err != ENOSYS {
    		return err
    	}
    	// Not as efficient as it could be because Timespec and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	ENONET          = syscall.Errno(0x40)
    	ENOPKG          = syscall.Errno(0x41)
    	ENOPROTOOPT     = syscall.Errno(0x5c)
    	ENOSR           = syscall.Errno(0x3f)
    	ENOSTR          = syscall.Errno(0x3c)
    	ENOSYS          = syscall.Errno(0x26)
    	ENOTCONN        = syscall.Errno(0x6b)
    	ENOTEMPTY       = syscall.Errno(0x27)
    	ENOTNAM         = syscall.Errno(0x76)
    	ENOTRECOVERABLE = syscall.Errno(0x83)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go

    //sys	SyncFileRange(fd int, off int64, n int64, flags int) (err error)
    //sys	Truncate(path string, length int64) (err error)
    
    func Ustat(dev int, ubuf *Ustat_t) (err error) {
    	return ENOSYS
    }
    
    //sys	accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error)
    //sys	bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. src/internal/poll/fd_wasip1.go

    	}
    }
    
    // dupCloseOnExecOld always errors on wasip1 because there is no mechanism to
    // duplicate file descriptors.
    func dupCloseOnExecOld(fd int) (int, string, error) {
    	return -1, "dup", syscall.ENOSYS
    }
    
    // Fchdir wraps syscall.Fchdir.
    func (fd *FD) Fchdir() error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return syscall.Chdir(fd.Path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/syscall/syscall_openbsd.go

    	return getdents(fd, buf)
    }
    
    // TODO, see golang.org/issue/5847
    func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	return -1, ENOSYS
    }
    
    func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
    	var bufptr *Statfs_t
    	var bufsize uintptr
    	if len(buf) > 0 {
    		bufptr = &buf[0]
    		bufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 10:34:00 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	ENONET          = syscall.Errno(0x40)
    	ENOPKG          = syscall.Errno(0x41)
    	ENOPROTOOPT     = syscall.Errno(0x5c)
    	ENOSR           = syscall.Errno(0x3f)
    	ENOSTR          = syscall.Errno(0x3c)
    	ENOSYS          = syscall.Errno(0x26)
    	ENOTCONN        = syscall.Errno(0x6b)
    	ENOTEMPTY       = syscall.Errno(0x27)
    	ENOTNAM         = syscall.Errno(0x76)
    	ENOTRECOVERABLE = syscall.Errno(0x83)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	ENONET          = syscall.Errno(0x40)
    	ENOPKG          = syscall.Errno(0x41)
    	ENOPROTOOPT     = syscall.Errno(0x5c)
    	ENOSR           = syscall.Errno(0x3f)
    	ENOSTR          = syscall.Errno(0x3c)
    	ENOSYS          = syscall.Errno(0x26)
    	ENOTCONN        = syscall.Errno(0x6b)
    	ENOTEMPTY       = syscall.Errno(0x27)
    	ENOTNAM         = syscall.Errno(0x76)
    	ENOTRECOVERABLE = syscall.Errno(0x83)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	ENONET          = syscall.Errno(0x40)
    	ENOPKG          = syscall.Errno(0x41)
    	ENOPROTOOPT     = syscall.Errno(0x5c)
    	ENOSR           = syscall.Errno(0x3f)
    	ENOSTR          = syscall.Errno(0x3c)
    	ENOSYS          = syscall.Errno(0x26)
    	ENOTCONN        = syscall.Errno(0x6b)
    	ENOTEMPTY       = syscall.Errno(0x27)
    	ENOTNAM         = syscall.Errno(0x76)
    	ENOTRECOVERABLE = syscall.Errno(0x83)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    		raceReleaseMerge(unsafe.Pointer(&ioSync))
    	}
    	return sendfile(outfd, infd, offset, count)
    }
    
    // TODO
    func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	return -1, ENOSYS
    }
    
    func direntIno(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(Dirent{}.Ino), unsafe.Sizeof(Dirent{}.Ino))
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top