Searched defs:msgs (Results 1 - 25 of 121) sorted by relevance

12345

/external/elfutils/0.153/libasm/
H A Dasm_error.c60 static const char *msgs[ASM_E_NUM] = variable
92 return _(msgs[last_error]);
/external/e2fsprogs/lib/et/
H A Dcom_err.h25 char const * const * msgs; member in struct:error_table
45 extern int init_error_table(const char * const *msgs, long base, int count);
H A Dinit_et.c34 int init_error_table(const char * const *msgs, long base, int count) argument
38 if (!base || !count || !msgs)
45 new_et->et.msgs = msgs;
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DBadPaddingExceptionTest.java46 static String[] msgs = { field in class:BadPaddingExceptionTest
70 for (int i = 0; i < msgs.length; i++) {
71 tE = new BadPaddingException(msgs[i]);
72 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
73 .getMessage(), msgs[i]);
H A DIllegalBlockSizeExceptionTest.java47 static String[] msgs = { field in class:IllegalBlockSizeExceptionTest
71 for (int i = 0; i < msgs.length; i++) {
72 tE = new IllegalBlockSizeException(msgs[i]);
73 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
74 .getMessage(), msgs[i]);
H A DNoSuchPaddingExceptionTest.java47 static String[] msgs = { field in class:NoSuchPaddingExceptionTest
71 for (int i = 0; i < msgs.length; i++) {
72 tE = new NoSuchPaddingException(msgs[i]);
73 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
74 .getMessage(), msgs[i]);
H A DShortBufferExceptionTest.java46 static String[] msgs = { field in class:ShortBufferExceptionTest
70 for (int i = 0; i < msgs.length; i++) {
71 tE = new ShortBufferException(msgs[i]);
72 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
73 .getMessage(), msgs[i]);
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/serialization/
H A DBadPaddingExceptionTest.java35 public static String[] msgs = { field in class:BadPaddingExceptionTest
41 new BadPaddingException(null), new BadPaddingException(msgs[1]) };
H A DExemptionMechanismExceptionTest.java35 public static String[] msgs = { field in class:ExemptionMechanismExceptionTest
41 new ExemptionMechanismException(null), new ExemptionMechanismException(msgs[1]) };
H A DIllegalBlockSizeExceptionTest.java35 public static String[] msgs = { field in class:IllegalBlockSizeExceptionTest
41 new IllegalBlockSizeException(null), new IllegalBlockSizeException(msgs[1]) };
H A DNoSuchPaddingExceptionTest.java35 public static String[] msgs = { field in class:NoSuchPaddingExceptionTest
41 new NoSuchPaddingException(null), new NoSuchPaddingException(msgs[1]) };
H A DShortBufferExceptionTest.java35 public static String[] msgs = { field in class:ShortBufferExceptionTest
41 new ShortBufferException(null), new ShortBufferException(msgs[1]) };
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DInvalidParameterExceptionTest.java47 static String[] msgs = { field in class:InvalidParameterExceptionTest
71 for (int i = 0; i < msgs.length; i++) {
72 tE = new InvalidParameterException(msgs[i]);
73 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
74 .getMessage(), msgs[i]);
H A DNoSuchProviderExceptionTest.java47 static String[] msgs = { field in class:NoSuchProviderExceptionTest
71 for (int i = 0; i < msgs.length; i++) {
72 tE = new NoSuchProviderException(msgs[i]);
73 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
74 .getMessage(), msgs[i]);
H A DUnrecoverableEntryExceptionTest.java42 static String[] msgs = { field in class:UnrecoverableEntryExceptionTest
63 for (int i = 0; i < msgs.length; i++) {
64 tE = new UnrecoverableEntryException(msgs[i]);
65 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
66 .getMessage(), msgs[i]);
H A DUnrecoverableKeyExceptionTest.java47 static String[] msgs = { field in class:UnrecoverableKeyExceptionTest
71 for (int i = 0; i < msgs.length; i++) {
72 tE = new UnrecoverableKeyException(msgs[i]);
73 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
74 .getMessage(), msgs[i]);
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
H A DCRLExceptionTest.java35 public static String[] msgs = { field in class:CRLExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 CRLException dExc = new CRLException(msgs[0], cause);
45 new CRLException(msgs[1]),
47 new CRLException(msgs[1], dExc) };
H A DCertPathBuilderExceptionTest.java35 public static String[] msgs = { field in class:CertPathBuilderExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 CertPathBuilderException dExc = new CertPathBuilderException(msgs[0], cause);
45 new CertPathBuilderException(msgs[1]),
47 new CertPathBuilderException(msgs[1], dExc) };
H A DCertPathValidatorExceptionTest.java38 public static String[] msgs = { field in class:CertPathValidatorExceptionTest
43 Exception cause = new Exception(msgs[1]);
45 msgs[0], cause);
50 new CertPathValidatorException(msgs[1]),
53 new CertPathValidatorException(msgs[1], dExc),
54 new CertPathValidatorException(msgs[1], dExc, null, -1) };
H A DCertStoreExceptionTest.java35 public static String[] msgs = { field in class:CertStoreExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 CertStoreException dExc = new CertStoreException(msgs[0], cause);
45 new CertStoreException(msgs[1]),
47 new CertStoreException(msgs[1], dExc) };
H A DCertificateEncodingExceptionTest.java35 public static String[] msgs = { field in class:CertificateEncodingExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 CertificateEncodingException dExc = new CertificateEncodingException(msgs[0], cause);
45 new CertificateEncodingException(msgs[1]),
47 new CertificateEncodingException(msgs[1], dExc) };
H A DCertificateExceptionTest.java35 public static String[] msgs = { field in class:CertificateExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 CertificateException dExc = new CertificateException(msgs[0], cause);
45 new CertificateException(msgs[1]),
47 new CertificateException(msgs[1], dExc) };
H A DCertificateExpiredExceptionTest.java35 public static String[] msgs = { field in class:CertificateExpiredExceptionTest
43 new CertificateExpiredException(msgs[1]) };
H A DCertificateNotYetValidExceptionTest.java35 public static String[] msgs = { field in class:CertificateNotYetValidExceptionTest
42 new CertificateNotYetValidException(msgs[1]) };
H A DCertificateParsingExceptionTest.java35 public static String[] msgs = { field in class:CertificateParsingExceptionTest
40 Exception cause = new Exception(msgs[1]);
41 CertificateParsingException dExc = new CertificateParsingException(msgs[0], cause);
45 new CertificateParsingException(msgs[1]),
47 new CertificateParsingException(msgs[1], dExc) };

Completed in 1157 milliseconds

12345