Searched refs:errstr (Results 51 - 75 of 103) sorted by relevance

12345

/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/sample/
H A Dsample-client.c337 sasldebug(int why, const char *what, const char *errstr) argument
343 if (errstr)
344 fprintf(stderr, " (%s)\n", errstr);
350 saslfail(int why, const char *what, const char *errstr) argument
352 sasldebug(why, what, errstr);
/macosx-10.9.5/sudo-72/src/
H A Dlogging.c753 char *errstr = NULL; local
762 errstr = strerror(serrno);
763 len += strlen(errstr) + 3;
801 strlcat(line, errstr ? " : " : " ; ", len) >= len)
805 if (strlcat(line, errstr, len) >= len ||
/macosx-10.9.5/BerkeleyDB-21/db/examples_cxx/wce_tpcb/
H A DTpcbUI.cpp468 void tpcb_errcallback(const DB_ENV *, const char *errpfx, const char *errstr) argument
472 MultiByteToWideChar(CP_ACP, 0, errstr, strlen(errstr),
/macosx-10.9.5/apache-786.1/httpd/support/
H A Dhtpasswd.c147 char errstr[MAX_STRING_LEN]; local
148 apr_strerror(rc, errstr, MAX_STRING_LEN);
149 apr_file_printf(errfile, "Error writing temp file: %s" NL, errstr);
/macosx-10.9.5/CPANInternal-140/Log-Log4perl-1.40/t/
H A D034DBI.t230 $dbh->do($stmt) || die "do failed on $stmt".$dbh->errstr;
289 $dbh->do($stmt) || die "do failed on $stmt".$dbh->errstr;
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/lib/Net/LDAP/
H A DFilter.pm78 sub errstr { $ErrStr } subroutine
/macosx-10.9.5/apache-786.1/httpd/modules/dav/fs/
H A Ddbm.c85 const char *errstr; local
97 errstr = "Could not open property database.";
104 errstr = apr_pstrdup(p, errbuf);
107 err = dav_new_error(p, HTTP_INTERNAL_SERVER_ERROR, errcode, errstr);
/macosx-10.9.5/rsync-42/rsync/
H A Dreceiver.c725 char *errstr, *redostr, *keptstr; local
733 errstr = "ERROR";
736 errstr = "WARNING";
741 errstr, fname, keptstr, redostr);
/macosx-10.9.5/xar-202/xarsig/
H A Dxar-sig.c1180 char errstr[1024]; local
1181 regerror(err, &tmp->reg, errstr, sizeof(errstr));
1182 printf("Error with regular expression %s: %s\n", tmp->str, errstr);
1213 char errstr[1024]; local
1214 regerror(err, &tmp->reg, errstr, sizeof(errstr));
1215 printf("Error with regular expression %s: %s\n", tmp->str, errstr);
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dmisc.c235 const char *errstr; local
237 port = strtonum(s, 0, 65535, &errstr);
238 if (errstr != NULL)
246 const char *errstr = NULL; local
267 tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr);
268 if (errstr != NULL)
H A Dssh-keygen.c2204 const char *errstr; local
2237 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
2238 if (errstr)
2240 optarg, errstr);
2368 UINT_MAX, &errstr);
2369 if (errstr)
2371 optarg, errstr);
2374 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
2375 if (errstr)
2377 optarg, errstr);
[all...]
H A Dssh-agent.c1299 const char *errstr = NULL; local
1307 pid = (int)strtonum(pidstr, 2, INT_MAX, &errstr);
1308 if (errstr) {
1311 SSH_AGENTPID_ENV_NAME, pidstr, errstr);
/macosx-10.9.5/bind9-45.100/bind9/contrib/zkt/
H A Dzkt-signer.c141 char errstr[255+1]; local
234 snprintf (errstr, sizeof(errstr),
237 snprintf (errstr, sizeof (errstr),
239 usage (errstr, config);
/macosx-10.9.5/emacs-92/emacs/lisp/emacs-lisp/
H A Delint.el695 (let ((errstr (apply 'format string args)))
696 (elint-log-message errstr)
702 (let ((errstr (apply 'format string args)))
703 (elint-log-message errstr)
706 (defun elint-log-message (errstr)
729 (insert errstr)
/macosx-10.9.5/postfix-252/postfix/src/sendmail/
H A Dsendmail.c628 const char *errstr; local
642 if ((errstr = check_user_acl_byuid(var_submit_acl, uid)) != 0)
644 "User %s(%ld) is not allowed to submit mail", errstr, (long) uid);
963 const char *errstr; local
1389 if ((errstr = check_user_acl_byuid(var_submit_acl, uid = getuid())) != 0)
1392 errstr, (long) uid);
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/lib/Net/
H A DLDAP.pm75 my $errstr = $mesg->dn || '';
76 $errstr .= ": " if $errstr;
77 $errstr . $mesg->error;
1025 $err = $sock->errstr;
/macosx-10.9.5/ntp-88/ntpd/
H A Drefclock_jupiter.c924 static char errstr[132]; local
937 (void)sprintf(errstr, "write: %s", strerror(errno));
938 return (errstr);
940 (void)sprintf(errstr, "short write (%d != %d)", cc, size);
941 return (errstr);
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/t/
H A D034DBI.t201 $dbh->do($stmt) || die "do failed on $stmt".$dbh->errstr;
/macosx-10.9.5/apache-786.1/httpd/modules/dav/lock/
H A Dlocks.c209 const char *errstr; local
220 errstr = "Could not open property database.";
224 errstr = apr_pstrdup(p, errbuf);
227 err = dav_new_error(p, HTTP_INTERNAL_SERVER_ERROR, errcode, errstr);
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/saslauthd/
H A Dtestsaslauthd.c257 const char *errstr = NULL; local
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/Storage/DBI/Sybase/
H A DASE.pm791 $sth->func('CS_GET', 1, 'ct_data_info') or die $sth->errstr;
794 $sth->func('ct_prepare_send') or die $sth->errstr;
802 }, 'ct_data_info') or die $sth->errstr;
804 $sth->func($blob, length($blob), 'ct_send_data') or die $sth->errstr;
806 $sth->func('ct_finish_send') or die $sth->errstr;
/macosx-10.9.5/ppp-727.90.1/Controller/
H A Dipsec_manager.c2928 char *errstr = '\0'; local
2934 errstr = "cannot create ph2 config - no policies found";
2942 errstr = "out of memory";
2956 errstr = "incorrect local address";
2961 errstr = "incorrect remote address";
2966 errstr = "invalid remote address";
2971 errstr = "remote address mismatch";
2977 errstr = "no policy found";
3001 errstr = "incorrect policy found";
3016 errstr
[all...]
/macosx-10.9.5/CPANInternal-140/Log-Log4perl-1.40/lib/Log/Log4perl/Appender/
H A DDBI.pm80 or croak "Log4perl: $DBI::errstr";
92 return $self->{dbh}->prepare($stmt) || croak "Log4perl: DBI->prepare failed $DBI::errstr\n$stmt";
139 my $errstr = "[no error]";
145 # save errstr because ping() would override it [RT 56145]
146 $errstr = $self->{dbh}->errstr();
154 croak "Log4perl: DBI appender error: '$errstr'";
164 " (last error error was [$errstr]";
191 croak "Log4perl: DBI->execute failed $errstr, \n".
578 || croak "Log4perl: DBI->prepare failed $DBI::errstr\
[all...]
/macosx-10.9.5/CPANInternal-140/XML-Parser/Expat/
H A DExpat.xs201 SV ** errstr;
204 errstr = hv_fetch((HV*)SvRV(cbv->self_sv),
207 if (errstr && SvPOK(*errstr)) {
215 sv_catpvf(*errstr, "\n%s at line %d, column %d, byte %d%s",
238 sv_catsv(*errstr, POPs);
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/plugins/
H A Dntlm.c915 char *errstr; local
920 errstr = "Not listening on called name";
923 errstr = "Not listening for calling name";
926 errstr = "Called name not present";
929 errstr = "Called name present, but insufficient resources";
932 errstr = "Unspecified error";
935 "NTLM: negative NetBIOS session response: %s", errstr);

Completed in 242 milliseconds

12345