Searched defs:wordv (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/error/common/
H A Derrorpi.c168 isdateformat(int wordc, char **wordv) argument
171 (instringset(wordv[0], Days)) &&
172 (instringset(wordv[1], Months)) &&
173 (alldigits(wordv[2])) && (alldigits(wordv[4])));
192 extern char **wordv;
201 if ((strlen(wordv[1]) == 1) &&
202 ((wordv[1][0] == 'e') || (wordv[1][0] == 'E')) &&
203 (piptr(wordv[
[all...]
H A Derrorinput.c37 char **wordv; /* the actual error message */ variable
74 wordvbuild(inbuffer, &wordc, &wordv);
76 * for convenience, convert wordv to be 1 based, instead
79 wordv -= 1;
106 erroradd(wordc, wordv+1, errorclass, C_UNKNOWN);
173 if (wordv[1] != NULL && strcmp(wordv[1], "Stop.") == 0) {
177 if (wordv[1] != NULL) {
178 if (strcmp(wordv[1], "Assembler:") == 0) {
185 } else if (strcmp(wordv[
[all...]
H A Derrorsubr.c267 wordvprint(FILE *fyle, int wordc, char *wordv[]) argument
273 if (wordv[i]) {
274 (void) fprintf(fyle, "%s%s", sep, wordv[i]);
281 * a wordc wordv combination pointing into it.
288 char **wordv; local
301 wordv = Calloc(wordcount + 1, sizeof (char *));
308 wordv[wordindex] = cp;
315 wordv[wordindex] = NULL;
319 wordv[wordcount]);
323 *r_wordv = wordv;
349 wordvsplice(int emptyhead, int wordc, char **wordv) argument
[all...]

Completed in 90 milliseconds