Home
last modified time | relevance | path

Searched refs:newopt (Results 1 – 2 of 2) sorted by relevance

/freebsd-14-stable/usr.sbin/config/
HDconfig.y100 static void newopt(struct opt_head *list, char *name, char *value, int append, int dupe);
204 Save_id { newopt(&mkopt, ns("KERNEL"), $1, 0, 0); };
224 newopt(&opt, $1, NULL, 0, 1);
230 newopt(&opt, $1, $3, 0, 1);
258 Save_id { newopt(&mkopt, $1, ns(""), 0, 0); } |
259 Save_id EQUALS { newopt(&mkopt, $1, ns(""), 0, 0); } |
260 Save_id EQUALS Opt_value { newopt(&mkopt, $1, $3, 0, 0); } |
261 Save_id PLUSEQUALS Opt_value { newopt(&mkopt, $1, $3, 1, 0); } ;
287 newopt(&opt, devopt($1), ns("1"), 0, 0);
428 newopt(struct opt_head *list, char *name, char *value, int append, int dupe) in newopt() function
/freebsd-14-stable/sbin/mount/
HDmount.c817 char *expopt, *newopt, *tmpopt; in update_options() local
847 newopt = NULL; in update_options()
854 remopt(newopt, tmpopt); in update_options()
858 remopt(newopt, o+2); in update_options()
860 newopt = catopt(newopt, o); in update_options()
864 return (newopt); in update_options()