HomeSort by relevance Sort by last modified time
    Searched refs:sysctl (Results 151 - 175 of 404) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
defs_openbsd.go 11 #include <sys/sysctl.h>
  /prebuilts/go/linux-x86/src/runtime/
os_dragonfly.go 37 func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32 func
55 // From DragonFly's <sys/sysctl.h>
68 ret := sysctl(&mib[0], 2, (*byte)(unsafe.Pointer(&out)), &nout, nil, 0)
79 ret := sysctl(&mib[0], 2, (*byte)(unsafe.Pointer(&out)), &nout, nil, 0)
os_freebsd.go 30 func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32 func
42 // From FreeBSD's <sys/sysctl.h>
55 ret := sysctl(&mib[0], 2, (*byte)(unsafe.Pointer(&out)), &nout, nil, 0)
66 ret := sysctl(&mib[0], 2, (*byte)(unsafe.Pointer(&out)), &nout, nil, 0)
os_netbsd.go 44 func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32 func
80 // From NetBSD's <sys/sysctl.h>
91 ret := sysctl(&mib[0], 2, (*byte)(unsafe.Pointer(&out)), &nout, nil, 0)
102 ret := sysctl(&mib[0], 2, (*byte)(unsafe.Pointer(&out)), &nout, nil, 0)
os_darwin.go 25 func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32 func
64 // Use sysctl to fetch hw.ncpu.
68 ret := sysctl(&mib[0], 2, (*byte)(unsafe.Pointer(&out)), &nout, nil, 0)
76 // Use sysctl to fetch hw.pagesize.
80 ret := sysctl(&mib[0], 2, (*byte)(unsafe.Pointer(&out)), &nout, nil, 0)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
defs_darwin.go 11 #include <sys/sysctl.h>
defs_dragonfly.go 11 #include <sys/sysctl.h>
defs_netbsd.go 11 #include <sys/sysctl.h>
defs_openbsd.go 11 #include <sys/sysctl.h>
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/src/details/
fstream_unistd.cpp 47 # include <sys/sysctl.h>
139 sysctl(mib, 2, &pagesize, &len, NULL, 0);
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/src/details/
fstream_unistd.cpp 47 # include <sys/sysctl.h>
139 sysctl(mib, 2, &pagesize, &len, NULL, 0);
  /external/google-breakpad/android/
common-functions.sh 193 sysctl -n hw.ncpu
  /external/linux-kselftest/tools/testing/selftests/
Makefile 32 TARGETS += sysctl
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/VExpress/DeviceTree/
rtsm_ve-motherboard.dtsi 91 v2m_sysctl: sysctl@020000 {
rtsm_ve-motherboard-no_psci.dtsi 91 v2m_sysctl: sysctl@020000 {
  /device/linaro/bootloader/arm-trusted-firmware/fdts/
rtsm_ve-motherboard.dtsi 91 v2m_sysctl: sysctl@020000 {
rtsm_ve-motherboard-no_psci.dtsi 91 v2m_sysctl: sysctl@020000 {
  /external/ltp/testcases/lib/
test_net.sh 463 # It can handle netns case when sysctl not namespaceified.
475 ROD sysctl -qw $name=$value
477 sysctl -qw $name=$value
480 tst_rhost_run $safe -c "sysctl -qw $add_opt $name=$value"
  /external/webrtc/webrtc/modules/utility/source/
helpers_ios.mm 15 #import <sys/sysctl.h>
  /prebuilts/go/darwin-x86/src/syscall/
syscall_netbsd.go 34 // Get a list of all sysctl nodes below the given MIB by performing
35 // a sysctl for the given MIB with CTL_QUERY appended.
40 if err = sysctl(mib, nil, &olen, qp, sz); err != nil {
47 if err = sysctl(mib, np, &olen, qp, sz); err != nil {
  /prebuilts/go/linux-x86/src/syscall/
syscall_netbsd.go 34 // Get a list of all sysctl nodes below the given MIB by performing
35 // a sysctl for the given MIB with CTL_QUERY appended.
40 if err = sysctl(mib, nil, &olen, qp, sz); err != nil {
47 if err = sysctl(mib, np, &olen, qp, sz); err != nil {
  /prebuilts/go/darwin-x86/src/runtime/
os_darwin.go 25 func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32 func
64 // Use sysctl to fetch hw.ncpu.
68 ret := sysctl(&mib[0], 2, (*byte)(unsafe.Pointer(&out)), &nout, nil, 0)
76 // Use sysctl to fetch hw.pagesize.
80 ret := sysctl(&mib[0], 2, (*byte)(unsafe.Pointer(&out)), &nout, nil, 0)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mac.cc 69 #include <sys/sysctl.h>
401 CHECK_NE(sysctl(mib, 2, 0, &len, 0, 0), -1);
403 CHECK_NE(sysctl(mib, 2, version, &len, 0, 0), -1);
  /external/dhcpcd-6.8.2/
if-bsd.c 32 #include <sys/sysctl.h>
72 /* OpenBSD dropped the global setting from sysctl but left the #define
701 if (sysctl(mib, 6, NULL, &needed, NULL, 0) == -1)
707 if (sysctl(mib, 6, buf, &needed, NULL, 0) == -1)
1059 if (sysctl(mib, 6, NULL, &needed, NULL, 0) == -1)
1065 if (sysctl(mib, 6, buf, &needed, NULL, 0) == -1)
    [all...]
  /external/google-breakpad/src/client/mac/handler/
dynamic_images.cc 42 #include <sys/sysctl.h>
562 int err = sysctlnametomib("sysctl.proc_cputype", mib, &mibLen);
570 sysctl(mib, static_cast<u_int>(mibLen), &cpu_type, &cpuTypeSize, 0, 0);

Completed in 1010 milliseconds

1 2 3 4 5 67 8 91011>>