HomeSort by relevance Sort by last modified time
    Searched full:concurrency (Results 1 - 25 of 198) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/guava/
README.chromium 12 concurrency libraries, common annotations, string processing, I/O, and so forth.
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReadWriteLock.java 23 * <p>A read-write lock allows for a greater level of concurrency in
29 * In theory, the increase in concurrency permitted by the use of a read-write
31 * exclusion lock. In practice this increase in concurrency will only be fully
45 * increase in concurrency. Further, if the read operations are too short
69 * preference to the writer can reduce the potential for concurrency.
  /external/guava/guava/src/com/google/common/util/concurrent/
package-info.java 18 * Concurrency utilities.
  /external/llvm/test/Transforms/LICM/
scalar-promote-memmodel.ll 4 ; it would violate the concurrency memory model
  /external/chromium_org/third_party/sqlite/src/ext/async/
README.txt 16 1.3 Locking and Concurrency
76 1.3 Locking and Concurrency
82 between the concurrency offered by "normal" SQLite and SQLite
87 However concurrency is reduced as follows:
152 concurrency primitives is relatively easy. Search within sqlite3async.c
  /frameworks/base/docs/html/training/displaying-bitmaps/
process-bitmap.jd 15 <li><a href="#concurrency">Handle Concurrency</a></li>
48 {@link android.os.AsyncTask} and shows you how to handle concurrency issues.</p>
107 <h2 id="concurrency">Handle Concurrency</h2>
119 for Performance</a> further discusses dealing with concurrency, and offers a solution where the
display-bitmap.jd 38 components using a background thread and bitmap cache, while dealing with concurrency and
227 UI remains fluid, memory usage remains under control and concurrency is handled correctly (due to
316 here. However, you also need to wary of concurrency issues as the {@link android.widget.GridView}
318 href="process-bitmap.html#concurrency">Processing Bitmaps Off the UI Thread</a> lesson. Here is the
  /libcore/luni/src/main/java/java/sql/
Connection.java 129 * type {@code ResultSet.TYPE_FORWARD_ONLY} and concurrency level {@code
142 * concurrency arguments.
152 * one of the following concurrency mode specifiers:
169 * type, concurrency and holdability arguments.
179 * one of the following concurrency mode specifiers:
336 * {@link ResultSet#TYPE_FORWARD_ONLY} and concurrency
359 * one of the following concurrency mode specifiers:
378 * by the specified type, concurrency and holdability arguments.
390 * one of the following concurrency mode specifiers:
425 * {@link ResultSet#CONCUR_READ_ONLY} mode of concurrency
    [all...]
  /external/guava/guava-tests/test/com/google/common/testing/
FakeTickerTest.java 47 @GwtIncompatible("concurrency")
  /external/llvm/docs/
Atomics.rst 2 LLVM Atomic Instructions and Concurrency Guide
11 Historically, LLVM has not had very strong support for concurrency; some minimal
13 rough semantics in the presence of concurrency. However, this is changing;
45 with instructions with special semantics in the presence of concurrency. This
61 instructions with atomic ordering involved, concurrency does not matter, with
95 concurrency model was implemented, LLVM would perform this transformation.)
174 concurrency, please send an email to llvmdev.)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
message_pool.py 29 """Module for handling messages and concurrency for run-webkit-tests
31 and concurrency.futures.ProcessPoolExecutor, with the following differences:
38 If you don't need these features, use multiprocessing.Pool or concurrency.futures
  /external/chromium_org/chrome/browser/prerender/
prerender_link_manager.h 112 // Start any prerenders that can be started, respecting concurrency limits for
  /external/chromium_org/gpu/command_buffer/service/
command_buffer_service.h 46 // This allows concurrency between the writer and the reader while giving the
  /external/chromium_org/third_party/WebKit/Source/web/tests/
SpinLockTest.cpp 66 // concurrency.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
thread_db.h 225 int r_concurrency; /* Concurrency level requested by user. */
228 int a_concurrency_num; /* Achieved concurrency level, numerator. */
229 int a_concurrency_den; /* Achieved concurrency level, denominator. */
359 /* Set suggested concurrency level for process associated with TA. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
thread_db.h 225 int r_concurrency; /* Concurrency level requested by user. */
228 int a_concurrency_num; /* Achieved concurrency level, numerator. */
229 int a_concurrency_den; /* Achieved concurrency level, denominator. */
359 /* Set suggested concurrency level for process associated with TA. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
thread_db.h 225 int r_concurrency; /* Concurrency level requested by user. */
228 int a_concurrency_num; /* Achieved concurrency level, numerator. */
229 int a_concurrency_den; /* Achieved concurrency level, denominator. */
359 /* Set suggested concurrency level for process associated with TA. */
  /system/core/include/cutils/
hashmap.h 105 * Concurrency support.
  /external/chromium_org/third_party/sqlite/src/src/
test_server.c 48 ** instead of file-level locking for improved concurrency.
56 ** that writer. This is a huge increase in concurrency.
61 ** and concurrency improvements and memory usage reductions by going
  /external/guava/guava/src/com/google/common/cache/
CacheBuilder.java 279 * is {@code 60}, and the concurrency level is {@code 8}, then eight segments are created, each
300 * Guides the allowed concurrency among update operations. Used as a hint for internal sizing. The
303 * uniform, the actual concurrency observed may vary. Ideally, you should choose a value to
309 * concurrency than full synchronization. Defaults to 4.
315 * @throws IllegalStateException if a concurrency level was already set
318 checkState(this.concurrencyLevel == UNSET_INT, "concurrency level was already set to %s",
    [all...]
  /external/chromium_org/tools/win/link_limiter/
limiter.cc 279 L" The maximum concurrency can be manually set by setting the\n"
296 // Specifically, wait for a semaphore (whose concurrency is specified by
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 200 throw new SQLFeatureNotSupportedException("unsupported result set concurrency");
300 throw new SQLFeatureNotSupportedException("unsupported result set concurrency");
  /external/chromium/net/base/
keygen_handler_unittest.cc 120 // test tries to catch concurrency problems in the keygen implementation.
  /external/chromium/third_party/libjingle/source/talk/session/phone/
srtpfilter.h 96 // TODO: Figure out concurrency policy for SrtpFilter.
  /external/chromium_org/net/base/
keygen_handler_unittest.cc 107 // test tries to catch concurrency problems in the keygen implementation.

Completed in 2913 milliseconds

1 2 3 4 5 6 7 8