type os.SyscallError
10 uses
os (current package)
error.go#L49: type SyscallError struct {
error.go#L54: func (e *SyscallError) Error() string { return e.Syscall + ": " + e.Err.Error() }
error.go#L56: func (e *SyscallError) Unwrap() error { return e.Err }
error.go#L59: func (e *SyscallError) Timeout() bool {
error.go#L71: return &SyscallError{syscall, err}
error.go#L137: case *SyscallError:
net
net.go#L508: if ne, ok := e.Err.(*os.SyscallError); ok {
net.go#L527: if ne, ok := e.Err.(*os.SyscallError); ok {
tcpsock_posix.go#L143: if sys, ok := err.(*os.SyscallError); ok {
net/http
h2_bundle.go#L4563: if se, ok := oe.Err.(*os.SyscallError); ok && se.Syscall == "wsarecv" {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |