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

12345

/external/dropbear/libtommath/
H A Dbn_error.c21 } msgs[] = { variable in typeref:struct:__anon5121
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 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/wpa_supplicant_6/wpa_supplicant/wpa_gui/
H A Deventhistory.ui.h23 void EventHistory::addEvents(WpaMsgList msgs) argument
26 for (it = msgs.begin(); it != msgs.end(); it++) {
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/serialization/
H A DAuthenticationExceptionTest.java35 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 DAuthorizeCallbackTest.java38 public static String[] msgs = { field in class:AuthorizeCallbackTest
47 new AuthorizeCallback(null, msgs[0]),
48 new AuthorizeCallback(msgs[1], msgs[1]), };
H A DRealmCallbackTest.java38 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 DRealmChoiceCallbackTest.java38 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 DSaslExceptionTest.java35 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 DBadPaddingExceptionTest.java47 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 DIllegalBlockSizeExceptionTest.java48 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 DNoSuchPaddingExceptionTest.java48 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 DShortBufferExceptionTest.java47 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 DBadPaddingExceptionTest.java36 public static String[] msgs = { field in class:BadPaddingExceptionTest
42 new BadPaddingException(null), new BadPaddingException(msgs[1]) };
H A DExemptionMechanismExceptionTest.java36 public static String[] msgs = { field in class:ExemptionMechanismExceptionTest
42 new ExemptionMechanismException(null), new ExemptionMechanismException(msgs[1]) };
H A DIllegalBlockSizeExceptionTest.java36 public static String[] msgs = { field in class:IllegalBlockSizeExceptionTest
42 new IllegalBlockSizeException(null), new IllegalBlockSizeException(msgs[1]) };
H A DNoSuchPaddingExceptionTest.java36 public static String[] msgs = { field in class:NoSuchPaddingExceptionTest
42 new NoSuchPaddingException(null), new NoSuchPaddingException(msgs[1]) };
H A DShortBufferExceptionTest.java36 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 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.java36 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 DCertPathBuilderExceptionTest.java36 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 DCertPathValidatorExceptionTest.java39 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) };

Completed in 309 milliseconds

12345