6 code results in golang/go

Go
src/syscall/syscall_linux_arm.go
Showing the top match Last indexed Mar 22, 2017
83 //sysnb Getgid() (gid int) = SYS_GETGID32
84 //sysnb Getuid() (uid int) = SYS_GETUID32
85 //sysnb InotifyInit() (fd int, err error)
Go
src/syscall/zsysnum_linux_386.go
Showing the top match Last indexed Sep 17, 2016
207 SYS_LCHOWN32 = 198
208 SYS_GETUID32 = 199
209 SYS_GETGID32 = 200
210 SYS_GETEUID32 = 201
Go
src/syscall/zsysnum_linux_arm.go
Showing the top match Last indexed Sep 17, 2016
178 SYS_LSTAT64 = 196
179 SYS_FSTAT64 = 197
180 SYS_LCHOWN32 = 198
181 SYS_GETUID32 = 199
Go
src/syscall/syscall_linux_386.go
Showing the top match Last indexed Mar 22, 2017
60 //sysnb Getgid() (gid int) = SYS_GETGID32
61 //sysnb Getuid() (uid int) = SYS_GETUID32
62 //sysnb InotifyInit() (fd int, err error)
63 //sys Ioperm(from int, num int, on int) (err error)
Go
src/syscall/zsyscall_linux_386.go
Showing the top match Last indexed Sep 27, 2017
1242 func Getuid() (uid int) {
1243 r0, _, _ := RawSyscall(SYS_GETUID32, 0, 0, 0)
1244 uid = int(r0)
1245 return
1246 }
1247
1248 // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
Go
src/syscall/zsyscall_linux_arm.go
Showing the top match Last indexed Sep 27, 2017
1402 r0, _, _ := RawSyscall(SYS_GETUID32, 0, 0, 0)
1403 uid = int(r0)
1404 return
1405 }
1406
1407 // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT