Lines Matching defs:qoid
941 int qoid[CTL_MAXNAME+2];
946 qoid[0] = CTL_SYSCTL;
947 qoid[1] = CTL_SYSCTL_OIDFMT;
948 memcpy(qoid + 2, oid, len * sizeof(int));
951 i = sysctl(qoid, len + 2, buf, &j, 0, 0);
970 show_info(char *name, const char *sep, int ctltype, char *fmt, int *qoid, int nlen)
1002 qoid[1] = CTL_SYSCTL_OIDDESCR;
1005 i = sysctl(qoid, nlen + 2, buf, &j, 0, 0);
1028 int qoid[CTL_MAXNAME+2];
1044 qoid[0] = CTL_SYSCTL;
1045 qoid[1] = CTL_SYSCTL_NAME;
1046 memcpy(qoid + 2, oid, nlen * sizeof(int));
1048 i = sysctl(qoid, nlen + 2, name, &j, 0, 0);
1081 return show_info(name, sep, ctltype, fmt, qoid, nlen);