Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for ESPIPE (0.17 sec)

  1. src/internal/poll/sendfile_windows.go

    	defer func() {
    		TestHookDidSendFile(fd, 0, written, err, written > 0)
    	}()
    	if fd.kind == kindPipe {
    		// TransmitFile does not work with pipes
    		return 0, syscall.ESPIPE
    	}
    	if ft, _ := syscall.GetFileType(src); ft == syscall.FILE_TYPE_PIPE {
    		return 0, syscall.ESPIPE
    	}
    
    	if err := fd.writeLock(); err != nil {
    		return 0, err
    	}
    	defer fd.writeUnlock()
    
    	o := &fd.wop
    	o.handle = src
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/syscall/errors_plan9.go

    	// Plan 9 system messages. Invented to support
    	// what package os and others expect.
    	EACCES       = NewError("access permission denied")
    	EAFNOSUPPORT = NewError("address family not supported by protocol")
    	ESPIPE       = NewError("illegal seek")
    )
    
    // Notes
    const (
    	SIGABRT = Note("abort")
    	SIGALRM = Note("alarm")
    	SIGHUP  = Note("hangup")
    	SIGINT  = Note("interrupt")
    	SIGKILL = Note("kill")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 22 13:31:24 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  3. src/syscall/tables_wasip1.go

    	EPERM           Errno = 63
    	EPIPE           Errno = 64
    	EPROTO          Errno = 65
    	EPROTONOSUPPORT Errno = 66
    	EPROTOTYPE      Errno = 67
    	ERANGE          Errno = 68
    	EROFS           Errno = 69
    	ESPIPE          Errno = 70
    	ESRCH           Errno = 71
    	ESTALE          Errno = 72
    	ETIMEDOUT       Errno = 73
    	ETXTBSY         Errno = 74
    	EXDEV           Errno = 75
    	ENOTCAPABLE     Errno = 76
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. src/syscall/zerrors_windows.go

    	EOWNERDEAD
    	EPERM
    	EPFNOSUPPORT
    	EPIPE
    	EPROTO
    	EPROTONOSUPPORT
    	EPROTOTYPE
    	ERANGE
    	EREMCHG
    	EREMOTE
    	EREMOTEIO
    	ERESTART
    	EROFS
    	ESHUTDOWN
    	ESOCKTNOSUPPORT
    	ESPIPE
    	ESRCH
    	ESRMNT
    	ESTALE
    	ESTRPIPE
    	ETIME
    	ETIMEDOUT
    	ETOOMANYREFS
    	ETXTBSY
    	EUCLEAN
    	EUNATCH
    	EUSERS
    	EWOULDBLOCK
    	EXDEV
    	EXFULL
    	EWINDOWS
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  5. src/syscall/tables_js.go

    	"EISDIR":          EISDIR,
    	"EINVAL":          EINVAL,
    	"ENFILE":          ENFILE,
    	"EMFILE":          EMFILE,
    	"ENOTTY":          ENOTTY,
    	"EFBIG":           EFBIG,
    	"ENOSPC":          ENOSPC,
    	"ESPIPE":          ESPIPE,
    	"EROFS":           EROFS,
    	"EMLINK":          EMLINK,
    	"EPIPE":           EPIPE,
    	"ENAMETOOLONG":    ENAMETOOLONG,
    	"ENOSYS":          ENOSYS,
    	"EDQUOT":          EDQUOT,
    	"EDOM":            EDOM,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	EROFS           = syscall.Errno(0x1e)
    	ESAD            = syscall.Errno(0x71)
    	ESHUTDOWN       = syscall.Errno(0x4d)
    	ESOCKTNOSUPPORT = syscall.Errno(0x3f)
    	ESOFT           = syscall.Errno(0x6f)
    	ESPIPE          = syscall.Errno(0x1d)
    	ESRCH           = syscall.Errno(0x3)
    	ESTALE          = syscall.Errno(0x34)
    	ESYSERROR       = syscall.Errno(0x5a)
    	ETIME           = syscall.Errno(0x77)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  7. src/internal/poll/fd_windows.go

    	return i, nil
    }
    
    // Pread emulates the Unix pread system call.
    func (fd *FD) Pread(b []byte, off int64) (int, error) {
    	if fd.kind == kindPipe {
    		// Pread does not work with pipes
    		return 0, syscall.ESPIPE
    	}
    	// Call incref, not readLock, because since pread specifies the
    	// offset it is independent from other reads.
    	if err := fd.incref(); err != nil {
    		return 0, err
    	}
    	defer fd.decref()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	EROFS           = syscall.Errno(0x1e)
    	ESAD            = syscall.Errno(0x71)
    	ESHUTDOWN       = syscall.Errno(0x4d)
    	ESOCKTNOSUPPORT = syscall.Errno(0x3f)
    	ESOFT           = syscall.Errno(0x6f)
    	ESPIPE          = syscall.Errno(0x1d)
    	ESRCH           = syscall.Errno(0x3)
    	ESTALE          = syscall.Errno(0x34)
    	ESYSERROR       = syscall.Errno(0x5a)
    	ETIME           = syscall.Errno(0x77)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	EREMOTE         = syscall.Errno(0x42)
    	ERESTART        = syscall.Errno(0x5b)
    	EROFS           = syscall.Errno(0x1e)
    	ESHUTDOWN       = syscall.Errno(0x8f)
    	ESOCKTNOSUPPORT = syscall.Errno(0x79)
    	ESPIPE          = syscall.Errno(0x1d)
    	ESRCH           = syscall.Errno(0x3)
    	ESRMNT          = syscall.Errno(0x45)
    	ESTALE          = syscall.Errno(0x97)
    	ESTRPIPE        = syscall.Errno(0x5c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go

    	EREMOTE         = syscall.Errno(0x47)
    	EROFS           = syscall.Errno(0x1e)
    	ERPCMISMATCH    = syscall.Errno(0x49)
    	ESHUTDOWN       = syscall.Errno(0x3a)
    	ESOCKTNOSUPPORT = syscall.Errno(0x2c)
    	ESPIPE          = syscall.Errno(0x1d)
    	ESRCH           = syscall.Errno(0x3)
    	ESTALE          = syscall.Errno(0x46)
    	ETIMEDOUT       = syscall.Errno(0x3c)
    	ETOOMANYREFS    = syscall.Errno(0x3b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 70.7K bytes
    - Viewed (0)
Back to top