Searched refs:place (Results 1 - 25 of 71) sorted by relevance

123

/freebsd-11-stable/stand/libsa/
H A Dgetopt.c57 static char *place = EMSG; /* option letter processing */ local
60 if (optreset || !*place) { /* update scanning pointer */
62 if (optind >= nargc || *(place = nargv[optind]) != '-') {
63 place = EMSG;
66 if (place[1] && *++place == '-') { /* found "--" */
68 place = EMSG;
72 if ((optopt = (int)*place++) == (int)':' ||
80 if (!*place)
88 if (!*place)
[all...]
/freebsd-11-stable/usr.bin/pr/
H A Degetopt.c77 static char *place = emsg; /* option letter processing */ local
84 *place = savec;
88 if (!*place) {
93 ((*(place = nargv[eoptind]) != '-') && (*place != '+'))) {
94 place = emsg;
98 delim = (int)*place;
99 if (place[1] && *++place == '-' && !place[
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dargs.d30 probe place(int i, int j);
H A Dargmap.d30 probe place(int i, int j) : (int j, int i, int i, int j);
H A Dtst.argmap.c35 DTRACE_PROBE2(test_prov, place, 10, 4);
H A Dtst.args.c35 DTRACE_PROBE2(test_prov, place, 10, 4);
H A Dtst.args.d43 test_prov$1:::place
49 test_prov$1:::place
H A Dtst.argmap.d39 test_prov$1:::place
47 test_prov$1:::place
55 test_prov$1:::place
/freebsd-11-stable/lib/libc/stdlib/
H A Dgetopt.c64 static char *place = EMSG; /* option letter processing */ local
67 if (optreset || *place == 0) { /* update scanning pointer */
69 place = nargv[optind];
70 if (optind >= nargc || *place++ != '-') {
72 place = EMSG;
75 optopt = *place++;
76 if (optopt == '-' && *place == 0) {
79 place = EMSG;
85 place = EMSG;
91 optopt = *place
[all...]
H A Dgetopt_long.c107 static char *place = EMSG; /* option letter processing */ variable
202 current_argv = place;
391 if (optreset || !*place) { /* update scanning pointer */
394 place = EMSG;
411 if (*(place = nargv[optind]) != '-' ||
413 place[1] == '\0') {
415 (place[1] == '\0' && strchr(options, '-') == NULL)) {
417 place = EMSG; /* found non-option */
453 if (place[1] != '\0' && *++place
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dcommandline.c100 static char *place = ENDOPT; local
109 if (isc_commandline_reset || *place == '\0') {
119 *(place = argv[isc_commandline_index]) != '-') {
123 place = ENDOPT;
127 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') {
133 place = ENDOPT;
138 isc_commandline_option = *place++;
147 if (*place
[all...]
/freebsd-11-stable/contrib/smbfs/lib/smb/
H A Dcfopt.c59 static const char *place = EMSG; /* option letter processing */ local
63 if (cf_optreset || !*place) { /* update scanning pointer */
68 place = EMSG;
71 if (*(place = nargv[tmpind]) != '-') {
75 if (place[1] && *++place == '-') { /* found "--" */
77 place = EMSG;
84 if ((cf_optopt = (int)*place++) == (int)':' ||
92 if (!*place)
101 if (!*place)
[all...]
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dgetopt.c60 static char *place = EMSG; /* option letter processing */ local
64 if (optreset || !*place) { /* update scanning pointer */
66 if (optind >= nargc || *(place = nargv[optind]) != '-') {
67 place = EMSG;
70 if (place[1] && *++place == '-') { /* found "--" */
72 place = EMSG;
76 if ((optopt = (int)*place++) == (int)':' ||
84 if (!*place)
98 if (!*place)
[all...]
/freebsd-11-stable/contrib/libpcap/missing/
H A Dgetopt.c63 static char *place = EMSG; /* option letter processing */ local
72 if (optreset || !*place) { /* update scanning pointer */
74 if (optind >= nargc || *(place = nargv[optind]) != '-') {
75 place = EMSG;
78 if (place[1] && *++place == '-') { /* found "--" */
80 place = EMSG;
84 if ((optopt = (int)*place++) == (int)':' ||
92 if (!*place)
101 if (!*place)
[all...]
/freebsd-11-stable/contrib/bmake/
H A Dgetopt.c61 static const char *place = EMSG; /* option letter processing */ local
73 if (optreset || *place == 0) { /* update scanning pointer */
75 place = nargv[optind];
76 if (optind >= nargc || *place++ != '-') {
78 place = EMSG;
81 optopt = *place++;
82 if (optopt == '-' && *place == 0) {
85 place = EMSG;
91 place = EMSG;
97 optopt = *place
[all...]
/freebsd-11-stable/contrib/ntp/libntp/
H A Dgetopt.c60 register const char *place; local
87 for (place = optstring; place != NULL && *place != '\0'; ++place)
88 if (*place == c)
91 if (place == NULL || *place == '\0' || c == ':' || c == '?') {
95 place++;
96 if (*place
[all...]
/freebsd-11-stable/bin/pax/
H A Dgetoldopt.c30 char *place; local
52 place = strchr(optstring, c);
54 if (place == NULL || c == ':') {
59 place++;
60 if (*place == ':') {
/freebsd-11-stable/contrib/tcpdump/missing/
H A Dgetopt_long.c92 static const char *place = EMSG; /* option letter processing */ variable
199 current_argv = place;
392 if (!*place) { /* update scanning pointer */
394 place = EMSG;
411 if (*(place = nargv[optind]) != '-' ||
413 place[1] == '\0') {
415 (place[1] == '\0' && strchr(options, '-') == NULL)) {
417 place = EMSG; /* found non-option */
453 if (place[1] != '\0' && *++place
[all...]
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dgetopt_long.c101 static char *place = EMSG; /* option letter processing */ variable
183 current_argv = place;
328 if (optreset || !*place) { /* update scanning pointer */
331 place = EMSG;
348 if (*(place = nargv[optind]) != '-' ||
349 (place[1] == '\0' && strchr(options, '-') == NULL)) {
350 place = EMSG; /* found non-option */
386 if (place[1] != '\0' && *++place == '-' && place[
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DGetOptInc.cpp47 static const char *place = EMSG; /* option letter processing */ variable
119 current_argv = const_cast<char *>(place);
257 if (optreset || !*place) { /* update scanning pointer */
260 place = EMSG;
275 if (*(place = nargv[optind]) != '-' ||
276 (place[1] == '\0' && strchr(options, '-') == NULL)) {
277 place = EMSG; /* found non-option */
311 if (place[1] != '\0' && *++place == '-' && place[
[all...]
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dia64-opc.c312 opcode_verify (ia64_insn opcode, int place, enum ia64_insn_type type)
314 if (main_table[place].opcode_type != type)
318 if (main_table[place].flags
324 if (main_table[place].flags & IA64_OPCODE_F2_EQ_F3)
339 o2 = elf64_ia64_operands + main_table[place].operands[2];
482 int place = ia64_dis_names[disent].insn_index;
486 if (opcode_verify (opcode, place, type)
537 make_ia64_opcode (ia64_insn opcode, const char *name, int place, int depind)
542 res->type = main_table[place].opcode_type;
543 res->num_outputs = main_table[place]
305 opcode_verify(ia64_insn opcode, int place, enum ia64_insn_type type) argument
474 int place = ia64_dis_names[disent].insn_index; local
528 make_ia64_opcode(ia64_insn opcode, const char *name, int place, int depind) argument
563 int place = ia64_dis_names[disent].insn_index; local
610 ia64_find_matching_opcode(const char *name, short place) argument
688 short place; local
[all...]
/freebsd-11-stable/contrib/apr/misc/unix/
H A Dgetopt.c51 (*os)->place = EMSG;
76 if (os->reset || !*os->place) { /* update scanning pointer */
78 if (os->ind >= os->argc || *(os->place = os->argv[os->ind]) != '-') {
79 os->place = EMSG;
83 if (os->place[1] && *++os->place == '-') { /* found "--" */
85 os->place = EMSG;
90 if ((os->opt = (int) *os->place++) == (int) ':' ||
100 if (!*os->place)
111 if (!*os->place)
[all...]
/freebsd-11-stable/contrib/groff/src/preproc/pic/
H A Dposition.h21 struct place;
27 position(const place &);
H A Dobject.h22 struct place;
61 virtual place *find_label(const char *);
72 struct place { struct
93 int follow(const place &, place *) const;
104 declare_ptable(place)
121 PTABLE(place) *tbl;
175 PTABLE(place) *tbl;
/freebsd-11-stable/contrib/file/src/
H A Dgetopt_long.c96 static const char *place = EMSG; /* option letter processing */ variable
201 if (optreset || !*place) { /* update scanning pointer */
204 place = EMSG;
221 if ((*(place = nargv[optind]) != '-')
222 || (place[1] == '\0')) { /* found non-option */
223 place = EMSG;
255 if (place[1] && *++place == '-') { /* found "--" */
256 place++;
260 if ((optchar = (int)*place
[all...]

Completed in 118 milliseconds

123