Home | History | Annotate | Download | only in kern

Lines Matching defs:cp_time

376 		       CTLTYPE_STRUCT, "cp_time",
946 * sysctl helper routine for kern.cp_time node. Adds up cpu time
953 uint64_t *cp_time = NULL;
961 * of cp_time (and the size thereof) across all processors.
964 * cp_time for that particular processor.
992 cp_time = kmem_alloc(node.sysctl_size, KM_SLEEP);
993 node.sysctl_data = cp_time;
994 memset(cp_time, 0, node.sysctl_size);
999 cp_time[i] += ci->ci_schedstate.spc_cp_time[i];
1009 * if doing "all", skip to next cp_time set for next processor
1012 cp_time += CPUSTATES;