Lines Matching refs:ol
56 struct opt_list *ol; in options() local
88 for (ol = otab; ol != NULL; ol = ol->o_next) in options()
89 do_option(ol->o_name); in options()
108 struct opt_list *ol; in do_option() local
152 for (ol = otab; ol != NULL; ol = ol->o_next) in do_option()
153 if (strcmp(name, ol->o_name) == 0) { in do_option()
154 basefile = ol->o_file; in do_option()
182 for (ol = otab; ol != NULL; ol = ol->o_next) in do_option()
183 if (strcmp(inw, ol->o_name) == 0) in do_option()
185 if (strcmp(inw, name) != 0 && ol == NULL) { in do_option()
189 } else if (ol != NULL && strcmp(basefile, ol->o_file) != 0) { in do_option()
191 inw, basefile, ol->o_file); in do_option()