Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for SYS___sysctl (0.12 sec)

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

    	msghdr.Iovlen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions
    // of openbsd/386 the syscall is called sysctl instead of __sysctl.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1000 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go

    	msghdr.Iovlen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions
    // of openbsd/amd64 the syscall is called sysctl instead of __sysctl.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 990 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go

    	msghdr.Iovlen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions
    // of openbsd/riscv64 the syscall is called sysctl instead of __sysctl.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 994 bytes
    - Viewed (0)
  4. src/os/executable_sysctl.go

    	n := uintptr(0)
    	// get length
    	_, _, err := syscall.Syscall6(syscall.SYS___SYSCTL, uintptr(unsafe.Pointer(&mib[0])), 4, 0, uintptr(unsafe.Pointer(&n)), 0, 0)
    	if err != 0 {
    		return "", err
    	}
    	if n == 0 { // shouldn't happen
    		return "", nil
    	}
    	buf := make([]byte, n)
    	_, _, err = syscall.Syscall6(syscall.SYS___SYSCTL, uintptr(unsafe.Pointer(&mib[0])), 4, uintptr(unsafe.Pointer(&buf[0])), uintptr(unsafe.Pointer(&n)), 0, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 891 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go

    	msghdr.Iovlen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions
    // of OpenBSD the syscall is called sysctl instead of __sysctl.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 17:12:04 UTC 2022
    - 955 bytes
    - Viewed (0)
  6. src/syscall/syscall_openbsd_arm64.go

    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // RTM_LOCK only exists in OpenBSD 6.3 and earlier.
    const RTM_LOCK = 0x8
    
    // SYS___SYSCTL only exists in OpenBSD 5.8 and earlier, when it was
    // was renamed to SYS_SYSCTL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 906 bytes
    - Viewed (0)
  7. src/syscall/syscall_openbsd_ppc64.go

    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // RTM_LOCK only exists in OpenBSD 6.3 and earlier.
    const RTM_LOCK = 0x8
    
    // SYS___SYSCTL only exists in OpenBSD 5.8 and earlier, when it was
    // was renamed to SYS_SYSCTL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 906 bytes
    - Viewed (0)
  8. src/syscall/syscall_openbsd_riscv64.go

    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // RTM_LOCK only exists in OpenBSD 6.3 and earlier.
    const RTM_LOCK = 0x8
    
    // SYS___SYSCTL only exists in OpenBSD 5.8 and earlier, when it was
    // was renamed to SYS_SYSCTL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 906 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go

    	msghdr.Iovlen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions
    // of openbsd/arm the syscall is called sysctl instead of __sysctl.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1000 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go

    	msghdr.Iovlen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    // SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions
    // of openbsd/amd64 the syscall is called sysctl instead of __sysctl.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 990 bytes
    - Viewed (0)
Back to top