• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/xnu-2422.115.4/bsd/kern/

Lines Matching defs:sysctl

73 #include <sys/sysctl.h>
121 STATIC int sysctl(int *name, u_int namelen, void *oldp, size_t *oldlenp, void *newp, size_t newlen);
223 * sysctl tree. This is done here because IOKit registers
224 * some sysctl's before bsd_init() calls
228 lck_grp_t* lck_grp = lck_grp_alloc_init("sysctl", NULL);
392 * If the sysctl caller (user mode or kernel mode) is interested in the
467 * of some library routines implemented via sysctl, which truncate
525 * used by the sysctl program to walk the tree, and get the type
606 * Description: This function implements the "sysctl.debug" portion of the
607 * OID space for sysctl.
637 * space sysctl() command line utility; this is done in a purely
638 * advisory capacity (e.g. to provide node names for "sysctl -A"
663 * a subprocess to communicate with the "sysctl" command line
673 * This function differs from other sysctl functions in that
676 * length be PATH_MAX, and that authors of new sysctl's refrain
837 * and provide a list of OIDs for use by the user space "sysctl"
861 * a subprocess to communicate with the "sysctl" command line
865 * This function differs from other sysctl functions in that
868 * length be PATH_MAX, and that authors of new sysctl's refrain
971 * the sysctlbyname() function as well as by the "sysctl" command
996 * a subprocess to communicate with the "sysctl" command line
1000 * This function differs from other sysctl functions in that
1003 * length be PATH_MAX, and that authors of new sysctl's refrain
1055 * is associated with it. This is used by the "sysctl" command
1079 * a subprocess to communicate with the "sysctl" command line
1082 * This function differs from other sysctl functions in that
1085 * length be PATH_MAX, and that authors of new sysctl's refrain
1405 * For SYSCTL_PROC() functions which are for sysctl's
1411 * NOT add new sysctl's that do this! Existing
1412 * sysctl's which do this will eventually have
1630 * Kernel versions of the userland sysctl helper functions.
1632 * These allow sysctl to be used in the same fashion in both
1635 * Note that some sysctl handlers use copyin/copyout, which
1640 sysctl(int *name, u_int namelen, void *oldp, size_t *oldlenp, void *newp, size_t newlen)
1665 error = sysctl(oid, 2, mibp, sizep, non_const_name, strlen(name));
1684 error = sysctl(oid, oidlen, oldp, oldlenp, newp, newlen);