Searched refs:sysctl (Results 51 - 75 of 2117) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/netbsd-tests/lib/libc/arch/i386/
H A Dexec_prot_support.c36 #include <sys/sysctl.h>
/freebsd-12-stable/cddl/compat/opensolaris/misc/
H A Dzone.c32 #include <sys/sysctl.h>
44 assert(!"No security.jail.jailed sysctl!");
/freebsd-12-stable/lib/libc/gen/
H A Duname.c38 #include <sys/sysctl.h>
H A D__xuname.c38 #include <sys/sysctl.h>
63 if (sysctl(mib, 2, q, &len, NULL, 0) == -1) {
76 if (sysctl(mib, 2, q, &len, NULL, 0) == -1) {
91 if (sysctl(mib, 2, q, &len, NULL, 0) == -1) {
112 if (sysctl(mib, 2, q, &len, NULL, 0) == -1) {
137 if (sysctl(mib, 2, q, &len, NULL, 0) == -1) {
H A Dgetloadavg.c39 #include <sys/sysctl.h>
60 if (sysctl(mib, 2, &loadinfo, &size, NULL, 0) < 0)
H A Dsysctlbyname.c33 #include <sys/sysctl.h>
58 return (sysctl(oid, len, oldp, oldlenp, newp, newlen));
H A Dfeature_present.c37 #include <sys/sysctl.h>
45 * sysctl node called kern.feature.<feature> that is non-zero.
/freebsd-12-stable/sys/dev/ice/
H A Dice_common_sysctls.h37 * Contains static sysctl values which are driver wide and configure all
46 #include <sys/sysctl.h>
52 * Global sysctl variable indicating whether the Tx Flow Control filters
58 * @remark each PF has a separate sysctl which can override this value.
66 * Global sysctl variable indicating whether the Tx Flow Control filters
72 * @remark each PF has a separate sysctl which can override this value.
/freebsd-12-stable/sys/powerpc/powerpc/
H A Ddump_machdep.c36 #include <sys/sysctl.h>
/freebsd-12-stable/libexec/rc/rc.d/
H A Dsecurelevel17 # Last chance to set sysctl variables that failed the first time.
19 /etc/rc.d/sysctl lastload
H A Dlinux29 case `sysctl -n hw.machine_arch` in
47 if [ `sysctl -ni kern.elf64.fallback_brand` -eq "-1" ]; then
48 sysctl kern.elf64.fallback_brand=3 > /dev/null
51 if [ `sysctl -ni kern.elf32.fallback_brand` -eq "-1" ]; then
52 sysctl kern.elf32.fallback_brand=3 > /dev/null
H A Dcfumass83 _template=`sysctl -n hw.usb.template`
85 sysctl hw.usb.template=-1 > /dev/null
88 warn "unable to set hw.usb.template sysctl"
94 _template=`sysctl -n hw.usb.template`
103 warn "hw.usb.template sysctl set to neither -1 nor 8; not changing"
109 sysctl hw.usb.template="${_new_template}" > /dev/null
112 warn "unable to set hw.usb.template sysctl to ${_new_template}"
124 _template=`sysctl -n hw.usb.template`
133 warn "hw.usb.template sysctl set to neither 0 nor 10; not changing"
139 sysctl h
[all...]
/freebsd-12-stable/tools/tools/net80211/scripts/
H A Dsetup.dfs14 sysctl net.wlan.nol_timeout=60
26 sleep 5; sysctl net.wlan.$unit.radar=1
/freebsd-12-stable/contrib/netbsd-tests/dev/md/
H A Dt_md.sh28 rawpart=`sysctl -n kern.rawpartition | tr '01234' 'abcde'`
43 rawpart=`sysctl -n kern.rawpartition | tr '01234' 'abcde'`
/freebsd-12-stable/contrib/gdb/gdb/
H A Di386fbsd-nat.c28 #include <sys/sysctl.h>
86 /* FreeBSD provides a kern.ps_strings sysctl that we can use to
101 if (sysctl (mib, 2, &ps_strings, &len, NULL, 0) == 0)
/freebsd-12-stable/contrib/gcclibs/libgomp/config/bsd/
H A Dproc.c43 # include <sys/sysctl.h>
54 sysctl((int[2]) {CTL_HW, HW_NCPU}, 2, &ncpus, &len, NULL, 0);
/freebsd-12-stable/crypto/heimdal/lib/roken/
H A Dgetdtablesize.c61 #include <sys/sysctl.h>
83 sysctl(&mib, 2, &files, sizeof(files), NULL, 0);
/freebsd-12-stable/tests/etc/rc.d/
H A Drouting_test.sh42 nfibs=`sysctl -n net.fibs`
59 nfibs=`sysctl -n net.fibs`
61 if [ "`sysctl -in kern.features.inet6`" != "1" ]; then
/freebsd-12-stable/tests/sys/cddl/zfs/tests/threadsappend/
H A Dthreadsappend_001_pos.ksh75 NCPUS=`sysctl -a | awk -F '"' '/cpu count="[0-9+]"/ {print $2; exit}'`
/freebsd-12-stable/tools/regression/tmpfs/
H A Dt_statvfs45 pagesize=$(sysctl hw.pagesize | cut -d ' ' -f 2)
/freebsd-12-stable/usr.bin/ipcs/
H A Dipc.c37 #include <sys/sysctl.h>
96 static struct scgs_vector shminfo_scgsv[] = { SHMINFO_XVEC { .sysctl=NULL } };
99 static struct scgs_vector seminfo_scgsv[] = { SEMINFO_XVEC { .sysctl=NULL } };
102 static struct scgs_vector msginfo_scgsv[] = { MSGINFO_XVEC { .sysctl=NULL } };
115 for (xp = vecarr; xp->sysctl != NULL; xp++) {
118 rv = sysctlbyname(xp->sysctl, (char *)addr + xp->offset,
121 err(1, "sysctlbyname: %s", xp->sysctl);
124 xp->sysctl, xp->size, tsiz);
135 const char *sym2sysctl[] = { /* symbol to sysctl name table */
/freebsd-12-stable/contrib/netbsd-tests/rump/rumpkern/
H A Dt_tsleep.c32 #include <sys/sysctl.h>
/freebsd-12-stable/bin/ps/
H A Dnlist.c42 #include <sys/sysctl.h>
/freebsd-12-stable/sys/riscv/riscv/
H A Ddump_machdep.c43 #include <sys/sysctl.h>
/freebsd-12-stable/tests/sys/acl/
H A D02.sh40 if [ $(sysctl -n kern.features.ufs_acl 2>/dev/null || echo 0) -eq 0 ]; then
78 if [ `sysctl -n vfs.acl_nfs4_old_semantics` = 0 ]; then

Completed in 239 milliseconds

1234567891011>>