Home | History | Annotate | Download | only in sysctl

Lines Matching refs:list

11  *    notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
72 struct list {
73 struct ctlname *list;
76 struct list pclist = { pcnames, PC_MAXID };
128 * List all variables known to the system.
132 struct list *lp;
136 if (lp->list == 0)
139 if (lp->list[lvl2].ctl_name == 0)
141 parse(path, lp->list[lvl2].ctl_name, Aflag);
195 * Scan a list of names searching for a particular name.
201 struct list *namelist;
206 if (namelist->list == 0 || (name = strsep(bufp, ".")) == NULL) {
211 if (namelist->list[i].ctl_name != NULL &&
212 strcmp(name, namelist->list[i].ctl_name) == 0)