Home
last modified time | relevance | path

Searched refs:failure (Results 1 – 25 of 216) sorted by relevance

123456789

/mirbsd/src/gnu/usr.bin/perl/t/
DTEST409 my $failure;
424 $failure = 'FAILED--extra output after trailing 1..n';
429 $failure = 'FAILED--seen duplicate leader';
440 $failure = "FAILED--expected $max tests, saw $next";
470 $failure = "FAILED at test $num";
475 $failure ="FAILED--expected test $next, saw test $num";
483 $failure = "FAILED--unexpected output at test $next";
491 if (not defined $failure) {
492 $failure = 'FAILED--no leader found' unless $seen_leader;
549 $failure = "Test did not compile";
[all …]
/mirbsd/src/lib/libc/gen/
Ddevname.c51 static int failure; in devname() local
55 if (!db && !failure && in devname()
58 failure = 1; in devname()
60 if (failure) in devname()
/mirbsd/src/usr.bin/ssh/
Dttymodes.c326 int failure = 0; in tty_parse_modes() local
348 failure = -1; in tty_parse_modes()
363 if (failure != -1 && in tty_parse_modes()
373 if (failure != -1 && in tty_parse_modes()
456 if (failure == -1) in tty_parse_modes()
/mirbsd/src/usr.bin/rpcinfo/
Drpcinfo.c211 int failure; in udpping() local
229 failure = 0; in udpping()
310 failure = 1; in udpping()
330 failure = 1; in udpping()
333 if (failure) in udpping()
347 int failure; in tcpping() local
357 failure = 0; in tcpping()
434 failure = 1; in tcpping()
454 failure = 1; in tcpping()
456 if (failure) in tcpping()
/mirbsd/src/lib/libssl/src/doc/crypto/
DCRYPTO_set_ex_data.pod33 B<CRYPTO_set_ex_data()> returns 1 on success or 0 on failure.
35 B<CRYPTO_get_ex_data()> returns the application data or 0 on failure. 0 may also
39 On failure an error code can be obtained from L<ERR_get_error(3)|ERR_get_error(3)>.
DBIO_ctrl.pod76 BIO_reset() normally returns 1 for success and 0 or -1 for failure. File
77 BIOs are an exception, they return 0 for success and -1 for failure.
80 and -1 for failure, except file BIOs which for BIO_seek() always return 0
81 for success and -1 for failure.
83 BIO_flush() returns 1 for success and 0 or -1 for failure.
DRSA_get_ex_new_index.pod89 B<RSA_get_ex_new_index()> returns a new index or -1 on failure (note 0 is a valid
92 B<RSA_set_ex_data()> returns 1 on success or 0 on failure.
94 B<RSA_get_ex_data()> returns the application data or 0 on failure. 0 may also
98 B<new_func()> and B<dup_func()> should return 0 for failure and 1 for success.
100 On failure an error code can be obtained from L<ERR_get_error(3)|ERR_get_error(3)>.
DEVP_PKEY_set1_RSA.pod63 EVP_PKEY_set1_EC_KEY() return 1 for success or 0 for failure.
70 and EVP_PKEY_assign_EC_KEY() return 1 for success and 0 for failure.
DBIO_s_file.pod119 BIO_set_fp() and BIO_get_fp() return 1 for success or 0 for failure
123 0 for success or -1 for failure.
128 BIO_rw_filename() return 1 for success or 0 for failure.
DEVP_VerifyInit.pod39 failure.
41 EVP_VerifyFinal() returns 1 for a correct signature, 0 for failure and -1 if some
/mirbsd/src/usr.sbin/ppp/ppp/
Dauth.h40 auth_func failure; member
55 #define auth_Failure(a) (*(a)->fn.failure)(a)
Dauth.c357 auth_func success, auth_func failure) in auth_Init() argument
365 authp->fn.failure = failure; in auth_Init()
Dip.c105 static char failure[6]; in dns_Qclass2Txt() local
119 return HexStr(qclass, failure, sizeof failure); in dns_Qclass2Txt()
125 static char failure[6]; in dns_Qtype2Txt() local
146 return HexStr(qtype, failure, sizeof failure); in dns_Qtype2Txt()
/mirbsd/src/bin/ps/
Dprint.c511 static int failure; in getpcpu() local
515 failure = donlist(); in getpcpu()
516 if (failure) in getpcpu()
550 static int failure; in getpmem() local
555 failure = donlist(); in getpmem()
556 if (failure) in getpmem()
/mirbsd/src/gnu/usr.bin/lynx/src/
DLYBookmark.c522 goto failure; in remove_bookmark_link()
546 goto failure; in remove_bookmark_link()
556 goto failure; in remove_bookmark_link()
568 goto failure; in remove_bookmark_link()
661 goto failure; in remove_bookmark_link()
676 failure: in remove_bookmark_link()
/mirbsd/src/gnu/usr.bin/perl/os2/
Dperlrexx.cmd30 signal on failure name runperl_error */
52 signal on failure name runperl_error */
/mirbsd/src/gnu/usr.bin/perl/ext/POSIX/
DPOSIX.pod100 Returns C<undef> on failure. Note: do not use C<access()> for
220 Returns C<undef> on failure.
286 Returns C<undef> on failure.
296 Returns C<undef> on failure.
425 Returns C<undef> on failure.
791 Returns C<undef> on failure.
850 Returns C<undef> on failure. The C<$mode> is similar to the
872 Returns C<undef> on failure.
887 Returns C<undef> on failure.
914 Returns C<undef> on failure.
[all …]
/mirbsd/src/gnu/usr.sbin/sendmail/contrib/
Ddnsblaccess.m447 dnl ## is a temp failure for the lookup, sendmail will generate a
48 dnl ## temporary failure with a default message. If there is no
75 define(`_EDNSBL_MSG_TMP_', `ifelse(_ARG3_,`t',`"451 Temporary lookup failure of " $`'&{client_addr}…
/mirbsd/src/lib/libssl/src/doc/ssl/
DSSL_CTX_set_verify.pod64 the verification failure.
71 the verification failure. If no server certificate is sent, because an
77 handshake is immediately terminated with a "handshake failure" alert.
135 SSL_VERIFY_PEER is set, a verification failure alert is sent to the peer and
146 failure will lead to a termination of the TLS/SSL handshake with an
169 failure, if wished. The callback realizes a verification depth limit with
DSSL_CTX_set_cert_verify_callback.pod33 indicate verification failure. If SSL_VERIFY_PEER is set and I<callback>
35 allow to continue the connection in case of failure (by always returning 1)
DSSL_alert_type_string.pod87 =item "DF"/"decompression failure"
93 =item "HF"/"handshake failure"
193 allocation failure). This message is always fatal.
198 protocol failure. If the user cancels an operation after the
/mirbsd/src/gnu/usr.bin/perl/t/lib/sample-tests/
Dlone_not_bug2 # 'lone not' failure.
/mirbsd/src/etc/ppp/
Doptions.sample15 lcp-echo-failure 2
/mirbsd/src/gnu/usr.bin/perl/hints/
Dultrix_4.sh28 may fail if run under NFS. Ignore the failure.
/mirbsd/src/gnu/usr.bin/perl/ext/threads/
Dthreads.xs397 int failure; local
525 failure
532 failure
543 failure

123456789