Lines Matching defs:cp_id
196 { "/kern/cp_id(/[0-9]+)?", kern_cp_id, NULL, NULL },
2396 u_int64_t *cp_id;
2399 char s[sizeof("kern.cp_id.nnnnnn")];
2422 cp_id = malloc(sz);
2423 if (cp_id == NULL) {
2429 rc = prog_sysctl(name, namelen, cp_id, &osz, NULL, 0);
2432 free(cp_id);
2448 display_number(&node, tname, cp_id,
2455 display_number(&node, tname, &cp_id[i],
2462 display_struct(pnode, tname, cp_id, sz, DISPLAY_VALUE);
2469 printf("%d = %" PRIu64, i, cp_id[i]);
2475 free(cp_id);