HomeSort by relevance Sort by last modified time
    Searched refs:cause (Results 176 - 200 of 262) sorted by null

1 2 3 4 5 6 78 91011

  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureExceptionTest.java 103 * Assertion: constructs SignatureException when <code>cause</code> is
113 Throwable cause = null; local
114 SignatureException tE = new SignatureException(cause);
121 * Assertion: constructs SignatureException when <code>cause</code> is not
145 * Assertion: constructs SignatureException when <code>cause</code> is
162 * Assertion: constructs SignatureException when <code>cause</code> is
183 * Assertion: constructs SignatureException when <code>cause</code> is not
207 * Assertion: constructs SignatureException when <code>cause</code> is not
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLExceptionTest.java 81 * Assertion: constructs SSLException when <code>cause</code> is null
90 Throwable cause = null; local
91 SSLException sE = new SSLException(cause);
98 * Assertion: constructs SSLException when <code>cause</code> is not
121 * Assertion: constructs SSLException when <code>cause</code> is null
138 * Assertion: constructs SSLException when <code>cause</code> is null
159 * Assertion: constructs SSLException when <code>cause</code> is not
183 * Assertion: constructs SSLException when <code>cause</code> is not
  /libcore/luni/src/test/java/tests/security/cert/
CRLExceptionTest.java 104 * constructs CRLException when <code>cause</code> is null
113 Throwable cause = null; local
114 CRLException tE = new CRLException(cause);
121 * constructs CRLException when <code>cause</code> is not null
144 * Assertion: constructs CRLException when <code>cause</code> is null
161 * Assertion: constructs CRLException when <code>cause</code> is null
182 * Assertion: constructs CRLException when <code>cause</code> is not null
206 * Assertion: constructs CRLException when <code>cause</code> is not null
CertPathBuilderExceptionTest.java 107 * Assertion: constructs CertPathBuilderException when <code>cause</code>
117 Throwable cause = null; local
118 CertPathBuilderException tE = new CertPathBuilderException(cause);
125 * Assertion: constructs CertPathBuilderException when <code>cause</code>
150 * <code>cause</code> is null <code>msg</code> is null
167 * <code>cause</code> is null <code>msg</code> is not null
188 * <code>cause</code> is not null <code>msg</code> is null
212 * <code>cause</code> is not null <code>msg</code> is not null
CertStoreExceptionTest.java 104 * Assertion: constructs CertStoreException when <code>cause</code> is
114 Throwable cause = null; local
115 CertStoreException tE = new CertStoreException(cause);
122 * Assertion: constructs CertStoreException when <code>cause</code> is not
146 * Assertion: constructs CertStoreException when <code>cause</code> is
163 * Assertion: constructs CertStoreException when <code>cause</code> is
184 * Assertion: constructs CertStoreException when <code>cause</code> is not
208 * Assertion: constructs CertStoreException when <code>cause</code> is not
CertificateEncodingExceptionTest.java 108 * <code>cause</code> is null
117 Throwable cause = null; local
119 cause);
127 * <code>cause</code> is not null
152 * <code>cause</code> is null <code>msg</code> is null
170 * <code>cause</code> is null <code>msg</code> is not null
191 * <code>cause</code> is not null <code>msg</code> is null
216 * <code>cause</code> is not null <code>msg</code> is not null
CertificateExceptionTest.java 106 * Assertion: constructs CertificateException when <code>cause</code> is
116 Throwable cause = null; local
117 CertificateException tE = new CertificateException(cause);
124 * Assertion: constructs CertificateException when <code>cause</code> is
149 * <code>cause</code> is null <code>msg</code> is null
166 * <code>cause</code> is null <code>msg</code> is not null
187 * <code>cause</code> is not null <code>msg</code> is null
211 * <code>cause</code> is not null <code>msg</code> is not null
CertificateParsingExceptionTest.java 108 * <code>cause</code> is null
117 Throwable cause = null; local
118 CertificateParsingException tE = new CertificateParsingException(cause);
126 * <code>cause</code> is not null
150 * <code>cause</code> is null <code>msg</code> is null
168 * <code>cause</code> is null <code>msg</code> is not null
189 * <code>cause</code> is not null <code>msg</code> is null
214 * <code>cause</code> is not null <code>msg</code> is not null
  /libcore/luni/src/test/java/tests/security/spec/
InvalidKeySpecExceptionTest.java 106 * Assertion: constructs InvalidKeySpecException when <code>cause</code>
116 Throwable cause = null; local
117 InvalidKeySpecException tE = new InvalidKeySpecException(cause);
124 * Assertion: constructs InvalidKeySpecException when <code>cause</code>
149 * <code>cause</code> is null <code>msg</code> is null
166 * <code>cause</code> is null <code>msg</code> is not null
170 notes = "Verifies null as a cause parameter.",
187 * <code>cause</code> is not null <code>msg</code> is null
211 * <code>cause</code> is not null <code>msg</code> is not null
  /prebuilt/common/osgi/
osgi.jar 
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipPhone.java 614 protected void onCallEnded(DisconnectCause cause) {
616 setDisconnectCause(cause);
627 + "cause: " + getDisconnectCause() + ", on phone "
679 protected void onError(DisconnectCause cause) {
680 if (DEBUG) Log.d(LOG_TAG, "SIP error: " + cause);
681 onCallEnded(cause);
885 protected abstract void onCallEnded(Connection.DisconnectCause cause);
886 protected abstract void onError(Connection.DisconnectCause cause);
    [all...]
SipCommandInterface.java 208 public void acknowledgeLastIncomingGsmSms(boolean success, int cause,
212 public void acknowledgeLastIncomingCdmaSms(boolean success, int cause,
  /cts/tools/host/src/com/android/cts/
TestPackage.java 609 * Generate the cause of package action timeout.
615 String cause; local
617 cause = testDevice.getSerialNumber() + " is offline.";
619 cause = "Unknown reason.";
625 Log.e(type + " met timeout due to " + cause, null);
    [all...]
  /external/tcpdump/
sctpHeader.h 263 u_int16_t cause; member in struct:sctpOpErrorCause
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/export/
MultiApkExportHelper.java 85 public ExportException(Throwable cause, String format, Object... args) {
86 super(String.format(format, args), cause); local
89 public ExportException(String message, Throwable cause) {
90 super(message, cause);
  /dalvik/vm/mterp/x86-atom/
OP_CHECK_CAST.S 82 # const char* messageDescriptor, Object* cause)
  /external/v8/test/mjsunit/
deep-recursion.js 30 * cause stack overflows.
debug-stepin-builtin.js 38 // Simple debug event handler which first time will cause 'step in' action
debug-stepout-to-builtin.js 38 // Simple debug event handler which first time will cause 'step out' action
  /external/protobuf/java/src/main/java/com/google/protobuf/
GeneratedMessage.java 943 final Throwable cause = e.getCause(); local
    [all...]
  /libcore/luni/src/main/java/java/lang/
Class.java 237 Throwable cause = e.getCause(); local
238 if (cause instanceof ExceptionInInitializerError) {
239 throw (ExceptionInInitializerError) cause;
    [all...]
  /frameworks/base/core/java/android/pim/
ICalendar.java 51 public FormatException(String msg, Throwable cause) {
52 super(msg, cause);
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
PolicyUtils.java 236 public ExpansionFailedException(String message, Throwable cause) {
237 super(message, cause);
  /prebuilt/sdk/9/
android.jar 
  /prebuilt/sdk/10/
android.jar 

Completed in 641 milliseconds

1 2 3 4 5 6 78 91011