Searched refs:errstr (Results 1 - 25 of 42) sorted by relevance

12

/external/openssh/openbsd-compat/
H A Dstrtonum.c41 const char *errstr; member in struct:errval
64 *errstrp = ev[error].errstr;
/external/netcat/
H A Dnetcat.c132 const char *errstr, *proxyhost = "", *proxyport = NULL; local
175 iflag = strtonum(optarg, 0, UINT_MAX, &errstr);
176 if (errstr)
177 errx(1, "interval %s: %s", errstr, optarg);
215 RT_TABLEID_MAX, &errstr);
216 if (errstr)
217 errx(1, "rtable %s: %s", errstr, optarg);
227 timeout = strtonum(optarg, 0, INT_MAX / 1000, &errstr);
228 if (errstr)
229 errx(1, "timeout %s: %s", errstr, optar
859 const char *errstr; local
[all...]
/external/openssh/
H A Ddh.c48 const char *errstr = NULL; local
67 n = strtonum(arg, 0, 5, &errstr);
68 if (errstr != NULL || n != MODULI_TYPE_SAFE)
74 n = strtonum(arg, 0, 0x1f, &errstr);
75 if (errstr != NULL ||
81 n = strtonum(arg, 0, 1<<30, &errstr);
82 if (errstr != NULL || n == 0)
86 (dhg->size = (int)strtonum(strsize, 0, 64*1024, &errstr)) == 0 ||
87 errstr)
H A Dssh-keygen.c1929 const char *errstr; local
1962 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
1963 if (errstr)
1965 optarg, errstr);
2078 UINT_MAX, &errstr);
2079 if (errstr)
2081 optarg, errstr);
2084 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
2085 if (errstr)
2087 optarg, errstr);
[all...]
H A Dmisc.c237 const char *errstr; local
239 port = strtonum(s, 0, 65535, &errstr);
240 if (errstr != NULL)
248 const char *errstr = NULL; local
269 tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr);
270 if (errstr != NULL)
H A Dssh-agent.c1209 const char *errstr = NULL; local
1217 pid = (int)strtonum(pidstr, 2, INT_MAX, &errstr);
1218 if (errstr) {
1221 SSH_AGENTPID_ENV_NAME, pidstr, errstr);
H A Dscp.c373 const char *errstr; local
433 &errstr);
434 if (errstr != NULL)
H A Dsftp.c2090 const char *errstr; local
2179 &errstr);
2180 if (errstr != NULL)
/external/qemu/distrib/sdl-1.2.15/src/
H A DSDL_error.c118 char *SDL_GetErrorMsg(char *errstr, unsigned int maxlen) argument
123 *errstr = '\0'; --maxlen;
129 char *msg = errstr;
183 return(errstr);
/external/valgrind/main/helgrind/
H A Dhg_errors.h66 void HG_(record_error_Misc_w_aux) ( Thread*, HChar* errstr,
68 void HG_(record_error_Misc) ( Thread* thr, HChar* errstr );
H A Dhg_errors.c332 HChar* errstr; /* persistent, in tool-arena */ member in struct:__anon28436::__anon28437::__anon28442
352 HChar* errstr; /* persistent, in tool-arena */ member in struct:__anon28436::__anon28437::__anon28444
645 Word err, HChar* errstr )
650 tl_assert(errstr);
656 xe.XE.PthAPIerror.errstr = string_table_strdup(errstr);
664 void HG_(record_error_Misc_w_aux) ( Thread* thr, HChar* errstr, argument
669 tl_assert(errstr);
673 xe.XE.Misc.errstr = string_table_strdup(errstr);
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
H A Derrwarn.pxi31 cdef char *errstr, *xrefstr
64 yasm_error_fetch(&errclass, &errstr, &xrefline, &xrefstr)
67 PyErr_Format(exception, "%s: %d: %s", errstr, xrefline, xrefstr)
69 PyErr_SetString(exception, errstr)
72 free(errstr)
/external/libpcap/
H A Dpcap-bpf.c373 char *errstr; local
376 if (odm_err_msg(odmerrno, &errstr) == -1)
377 errstr = "Unknown error";
380 errstr);
385 if (odm_err_msg(odmerrno, &errstr) == -1)
386 errstr = "Unknown error";
389 errstr);
399 char *errstr; local
402 if (odm_err_msg(odmerrno, &errstr) == -1)
403 errstr
[all...]
/external/chromium_org/third_party/openssl/openssl/apps/
H A Dopenssl.c158 const char *errstr = NULL; local
164 errstr = "invalid mode";
170 errstr = "type out of bounds";
178 errstr = "already locked";
190 errstr = "not locked";
196 errstr = (rw == CRYPTO_READ) ?
205 errstr = "invalid mode";
210 if (errstr)
214 errstr, mode, type, file, line);
/external/openssl/apps/
H A Dopenssl.c158 const char *errstr = NULL; local
164 errstr = "invalid mode";
170 errstr = "type out of bounds";
178 errstr = "already locked";
190 errstr = "not locked";
196 errstr = (rw == CRYPTO_READ) ?
205 errstr = "invalid mode";
210 if (errstr)
214 errstr, mode, type, file, line);
/external/libppp/src/
H A Dradius.h58 char *errstr; /* Error-Message */ member in struct:radius
H A Dradius.c535 free(r->errstr);
537 r->errstr = NULL;
549 if ((r->errstr = rad_cvt_string((const char *)data,
558 " MS-CHAP-Error \"%s\"\n", r->errstr);
780 r->errstr = NULL;
814 free(r->errstr);
815 r->errstr = NULL;
1320 prompt_Printf(p, " Error Message: %s\n", r->errstr ? r->errstr : "");
H A Dchap.c598 if (*bundle->radius.cfg.file && bundle->radius.errstr)
599 msg = bundle->radius.errstr;
/external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/
H A DSDL_dlcompat.c199 char errstr[ERR_STR_LEN]; member in struct:dlthread
288 err_str = tss->errstr;
779 const char *errstr; local
844 NSLinkEditError(&ler, &lerno, &file, &errstr);
845 if (!errstr || (!SDL_strlen(errstr)))
848 error(errstr);
870 NSLinkEditError(&ler, &lerno, &file, &errstr);
875 error(errstr);
1181 err_str = tss->errstr;
[all...]
/external/chromium_org/third_party/openssl/openssl/
H A DApps-config.mk49 apps/errstr.c \
/external/openssl/
H A DApps-config.mk49 apps/errstr.c \
/external/chromium_org/third_party/openssl/openssl/ssl/
H A Dssltest.c422 const char *errstr = NULL; local
428 errstr = "invalid mode";
434 errstr = "type out of bounds";
442 errstr = "already locked";
454 errstr = "not locked";
460 errstr = (rw == CRYPTO_READ) ?
469 errstr = "invalid mode";
474 if (errstr)
478 errstr, mode, type, file, line);
/external/openssl/ssl/
H A Dssltest.c422 const char *errstr = NULL; local
428 errstr = "invalid mode";
434 errstr = "type out of bounds";
442 errstr = "already locked";
454 errstr = "not locked";
460 errstr = (rw == CRYPTO_READ) ?
469 errstr = "invalid mode";
474 if (errstr)
478 errstr, mode, type, file, line);
/external/dnsmasq/src/
H A Dtftp.c501 char *errstr = strerror(errno); local
505 ret += (snprintf(mess->message, 500, message, file, errstr) + 1);
/external/valgrind/main/exp-sgcheck/
H A Dpc_common.c787 Char* errstr = VG_(get_error_string)(err); local
788 tl_assert(errstr);
789 VG_(snprintf)(buf, nBuf-1, "%s", errstr);

Completed in 484 milliseconds

12