HomeSort by relevance Sort by last modified time
    Searched refs:msgs (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/dropbear/libtommath/
bn_error.c 21 } msgs[] = { variable in typeref:struct:__anon3315
33 for (x = 0; x < (int)(sizeof(msgs) / sizeof(msgs[0])); x++) {
34 if (msgs[x].code == code) {
35 return msgs[x].msg;
  /external/wpa_supplicant/wpa_gui/
eventhistory.ui.h 23 void EventHistory::addEvents(WpaMsgList msgs)
26 for (it = msgs.begin(); it != msgs.end(); it++) {
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
eventhistory.ui.h 23 void EventHistory::addEvents(WpaMsgList msgs)
26 for (it = msgs.begin(); it != msgs.end(); it++) {
  /external/e2fsprogs/lib/et/
init_et.c 34 int init_error_table(const char * const *msgs, long base, int count)
38 if (!base || !count || !msgs)
45 new_et->et.msgs = msgs;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/serialization/
BadPaddingExceptionTest.java 37 public static String[] msgs = { field in class:BadPaddingExceptionTest
43 new BadPaddingException(null), new BadPaddingException(msgs[1]) };
ExemptionMechanismExceptionTest.java 37 public static String[] msgs = { field in class:ExemptionMechanismExceptionTest
43 new ExemptionMechanismException(null), new ExemptionMechanismException(msgs[1]) };
IllegalBlockSizeExceptionTest.java 37 public static String[] msgs = { field in class:IllegalBlockSizeExceptionTest
43 new IllegalBlockSizeException(null), new IllegalBlockSizeException(msgs[1]) };
NoSuchPaddingExceptionTest.java 37 public static String[] msgs = { field in class:NoSuchPaddingExceptionTest
43 new NoSuchPaddingException(null), new NoSuchPaddingException(msgs[1]) };
ShortBufferExceptionTest.java 37 public static String[] msgs = { field in class:ShortBufferExceptionTest
43 new ShortBufferException(null), new ShortBufferException(msgs[1]) };
  /development/samples/NFCDemo/src/com/example/android/nfc/
TagViewer.java 71 NdefMessage[] msgs; local
73 msgs = new NdefMessage[rawMsgs.length];
75 msgs[i] = (NdefMessage) rawMsgs[i];
82 msgs = new NdefMessage[] {msg};
86 buildTagViews(msgs);
94 void buildTagViews(NdefMessage[] msgs) {
95 if (msgs == null || msgs.length == 0) {
105 List<ParsedNdefRecord> records = NdefMessageParser.parse(msgs[0]);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
BadPaddingExceptionTest.java 42 static String[] msgs = { field in class:BadPaddingExceptionTest
78 for (int i = 0; i < msgs.length; i++) {
79 tE = new BadPaddingException(msgs[i]);
80 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
81 .getMessage(), msgs[i]);
IllegalBlockSizeExceptionTest.java 43 static String[] msgs = { field in class:IllegalBlockSizeExceptionTest
79 for (int i = 0; i < msgs.length; i++) {
80 tE = new IllegalBlockSizeException(msgs[i]);
81 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
82 .getMessage(), msgs[i]);
NoSuchPaddingExceptionTest.java 43 static String[] msgs = { field in class:NoSuchPaddingExceptionTest
79 for (int i = 0; i < msgs.length; i++) {
80 tE = new NoSuchPaddingException(msgs[i]);
81 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
82 .getMessage(), msgs[i]);
ShortBufferExceptionTest.java 41 static String[] msgs = { field in class:ShortBufferExceptionTest
77 for (int i = 0; i < msgs.length; i++) {
78 tE = new ShortBufferException(msgs[i]);
79 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
80 .getMessage(), msgs[i]);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
InvalidParameterExceptionTest.java 41 static String[] msgs = { field in class:InvalidParameterExceptionTest
77 for (int i = 0; i < msgs.length; i++) {
78 tE = new InvalidParameterException(msgs[i]);
79 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
80 .getMessage(), msgs[i]);
NoSuchProviderExceptionTest.java 41 static String[] msgs = { field in class:NoSuchProviderExceptionTest
77 for (int i = 0; i < msgs.length; i++) {
78 tE = new NoSuchProviderException(msgs[i]);
79 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
80 .getMessage(), msgs[i]);
UnrecoverableEntryExceptionTest.java 41 static String[] msgs = { field in class:UnrecoverableEntryExceptionTest
74 for (int i = 0; i < msgs.length; i++) {
75 tE = new UnrecoverableEntryException(msgs[i]);
76 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
77 .getMessage(), msgs[i]);
UnrecoverableKeyExceptionTest.java 41 static String[] msgs = { field in class:UnrecoverableKeyExceptionTest
77 for (int i = 0; i < msgs.length; i++) {
78 tE = new UnrecoverableKeyException(msgs[i]);
79 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
80 .getMessage(), msgs[i]);
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLHandshakeExceptionTest.java 30 private static String[] msgs = { field in class:SSLHandshakeExceptionTest
49 for (int i = 0; i < msgs.length; i++) {
50 sslE = new SSLHandshakeException(msgs[i]);
51 assertEquals("getMessage() must return: ".concat(msgs[i]), sslE.getMessage(), msgs[i]);
SSLKeyExceptionTest.java 30 private static String[] msgs = { field in class:SSLKeyExceptionTest
49 for (int i = 0; i < msgs.length; i++) {
50 skE = new SSLKeyException(msgs[i]);
51 assertEquals("getMessage() must return: ".concat(msgs[i]), skE.getMessage(), msgs[i]);
SSLPeerUnverifiedExceptionTest.java 30 private static String[] msgs = { field in class:SSLPeerUnverifiedExceptionTest
49 for (int i = 0; i < msgs.length; i++) {
50 sslE = new SSLPeerUnverifiedException(msgs[i]);
51 assertEquals("getMessage() must return: ".concat(msgs[i]), sslE.getMessage(), msgs[i]);
SSLProtocolExceptionTest.java 30 private static String[] msgs = { field in class:SSLProtocolExceptionTest
49 for (int i = 0; i < msgs.length; i++) {
50 sslE = new SSLProtocolException(msgs[i]);
51 assertEquals("getMessage() must return: ".concat(msgs[i]), sslE.getMessage(), msgs[i]);
  /libcore/luni/src/test/java/tests/api/javax/security/auth/
DestroyFailedExceptionTest.java 47 private static String[] msgs = { field in class:DestroyFailedExceptionTest
81 for (int i = 0; i < msgs.length; i++) {
82 dfE = new DestroyFailedException(msgs[i]);
83 assertEquals("getMessage() must return: ".concat(msgs[i]), dfE.getMessage(), msgs[i]);
LoginExceptionTest.java 47 private static String[] msgs = { field in class:LoginExceptionTest
81 for (int i = 0; i < msgs.length; i++) {
82 lE = new LoginException(msgs[i]);
83 assertEquals("getMessage() must return: ".concat(msgs[i]), lE.getMessage(), msgs[i]);
  /libcore/luni/src/test/java/tests/api/javax/security/cert/
CertificateEncodingExceptionTest.java 41 static String[] msgs = { field in class:CertificateEncodingExceptionTest
77 for (int i = 0; i < msgs.length; i++) {
78 tE = new CertificateEncodingException(msgs[i]);
79 assertEquals("getMessage() must return: ".concat(msgs[i]), tE
80 .getMessage(), msgs[i]);

Completed in 376 milliseconds

1 2 3 4 5