Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for SYS__LLSEEK (0.53 sec)

  1. src/syscall/syscall_linux_mipsx.go

    	if e != 0 {
    		err = errnoErr(e)
    	}
    	return
    }
    
    func Seek(fd int, offset int64, whence int) (off int64, err error) {
    	_, _, e := Syscall6(SYS__LLSEEK, uintptr(fd), uintptr(offset>>32), uintptr(offset), uintptr(unsafe.Pointer(&off)), uintptr(whence), 0)
    	if e != 0 {
    		err = errnoErr(e)
    	}
    	return
    }
    
    func setTimespec(sec, nsec int64) Timespec {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SYS_WORKQ_OPEN", Const, 0},
    		{"SYS_WRITE", Const, 0},
    		{"SYS_WRITEV", Const, 0},
    		{"SYS_WRITEV_NOCANCEL", Const, 0},
    		{"SYS_WRITE_NOCANCEL", Const, 0},
    		{"SYS_YIELD", Const, 0},
    		{"SYS__LLSEEK", Const, 0},
    		{"SYS__LWP_CONTINUE", Const, 1},
    		{"SYS__LWP_CREATE", Const, 1},
    		{"SYS__LWP_CTL", Const, 1},
    		{"SYS__LWP_DETACH", Const, 1},
    		{"SYS__LWP_EXIT", Const, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (linux-386), const SYS_WAITPID ideal-int
    pkg syscall (linux-386), const SYS_WRITE ideal-int
    pkg syscall (linux-386), const SYS_WRITEV ideal-int
    pkg syscall (linux-386), const SYS__LLSEEK ideal-int
    pkg syscall (linux-386), const SYS__NEWSELECT ideal-int
    pkg syscall (linux-386), const SYS__SYSCTL ideal-int
    pkg syscall (linux-386), const S_BLKSIZE ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (linux-386), const SYS_WAITID = 284
    pkg syscall (linux-386), const SYS_WAITPID = 7
    pkg syscall (linux-386), const SYS_WRITE = 4
    pkg syscall (linux-386), const SYS_WRITEV = 146
    pkg syscall (linux-386), const SYS__LLSEEK = 140
    pkg syscall (linux-386), const SYS__NEWSELECT = 142
    pkg syscall (linux-386), const SYS__SYSCTL = 149
    pkg syscall (linux-386), const S_BLKSIZE = 512
    pkg syscall (linux-386), const S_IEXEC = 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  5. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const SYS_WAITID ideal-int
    pkg syscall (linux-arm-cgo), const SYS_WRITE ideal-int
    pkg syscall (linux-arm-cgo), const SYS_WRITEV ideal-int
    pkg syscall (linux-arm-cgo), const SYS__LLSEEK ideal-int
    pkg syscall (linux-arm-cgo), const SYS__NEWSELECT ideal-int
    pkg syscall (linux-arm-cgo), const SYS__SYSCTL ideal-int
    pkg syscall (linux-arm-cgo), const S_BLKSIZE ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top