Searched defs:cause (Results 101 - 125 of 241) sorted by relevance

12345678910

/external/nist-sip/java/gov/nist/javax/sip/header/
H A DReason.java31 * reason-params = protocol-cause / reason-text
33 * protocol-cause = "cause" EQUAL cause
34 * cause = 1*DIGIT
67 /** Get the cause token.
68 *@return the cause code.
75 * Set the cause.
77 *@param cause - cause t
79 setCause(int cause) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DOfferRevokeProvider.java73 public OfferRevokePacket (String userJID, String userID, String cause, String sessionID) { argument
76 this.reason = cause;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
H A DDexBackedOdexFile.java133 public NotAnOdexFile(Throwable cause) { argument
134 super(cause);
141 public NotAnOdexFile(String message, Throwable cause) { argument
142 super(message, cause);
/external/smali/util/src/main/java/org/jf/util/
H A DExceptionWithContext.java73 * @param cause null-ok; exception that caused this one
75 public ExceptionWithContext(Throwable cause) { argument
76 this(cause, null);
83 * @param cause null-ok; exception that caused this one
85 public ExceptionWithContext(Throwable cause, String message, Object... formatArgs) { argument
87 (cause != null) ? cause.getMessage() : null,
88 cause);
90 if (cause instanceof ExceptionWithContext) {
91 String ctx = ((ExceptionWithContext) cause)
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMException.java79 * Returns the cause of this throwable or <code>null</code> if the
80 * cause is nonexistent or unknown. (The cause is the throwable that
91 * Initializes the <i>cause</i> of this throwable to the specified value.
92 * (The cause is the throwable that caused this throwable to get thrown.)
101 * @param cause the cause (which is saved for later retrieval by the
103 * permitted, and indicates that the cause is nonexistent or
106 * @throws IllegalArgumentException if <code>cause</code> is this
108 * be its own cause
114 initCause(Throwable cause) argument
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omaha/
H A DRequestFailureException.java34 public RequestFailureException(String message, Throwable cause) { argument
35 this(message, cause, ERROR_UNDEFINED);
38 public RequestFailureException(String message, Throwable cause, int error) { argument
39 super(message, cause);
/external/chromium_org/chrome/browser/net/
H A Dcookie_store_util.cc47 net::CookieMonster::Delegate::ChangeCause cause) OVERRIDE {
51 this, cookie, removed, cause));
74 net::CookieMonster::Delegate::ChangeCause cause) {
77 ChromeCookieDetails cookie_details(&cookie, removed, cause);
71 OnCookieChangedAsyncHelper( const net::CanonicalCookie& cookie, bool removed, net::CookieMonster::Delegate::ChangeCause cause) argument
H A Devicted_domain_cookie_counter.cc100 ChangeCause cause) {
104 if (cause == net::CookieMonster::Delegate::CHANGE_COOKIE_EVICTED)
111 next_cookie_monster_delegate_->OnCookieChanged(cookie, removed, cause);
97 OnCookieChanged( const net::CanonicalCookie& cookie, bool removed, ChangeCause cause) argument
/external/emma/ant/ant14/com/vladium/emma/ant/
H A DSuppressableTask.java89 public static BuildException newBuildException (final String msg, final Throwable cause, final Location location) argument
95 return new BuildException (prefixedMsg, cause, location);
/external/emma/core/java12/com/vladium/util/exception/
H A DAbstractException.java94 * Constructs an exception with null message and null cause.
103 * Constructs an exception with given error message/code and null cause.
115 * Constructs an exception with given error message/code and null cause.
130 * Constructs an exception with null error message/code and given cause.
132 * @param cause the cause [nested exception] [can be null]
134 public AbstractException (final Throwable cause) argument
137 m_cause = cause;
142 * Constructs an exception with given error message/code and given cause.
145 * @param cause th
147 AbstractException(final String message, final Throwable cause) argument
163 AbstractException(final String message, final Object [] arguments, final Throwable cause) argument
[all...]
H A DAbstractRuntimeException.java94 * Constructs an exception with null message and null cause.
103 * Constructs an exception with given error message/code and null cause.
115 * Constructs an exception with given error message/code and null cause.
130 * Constructs an exception with null error message/code and given cause.
132 * @param cause the cause [nested exception] [can be null]
134 public AbstractRuntimeException (final Throwable cause) argument
137 m_cause = cause;
142 * Constructs an exception with given error message/code and given cause.
145 * @param cause th
147 AbstractRuntimeException(final String message, final Throwable cause) argument
163 AbstractRuntimeException(final String message, final Object [] arguments, final Throwable cause) argument
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractService.java61 * invocation of this method should cause a call to {@link #notifyStarted()},
63 * fails, the invocation should cause a call to {@link
74 * of this method should cause a call to {@link #notifyStopped()}, either
76 * invocation should cause a call to {@link #notifyFailed(Throwable)} instead.
139 * started. It will cause the service to transition from {@link
168 * stopped. It will cause the service to transition from {@link
197 protected final void notifyFailed(Throwable cause) { argument
198 checkNotNull(cause);
203 startup.setException(cause);
205 "Service failed to start.", cause));
[all...]
/external/junit/src/org/junit/runner/
H A DRequest.java32 * @return a <code>Request</code> that will cause a single test be run
43 * @return a <code>Request</code> that will cause all tests in the class to be run
53 * @return a <code>Request</code> that will cause all tests in the class to be run
64 * @return a <code>Request</code> that will cause all tests in the classes to be run
81 * @return a <code>Request</code> that will cause all tests in the classes to be run
92 public static Request errorReport(Class<?> klass, Throwable cause) { argument
93 return runner(new ErrorReportingRunner(klass, cause));
/external/libunwind/src/ptrace/
H A D_UPT_access_reg.c294 uint64_t cause; member in struct:__anon24716
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H A DDatabaseConfig.java119 public CannotLoadDatabaseMapDriverException(String message, Throwable cause) { argument
120 super(message, cause);
/external/smack/src/com/kenai/jbosh/
H A DBOSHClientConnEvent.java51 private final Throwable cause; field in class:BOSHClientConnEvent
61 * @param cCause cause of the error condition, or {@code null} when no
71 cause = cCause;
76 "Cannot be connected and have a cause"));
123 * @param cause cause of termination
129 final Throwable cause) {
130 return new BOSHClientConnEvent(source, false, outstanding, cause);
161 return cause != null;
165 * Returns the underlying cause o
126 createConnectionClosedOnErrorEvent( final BOSHClient source, final List<ComposableBody> outstanding, final Throwable cause) argument
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
H A DOperatorHelper.java446 // TODO: put somewhere public so cause easily accessed
450 private Throwable cause; field in class:OperatorHelper.OpCertificateException
452 public OpCertificateException(String msg, Throwable cause) argument
456 this.cause = cause;
461 return cause;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
H A DCertificateFactory.java376 private Throwable cause; field in class:CertificateFactory.ExCertificateException
378 public ExCertificateException(Throwable cause) argument
380 this.cause = cause;
383 public ExCertificateException(String msg, Throwable cause) argument
387 this.cause = cause;
392 return cause;
/external/chromium_org/net/filter/
H A Dsdch_filter.cc208 ResponseCorruptionDetectionCause cause = RESPONSE_NONE; local
211 // cause a pass through. All other bad codes will fall into a
214 cause = RESPONSE_404;
218 cause = RESPONSE_NOT_200;
225 cause = RESPONSE_OLD_UNENCODED;
241 cause = RESPONSE_TENTATIVE_SDCH;
244 // The common cause is a restart of the browser, where we try to render
246 cause = RESPONSE_NO_DICTIONARY;
251 cause = RESPONSE_CORRUPT_SDCH;
264 cause
[all...]
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLX509CertificateFactory.java50 public ParsingException(Exception cause) { argument
51 super(cause);
54 public ParsingException(String message, Exception cause) { argument
55 super(message, cause);
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DTemplateCompiler.java146 List<Diagnostic<? extends JavaFileObject>> diagnostics, Exception cause)
156 throw new JSilverCompilationException(message.toString(), cause);
145 throwExceptionWithLotsOfDiagnosticInfo(CharSequence javaSource, String errorMessage, List<Diagnostic<? extends JavaFileObject>> diagnostics, Exception cause) argument
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DNettyHttpClient.java192 @Override public void exceptionCaught(ChannelHandlerContext context, Throwable cause) { argument
193 System.out.println("Failed: " + cause);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
H A DTryListBuilder.java86 public InvalidTryException(Throwable cause) { argument
87 super(cause);
90 public InvalidTryException(Throwable cause, String message, Object... formatArgs) { argument
91 super(cause, message, formatArgs);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Daccounting.c242 int cause = sta->acct_terminate_cause; local
324 cause = RADIUS_ACCT_TERMINATE_CAUSE_ADMIN_REBOOT;
326 if (stop && cause &&
328 cause)) {
/external/wpa_supplicant_8/src/ap/
H A Daccounting.c242 int cause = sta->acct_terminate_cause; local
324 cause = RADIUS_ACCT_TERMINATE_CAUSE_ADMIN_REBOOT;
326 if (stop && cause &&
328 cause)) {

Completed in 4459 milliseconds

12345678910