Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for SYS__LLSEEK (0.15 sec)

  1. src/syscall/asm_linux_arm.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "funcdata.h"
    
    //
    // System calls for arm, Linux
    //
    
    #define SYS__LLSEEK 140  /* from zsysnum_linux_arm.go */
    // func seek(fd int, offset int64, whence int) (newoffset int64, errno int)
    // Implemented in assembly to avoid allocation when
    // taking the address of the return value newoffset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/syscall/asm_linux_386.s

    	MOVL	$0, DI
    	INVOKE_SYSCALL
    	CMPL	AX, $0xfffff001
    	JLS	oksock1
    	MOVL	$-1, n+28(FP)
    	NEGL	AX
    	MOVL	AX, err+32(FP)
    	RET
    oksock1:
    	MOVL	AX, n+28(FP)
    	MOVL	$0, err+32(FP)
    	RET
    
    #define SYS__LLSEEK 140	/* from zsysnum_linux_386.go */
    // func Seek(fd int, offset int64, whence int) (newoffset int64, err int)
    // Implemented in assembly to avoid allocation when
    // taking the address of the return value newoffset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go

    )
    
    func seek(fd int, offset int64, whence int) (int64, syscall.Errno) {
    	var newoffset int64
    	offsetLow := uint32(offset & 0xffffffff)
    	offsetHigh := uint32((offset >> 32) & 0xffffffff)
    	_, _, err := Syscall6(SYS__LLSEEK, uintptr(fd), uintptr(offsetHigh), uintptr(offsetLow), uintptr(unsafe.Pointer(&newoffset)), uintptr(whence), 0)
    	return newoffset, err
    }
    
    func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (int, syscall.Errno) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 986 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go

    )
    
    func seek(fd int, offset int64, whence int) (int64, syscall.Errno) {
    	var newoffset int64
    	offsetLow := uint32(offset & 0xffffffff)
    	offsetHigh := uint32((offset >> 32) & 0xffffffff)
    	_, _, err := Syscall6(SYS__LLSEEK, uintptr(fd), uintptr(offsetHigh), uintptr(offsetLow), uintptr(unsafe.Pointer(&newoffset)), uintptr(whence), 0)
    	return newoffset, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 596 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go

    	SYS_SETFSGID                = 229
    	SYS__NEWSELECT              = 230
    	SYS_SPLICE                  = 232
    	SYS_STIME                   = 233
    	SYS_STATFS64                = 234
    	SYS_FSTATFS64               = 235
    	SYS__LLSEEK                 = 236
    	SYS_MLOCK                   = 237
    	SYS_MUNLOCK                 = 238
    	SYS_MLOCKALL                = 239
    	SYS_MUNLOCKALL              = 240
    	SYS_SCHED_SETPARAM          = 241
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go

    	SYS_BDFLUSH                 = 134
    	SYS_SYSFS                   = 135
    	SYS_PERSONALITY             = 136
    	SYS_AFS_SYSCALL             = 137
    	SYS_SETFSUID                = 138
    	SYS_SETFSGID                = 139
    	SYS__LLSEEK                 = 140
    	SYS_GETDENTS                = 141
    	SYS__NEWSELECT              = 142
    	SYS_FLOCK                   = 143
    	SYS_MSYNC                   = 144
    	SYS_READV                   = 145
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go

    	SYS_SYSFS                        = 135
    	SYS_PERSONALITY                  = 136
    	SYS_AFS_SYSCALL                  = 137
    	SYS_SETFSUID                     = 138
    	SYS_SETFSGID                     = 139
    	SYS__LLSEEK                      = 140
    	SYS_GETDENTS                     = 141
    	SYS__NEWSELECT                   = 142
    	SYS_FLOCK                        = 143
    	SYS_MSYNC                        = 144
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go

    	SYS_BDFLUSH                      = 134
    	SYS_SYSFS                        = 135
    	SYS_PERSONALITY                  = 136
    	SYS_SETFSUID                     = 138
    	SYS_SETFSGID                     = 139
    	SYS__LLSEEK                      = 140
    	SYS_GETDENTS                     = 141
    	SYS__NEWSELECT                   = 142
    	SYS_FLOCK                        = 143
    	SYS_MSYNC                        = 144
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go

    	SYS_SYSFS                        = 4135
    	SYS_PERSONALITY                  = 4136
    	SYS_AFS_SYSCALL                  = 4137
    	SYS_SETFSUID                     = 4138
    	SYS_SETFSGID                     = 4139
    	SYS__LLSEEK                      = 4140
    	SYS_GETDENTS                     = 4141
    	SYS__NEWSELECT                   = 4142
    	SYS_FLOCK                        = 4143
    	SYS_MSYNC                        = 4144
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/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: Thu Oct 19 23:33:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top