Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SYS_SOCKETCALL (0.18 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go

    	fd, _, err := Syscall(SYS_SOCKETCALL, netAccept4, uintptr(unsafe.Pointer(&args)), 0)
    	if err != 0 {
    		return 0, err
    	}
    	return int(fd), nil
    }
    
    func getsockname(s int, rsa *RawSockaddrAny, addrlen *_Socklen) error {
    	args := [3]uintptr{uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen))}
    	_, _, err := RawSyscall(SYS_SOCKETCALL, netGetSockName, uintptr(unsafe.Pointer(&args)), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go

    }
    
    func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (int, syscall.Errno) {
    	fd, _, err := Syscall(SYS_SOCKETCALL, uintptr(call), uintptr(unsafe.Pointer(&a0)), 0)
    	return int(fd), err
    }
    
    func rawsocketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (int, syscall.Errno) {
    	fd, _, err := RawSyscall(SYS_SOCKETCALL, uintptr(call), uintptr(unsafe.Pointer(&a0)), 0)
    	return int(fd), err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 986 bytes
    - Viewed (0)
  3. src/syscall/asm_linux_386.s

    	INVOKE_SYSCALL
    	MOVL	AX, r1+16(FP)
    	MOVL	DX, r2+20(FP)
    	RET
    
    #define SYS_SOCKETCALL 102	/* from zsysnum_linux_386.go */
    
    // func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err int)
    // Kernel interface gets call sub-number and pointer to a0.
    TEXT ·socketcall(SB),NOSPLIT,$0-36
    	CALL	runtime·entersyscall(SB)
    	MOVL	$SYS_SOCKETCALL, AX	// syscall entry
    	MOVL	call+0(FP), BX	// socket call number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/syscall/asm_linux_s390x.s

    	SYSCALL
    	MOVD	R2, r1+32(FP)
    	MOVD	R3, r2+40(FP)
    	RET
    
    #define SYS_SOCKETCALL 102	/* from zsysnum_linux_s390x.go */
    
    // func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err int)
    // Kernel interface gets call sub-number and pointer to a0.
    TEXT ·socketcall(SB),NOSPLIT,$0-72
    	BL	runtime·entersyscall(SB)
    	MOVD	$SYS_SOCKETCALL, R1	// syscall entry
    	MOVD	call+0(FP), R2		// socket call number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top