Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for O_WRONLY (0.08 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    // NTStatus corresponds with NTSTATUS, error values returned by ntdll.dll and
    // other native functions.
    type NTStatus uint32
    
    const (
    	// Invented values to support what package os expects.
    	O_RDONLY   = 0x00000
    	O_WRONLY   = 0x00001
    	O_RDWR     = 0x00002
    	O_CREAT    = 0x00040
    	O_EXCL     = 0x00080
    	O_NOCTTY   = 0x00100
    	O_TRUNC    = 0x00200
    	O_NONBLOCK = 0x00800
    	O_APPEND   = 0x00400
    	O_SYNC     = 0x01000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	OVERLAYFS_SUPER_MAGIC                       = 0x794c7630
    	O_ACCMODE                                   = 0x3
    	O_RDONLY                                    = 0x0
    	O_RDWR                                      = 0x2
    	O_WRONLY                                    = 0x1
    	PACKET_ADD_MEMBERSHIP                       = 0x1
    	PACKET_AUXDATA                              = 0x8
    	PACKET_BROADCAST                            = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
Back to top