Lines Matching refs:h
110 #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } argument
111 #define OPT_GROUP(h) { .type = OPTION_GROUP, .help = (h) } argument
112 …ne OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value =… argument
113 …PT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value =… argument
114 …EAN_FLAG(s, l, v, h, f) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value … argument
115 #define OPT_BOOLEAN_SET(s, l, v, os, h) \ argument
117 .value = check_vtype(v, bool *), .help = (h), \
119 …e OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .value =… argument
120 …_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l), .value = che… argument
121 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), … argument
122 …PT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), .value =… argument
123 …NTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l), .value = che… argument
124 …e OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .value =… argument
125 …ne OPT_U64(s, l, v, h) { .type = OPTION_U64, .short_name = (s), .long_name = (l), .value =… argument
126 …NG(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = check_… argument
127 #define OPT_STRING_OPTARG(s, l, v, a, h, d) \ argument
129 .value = check_vtype(v, const char **), (a), .help = (h), \
131 …TY(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = check_… argument
132 #define OPT_DATE(s, l, v, h) \ argument
133 ….short_name = (s), .long_name = (l), .value = (v), .argh = "time", .help = (h), .callback = parse_…
134 #define OPT_CALLBACK(s, l, v, a, h, f) \ argument
135 …{ .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), (a), .help = (h), .c…
136 #define OPT_CALLBACK_NOOPT(s, l, v, a, h, f) \ argument
137 …{ .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), (a), .help = (h), .c…
138 #define OPT_CALLBACK_DEFAULT(s, l, v, a, h, f, d) \ argument
139 …{ .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), (a), .help = (h), .c…
140 #define OPT_CALLBACK_DEFAULT_NOOPT(s, l, v, a, h, f, d) \ argument
142 .value = (v), (a), .help = (h), .callback = (f), .defval = (intptr_t)d,\
144 #define OPT_CALLBACK_OPTARG(s, l, v, d, a, h, f) \ argument
146 .value = (v), (a), .help = (h), .callback = (f), \