Searched defs:cause (Results 126 - 150 of 241) sorted by relevance

12345678910

/external/wpa_supplicant_8/wpa_supplicant/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ecf.filetransfer_4.0.0.v20100529-0735.jar ... s?defs= " (java.lang.Throwable) Throwable cause public void " href="/5.1.0_r1/s? ...
/external/chromium_org/content/browser/compositor/
H A Dgpu_process_transport_factory.cc296 // Destroying the GLHelper may cause some async actions to be cancelled,
309 DCHECK(!gl_helper_) << "Destroying the GLHelper should not cause a new "
432 CauseForGpuLaunch cause = local
435 BrowserGpuChannelHostFactory::instance()->EstablishGpuChannelSync(cause));
/external/chromium_org/net/cookies/
H A Dcookie_monster_store_test.cc95 CookieMonster::Delegate::ChangeCause cause) {
92 OnCookieChanged( const CanonicalCookie& cookie, bool removed, CookieMonster::Delegate::ChangeCause cause) argument
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DExceptions.c51 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); /*proto*/
62 CYTHON_UNUSED PyObject *cause) {
63 /* 'cause' is only used in Py3 */
137 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { argument
205 if (cause) {
207 if (cause && cause != Py_None) {
210 if (cause == Py_None) {
213 } else if (PyExceptionClass_Check(cause)) {
214 fixed_cause = PyObject_CallObject(cause, NUL
61 __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, CYTHON_UNUSED PyObject *cause) argument
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DFutures.java74 * {@link ExecutionException} with the actual cause of the exception.
584 * access to the cause.
724 // Set the cause of the exception as this future's exception
757 // Set the cause of the exception as this future's exception
766 // Set the cause of the exception as this future's exception
997 * <li>Any {@link ExecutionException} has its <i>cause</i> wrapped in an
998 * {@code X} if the cause is a checked exception, an {@link
999 * UncheckedExecutionException} if the cause is a {@code
1000 * RuntimeException}, or an {@link ExecutionError} if the cause is an
1011 * every error as an error. In addition, the cause o
1123 wrapAndThrowExceptionOrError( Throwable cause, Class<X> exceptionClass) argument
1182 wrapAndThrowUnchecked(Throwable cause) argument
1211 newWithCause( Class<X> exceptionClass, Throwable cause) argument
1243 newFromConstructor( Constructor<X> constructor, Throwable cause) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DHelpers.java157 static void fail(Throwable cause, Object message) { argument
160 assertionFailedError.initCause(cause);
/external/guava/guava-tests/test/com/google/common/base/
H A DThrowablesTest.java433 SomeCheckedException cause = new SomeCheckedException();
434 SomeChainingException exception = new SomeChainingException(cause);
435 assertSame(cause, Throwables.getRootCause(exception));
439 SomeCheckedException cause = new SomeCheckedException();
441 new SomeChainingException(new SomeChainingException(cause));
442 assertSame(cause, Throwables.getRootCause(exception));
452 public SomeChainingException(Throwable cause) { argument
453 super(cause);
/external/kernel-headers/original/uapi/linux/
H A Drose.h75 unsigned char cause; member in struct:rose_cause_struct
H A Dx25.h141 unsigned char cause; member in struct:x25_causediag
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
H A DDexBackedDexFile.java252 public NotADexFile(Throwable cause) { argument
253 super(cause);
260 public NotADexFile(String message, Throwable cause) { argument
261 super(message, cause);
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DLSSerializerImpl.java1496 * Creates an LSException. On J2SE 1.4 and above the cause for the exception will be set.
1498 private static LSException createLSException(short code, Throwable cause) { argument
1499 LSException lse = new LSException(code, cause != null ? cause.getMessage() : null);
1500 if (cause != null && ThrowableMethods.fgThrowableMethodsAvailable) {
1502 ThrowableMethods.fgThrowableInitCauseMethod.invoke(lse, new Object [] {cause});
/external/chromium_org/chrome/browser/extensions/api/cookies/
H A Dcookies_api.cc151 // Map the internal cause to an external string.
152 std::string cause; local
153 switch (details->cause) {
155 cause = keys::kExplicitChangeCause;
159 cause = keys::kOverwriteChangeCause;
163 cause = keys::kExpiredChangeCause;
167 cause = keys::kEvictedChangeCause;
171 cause = keys::kExpiredOverwriteChangeCause;
177 dict->SetString(keys::kCauseKey, cause);
/external/chromium_org/content/browser/gpu/
H A Dbrowser_gpu_channel_host_factory.cc68 static scoped_refptr<EstablishRequest> Create(CauseForGpuLaunch cause,
80 explicit EstablishRequest(CauseForGpuLaunch cause,
102 BrowserGpuChannelHostFactory::EstablishRequest::Create(CauseForGpuLaunch cause, argument
106 new EstablishRequest(cause, gpu_client_id, gpu_host_id);
118 CauseForGpuLaunch cause,
122 cause_for_gpu_launch_(cause),
207 // /anyway/, so it won't cause additional jank.
323 // so it won't cause additional jank.
117 EstablishRequest( CauseForGpuLaunch cause, int gpu_client_id, int gpu_host_id) argument
H A Dgpu_process_host.cc134 CauseForGpuLaunch cause,
136 GpuProcessHost* host = GpuProcessHost::Get(kind, cause);
288 CauseForGpuLaunch cause) {
300 if (cause == CAUSE_FOR_GPU_LAUNCH_NO_LAUNCH)
308 cause,
343 CauseForGpuLaunch cause,
348 &SendGpuProcessMessage, kind, cause, message))) {
133 SendGpuProcessMessage(GpuProcessHost::GpuProcessKind kind, CauseForGpuLaunch cause, IPC::Message* message) argument
287 Get(GpuProcessKind kind, CauseForGpuLaunch cause) argument
342 SendOnIO(GpuProcessKind kind, CauseForGpuLaunch cause, IPC::Message* message) argument
/external/chromium_org/remoting/android/cast/src/org/chromium/chromoting/
H A DCastExtensionHandler.java170 public void onConnectionSuspended(int cause) { argument
/external/qemu/target-mips/
H A Dhelper.c591 int cause = -1; local
673 cause = 0;
678 cause = 1;
681 cause = 2;
697 cause = 3;
713 cause = 4;
716 cause = 5;
719 cause = 6;
722 cause = 7;
725 cause
[all...]
/external/jarjar/lib/
H A Dmaven-plugin-api.jar ... .String, java.lang.Throwable) String message Throwable cause public java.lang.String getLongMessage () public java. ...
/external/chromium_org/content/browser/renderer_host/
H A Dcompositor_impl_android.cc302 CauseForGpuLaunch cause = local
304 factory->EstablishGpuChannel(cause,
550 CauseForGpuLaunch cause = local
553 cause,
/external/guava/guava/src/com/google/common/collect/
H A DMapMaker.java746 private final RemovalCause cause; field in class:MapMaker.RemovalNotification
748 RemovalNotification(@Nullable K key, @Nullable V value, RemovalCause cause) { argument
750 this.cause = cause;
754 * Returns the cause for which the entry was removed.
757 return cause;
761 * Returns {@code true} if there was an automatic removal due to eviction (the cause is neither
765 return cause.wasEvicted();
832 * Returns {@code true} if there was an automatic removal due to eviction (the cause is neither
971 Throwable cause
[all...]
/external/nist-sip/java/javax/sip/header/
H A DHeaderFactory.java122 ReasonHeader createReasonHeader(String protocol, int cause, String text) argument
/external/smack/src/com/kenai/jbosh/
H A DBOSHClient.java60 * possible to send an empty body to cause an immediate connection attempt
678 * @param cause the reason for the session termination, or {@code null}
681 private void dispose(final Throwable cause) { argument
695 if (cause == null) {
698 fireConnectionClosedOnError(cause);
1515 * @param cause cause of the termination
1518 final Throwable cause) {
1526 this, pendingRequestAcks, cause);
1517 fireConnectionClosedOnError( final Throwable cause) argument
/external/tcpdump/
H A DsctpHeader.h263 u_int16_t cause; member in struct:sctpOpErrorCause
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapMakerInternalMapTest.java426 QueuingRemovalListener<K, V> listener, K key, V value, RemovalCause cause) {
430 assertSame(cause, notification.getCause());
425 assertNotified( QueuingRemovalListener<K, V> listener, K key, V value, RemovalCause cause) argument
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DHeaderFactoryImpl.java796 * @param cause - the new integer value of the cause.
799 * unexpectedly while parsing the protocol, cause or text value.
805 int cause,
810 if (cause < 0)
811 throw new InvalidArgumentException("bad cause");
814 reason.setCause(cause);
803 createReasonHeader( String protocol, int cause, String text) argument

Completed in 638 milliseconds

12345678910