Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for S_IFDIR (0.25 sec)

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

    	WSA_FLAG_REGISTERED_IO          = 0x100
    )
    
    // Invented values to support what package os expects.
    const (
    	S_IFMT   = 0x1f000
    	S_IFIFO  = 0x1000
    	S_IFCHR  = 0x2000
    	S_IFDIR  = 0x4000
    	S_IFBLK  = 0x6000
    	S_IFREG  = 0x8000
    	S_IFLNK  = 0xa000
    	S_IFSOCK = 0xc000
    	S_ISUID  = 0x800
    	S_ISGID  = 0x400
    	S_ISVTX  = 0x200
    	S_IRUSR  = 0x100
    	S_IWRITE = 0x80
    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

    	S_BLKSIZE                                   = 0x200
    	S_IEXEC                                     = 0x40
    	S_IFBLK                                     = 0x6000
    	S_IFCHR                                     = 0x2000
    	S_IFDIR                                     = 0x4000
    	S_IFIFO                                     = 0x1000
    	S_IFLNK                                     = 0xa000
    	S_IFMT                                      = 0xf000
    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