Home
last modified time | relevance | path

Searched refs:except (Results 1 – 25 of 3460) sorted by relevance

12345678910>>...139

/netbsd-src/external/ibm-public/postfix/dist/src/smtpstone/
H A Dsmtp-source.c353 static char *exception_text(int except) in exception_text() argument
355 switch (except) { in exception_text()
361 msg_panic("exception_text: unknown exception %d", except); in exception_text()
517 int except; in read_banner() local
522 if ((except = vstream_setjmp(session->stream)) != 0) in read_banner()
523 msg_fatal("%s while reading server greeting", exception_text(except)); in read_banner()
549 int except; in send_helo() local
555 if ((except = vstream_setjmp(session->stream)) != 0) in send_helo()
556 msg_fatal("%s while sending %s", exception_text(except), protocol); in send_helo()
572 int except; in helo_done() local
[all …]
H A Dqmqp-source.c220 static char *exception_text(int except) in exception_text() argument
224 switch (except) { in exception_text()
234 msg_panic("exception_text: unknown exception %d", except); in exception_text()
382 int except; in send_data() local
387 if ((except = vstream_setjmp(session->stream)) != 0) in send_data()
388 msg_fatal("%s while sending message", exception_text(except)); in send_data()
415 int except; in receive_reply() local
420 if ((except = vstream_setjmp(session->stream)) != 0) in receive_reply()
421 msg_fatal("%s while receiving server reply", exception_text(except)); in receive_reply()
/netbsd-src/lib/libm/arch/arm/
H A Dfenv.c76 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0); in feclearexcept()
93 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0); in fegetexceptflag()
107 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0); in feraiseexcept()
128 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0); in fesetexceptflag()
141 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0); in feenableexcept()
152 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0); in fedisableexcept()
167 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0); in fetestexcept()
/netbsd-src/lib/libm/arch/aarch64/
H A Dfenv.c77 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0); in feclearexcept()
93 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0); in fegetexceptflag()
107 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0); in feraiseexcept()
129 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0); in fesetexceptflag()
146 _DIAGASSERT((except & ~FE_ALL_EXCEPT) == 0); in fetestexcept()
227 int except = fetestexcept(FE_ALL_EXCEPT); in feupdateenv() local
230 feraiseexcept(except); in feupdateenv()
/netbsd-src/tests/lib/libm/
H A Dt_fenv.c372 int except; in ATF_TC_BODY() local
377 ATF_CHECK_EQ_MSG((except = fegetexcept()), 0, in ATF_TC_BODY()
378 "fegetexcept()=0x%x", except); in ATF_TC_BODY()
381 ATF_CHECK_EQ_MSG((except = fegetexcept()), 0, in ATF_TC_BODY()
382 "fegetexcept()=0x%x", except); in ATF_TC_BODY()
385 ATF_CHECK_EQ_MSG((except = fegetexcept()), FE_TRAP_EXCEPT, in ATF_TC_BODY()
386 "fegetexcept()=0x%x FE_TRAP_EXCEPT=0x%x", except, FE_TRAP_EXCEPT); in ATF_TC_BODY()
389 ATF_CHECK_EQ_MSG((except = fegetexcept()), FE_TRAP_EXCEPT, in ATF_TC_BODY()
390 "fegetexcept()=0x%x FE_ALL_EXCEPT=0x%x", except, FE_TRAP_EXCEPT); in ATF_TC_BODY()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Duuid.d429 auto except = collectException!UUIDParsingException(
431 assert(except && except.reason == UUIDParsingException.Reason.tooLittle);
434 except = collectException!UUIDParsingException(
436 assert(except && except.reason == UUIDParsingException.Reason.tooMuch);
439 except = collectException!UUIDParsingException(
441 assert(except && except.reason == UUIDParsingException.Reason.invalidChar);
444 except = collectException!UUIDParsingException(
446 assert(except && except.reason == UUIDParsingException.Reason.invalidChar);
450 except = collectException!UUIDParsingException(
452 assert(except && except.reason == UUIDParsingException.Reason.invalidChar);
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Duuid.d429 auto except = collectException!UUIDParsingException(
431 assert(except && except.reason == UUIDParsingException.Reason.tooLittle);
434 except = collectException!UUIDParsingException(
436 assert(except && except.reason == UUIDParsingException.Reason.tooMuch);
439 except = collectException!UUIDParsingException(
441 assert(except && except.reason == UUIDParsingException.Reason.invalidChar);
444 except = collectException!UUIDParsingException(
446 assert(except && except.reason == UUIDParsingException.Reason.invalidChar);
450 except = collectException!UUIDParsingException(
452 assert(except && except.reason == UUIDParsingException.Reason.invalidChar);
[all …]
/netbsd-src/tests/kernel/
H A Dt_memfd_create.c237 test_all_seals_except(int fd, int except) in test_all_seals_except() argument
246 if (except & ~F_SEAL_SEAL) { in test_all_seals_except()
250 "Seal %x prevented F_ADD_SEALS", except); in test_all_seals_except()
257 if (except & ~(F_SEAL_WRITE|F_SEAL_FUTURE_WRITE)) { in test_all_seals_except()
262 "Seal %x prevented write", except); in test_all_seals_except()
274 if (except & ~F_SEAL_SHRINK) { in test_all_seals_except()
278 "Seal %x prevented truncate to shrink", except); in test_all_seals_except()
285 if (except & ~F_SEAL_GROW) { in test_all_seals_except()
289 "Seal %x prevented truncate to shrink", except); in test_all_seals_except()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/nds32/
H A Dt-nds3228 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
40 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
52 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
64 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
77 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
90 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
103 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
116 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
129 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
142 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/nds32/
H A Dt-nds3228 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
40 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
52 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
64 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
77 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
90 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
103 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
116 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
129 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
142 $(GGC_H) except.h $(C_PRAGMA_H) $(TM_P_H) \
/netbsd-src/lib/libc/softfloat/
H A Dfpsetsticky.c51 fpsetsticky(fp_except except) in __weak_alias()
54 return set_float_exception_flags(except, 1); in __weak_alias()
57 float_exception_flags = except; in __weak_alias()
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dprintable.c77 char *printable_except(char *string, int replacement, const char *except) in printable_except() argument
88 if (ISASCII(ch) && (ISPRINT(ch) || (except && strchr(except, ch)))) { in printable_except()
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DASN1_item_d2i_bio.pod42 ASN1_item_d2i() is the same as ASN1_item_d2i_ex() except that the default
54 ASN1_item_d2i_bio() is the same as ASN1_item_d2i_bio_ex() except that the
58 ASN1_item_d2i_fp_ex() is the same as ASN1_item_d2i_bio_ex() except that a FILE
61 ASN1_item_d2i_fp() is the same as ASN1_item_d2i_fp_ex() except that the
84 this file except in compliance with the License. You can obtain a copy
H A Dd2i_PrivateKey.pod63 d2i_PrivateKey() does the same as d2i_PrivateKey_ex() except that the default
69 d2i_PrivateKey_ex() and d2i_PrivateKey() respectively except that they decode
71 d2i_PrivateKey_fp() functions are the same except that they read the data from
75 d2i_PrivateKey_ex() and d2i_PrivateKey() respectively except that they attempt
83 i2d_PrivateKey_bio() and i2d_PrivateKey_fp() do the same thing except that they
131 this file except in compliance with the License. You can obtain a copy
H A DEVP_PKEY_get_attr.pod45 EVP_PKEY_get_attr_by_NID() is similar to EVP_PKEY_get_attr_by_OBJ() except that
66 EVP_PKEY_add1_attr_by_NID() is similar to EVP_PKEY_add1_attr_by_OBJ() except
70 EVP_PKEY_add1_attr_by_txt() is similar to EVP_PKEY_add1_attr_by_OBJ() except
82 EVP_PKEY_get_attr_by_NID() is similar to EVP_PKEY_get_attr_by_OBJ(), except that
109 this file except in compliance with the License. You can obtain a copy
H A DX509_REQ_get_attr.pod42 X509_REQ_get_attr_by_NID() is similar to X509_REQ_get_attr_by_OBJ() except that
63 X509_REQ_add1_attr_by_NID() is similar to X509_REQ_add1_attr_by_OBJ() except
67 X509_REQ_add1_attr_by_txt() is similar to X509_REQ_add1_attr_by_OBJ() except
82 X509_REQ_get_attr_by_NID() is similar to X509_REQ_get_attr_by_OBJ(), except that
107 this file except in compliance with the License. You can obtain a copy
H A DERR_print_errors.pod23 ERR_print_errors_fp() is the same, except that the output goes to a
26 ERR_print_errors_cb() is the same, except that the callback function,
55 this file except in compliance with the License. You can obtain a copy
H A DBIO_printf.pod20 BIO_printf() is similar to the standard C printf() function, except that
30 function. It is like sprintf() except that the size parameter, I<n>,
53 this file except in compliance with the License. You can obtain a copy
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DBIO_printf.pod20 BIO_printf() is similar to the standard C printf() function, except that
30 function. It is like sprintf() except that the size parameter, B<n>,
46 this file except in compliance with the License. You can obtain a copy
H A DERR_print_errors.pod23 ERR_print_errors_fp() is the same, except that the output goes to a
26 ERR_print_errors_cb() is the same, except that the callback function,
55 this file except in compliance with the License. You can obtain a copy
/netbsd-src/external/ibm-public/postfix/dist/src/posttls-finger/
H A Dposttls-finger.c604 static char *exception_text(int except) in exception_text() argument
606 switch (except) { in exception_text()
612 msg_panic("exception_text: unknown exception %d", except); in exception_text()
621 int except; in greeting() local
628 if ((except = vstream_setjmp(stream)) != 0) { in greeting()
629 msg_info("%s while reading server greeting", exception_text(except)); in greeting()
647 int except; in ehlo() local
663 if ((except = vstream_setjmp(stream)) != 0) { in ehlo()
664 msg_info("%s while sending %s", exception_text(except), ehlo); in ehlo()
739 int except; in starttls() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp144 bool ParseAtUnwindOrAtExcept(bool &unwind, bool &except);
660 bool unwind = false, except = false; in ParseSEHDirectiveHandler() local
661 if (ParseAtUnwindOrAtExcept(unwind, except)) in ParseSEHDirectiveHandler()
665 if (ParseAtUnwindOrAtExcept(unwind, except)) in ParseSEHDirectiveHandler()
674 getStreamer().EmitWinEHHandler(handler, unwind, except, Loc); in ParseSEHDirectiveHandler()
703 bool COFFAsmParser::ParseAtUnwindOrAtExcept(bool &unwind, bool &except) { in ParseAtUnwindOrAtExcept() argument
714 except = true; in ParseAtUnwindOrAtExcept()
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man7/
H A DRSA-PSS.pod20 Signing and verification is similar to the B<RSA> algorithm except the
36 format except it uses the B<id-RSASSA-PSS> OID and the parameters field, if
57 this file except in compliance with the License. You can obtain a copy
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man7/
H A DRSA-PSS.pod20 Signing and verification is similar to the B<RSA> algorithm except the
36 format except it uses the B<id-RSASSA-PSS> OID and the parameters field, if
57 this file except in compliance with the License. You can obtain a copy
/netbsd-src/external/ibm-public/postfix/dist/src/smtp/
H A Dsmtp_proto.c300 int except; in smtp_helo() local
354 if ((except = vstream_setjmp(state->session->stream)) != 0) in smtp_helo()
355 return (smtp_stream_except(state, except, where)); in smtp_helo()
770 if ((except = vstream_setjmp(state->session->stream)) != 0) in smtp_helo()
771 return (smtp_stream_except(state, except, in smtp_helo()
1482 int except; in smtp_loop() local
1562 if ((except = vstream_setjmp(session->stream)) != 0) { in smtp_loop()
1565 RETURN(SENDING_MAIL ? smtp_stream_except(state, except, in smtp_loop()
1945 #define LOST_CONNECTION_INSIDE_DATA (except == SMTP_ERR_EOF) in smtp_loop()
1954 if ((except = vstream_setjmp(session->stream)) != 0) in smtp_loop()
[all …]

12345678910>>...139