/src/lib/libc/regex/ |
regerror.c | 130 regerror(int errcode, 137 int target = errcode &~ REG_ITOA; 141 _DIAGASSERT(errcode != REG_ATOI || preg != NULL); 144 if (errcode == REG_ATOI) { 151 if (errcode®_ITOA) {
|
/src/usr.bin/sed/ |
misc.c | 107 strregerror(int errcode, regex_t *preg) 115 s = regerror(errcode, preg, buf, 0); 117 (void)regerror(errcode, preg, oe, s);
|
/src/sbin/mount_portal/ |
conf.c | 149 int c, errcode; local in function:palloc 208 errcode = regcomp(&p->p_re, p->p_key, REG_EXTENDED|REG_NOSUB); 209 if (errcode == 0) 213 regerror(errcode, &p->p_re, buf, sizeof(buf));
|
/src/bin/sh/ |
error.c | 303 short errcode; /* error number */ member in struct:errname 383 for (ep = errormsg ; ep->errcode ; ep++) { 384 if (ep->errcode == e && (ep->action & action) != 0)
|
/src/sys/dev/ic/ |
adw.c | 328 int errcode = ADW_SUCCESS; local in function:adw_queue_ccb 335 errcode = AdwExeScsiQueue(sc, &ccb->scsiq); 336 switch(errcode) { 356 return(errcode);
|
/src/usr.sbin/mrouted/ |
prune.c | 1956 int errcode = TR_NO_ERR; local in function:accept_mtrace 2056 errcode = TR_WRONG_IF; 2064 errcode = TR_WRONG_IF; 2075 errcode = TR_WRONG_IF; 2113 if (errcode != TR_NO_ERR) { 2114 resp->tr_rflags = errcode;
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_interceptors.inc | 7413 INTERCEPTOR(SIZE_T, regerror, int errcode, const void *preg, char *errbuf, 7416 COMMON_INTERCEPTOR_ENTER(ctx, regerror, errcode, preg, errbuf, errbuf_size); 7419 SIZE_T res = REAL(regerror)(errcode, preg, errbuf, errbuf_size);
|