syscall.Stat_t.Mode (field)
12 uses
syscall (current package)
syscall_linux.go#L211: if st.Mode&0111 != 0 {
syscall_linux.go#L220: fmode = (st.Mode >> 6) & 7
syscall_linux.go#L230: fmode = (st.Mode >> 3) & 7
syscall_linux.go#L232: fmode = st.Mode & 7
ztypes_linux_amd64.go#L105: Mode uint32
os
file_unix.go#L190: typ := st.Mode & syscall.S_IFMT
removeall_at.go#L89: if statInfo.Mode&syscall.S_IFMT != syscall.S_IFDIR {
stat_linux.go#L16: fs.mode = FileMode(fs.sys.Mode & 0777)
stat_linux.go#L17: switch fs.sys.Mode & syscall.S_IFMT {
stat_linux.go#L33: if fs.sys.Mode&syscall.S_ISGID != 0 {
stat_linux.go#L36: if fs.sys.Mode&syscall.S_ISUID != 0 {
stat_linux.go#L39: if fs.sys.Mode&syscall.S_ISVTX != 0 {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |