/external/dropbear/libtommath/ |
H A D | bn_error.c | 21 } msgs[] = { variable in typeref:struct:__anon5231 33 for (x = 0; x < (int)(sizeof(msgs) / sizeof(msgs[0])); x++) { 34 if (msgs[x].code == code) { 35 return msgs[x].msg;
|
/external/e2fsprogs/lib/et/ |
H A D | com_err.h | 25 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 D | init_et.c | 34 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/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/serialization/ |
H A D | AuthenticationExceptionTest.java | 35 public static String[] msgs = { field in class:AuthenticationExceptionTest 42 Exception cause = new Exception(msgs[1]); 45 new AuthenticationException(msgs[1]), 47 new AuthenticationException(msgs[0], null), 49 new AuthenticationException(msgs[1], cause)
|
H A D | AuthorizeCallbackTest.java | 38 public static String[] msgs = { field in class:AuthorizeCallbackTest 47 new AuthorizeCallback(null, msgs[0]), 48 new AuthorizeCallback(msgs[1], msgs[1]), };
|
H A D | RealmCallbackTest.java | 38 public static String[] msgs = { field in class:RealmCallbackTest 47 new RealmCallback(msgs[0], msgs[1]), 48 new RealmCallback(msgs[1], msgs[0]), 49 new RealmCallback(msgs[1], msgs[1])
|
H A D | RealmChoiceCallbackTest.java | 38 public static String[] msgs = { field in class:RealmChoiceCallbackTest 49 new RealmChoiceCallback(msgs[0], msgs, 0, true), 50 new RealmChoiceCallback(msgs[1], msgs, 1, true), 51 new RealmChoiceCallback(msgs[1], msgs, 0, false), 52 new RealmChoiceCallback(msgs[2], msgs, 0, false) 60 rc.setSelectedIndex(msgs [all...] |
H A D | SaslExceptionTest.java | 35 public static String[] msgs = { field in class:SaslExceptionTest 42 Exception cause = new Exception(msgs[1]); 45 new SaslException(msgs[1]), 47 new SaslException(msgs[0], null), 49 new SaslException(msgs[1], cause)
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/ |
H A D | BadPaddingExceptionTest.java | 47 static String[] msgs = { field in class:BadPaddingExceptionTest 71 for (int i = 0; i < msgs.length; i++) { 72 tE = new BadPaddingException(msgs[i]); 73 assertEquals("getMessage() must return: ".concat(msgs[i]), tE 74 .getMessage(), msgs[i]);
|
H A D | IllegalBlockSizeExceptionTest.java | 48 static String[] msgs = { field in class:IllegalBlockSizeExceptionTest 72 for (int i = 0; i < msgs.length; i++) { 73 tE = new IllegalBlockSizeException(msgs[i]); 74 assertEquals("getMessage() must return: ".concat(msgs[i]), tE 75 .getMessage(), msgs[i]);
|
H A D | NoSuchPaddingExceptionTest.java | 48 static String[] msgs = { field in class:NoSuchPaddingExceptionTest 72 for (int i = 0; i < msgs.length; i++) { 73 tE = new NoSuchPaddingException(msgs[i]); 74 assertEquals("getMessage() must return: ".concat(msgs[i]), tE 75 .getMessage(), msgs[i]);
|
H A D | ShortBufferExceptionTest.java | 47 static String[] msgs = { field in class:ShortBufferExceptionTest 71 for (int i = 0; i < msgs.length; i++) { 72 tE = new ShortBufferException(msgs[i]); 73 assertEquals("getMessage() must return: ".concat(msgs[i]), tE 74 .getMessage(), msgs[i]);
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/serialization/ |
H A D | BadPaddingExceptionTest.java | 36 public static String[] msgs = { field in class:BadPaddingExceptionTest 42 new BadPaddingException(null), new BadPaddingException(msgs[1]) };
|
H A D | ExemptionMechanismExceptionTest.java | 36 public static String[] msgs = { field in class:ExemptionMechanismExceptionTest 42 new ExemptionMechanismException(null), new ExemptionMechanismException(msgs[1]) };
|
H A D | IllegalBlockSizeExceptionTest.java | 36 public static String[] msgs = { field in class:IllegalBlockSizeExceptionTest 42 new IllegalBlockSizeException(null), new IllegalBlockSizeException(msgs[1]) };
|
H A D | NoSuchPaddingExceptionTest.java | 36 public static String[] msgs = { field in class:NoSuchPaddingExceptionTest 42 new NoSuchPaddingException(null), new NoSuchPaddingException(msgs[1]) };
|
H A D | ShortBufferExceptionTest.java | 36 public static String[] msgs = { field in class:ShortBufferExceptionTest 42 new ShortBufferException(null), new ShortBufferException(msgs[1]) };
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
H A D | InvalidParameterExceptionTest.java | 47 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 D | NoSuchProviderExceptionTest.java | 47 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 D | UnrecoverableEntryExceptionTest.java | 42 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 D | UnrecoverableKeyExceptionTest.java | 47 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 D | CRLExceptionTest.java | 36 public static String[] msgs = { field in class:CRLExceptionTest 41 Exception cause = new Exception(msgs[1]); 42 CRLException dExc = new CRLException(msgs[0], cause); 46 new CRLException(msgs[1]), 48 new CRLException(msgs[1], dExc) };
|
H A D | CertPathBuilderExceptionTest.java | 36 public static String[] msgs = { field in class:CertPathBuilderExceptionTest 41 Exception cause = new Exception(msgs[1]); 42 CertPathBuilderException dExc = new CertPathBuilderException(msgs[0], cause); 46 new CertPathBuilderException(msgs[1]), 48 new CertPathBuilderException(msgs[1], dExc) };
|
H A D | CertPathValidatorExceptionTest.java | 39 public static String[] msgs = { field in class:CertPathValidatorExceptionTest 44 Exception cause = new Exception(msgs[1]); 46 msgs[0], cause); 51 new CertPathValidatorException(msgs[1]), 54 new CertPathValidatorException(msgs[1], dExc), 55 new CertPathValidatorException(msgs[1], dExc, null, -1) };
|
H A D | CertStoreExceptionTest.java | 36 public static String[] msgs = { field in class:CertStoreExceptionTest 41 Exception cause = new Exception(msgs[1]); 42 CertStoreException dExc = new CertStoreException(msgs[0], cause); 46 new CertStoreException(msgs[1]), 48 new CertStoreException(msgs[1], dExc) };
|