HomeSort by relevance Sort by last modified time
    Searched defs:msg (Results 251 - 275 of 4440) sorted by null

<<11121314151617181920>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/cert/
CertificateNotYetValidExceptionTest.java 57 * detail message msg. Parameter <code>msg</code> is not null.
72 * <code>msg</code> is null
75 String msg = null; local
77 msg);
CertificateParsingExceptionTest.java 57 * msg. Parameter <code>msg</code> is not null.
71 * Assertion: constructs CertificateParsingException when <code>msg</code>
75 String msg = null; local
76 CertificateParsingException tE = new CertificateParsingException(msg);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
BadPaddingExceptionTest.java 55 * Assertion: constructs BadPaddingException with detail message msg.
56 * Parameter <code>msg</code> is not null.
70 * Assertion: constructs BadPaddingException when <code>msg</code> is null
73 String msg = null; local
74 BadPaddingException tE = new BadPaddingException(msg);
IllegalBlockSizeExceptionTest.java 56 * Assertion: constructs IllegalBlockSizeException with detail message msg.
57 * Parameter <code>msg</code> is not null.
71 * Assertion: constructs IllegalBlockSizeException when <code>msg</code>
75 String msg = null; local
76 IllegalBlockSizeException tE = new IllegalBlockSizeException(msg);
NoSuchPaddingExceptionTest.java 56 * Assertion: constructs NoSuchPaddingException with detail message msg.
57 * Parameter <code>msg</code> is not null.
71 * Assertion: constructs NoSuchPaddingException when <code>msg</code> is
75 String msg = null; local
76 NoSuchPaddingException tE = new NoSuchPaddingException(msg);
ShortBufferExceptionTest.java 54 * Assertion: constructs ShortBufferException with detail message msg.
55 * Parameter <code>msg</code> is not null.
69 * Assertion: constructs ShortBufferException when <code>msg</code> is
73 String msg = null; local
74 ShortBufferException tE = new ShortBufferException(msg);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
InvalidParameterExceptionTest.java 55 * Assertion: constructs InvalidParameterException with detail message msg.
56 * Parameter <code>msg</code> is not null.
70 * Assertion: constructs InvalidParameterException when <code>msg</code>
74 String msg = null; local
75 InvalidParameterException tE = new InvalidParameterException(msg);
NoSuchProviderExceptionTest.java 55 * Assertion: constructs NoSuchProviderException with detail message msg.
56 * Parameter <code>msg</code> is not null.
70 * Assertion: constructs NoSuchProviderException when <code>msg</code> is
74 String msg = null; local
75 NoSuchProviderException tE = new NoSuchProviderException(msg);
UnrecoverableKeyExceptionTest.java 55 * Assertion: constructs UnrecoverableKeyException with detail message msg.
56 * Parameter <code>msg</code> is not null.
70 * Assertion: constructs UnrecoverableKeyException when <code>msg</code>
74 String msg = null; local
75 UnrecoverableKeyException tE = new UnrecoverableKeyException(msg);
  /libcore/luni/src/test/java/tests/security/cert/
CertificateExpiredExceptionTest.java 56 * msg. Parameter <code>msg</code> is not null.
70 * Assertion: constructs CertificateExpiredException when <code>msg</code>
74 String msg = null; local
75 CertificateExpiredException tE = new CertificateExpiredException(msg);
CertificateNotYetValidExceptionTest.java 57 * detail message msg. Parameter <code>msg</code> is not null.
72 * <code>msg</code> is null
75 String msg = null; local
77 msg);
  /libcore/luni/src/test/java/tests/security/spec/
InvalidParameterSpecExceptionTest.java 57 * msg. Parameter <code>msg</code> is not null.
71 * Assertion: constructs InvalidParameterSpecException when <code>msg</code>
75 String msg = null; local
77 msg);
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixException.java 39 private String msg; field in class:UnixException
43 this.msg = null;
46 UnixException(String msg) {
48 this.msg = msg;
57 this.msg = null;
61 if (msg != null) {
62 return msg;
79 if (msg != null)
80 return new IOException(msg);
    [all...]
  /packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
FilesActivityDefaultsUiTest.java 63 String msg = String.valueOf(context.getString(R.string.empty)); local
64 bots.directory.assertPlaceholderMessageText(msg);
  /packages/apps/Music/src/com/android/music/
ScanningProgress.java 34 public void handleMessage(Message msg) {
35 if (msg.what == CHECK) {
74 Message msg = mHandler.obtainMessage(CHECK); local
75 mHandler.sendMessageDelayed(msg, 1000);
  /packages/services/Car/evs/app/
VideoTex.cpp 107 const char *msg = getEGLError(); local
108 ALOGE("error creating EGLImage: %s", msg);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
getopt.py 40 msg = '' variable in class:GetoptError
41 def __init__(self, msg, opt=''):
42 self.msg = msg
44 Exception.__init__(self, msg, opt)
47 return self.msg
178 # nice to work them into the error msg
  /prebuilts/gdb/linux-x86/lib/python2.7/
getopt.py 40 msg = '' variable in class:GetoptError
41 def __init__(self, msg, opt=''):
42 self.msg = msg
44 Exception.__init__(self, msg, opt)
47 return self.msg
178 # nice to work them into the error msg
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
getopt.py 40 msg = '' variable in class:GetoptError
41 def __init__(self, msg, opt=''):
42 self.msg = msg
44 Exception.__init__(self, msg, opt)
47 return self.msg
178 # nice to work them into the error msg
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
getopt.py 40 msg = '' variable in class:GetoptError
41 def __init__(self, msg, opt=''):
42 self.msg = msg
44 Exception.__init__(self, msg, opt)
47 return self.msg
178 # nice to work them into the error msg
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
EmptyLaunchAction.java 38 String msg = String.format("%1$s installed on device", local
40 AdtPlugin.printToConsole(info.getProject(), msg, "Done!"); local
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileReader.java 52 String msg = String.format( local
55 throw new InvalidProtocolBufferException(msg);
  /system/core/debuggerd/
util.cpp 33 msghdr msg = { local
36 auto cmsg = CMSG_FIRSTHDR(&msg);
42 return TEMP_FAILURE_RETRY(sendmsg(sockfd, &msg, 0));
49 msghdr msg = { local
56 auto cmsg = CMSG_FIRSTHDR(&msg);
61 ssize_t result = TEMP_FAILURE_RETRY(recvmsg(sockfd, &msg, 0));
67 bool received_fd = msg.msg_controllen == sizeof(cmsg_buf);
72 if ((msg.msg_flags & MSG_TRUNC) != 0) {
75 } else if ((msg.msg_flags & MSG_CTRUNC) != 0) {
  /system/core/init/
property_service_test.cpp 43 uint32_t msg = PROP_MSG_SETPROP2; local
47 ASSERT_EQ(static_cast<ssize_t>(sizeof(msg)), send(fd, &msg, sizeof(msg), 0));
  /system/extras/simpleperf/demo/SimpleperfExampleWithNative/app/src/main/cpp/
native-lib.cpp 28 jstring msg = env->NewStringUTF(function_name); local
29 if (msg == nullptr) {
32 jthrowable obj = (jthrowable)env->NewObject(cls, cid, msg, err);

Completed in 1070 milliseconds

<<11121314151617181920>>