Symbol: optstring
bin/pax/getoldopt.c
22
getoldopt(int argc, char **argv, const char *optstring)
bin/pax/getoldopt.c
42
return (getopt(argc, argv, optstring));
bin/pax/getoldopt.c
49
place = strchr(optstring, c);
regress/lib/libc/getopt/getopt-test.c
34
char *optstring;
regress/lib/libc/getopt/getopt-test.c
37
if ((optstring = getenv("OPTS")) == NULL)
regress/lib/libc/getopt/getopt-test.c
38
optstring = "";
regress/lib/libc/getopt/getopt-test.c
41
while ((ch = getopt(argc, argv, optstring)) != -1) {
regress/lib/libfuse/fuse-opt-parse.c
114
assert(data.optstring == NULL);
regress/lib/libfuse/fuse-opt-parse.c
150
assert(data.optstring == NULL);
regress/lib/libfuse/fuse-opt-parse.c
203
assert(strcmp(data.optstring, "optstring") == 0);
regress/lib/libfuse/fuse-opt-parse.c
262
assert(strcmp(data.optstring, "optstring") == 0);
regress/lib/libfuse/fuse-opt-parse.c
28
char *optstring;
regress/lib/libfuse/fuse-opt-parse.c
51
DATA_OPT("optstring=%s", optstring, 0),
sbin/kbd/main.c
55
char *optstring = "lq";
sbin/kbd/main.c
58
while ((ch = getopt(argc, argv, optstring)) != -1)
usr.bin/dig/host.c
552
static const char * optstring = "46ac:dilnrst:vVwCDN:R:TW:";
usr.bin/dig/host.c
564
while ((c = getopt(argc, argv, optstring)) != -1) {
usr.bin/dig/host.c
627
while ((c = getopt(argc, argv, optstring)) != -1) {
usr.bin/less/option.c
150
s = optstring(s, &str, propt('+'), NULL, 0);
usr.bin/less/option.c
27
static char *optstring(char *, char **, char *, char *, int);
usr.bin/less/option.c
293
s = optstring(s, &str, printopt, o->odesc[1], env);
usr.bin/snmp/snmpc.c
158
if (snmp_app->optstring != NULL) {
usr.bin/snmp/snmpc.c
159
if (strlcpy(optstr, snmp_app->optstring,
usr.bin/snmp/snmpc.c
69
const char *optstring;
usr.bin/tput/tput.c
100
if (optstring != NULL) {
usr.bin/tput/tput.c
105
if (strchr(optstring, s[3]) == NULL)
usr.bin/tput/tput.c
79
usage(const char *optstring)
usr.sbin/eeprom/main.c
60
char *optstring = "f:pv-";
usr.sbin/eeprom/main.c
62
while ((ch = getopt(argc, argv, optstring)) != -1)
usr.sbin/httpd/parse.y
1314
filter : block RETURN NUMBER optstring {
usr.sbin/httpd/parse.y
1358
optstring : /* empty */ { $$ = NULL; }
usr.sbin/httpd/parse.y
167
%type <v.string> numberstring optstring
usr.sbin/radiusd/parse.y
109
%type <v.string> optstring
usr.sbin/radiusd/parse.y
287
module : MODULE STRING optstring {
usr.sbin/radiusd/parse.y
305
| MODULE STRING optstring {
usr.sbin/radiusd/parse.y
562
optstring : { $$ = NULL; }
usr.sbin/vmd/parse.y
137
%type <v.string> optstring
usr.sbin/vmd/parse.y
430
| local INTERFACE optstring iface_opts_o {
usr.sbin/vmd/parse.y
718
optstring : STRING { $$ = $1; }