Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for getdents (0.2 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    	var pp [2]_C_int
    	err := pipe2(&pp, flags)
    	if err == nil {
    		p[0] = int(pp[0])
    		p[1] = int(pp[1])
    	}
    	return err
    }
    
    //sys	Getdents(fd int, buf []byte) (n int, err error)
    
    func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
    	n, err = Getdents(fd, buf)
    	if err != nil || basep == nil {
    		return
    	}
    
    	var off int64
    	off, err = Seek(fd, 0, 1 /* SEEK_CUR */)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd.go

    	}
    	var pp [2]_C_int
    	err := pipe2(&pp, flags)
    	if err == nil {
    		p[0] = int(pp[0])
    		p[1] = int(pp[1])
    	}
    	return err
    }
    
    //sys	Getdents(fd int, buf []byte) (n int, err error)
    
    func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
    	n, err = Getdents(fd, buf)
    	if err != nil || basep == nil {
    		return
    	}
    
    	var off int64
    	off, err = Seek(fd, 0, 1 /* SEEK_CUR */)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. src/syscall/syscall_solaris.go

    }
    
    func ReadDirent(fd int, buf []byte) (n int, err error) {
    	// Final argument is (basep *uintptr) and the syscall doesn't take nil.
    	// TODO(rsc): Can we use a single global basep for all calls?
    	return Getdents(fd, buf, new(uintptr))
    }
    
    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    //sys	Fstatat(fd int, path string, stat *Stat_t, flags int) (err error)
    //sys	Fstatfs(fd int, stat *Statfs_t) (err error)
    //sys	Fsync(fd int) (err error)
    //sys	Ftruncate(fd int, length int64) (err error)
    //sys	Getdents(fd int, buf []byte) (n int, err error)
    //sys	Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error)
    //sys	Getdtablesize() (size int)
    //sysnb	Getegid() (egid int)
    //sysnb	Geteuid() (uid int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_ISSETUGID                = 253 // { int issetugid(void); }
    	SYS_LCHOWN                   = 254 // { int lchown(char *path, int uid, int gid); }
    	SYS_GETDENTS                 = 272 // { int getdents(int fd, char *buf, \
    	SYS_LCHMOD                   = 274 // { int lchmod(char *path, mode_t mode); }
    	SYS_LUTIMES                  = 276 // { int lutimes(char *path, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_freebsd_386.go

    	SYS_ISSETUGID                = 253 // { int issetugid(void); }
    	SYS_LCHOWN                   = 254 // { int lchown(char *path, int uid, int gid); }
    	SYS_GETDENTS                 = 272 // { int getdents(int fd, char *buf, \
    	SYS_LCHMOD                   = 274 // { int lchmod(char *path, mode_t mode); }
    	SYS_LUTIMES                  = 276 // { int lutimes(char *path, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc_Fchown fchown "libc.so"
    //go:cgo_import_dynamic libc_Fpathconf fpathconf "libc.so"
    //go:cgo_import_dynamic libc_Fstat fstat "libc.so"
    //go:cgo_import_dynamic libc_Getdents getdents "libc.so"
    //go:cgo_import_dynamic libc_Getgid getgid "libc.so"
    //go:cgo_import_dynamic libc_Getpid getpid "libc.so"
    //go:cgo_import_dynamic libc_Geteuid geteuid "libc.so"
    //go:cgo_import_dynamic libc_Getegid getegid "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:09:10 UTC 2023
    - 37.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    func ReadDirent(fd int, buf []byte) (n int, err error) {
    	// Final argument is (basep *uintptr) and the syscall doesn't take nil.
    	// TODO(rsc): Can we use a single global basep for all calls?
    	return Getdents(fd, buf, new(uintptr))
    }
    
    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_FHSTAT                 = 478 // { int fhstat(const struct fhandle *u_fhp, struct stat *sb); }
    	SYS_GETDIRENTRIES          = 479 // { int getdirentries(int fd, char *buf, u_int count, \
    	SYS_GETDENTS               = 480 // { int getdents(int fd, char *buf, size_t count); }
    	SYS_USCHED_SET             = 481 // { int usched_set(pid_t pid, int cmd, void *data, \
    	SYS_EXTACCEPT              = 482 // { int extaccept(int s, int flags, caddr_t name, int *anamelen); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    	reclen, ok := direntReclen(buf)
    	if !ok {
    		return 0, false
    	}
    	return reclen - uint64(unsafe.Offsetof(Dirent{}.Name)), true
    }
    
    //sys	getdirent(fd int, buf []byte) (n int, err error)
    
    func Getdents(fd int, buf []byte) (n int, err error) {
    	return getdirent(fd, buf)
    }
    
    //sys	wait4(pid Pid_t, status *_C_int, options int, rusage *Rusage) (wpid Pid_t, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top