type os.SyscallError
12 uses
os (current package)
error.go#L51: type SyscallError struct {
error.go#L56: func (e *SyscallError) Error() string { return e.Syscall + ": " + e.Err.Error() }
error.go#L58: func (e *SyscallError) Unwrap() error { return e.Err }
error.go#L61: func (e *SyscallError) Timeout() bool {
error.go#L73: return &SyscallError{syscall, err}
error.go#L139: case *SyscallError:
github.com/evanw/esbuild/internal/fs
fs_real.go#L312: if syscallErr, ok := err.(*os.SyscallError); ok {
golang.org/x/net/http2
server.go#L684: if se, ok := oe.Err.(*os.SyscallError); ok && se.Syscall == "wsarecv" {
net
net.go#L503: if ne, ok := e.Err.(*os.SyscallError); ok {
net.go#L522: if ne, ok := e.Err.(*os.SyscallError); ok {
tcpsock_posix.go#L130: if sys, ok := err.(*os.SyscallError); ok {
net/http
h2_bundle.go#L4253: if se, ok := oe.Err.(*os.SyscallError); ok && se.Syscall == "wsarecv" {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |