Searched refs:qoid (Results 1 - 4 of 4) sorted by relevance

/freebsd-current/usr.bin/systat/
H A Diolat.c87 int qoid[CTL_MAXNAME + 2]; local
92 qoid[0] = CTL_SYSCTL;
93 qoid[1] = CTL_SYSCTL_NAME;
94 memcpy(qoid + 2, oid, nlen * sizeof(int));
96 i = sysctl(qoid, nlen + 2, name, &j, 0, 0);
105 int qoid[CTL_MAXNAME+2]; local
110 qoid[0] = CTL_SYSCTL;
111 qoid[1] = CTL_SYSCTL_OIDFMT;
112 memcpy(qoid + 2, oid, len * sizeof(int));
115 i = sysctl(qoid, le
227 int qoid[CTL_MAXNAME + 2], oid[CTL_MAXNAME]; local
[all...]
/freebsd-current/sbin/sysctl/
H A Dsysctl.c935 int qoid[CTL_MAXNAME+2]; local
940 qoid[0] = CTL_SYSCTL;
941 qoid[1] = CTL_SYSCTL_OIDFMT;
942 memcpy(qoid + 2, oid, len * sizeof(int));
945 i = sysctl(qoid, len + 2, buf, &j, 0, 0);
964 show_info(char *name, const char *sep, int ctltype, char *fmt, int *qoid, int nlen) argument
996 qoid[1] = CTL_SYSCTL_OIDDESCR;
999 i = sysctl(qoid, nlen + 2, buf, &j, 0, 0);
1022 int qoid[CTL_MAXNAME+2]; local
1038 qoid[
[all...]
/freebsd-current/sys/kern/
H A Dkern_sysctl.c2876 int qoid[CTL_MAXNAME + 2]; local
2879 qoid[0] = CTL_SYSCTL;
2880 qoid[1] = CTL_SYSCTL_NAME;
2881 memcpy(qoid + 2, oid, nlen * sizeof(int));
2883 error = sysctl_find_oid(qoid, nlen + 2, &oidp, NULL, NULL);
2887 error = db_sysctl(oidp, qoid, nlen + 2, NULL, NULL, NULL, 0);
2967 int qoid[CTL_MAXNAME + 2], next[CTL_MAXNAME]; local
2970 qoid[0] = CTL_SYSCTL;
2971 qoid[1] = CTL_SYSCTL_NEXT;
2974 memcpy(&qoid[
[all...]
/freebsd-current/usr.bin/truss/
H A Dsyscalls.c1547 int qoid[CTL_MAXNAME + 2]; local
1550 qoid[0] = CTL_SYSCTL;
1551 qoid[1] = CTL_SYSCTL_NAME;
1552 memcpy(qoid + 2, oid, len * sizeof(int));
1554 if (sysctl(qoid, len + 2, name, &i, 0, 0) == -1)

Completed in 203 milliseconds