Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for O_SYNC (0.23 sec)

  1. src/syscall/syscall_aix.go

    		*wstatus = WaitStatus(status)
    	}
    	return
    }
    
    //sys	fsyncRange(fd int, how int, start int64, length int64) (err error) = fsync_range
    
    func Fsync(fd int) error {
    	return fsyncRange(fd, O_SYNC, 0, 0)
    }
    
    /*
     * Socket
     */
    //sys	bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)
    //sys	connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go

    	O_NOCTTY                         = 0x100
    	O_NOFOLLOW                       = 0x8000
    	O_NONBLOCK                       = 0x800
    	O_PATH                           = 0x200000
    	O_RSYNC                          = 0x101000
    	O_SYNC                           = 0x101000
    	O_TMPFILE                        = 0x404000
    	O_TRUNC                          = 0x200
    	PARENB                           = 0x1000
    	PARODD                           = 0x2000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go

    	O_NOCTTY                         = 0x100
    	O_NOFOLLOW                       = 0x20000
    	O_NONBLOCK                       = 0x800
    	O_PATH                           = 0x200000
    	O_RSYNC                          = 0x101000
    	O_SYNC                           = 0x101000
    	O_TMPFILE                        = 0x410000
    	O_TRUNC                          = 0x200
    	PARENB                           = 0x100
    	PARODD                           = 0x200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. src/syscall/zerrors_aix_ppc64.go

    	O_RDWR                        = 0x2
    	O_RSHARE                      = 0x1000
    	O_RSYNC                       = 0x200000
    	O_SEARCH                      = 0x20
    	O_SNAPSHOT                    = 0x40
    	O_SYNC                        = 0x10
    	O_TRUNC                       = 0x200
    	O_TTY_INIT                    = 0x0
    	O_WRONLY                      = 0x1
    	PARENB                        = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	O_LARGEFILE                     = 0x0400
    	O_NDELAY                        = 0x4
    	O_NONBLOCK                      = 0x04
    	O_RDONLY                        = 0x02
    	O_RDWR                          = 0x03
    	O_SYNC                          = 0x0100
    	O_TRUNC                         = 0x10
    	O_WRONLY                        = 0x01
    	O_NOCTTY                        = 0x20
    	OPOST                           = 0x0001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. src/syscall/fs_wasip1.go

    	case O_WRONLY:
    		rights = fileRights & ^readRights
    	case O_RDWR:
    		rights = fileRights
    	}
    
    	var fdflags fdflags
    	if (openmode & O_APPEND) != 0 {
    		fdflags |= FDFLAG_APPEND
    	}
    	if (openmode & O_SYNC) != 0 {
    		fdflags |= FDFLAG_SYNC
    	}
    
    	var fd int32
    	errno := path_open(
    		dirFd,
    		LOOKUP_SYMLINK_FOLLOW,
    		pathPtr,
    		pathLen,
    		oflags,
    		rights,
    		fileRights,
    		fdflags,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top