Lines Matching refs:l
122 #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } argument
124 #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .val… argument
125 #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), … argument
126 #define OPT_BOOLEAN_FLAG(s, l, v, h, f) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name… argument
127 #define OPT_BOOLEAN_SET(s, l, v, os, h) \ argument
128 { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), \
131 #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .va… argument
132 #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l)… argument
133 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), … argument
134 #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), … argument
135 #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l),… argument
136 #define OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .va… argument
137 #define OPT_ULONG(s, l, v, h) { .type = OPTION_ULONG, .short_name = (s), .long_name = (l), .… argument
138 #define OPT_U64(s, l, v, h) { .type = OPTION_U64, .short_name = (s), .long_name = (l), .val… argument
139 #define OPT_STRING(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), … argument
140 #define OPT_STRING_OPTARG(s, l, v, a, h, d) \ argument
141 { .type = OPTION_STRING, .short_name = (s), .long_name = (l), \
144 #define OPT_STRING_OPTARG_SET(s, l, v, os, a, h, d) \ argument
145 { .type = OPTION_STRING, .short_name = (s), .long_name = (l), \
149 #define OPT_STRING_NOEMPTY(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name… argument
150 #define OPT_DATE(s, l, v, h) \ argument
151 …{ .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = "time", .hel…
152 #define OPT_CALLBACK(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_NOOPT(s, l, v, a, h, f) \ argument
155 …{ .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help =…
156 #define OPT_CALLBACK_DEFAULT(s, l, v, a, h, f, d) \ argument
157 …{ .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help =…
158 #define OPT_CALLBACK_DEFAULT_NOOPT(s, l, v, a, h, f, d) \ argument
159 { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l),\
162 #define OPT_CALLBACK_OPTARG(s, l, v, d, a, h, f) \ argument
163 { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), \