Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for O_DIRECTORY (0.21 sec)

  1. src/os/removeall_at.go

    // The contents of this file are not relevant for test caching.
    func openDirAt(dirfd int, name string) (*File, error) {
    	var r int
    	for {
    		var e error
    		r, e = unix.Openat(dirfd, name, O_RDONLY|syscall.O_CLOEXEC|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0)
    		if e == nil {
    			break
    		}
    
    		// See comment in openFileNolog.
    		if e == syscall.EINTR {
    			continue
    		}
    
    		return nil, e
    	}
    
    	if !supportsCloseOnExec {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	O_APPEND                         = 0x400
    	O_ASYNC                          = 0x2000
    	O_CLOEXEC                        = 0x80000
    	O_CREAT                          = 0x40
    	O_DIRECT                         = 0x4000
    	O_DIRECTORY                      = 0x10000
    	O_DSYNC                          = 0x1000
    	O_EXCL                           = 0x80
    	O_FSYNC                          = 0x101000
    	O_LARGEFILE                      = 0x8000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	O_APPEND                         = 0x400
    	O_ASYNC                          = 0x2000
    	O_CLOEXEC                        = 0x80000
    	O_CREAT                          = 0x40
    	O_DIRECT                         = 0x10000
    	O_DIRECTORY                      = 0x4000
    	O_DSYNC                          = 0x1000
    	O_EXCL                           = 0x80
    	O_FSYNC                          = 0x101000
    	O_LARGEFILE                      = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	O_APPEND                         = 0x400
    	O_ASYNC                          = 0x2000
    	O_CLOEXEC                        = 0x80000
    	O_CREAT                          = 0x40
    	O_DIRECT                         = 0x4000
    	O_DIRECTORY                      = 0x10000
    	O_DSYNC                          = 0x1000
    	O_EXCL                           = 0x80
    	O_FSYNC                          = 0x101000
    	O_LARGEFILE                      = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/syscall/zerrors_solaris_amd64.go

    	OPOST                         = 0x1
    	O_ACCMODE                     = 0x600003
    	O_APPEND                      = 0x8
    	O_CLOEXEC                     = 0x800000
    	O_CREAT                       = 0x100
    	O_DIRECTORY                   = 0x1000000
    	O_DSYNC                       = 0x40
    	O_EXCL                        = 0x400
    	O_EXEC                        = 0x400000
    	O_LARGEFILE                   = 0x2000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
Back to top