Home
last modified time | relevance | path

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

/linux-6.1.9/tools/lib/subcmd/
Dparse-options.h118 #define check_vtype(v, type) ( BUILD_BUG_ON_ZERO(!__builtin_types_compatible_p(typeof(v), type)) + … macro
124 … { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .hel…
125 … .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = check_vtype(v, bool *), .he…
126 … .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = check_vtype(v, bool *), .he…
129 .value = check_vtype(v, bool *), .help = (h), \
130 .set = check_vtype(os, bool *)}
131 … { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .hel…
132 ….type = OPTION_SET_UINT, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int…
134 … .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .hel…
135 ….type = OPTION_UINTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int…
[all …]