HomeSort by relevance Sort by last modified time
    Searched defs:errstr (Results 1 - 23 of 23) sorted by null

  /external/openssh/openbsd-compat/
strtonum.c 41 const char *errstr; member in struct:errval
64 *errstrp = ev[error].errstr;
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
tst-regex2.c 80 char errstr[300]; local
82 regerror (err, &rbuf, errstr, sizeof (errstr));
83 puts (errstr);
  /external/openssh/
dh.c 48 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)
misc.c 237 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)
scp.c 373 const char *errstr; local
433 &errstr);
434 if (errstr != NULL)
ssh-agent.c 1209 const char *errstr = NULL; local
1217 pid = (int)strtonum(pidstr, 2, INT_MAX, &errstr);
1218 if (errstr) {
1221 SSH_AGENTPID_ENV_NAME, pidstr, errstr);
    [all...]
sftp.c 2090 const char *errstr; local
    [all...]
ssh-keygen.c 1929 const char *errstr; local
    [all...]
  /build/tools/atree/
files.cpp 271 string errstr; local
276 errstr = "Error: you can only specifiy 'rm' or 'strip' once per line.";
282 errstr = "Error: you can only specifiy 'rm' or 'strip' once per line.";
294 errstr = "Error: More than 2 paths per line.";
299 if (pcount == 0 && !errstr.empty()) {
300 errstr = "Error: No path found on line.";
303 if (!errstr.empty()) {
305 filename.c_str(), i+1, p, errstr.c_str());
  /external/libpcap/
pcap-bpf.c 373 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 = "Unknown error"
    [all...]
  /external/libppp/src/
radius.h 58 char *errstr; /* Error-Message */ member in struct:radius
  /external/openssl/apps/
openssl.c 158 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/dnsmasq/src/
tftp.c 501 char *errstr = strerror(errno); local
505 ret += (snprintf(mess->message, 500, message, file, errstr) + 1);
  /external/valgrind/main/exp-sgcheck/
pc_common.c 787 Char* errstr = VG_(get_error_string)(err); local
788 tl_assert(errstr);
789 VG_(snprintf)(buf, nBuf-1, "%s", errstr);
  /external/netcat/
netcat.c 132 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, optarg)
859 const char *errstr; local
    [all...]
  /system/core/toolbox/grep/
grep.c 66 const char *errstr[] = { variable
  /external/llvm/lib/IR/
PassManager.cpp 1395 std::string errstr; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/
SDL_dlcompat.c 199 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/valgrind/main/helgrind/
hg_errors.c 332 HChar* errstr; /* persistent, in tool-arena */ member in struct:__anon17049::__anon17050::__anon17055
352 HChar* errstr; /* persistent, in tool-arena */ member in struct:__anon17049::__anon17050::__anon17057
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,
669 tl_assert(errstr);
673 xe.XE.Misc.errstr = string_table_strdup(errstr);
    [all...]
hg_main.c 1956 HChar* errstr = "Attempt to re-lock a " local
    [all...]
  /external/openssl/ssl/
ssltest.c 422 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);
    [all...]
  /external/valgrind/main/memcheck/
mc_errors.c 1568 Char* errstr = VG_(get_error_string)(err); local
    [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c 2037 transstr errstr; local
    [all...]

Completed in 2123 milliseconds