Searched refs:ostr (Results 1 - 25 of 37) sorted by relevance

12

/netbsd-current/external/bsd/libpcap/dist/missing/
H A Dgetopt.h7 extern int getopt(int nargc, char * const *nargv, const char *ostr);
H A Dgetopt.c59 getopt(int nargc, char * const *nargv, const char *ostr) argument
88 if (opterr && *ostr != ':')
93 oli = strchr(ostr, optopt);
103 if (opterr && *ostr != ':')
118 if (*ostr == ':')
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/asn1/
H A Dasn_moid.c63 const char *ln, *ostr, *p; local
69 ostr = value;
72 ostr = p + 1;
73 if (*ostr == '\0')
75 while (ossl_isspace(*ostr))
76 ostr++;
95 nid = OBJ_create(ostr, name, ln);
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dasn_moid.c63 const char *ln, *ostr, *p; local
69 ostr = value;
72 ostr = p + 1;
73 if (*ostr == '\0')
75 while (ossl_isspace(*ostr))
76 ostr++;
95 nid = OBJ_create(ostr, name, ln);
/netbsd-current/sys/arch/i386/stand/libsa/
H A Dgetopt.c52 getopt(int nargc, char * const *nargv, const char *ostr) argument
70 !(oli = strchr(ostr, optopt))) {
79 if (opterr && *ostr != ':')
93 if (*ostr == ':')
/netbsd-current/sys/arch/ia64/stand/common/
H A Dgetopt.c52 getopt(int nargc, char * const *nargv, const char *ostr) argument
70 !(oli = strchr(ostr, optopt))) {
79 if (opterr && *ostr != ':')
93 if (*ostr == ':')
/netbsd-current/sys/arch/arc/stand/boot/
H A Dgetopt.c52 getopt(int nargc, char * const *nargv, const char *ostr) argument
70 !(oli = strchr(ostr, optopt))) {
79 if (opterr && *ostr != ':')
93 if (*ostr == ':')
/netbsd-current/sys/arch/sgimips/stand/common/
H A Dgetopt.c52 getopt(int nargc, char * const *nargv, const char *ostr) argument
70 !(oli = strchr(ostr, optopt))) {
79 if (opterr && *ostr != ':')
93 if (*ostr == ':')
/netbsd-current/external/bsd/libevent/dist/WIN32-Code/
H A Dgetopt.c84 getopt(nargc, nargv, ostr)
87 const char *ostr;
95 _DIAGASSERT(ostr != NULL);
111 !(oli = strchr(ostr, optopt))) {
120 if (opterr && *ostr != ':')
135 if (*ostr == ':')
H A Dgetopt_long.c75 getopt_internal(nargc, nargv, ostr)
78 const char *ostr;
84 _DIAGASSERT(ostr != NULL);
99 !(oli = strchr(ostr, optopt))) {
108 if (opterr && *ostr != ':')
122 if ((opterr) && (*ostr != ':'))
141 getopt2(nargc, nargv, ostr)
144 const char *ostr;
148 if ((retval = getopt_internal(nargc, nargv, ostr)) == -2) {
/netbsd-current/lib/libc/stdlib/
H A Dgetopt.c63 getopt(int nargc, char * const nargv[], const char *ostr) argument
69 _DIAGASSERT(ostr != NULL);
90 if (strchr(ostr, '-') == NULL)
98 if (optopt == ':' || (oli = strchr(ostr, optopt)) == NULL) {
101 if (opterr && *ostr != ':')
130 if (*ostr == ':')
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dgetopt.c60 getopt(int nargc, char * const *nargv, const char *ostr) argument
79 !(oli = strchr(ostr, optopt))) {
88 if (opterr && *ostr != ':') {
112 if (*ostr == ':')
/netbsd-current/usr.bin/pr/
H A Degetopt.c56 * Non standard additions to the ostr specs are:
73 egetopt(int nargc, char * const *nargv, const char *ostr) argument
111 !(oli = strchr(ostr, eoptopt))) {
118 if (strchr(ostr, '#') && (isdigit(eoptopt) ||
/netbsd-current/external/bsd/pcc/dist/pcc/cc/cxxcom/
H A Dstabs.c292 printtype(struct symtab *s, char *ostr, int len) argument
306 op+=snprintf(ostr+op, len - op, "%d=", st->num);
308 ostr[op++] = 'f';
310 ostr[op++] = '*';
312 op+=snprintf(ostr+op, len - op, "ar%d;0;%d;", INTNUM, df->ddim-1);
323 snprintf(ostr+op, len - op, "%d", st == NULL ? 1 : st->num);
332 char ostr[MAXPSTR]; local
352 printtype(s, ostr, sizeof(ostr));
356 sname, ostr, N_PSY
[all...]
/netbsd-current/external/bsd/pcc/dist/pcc/cc/ccom/
H A Dstabs.c291 printtype(struct symtab *s, char *ostr, int len) argument
305 op+=snprintf(ostr+op, len - op, "%d=", st->num);
307 ostr[op++] = 'f';
309 ostr[op++] = '*';
311 op+=snprintf(ostr+op, len - op, "ar%d;0;%d;", INTNUM, df->ddim-1);
322 snprintf(ostr+op, len - op, "%d", st == NULL ? 1 : st->num);
331 char ostr[MAXPSTR]; local
350 printtype(s, ostr, sizeof(ostr));
354 sname, ostr, N_PSY
[all...]
/netbsd-current/lib/libcurses/
H A Dgetstr.c164 char *ostr, ec, kc; local
167 ostr = str;
182 if (str != ostr) {
207 } else { /* str == ostr */
217 if (str != ostr) {
221 while (str != ostr) {
H A Dget_wstr.c160 wchar_t *ostr, ec, kc, sc[ 2 ]; local
165 ostr = wstr;
185 if (wstr != ostr) {
204 } else { /* str == ostr */
213 if (wstr != ostr) {
217 while (wstr != ostr) {
/netbsd-current/lib/libterminfo/
H A Dtparm.c191 char c, fmt[64], *fp, *ostr; local
343 pop(NULL, &ostr, &stack);
344 if (ostr != NULL) {
347 l = strlen(ostr);
353 fmt, ostr);
359 pop(NULL, &ostr, &stack);
360 if (ostr == NULL)
363 l = strlen(ostr);
/netbsd-current/external/bsd/am-utils/dist/fsinfo/
H A Dfsi_lex.l121 static char ostr[1024];
180 <F>\" { BEGIN Q; optr = ostr; quoted = 1; }
195 yylval.s = xstrdup(ostr);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dincpath.c190 char *ostr; local
208 ostr = concat (relocated_prefix,
211 str = update_path (ostr, p->component);
212 free (ostr);
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dincpath.cc196 char *ostr; local
214 ostr = concat (relocated_prefix,
217 str = update_path (ostr, p->component);
218 free (ostr);
/netbsd-current/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-wasm32.c509 char *ostr; local
515 ostr = str + 1;
533 str = ostr;
/netbsd-current/external/gpl3/binutils/dist/gas/config/
H A Dtc-wasm32.c509 char *ostr; local
515 ostr = str + 1;
533 str = ostr;
/netbsd-current/external/gpl3/gdb.old/dist/gas/config/
H A Dtc-wasm32.c509 char *ostr; local
515 ostr = str + 1;
533 str = ostr;
/netbsd-current/external/bsd/pcc/dist/pcc/cc/cpp/
H A Dcpp.h111 usch *ostr; member in struct:includ

Completed in 206 milliseconds

12