Searched refs:newopt (Results 1 – 2 of 2) sorted by relevance
/freebsd/usr.sbin/config/ |
H A D | config.y | 101 static void newopt(struct opt_head *list, char *name, char *value, int append, int dupe); 209 Save_id { newopt(&mkopt, ns("KERNEL"), $1, 0, 0); }; 229 newopt(&opt, $1, NULL, 0, 1); 235 newopt(&opt, $1, $3, 0, 1); 263 Save_id { newopt(&mkopt, $1, ns(""), 0, 0); } | 264 Save_id EQUALS { newopt(&mkopt, $1, ns(""), 0, 0); } | 265 Save_id EQUALS Opt_value { newopt(&mkopt, $1, $3, 0, 0); } | 266 Save_id PLUSEQUALS Opt_value { newopt(&mkopt, $1, $3, 1, 0); } ; 292 newopt(&opt, devopt($1), ns("1"), 0, 0); 448 newopt(struct opt_head *list, char *name, char *value, int append, int dupe) in newopt() function
|
/freebsd/sbin/mount/ |
H A D | mount.c | 808 char *expopt, *newopt, *tmpopt; in update_options() local 838 newopt = NULL; in update_options() 845 remopt(newopt, tmpopt); in update_options() 849 remopt(newopt, o+2); in update_options() 851 newopt = catopt(newopt, o); in update_options() 855 return (newopt); in update_options()
|