Lines Matching refs:option
29 #define IS_ENABLED(option) config_enabled(option, 0) argument
61 #define CONFIG_VAL(option) config_val(option) argument
84 #define IF_ENABLED_INT(option, int_option) \ argument
85 config_opt_enabled(option, int_option, invalid_use_of_IF_ENABLED_INT())
101 #define __CONFIG_IS_ENABLED_1(option) __CONFIG_IS_ENABLED_3(option, (1), (0)) argument
102 #define __CONFIG_IS_ENABLED_2(option, case1) __CONFIG_IS_ENABLED_3(option, case1, ()) argument
103 #define __CONFIG_IS_ENABLED_3(option, case1, case0) \ argument
104 __concat(__unwrap, config_enabled(CONFIG_VAL(option), 0)) (case1, case0)
138 #define CONFIG_IS_ENABLED(option, ...) \ argument
139 __concat(__CONFIG_IS_ENABLED_, __count_args(option, ##__VA_ARGS__)) (option, ##__VA_ARGS__)
154 #define CONFIG_IF_ENABLED_INT(option, int_option) \ argument
155 CONFIG_IS_ENABLED(option, (CONFIG_VAL(int_option)), \