Searched defs:cause (Results 151 - 175 of 241) sorted by relevance

12345678910

/external/protobuf/java/src/main/java/com/google/protobuf/
H A DDescriptors.java1559 final Throwable cause) {
1561 initCause(cause);
1556 DescriptorValidationException( final GenericDescriptor problemDescriptor, final String description, final Throwable cause) argument
/external/vixl/src/a64/
H A Ddebugger-a64.cc396 InvalidCommand(std::vector<Token*> args, int index, const char* cause) argument
397 : args_(args), index_(index), cause_(cause) {}
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ecf.identity_3.1.0.v20100529-0735.jar ... s?defs= " (java.lang.Throwable) Throwable cause public void " href="/5.1.0_r1/s? ...
H A Dorg.eclipse.osgi.services_3.2.100.v20100503.jar ... java.lang.Throwable) String property String reason Throwable cause public java.lang.String getProperty () public java. ...
H A Dorg.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.logging_1.0.4.v201005080501.jar ... .LogConfigurationException extends java.lang.RuntimeException { protected Throwable cause public void " href="/5.1.0_r1/s? ...
H A Dorg.eclipse.equinox.frameworkadmin_2.0.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ecf_3.1.0.v20100529-0735.jar ... s?defs= " (java.lang.Throwable) Throwable cause public void " href="/5.1.0_r1/s? ...
H A Dorg.eclipse.core.commands_3.6.0.I20100512-1500.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/net/disk_cache/blockfile/
H A Dbackend_impl.cc1873 int cause = data_->header.create_time ? 0 : 1; local
1875 cause |= 2;
1876 CACHE_UMA(CACHE_ERROR, "ShortReport", 0, cause);
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_asconf.c105 sctp_asconf_error_response(uint32_t id, uint16_t cause, uint8_t *error_tlv, argument
127 error->code = htons(cause);
958 * to know whether the newly added address on the ifn would cause a
1571 /* invalid error cause length */
1573 "asconf_process_error: cause element too long\n");
H A Dsctp_header.h224 /* Used for NAT state error cause */
226 uint16_t cause; member in struct:sctp_missing_nat_state
233 uint16_t cause; member in struct:sctp_inv_mandatory_param
238 * We include this to 0 it since only a missing cookie will cause
245 uint16_t cause; member in struct:sctp_unresolv_addr
328 /* optional error cause may follow */
393 struct sctp_paramhdr ph;/* really an error cause */
405 struct sctp_paramhdr ph;/* really an error cause */
H A Dsctp.h389 * error cause parameters (user visible)
400 /* optional cause-specific info may follow */
404 struct sctp_error_cause cause; /* code=SCTP_ERROR_INVALID_STREAM */ member in struct:sctp_error_invalid_stream
410 struct sctp_error_cause cause; /* code=SCTP_ERROR_MISSING_PARAM */ member in struct:sctp_error_missing_param
416 struct sctp_error_cause cause; /* code=SCTP_ERROR_STALE_COOKIE */ member in struct:sctp_error_stale_cookie
421 struct sctp_error_cause cause; /* code=SCTP_ERROR_OUT_OF_RESOURCES */ member in struct:sctp_error_out_of_resource
425 struct sctp_error_cause cause; /* code=SCTP_ERROR_UNRESOLVABLE_ADDR */ member in struct:sctp_error_unresolv_addr
430 struct sctp_error_cause cause; /* code=SCTP_ERROR_UNRECOG_CHUNK */ member in struct:sctp_error_unrecognized_chunk
435 struct sctp_error_cause cause; /* code=SCTP_CAUSE_NO_USER_DATA */ member in struct:sctp_error_no_user_data
/external/guava/guava-tests/test/com/google/common/cache/
H A DLocalCacheTest.java869 QueuingRemovalListener<K, V> listener, K key, V value, RemovalCause cause) {
873 assertSame(cause, notification.getCause());
868 assertNotified( QueuingRemovalListener<K, V> listener, K key, V value, RemovalCause cause) argument
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DFuturesTest.java882 Exception cause, boolean expression) {
884 failWithCause(cause, smartToString(inputs));
1262 TestException(@Nullable Throwable cause) { argument
1263 super(cause);
1820 public TwoArgConstructorException(String message, Throwable cause) { argument
1821 super(message, cause);
1827 public TwoArgConstructorRuntimeException(String message, Throwable cause) { argument
1828 super(message, cause);
1833 private ExceptionWithPrivateConstructor(String message, Throwable cause) { argument
1834 super(message, cause);
881 smartAssertTrue(ImmutableSet<ListenableFuture<String>> inputs, Exception cause, boolean expression) argument
1937 failWithCause(Throwable cause, String message) argument
[all...]
/external/chromium_org/net/cookies/
H A Dcookie_monster.cc262 CookieMonsterDelegate::ChangeCause cause; member in struct:net::__anon9122::ChangeCausePair_struct
1896 delegate_->OnCookieChanged(*cc, true, mapping.cause);
2049 DeletionCause cause,
2055 InternalDeleteCookie((*it), true, cause);
2047 GarbageCollectDeleteRange( const Time& current, DeletionCause cause, CookieItVector::iterator it_begin, CookieItVector::iterator it_end) argument
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeap.cpp2340 void Heap::collectGarbage(ThreadState::StackState stackState, ThreadState::CauseOfGC cause) argument
2359 "forced", cause == ThreadState::ForcedGC);
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java2049 * cause a concurrent read operation to see inconsistent data. This is made easier by the
2230 Throwable cause = ee.getCause();
2231 if (cause instanceof Error) {
2232 throw new ExecutionError((Error) cause);
2233 } else if (cause instanceof RuntimeException) {
2234 throw new UncheckedExecutionException(cause);
2666 void enqueueNotification(ReferenceEntry<K, V> entry, RemovalCause cause) { argument
2667 enqueueNotification(entry.getKey(), entry.getHash(), entry.getValueReference(), cause);
2672 RemovalCause cause) {
2674 if (cause
2671 enqueueNotification(@ullable K key, int hash, ValueReference<K, V> valueReference, RemovalCause cause) argument
3267 removeValueFromChain(ReferenceEntry<K, V> first, ReferenceEntry<K, V> entry, @Nullable K key, int hash, ValueReference<K, V> valueReference, RemovalCause cause) argument
3408 removeEntry(ReferenceEntry<K, V> entry, int hash, RemovalCause cause) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DMapMakerInternalMap.java2060 * cause a concurrent read operation to see inconsistent data. This is made easier by the
2393 void enqueueNotification(ReferenceEntry<K, V> entry, RemovalCause cause) { argument
2394 enqueueNotification(entry.getKey(), entry.getHash(), entry.getValueReference().get(), cause);
2397 void enqueueNotification(@Nullable K key, int hash, @Nullable V value, RemovalCause cause) { argument
2399 RemovalNotification<K, V> notification = new RemovalNotification<K, V>(key, value, cause);
2784 RemovalCause cause;
2786 cause = RemovalCause.EXPLICIT;
2788 cause = RemovalCause.COLLECTED;
2794 enqueueNotification(entryKey, hash, entryValue, cause);
2827 RemovalCause cause;
3023 removeEntry(ReferenceEntry<K, V> entry, int hash, RemovalCause cause) argument
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
/external/chromium_org/third_party/bintrees/bintrees/
H A Dcwalker.c444 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); /*proto*/
2913 CYTHON_UNUSED PyObject *cause) {
2978 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { argument
3026 if (cause && cause != Py_None) {
3028 if (PyExceptionClass_Check(cause)) {
3029 fixed_cause = PyObject_CallObject(cause, NULL);
3033 else if (PyExceptionInstance_Check(cause)) {
3034 fixed_cause = cause;
2912 __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, CYTHON_UNUSED PyObject *cause) argument
H A Dqavltree.c464 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); /*proto*/
2395 CYTHON_UNUSED PyObject *cause) {
2460 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { argument
2508 if (cause && cause != Py_None) {
2510 if (PyExceptionClass_Check(cause)) {
2511 fixed_cause = PyObject_CallObject(cause, NULL);
2515 else if (PyExceptionInstance_Check(cause)) {
2516 fixed_cause = cause;
2394 __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, CYTHON_UNUSED PyObject *cause) argument
H A Dqbintree.c464 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); /*proto*/
2390 CYTHON_UNUSED PyObject *cause) {
2455 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { argument
2503 if (cause && cause != Py_None) {
2505 if (PyExceptionClass_Check(cause)) {
2506 fixed_cause = PyObject_CallObject(cause, NULL);
2510 else if (PyExceptionInstance_Check(cause)) {
2511 fixed_cause = cause;
2389 __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, CYTHON_UNUSED PyObject *cause) argument
H A Dqrbtree.c464 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); /*proto*/
2392 CYTHON_UNUSED PyObject *cause) {
2457 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { argument
2505 if (cause && cause != Py_None) {
2507 if (PyExceptionClass_Check(cause)) {
2508 fixed_cause = PyObject_CallObject(cause, NULL);
2512 else if (PyExceptionInstance_Check(cause)) {
2513 fixed_cause = cause;
2391 __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, CYTHON_UNUSED PyObject *cause) argument
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dcommons-logging-1.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/logging/ ...

Completed in 1633 milliseconds

12345678910