HomeSort by: relevance | last modified time | path
    Searched refs:optarg (Results 1 - 25 of 1029) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/xlint/lint1/
msg_339.c 9 extern char *optarg;
27 while (optarg[0] != '\0')
28 optarg++;
39 switch (optarg[0]) {
msg_338.c 9 extern char *optarg;
27 while (optarg[0] != '\0')
28 optarg++;
39 switch (optarg[0]) {
  /src/external/bsd/pkg_install/dist/create/
main.c 84 CompressionType = optarg;
88 realprefix = optarg;
99 Prefix = optarg;
103 SizePkg = optarg;
107 SizeAll = optarg;
111 Contents = optarg;
115 Comment = optarg;
119 Desc = optarg;
123 DefaultGroup = optarg;
127 Install = optarg;
    [all...]
  /src/external/bsd/libpcap/dist/missing/
getopt.h 4 extern char *optarg; /* getopt(3) external variables */
  /src/external/bsd/nsd/dist/simdzone/compat/
getopt.h 15 extern char *optarg;
getopt.c 30 char *optarg; variable
62 optarg = &argv[optind++][sp + 1];
68 optarg = argv[optind++];
75 optarg = NULL;
  /src/external/bsd/iscsi/dist/src/target/
iscsi-target.c 68 iscsi_target_setvar(&tgt, "blocklen", optarg);
74 iscsi_target_setvar(&tgt, "configfile", optarg);
77 iscsi_target_setvar(&tgt, "target port", optarg);
80 if ((i = atoi(optarg)) > 0 && i < 128) {
81 iscsi_target_setvar(&tgt, "max sessions", optarg);
85 iscsi_target_setvar(&tgt, "iqn", optarg);
92 if (strcmp(optarg, "net") == 0) {
94 } else if (strcmp(optarg, "iscsi") == 0) {
96 } else if (strcmp(optarg, "scsi") == 0) {
98 } else if (strcmp(optarg, "all") == 0)
    [all...]
  /src/usr.bin/hexdump/
hexsyntax.c 84 add(optarg);
87 addfile(optarg);
90 if ((length = atoi(optarg)) < 0)
91 errx(1, "%s: bad length value", optarg);
98 if ((skip = strtol(optarg, &p, 0)) < 0)
99 errx(1, "%s: bad skip value", optarg);
  /src/usr.sbin/btpand/
btpand.c 95 if (!bt_aton(optarg, &remote_bdaddr)) {
98 if ((he = bt_gethostbyname(optarg)) == NULL)
100 optarg, hstrerror(h_errno));
108 control_path = optarg;
112 if (!bt_devaddr(optarg, &local_bdaddr))
113 err(EXIT_FAILURE, "%s", optarg);
118 if (strchr(optarg, '/') == NULL) {
119 asprintf(&ep, "/dev/%s", optarg);
122 interface_name = optarg;
128 ul = strtoul(optarg, &ep, 10)
    [all...]
  /src/external/gpl3/binutils/dist/gprof/
gprof.c 217 if (optarg)
219 sym_id_add (optarg, INCL_ANNO);
235 if (optarg)
237 sym_id_add (optarg, INCL_EXEC);
243 if (optarg)
245 debug_level |= atoi (optarg);
261 sym_id_add (optarg, EXCL_TIME);
264 sym_id_add (optarg, EXCL_GRAPH);
267 sym_id_add (optarg, INCL_TIME);
270 sym_id_add (optarg, INCL_GRAPH)
    [all...]
  /src/external/gpl3/binutils.old/dist/gprof/
gprof.c 217 if (optarg)
219 sym_id_add (optarg, INCL_ANNO);
235 if (optarg)
237 sym_id_add (optarg, INCL_EXEC);
243 if (optarg)
245 debug_level |= atoi (optarg);
261 sym_id_add (optarg, EXCL_TIME);
264 sym_id_add (optarg, EXCL_GRAPH);
267 sym_id_add (optarg, INCL_TIME);
270 sym_id_add (optarg, INCL_GRAPH)
    [all...]
  /src/external/bsd/openldap/dist/include/
getopt-compat.h 30 #define optarg lutil_optarg macro
36 LDAP_LUTIL_V (char *) optarg;
  /src/usr.bin/tset/
tset.c 96 add_mapping("arpanet", optarg);
99 add_mapping("dialup", optarg);
102 erasechar = optarg[0] == '^' && optarg[1] != '\0' ?
103 optarg[1] == '?' ? '\177' : CTRL(optarg[1]) :
104 optarg[0];
113 intrchar = optarg[0] == '^' && optarg[1] != '\0' ?
114 optarg[1] == '?' ? '\177' : CTRL(optarg[1])
    [all...]
  /src/external/bsd/iscsi/dist/src/osd/
osd-target.c 115 device_set_var("directory", optarg);
118 cf = optarg;
121 g.port = (uint16_t) atoi(optarg);
124 (void) strlcpy(TargetName, optarg, sizeof(TargetName));
127 if (strcmp(optarg, "net") == 0) {
129 } else if (strcmp(optarg, "iscsi") == 0) {
131 } else if (strcmp(optarg, "scsi") == 0) {
133 } else if (strcmp(optarg, "osd") == 0) {
135 } else if (strcmp(optarg, "all") == 0) {
  /src/sbin/nvmectl/
perftest.c 105 if (!strcmp(optarg, "refthread"))
109 if (!strcmp(optarg, "bio") ||
110 !strcmp(optarg, "wait"))
112 else if (!strcmp(optarg, "io") ||
113 !strcmp(optarg, "intr"))
118 io_test.num_threads = strtoul(optarg, &p, 0);
122 optarg);
128 optarg);
134 if (!strcmp(optarg, "read") || !strcmp(optarg, "READ")
    [all...]
  /src/libexec/rexecd/unit-tests/
rexec.c 59 host = optarg;
62 user = optarg;
65 pass = optarg;
68 cmd = optarg;
  /src/usr.sbin/mtree/
mtree.c 115 parsetags(&excludetags, optarg);
122 spec1 = fopen(optarg, "r");
124 mtree_err("%s: %s", optarg,
127 spec2 = fopen(optarg, "r");
129 mtree_err("%s: %s", optarg,
136 if (strcmp(optarg, flavors[i].name) == 0) {
147 parsetags(&includetags, optarg);
156 keys |= parsekeys(&optarg);
175 if (! setup_getid(optarg))
178 optarg);
    [all...]
  /src/external/bsd/libevent/dist/WIN32-Code/
getopt.h 13 extern char *optarg; /* argument associated with option */
  /src/external/bsd/ntp/dist/sntp/libevent/WIN32-Code/
getopt.h 14 extern char *optarg; /* argument associated with option */
  /src/external/bsd/tcpdump/dist/missing/
getopt_long.h 63 extern char *optarg; /* getopt(3) external variables */
  /src/usr.bin/getopt/
getopt.c 30 if (optarg != NULL)
31 printf(" -%c %s", c, optarg);
  /src/sys/arch/ews4800mips/stand/common/
inckern.c 52 if ((optarg == 0) || (ifd != stdin))
54 total = strtoul(optarg, 0, 0);
58 if ((optarg == 0) || (total != 0) ||
59 (ifd = fopen(optarg, "r")) == 0)
63 if ((optarg == 0) || (ofd = fopen(optarg, "w")) == 0)
  /src/usr.bin/tip/
cu.c 93 if(strlen(optarg) > 1)
95 useresc = optarg[0];
98 if (strncmp(optarg, "hard", sizeof("hard") - 1 ) == 0)
101 if (strncmp(optarg, "soft",
105 if(strcmp(optarg, "none") != 0)
111 if(strcmp(optarg, "even") == 0)
114 if(strcmp(optarg, "odd") == 0)
117 if(strcmp(optarg, "none") != 0)
124 CU = optarg;
128 PN = optarg;
    [all...]
  /src/sbin/newfs_msdos/
newfs_msdos.c 104 o.offset = argtooff(optarg, "offset");
110 o.bootstrap = optarg;
113 o.create_size = argtooff(optarg, "create size");
116 o.fat_type = atoi(optarg);
119 o.volume_id = argto4(optarg, 0, "volume ID");
123 o.volume_label = optarg;
126 o.OEM_string = optarg;
129 o.bytes_per_sector = argto2(optarg, 1, "bytes/sector");
132 o.sectors_per_fat = argto4(optarg, 1, "sectors/FAT");
135 o.block_size = argtox(optarg, 1, "block size")
    [all...]
  /src/tools/host-mkdep/
host-mkdep.in 78 optarg="${option#?}"
79 option="${option%$optarg}"
90 [ -z "$optarg" ] && {
93 optarg="$1"
96 -f) OUTFILE="$optarg";;
97 -P) PREFIX="$optarg";;
98 -s) NEWEXT="$optarg";;
100 optarg=
103 --) [ -z "$optarg" ] && shift
111 [ -n "$optarg" ]
    [all...]

Completed in 38 milliseconds

1 2 3 4 5 6 7 8 91011>>