type syscall.Timeval
23 uses
syscall (current package)
syscall.go#L85: func (tv *Timeval) Unix() (sec int64, nsec int64) {
syscall.go#L95: func (tv *Timeval) Nano() int64 {
syscall_linux.go#L330: func Utimes(path string, tv []Timeval) (err error) {
syscall_linux.go#L334: return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
syscall_linux.go#L346: func Futimesat(dirfd int, path string, tv []Timeval) (err error) {
syscall_linux.go#L350: return futimesat(dirfd, path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
syscall_linux.go#L353: func Futimes(fd int, tv []Timeval) (err error) {
syscall_linux_amd64.go#L80: func gettimeofday(tv *Timeval) (err Errno)
syscall_linux_amd64.go#L82: func Gettimeofday(tv *Timeval) (err error) {
syscall_linux_amd64.go#L91: var tv Timeval
syscall_linux_amd64.go#L115: func setTimeval(sec, usec int64) Timeval {
syscall_linux_amd64.go#L116: return Timeval{Sec: sec, Usec: usec}
syscall_unix.go#L493: func SetsockoptTimeval(fd, level, opt int, tv *Timeval) (err error) {
timestruct.go#L24: func TimevalToNsec(tv Timeval) int64 { return tv.Nano() }
timestruct.go#L27: func NsecToTimeval(nsec int64) Timeval {
zsyscall_linux_amd64.go#L804: func Settimeofday(tv *Timeval) (err error) {
zsyscall_linux_amd64.go#L1293: func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {
zsyscall_linux_amd64.go#L1617: func futimesat(dirfd int, path string, times *[2]Timeval) (err error) {
zsyscall_linux_amd64.go#L1647: func utimes(path string, times *[2]Timeval) (err error) {
ztypes_linux_amd64.go#L29: type Timeval struct {
ztypes_linux_amd64.go#L46: Time Timeval
ztypes_linux_amd64.go#L76: Utime Timeval
ztypes_linux_amd64.go#L77: Stime Timeval
|
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. |