Home | History | Annotate | Download | only in ksh

Lines Matching defs:oi

229 	struct options_info *oi = (struct options_info *) arg;
232 oi->opt_width, oi->opts[i].name,
233 Flag(oi->opts[i].flag) ? "on" : "off");
244 struct options_info oi;
250 for (i = n = oi.opt_width = 0; i < (int)NELEM(goptions); i++)
253 oi.opts[n].name = goptions[i].name;
254 oi.opts[n++].flag = i;
255 if (len > oi.opt_width)
256 oi.opt_width = len;
258 print_columns(shl_stdout, n, options_fmt_entry, &oi,
259 oi.opt_width + 5, 1);