Lines Matching refs:a
137 …STRING(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = ch… argument
138 #define OPT_STRING_OPTARG(s, l, v, a, h, d) \ argument
140 .value = check_vtype(v, const char **), .argh =(a), .help = (h), \
142 #define OPT_STRING_OPTARG_SET(s, l, v, os, a, h, d) \ argument
144 .value = check_vtype(v, const char **), .argh = (a), .help = (h), \
147 …OEMPTY(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = ch… argument
150 #define OPT_CALLBACK(s, l, v, a, h, f) \ argument
151 …{ .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help =…
152 #define OPT_CALLBACK_NOOPT(s, l, v, a, h, f) \ argument
153 …{ .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help =…
154 #define OPT_CALLBACK_DEFAULT(s, l, v, a, h, f, d) \ argument
155 …{ .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help =…
156 #define OPT_CALLBACK_DEFAULT_NOOPT(s, l, v, a, h, f, d) \ argument
158 .value = (v), .arg = (a), .help = (h), .callback = (f), .defval = (intptr_t)d,\
160 #define OPT_CALLBACK_OPTARG(s, l, v, d, a, h, f) \ argument
162 .value = (v), .argh = (a), .help = (h), .callback = (f), \