Home | History | Annotate | Download | only in poll

Lines Matching defs:Read

18 	// Lock sysfd and serialize access to Read and Write methods.
37 // Whether a zero byte read indicates EOF. This is false for a
125 // Darwin and FreeBSD can't read or write 2GB+ files at a time,
132 // Read implements io.Reader.
133 func (fd *FD) Read(p []byte) (int, error) {
139 // If the caller wanted a zero byte read, return immediately
141 // Otherwise syscall.Read returns 0, nil which looks like
153 n, err := syscall.Read(fd.Sysfd, p)
438 // WaitWrite waits until data can be read from fd.
463 // RawRead invokes the user-defined function f for a read operation.