Home | History | Annotate | Download | only in android

Lines Matching defs:OPTION

1 #include "android/cmdline-option.h"
32 #define OPTION(_name,_type,_config) \
37 #define OPT_FLAG(_name,_descr) OPTION(_name,OPTION_IS_FLAG,0)
38 #define OPT_PARAM(_name,_template,_descr) OPTION(_name,OPTION_IS_PARAM,0)
39 #define OPT_LIST(_name,_template,_descr) OPTION(_name,OPTION_IS_LIST,0)
40 #define CFG_FLAG(_name,_descr) OPTION(_name,OPTION_IS_FLAG,1)
41 #define CFG_PARAM(_name,_template,_descr) OPTION(_name,OPTION_IS_PARAM,1)
70 /* anything that isn't an option past this points
79 /* an option cannot contain an underscore */
103 /* NOTE: variable tables map option names to values
107 * instead of dashes. this means that the command-line option
112 * as such, before comparing the current option to the
156 /* parameter/list option */
181 /* flag option */
188 if (oo->name == NULL) { /* unknown option ? */
235 /* special handling of -debug option and tags */