Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 229 for sysvicall6 (0.21 sec)

  1. src/syscall/asm_netbsd_arm.s

    #include "textflag.h"
    #include "funcdata.h"
    
    //
    // System call support for ARM, NetBSD
    //
    
    // func Syscall(trap int32, a1, a2, a3 int32) (r1, r2, err int32);
    // func Syscall6(trap int32, a1, a2, a3, a4, a5, a6 int32) (r1, r2, err int32);
    // func Syscall9(trap int32, a1, a2, a3, a4, a5, a6, a7, a8, a9 int64) (r1, r2, err int32)
    
    TEXT	·Syscall(SB),NOSPLIT,$0-28
    	BL runtime·entersyscall(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 21:13:25 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go

    	var _p0 unsafe.Pointer
    	if len(mib) > 0 {
    		_p0 = unsafe.Pointer(&mib[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	_, _, errno := syscall.Syscall6(
    		syscall.SYS___SYSCTL,
    		uintptr(_p0),
    		uintptr(len(mib)),
    		uintptr(unsafe.Pointer(old)),
    		uintptr(unsafe.Pointer(oldlen)),
    		uintptr(unsafe.Pointer(new)),
    		uintptr(newlen))
    	if errno != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_netbsd_386.go

    	_, _, e1 := Syscall6(SYS_GETSOCKOPT, uintptr(s), uintptr(level), uintptr(name), uintptr(val), uintptr(unsafe.Pointer(vallen)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  4. src/os/pidfd_linux.go

    	case statusReleased:
    		return nil, syscall.EINVAL
    	}
    	defer p.handleTransientRelease()
    
    	var (
    		info   unix.SiginfoChild
    		rusage syscall.Rusage
    		e      syscall.Errno
    	)
    	for {
    		_, _, e = syscall.Syscall6(syscall.SYS_WAITID, _P_PIDFD, handle, uintptr(unsafe.Pointer(&info)), syscall.WEXITED, uintptr(unsafe.Pointer(&rusage)), 0)
    		if e != syscall.EINTR {
    			break
    		}
    	}
    	if e != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/syscall/asm_plan9_386.s

    #include "textflag.h"
    #include "funcdata.h"
    
    //
    // System call support for 386, Plan 9
    //
    
    //func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err string)
    //func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err string)
    //func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr)
    //func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 15:28:51 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  6. src/syscall/syscall_plan9_test.go

    func TestPlan9Syserr(t *testing.T) {
    	testalias(t,
    		"Syscall",
    		func() error {
    			return syscall.Mkdir("/", 0)
    		},
    		func() error {
    			return syscall.Mkdir("#", 0)
    		})
    	testalias(t,
    		"Syscall6",
    		func() error {
    			return syscall.Mount(0, 0, "", 0, "")
    		},
    		func() error {
    			return syscall.Mount(-1, 0, "", 0, "")
    		})
    	// originally failed only on plan9_arm
    	testalias(t,
    		"seek",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 14:57:01 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go

    	"unsafe"
    )
    
    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)
  8. src/cmd/vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go

    	var _p0 *byte
    	_p0, err = BytePtrFromString(old)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(aname)
    	if err != nil {
    		return
    	}
    	r0, _, e1 := Syscall6(SYS_MOUNT, uintptr(fd), uintptr(afd), uintptr(unsafe.Pointer(_p0)), uintptr(flag), uintptr(unsafe.Pointer(_p1)), 0)
    	if int32(r0) == -1 {
    		err = e1
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_plan9_386.go

    	var _p0 *byte
    	_p0, err = BytePtrFromString(old)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(aname)
    	if err != nil {
    		return
    	}
    	r0, _, e1 := Syscall6(SYS_MOUNT, uintptr(fd), uintptr(afd), uintptr(unsafe.Pointer(_p0)), uintptr(flag), uintptr(unsafe.Pointer(_p1)), 0)
    	if int32(r0) == -1 {
    		err = e1
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  10. src/syscall/asm_freebsd_arm.s

    #include "textflag.h"
    #include "funcdata.h"
    
    //
    // System call support for ARM, FreeBSD
    //
    
    // func Syscall(trap, a1, a2, a3 uintptr) (r1, r2, errno uintptr);
    // func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr);
    // func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2, errno uintptr)
    
    TEXT	·Syscall(SB),NOSPLIT,$0-28
    	BL runtime·entersyscall(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 23 16:52:33 UTC 2015
    - 3K bytes
    - Viewed (0)
Back to top