Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 398 for pread (4.12 sec)

  1. src/runtime/env_plan9.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "unsafe"
    
    const (
    	// Plan 9 environment device
    	envDir = "/env/"
    	// size of buffer to read from a directory
    	dirBufSize = 4096
    	// size of buffer to read an environment variable (may grow)
    	envBufSize = 128
    	// offset of the name field in a 9P directory entry - see syscall.UnmarshalDir()
    	nameOffset = 39
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 02:39:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. src/internal/poll/fd_unix.go

    	}
    	for {
    		n, err := ignoringEINTRIO(syscall.Read, fd.Sysfd, p)
    		if err != nil {
    			n = 0
    			if err == syscall.EAGAIN && fd.pd.pollable() {
    				if err = fd.pd.waitRead(fd.isFile); err == nil {
    					continue
    				}
    			}
    		}
    		err = fd.eofError(n, err)
    		return n, err
    	}
    }
    
    // Pread wraps the pread system call.
    func (fd *FD) Pread(p []byte, off int64) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/plan9/syscall_plan9.go

    	}
    	defer Close(fd)
    
    	n, e := Pread(fd, b[:], 0)
    
    	if e != nil {
    		return 0, e
    	}
    
    	m := 0
    	for ; m < n && b[m] == ' '; m++ {
    	}
    
    	return atoi(b[m : n-1]), nil
    }
    
    func Getpid() (pid int) {
    	n, _ := readnum("#c/pid")
    	return int(n)
    }
    
    func Getppid() (ppid int) {
    	n, _ := readnum("#c/ppid")
    	return int(n)
    }
    
    func Read(fd int, p []byte) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 7K bytes
    - Viewed (0)
  4. src/os/file_posix.go

    	}
    	return f.file.close()
    }
    
    // read reads up to len(b) bytes from the File.
    // It returns the number of bytes read and an error, if any.
    func (f *File) read(b []byte) (n int, err error) {
    	n, err = f.pfd.Read(b)
    	runtime.KeepAlive(f)
    	return n, err
    }
    
    // pread reads len(b) bytes from the File starting at byte offset off.
    // It returns the number of bytes read and the error, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/syscall/syscall_plan9.go

    	return int(n)
    }
    
    func Getppid() (ppid int) {
    	n, _ := readnum("#c/ppid")
    	return int(n)
    }
    
    func Read(fd int, p []byte) (n int, err error) {
    	return Pread(fd, p, -1)
    }
    
    func Write(fd int, p []byte) (n int, err error) {
    	if faketime && (fd == 1 || fd == 2) {
    		n = faketimeWrite(fd, p)
    		if n < 0 {
    			return 0, ErrorString("error")
    		}
    		return n, nil
    	}
    
    	return Pwrite(fd, p, -1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

      delete posix_file;
    }
    
    static int64_t Read(const TF_RandomAccessFile* file, uint64_t offset, size_t n,
                        char* buffer, TF_Status* status) {
      auto posix_file = static_cast<PosixFile*>(file->plugin_file);
      char* dst = buffer;
      int64_t read = 0;
    
      while (n > 0) {
        // Some platforms, notably macs, throw `EINVAL` if `pread` is asked to read
        // more than fits in a 32-bit integer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. src/os/file_plan9.go

    }
    
    // pread reads len(b) bytes from the File starting at byte offset off.
    // It returns the number of bytes read and the error, if any.
    // EOF is signaled by a zero count with err set to nil.
    func (f *File) pread(b []byte, off int64) (n int, err error) {
    	if err := f.readLock(); err != nil {
    		return 0, err
    	}
    	defer f.readUnlock()
    	n, e := fixCount(syscall.Pread(f.fd, b, off))
    	if n == 0 && len(b) > 0 && e == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. src/internal/poll/fd_windows.go

    			break
    		}
    		b[i] = x
    	}
    	fd.readbyteOffset += i
    	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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. src/runtime/os_plan9.go

    	}
    	return 0 // success
    }
    
    //go:nosplit
    func semawakeup(mp *m) {
    	plan9_semrelease(&mp.waitsemacount, 1)
    }
    
    //go:nosplit
    func read(fd int32, buf unsafe.Pointer, n int32) int32 {
    	return pread(fd, buf, n, -1)
    }
    
    //go:nosplit
    func write1(fd uintptr, buf unsafe.Pointer, n int32) int32 {
    	return pwrite(int32(fd), buf, n, -1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go

    //sys	Iopl(level int) (err error)
    //sys	Lchown(path string, uid int, gid int) (err error)
    //sys	Listen(s int, n int) (err error)
    //sys	Lstat(path string, stat *Stat_t) (err error)
    //sys	Pause() (err error)
    //sys	pread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64
    //sys	pwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64
    //sys	Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top