Searched refs:check_vtype (Results 1 – 1 of 1) sorted by relevance
/external/linux-tools-perf/util/ |
D | parse-options.h | 109 #define check_vtype(v, type) ( BUILD_BUG_ON_ZERO(!__builtin_types_compatible_p(typeof(v), type)) + … macro 114 … { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .hel… 115 … .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = check_vtype(v, bool *), .he… 116 … { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .hel… 117 ….type = OPTION_SET_UINT, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int… 119 … .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .hel… 120 ….type = OPTION_UINTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int… 121 … { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .value = check_vtype(v, long *), .he… 122 … { .type = OPTION_U64, .short_name = (s), .long_name = (l), .value = check_vtype(v, u64 *), .hel… 123 … .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = check_vtype(v, const char *…
|