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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
async-sigs.stderr.exp 1 testing: blocking=0 caught=11 fatal=7... PASSED
2 testing: blocking=0 caught=11 fatal=1... PASSED
3 testing: blocking=0 caught=10 fatal=7... PASSED
4 testing: blocking=0 caught=10 fatal=1... PASSED
5 testing: blocking=1 caught=11 fatal=7... PASSED
6 testing: blocking=1 caught=11 fatal=1... PASSED
7 testing: blocking=1 caught=10 fatal=7... PASSED
8 testing: blocking=1 caught=10 fatal=1... PASSED
async-sigs.stderr.exp-mips32 1 testing: blocking=0 caught=11 fatal=10... PASSED
2 testing: blocking=0 caught=11 fatal=1... PASSED
3 testing: blocking=0 caught=16 fatal=10... PASSED
4 testing: blocking=0 caught=16 fatal=1... PASSED
5 testing: blocking=1 caught=11 fatal=10... PASSED
6 testing: blocking=1 caught=11 fatal=1... PASSED
7 testing: blocking=1 caught=16 fatal=10... PASSED
8 testing: blocking=1 caught=16 fatal=1... PASSED
  /external/chromium_org/chrome/common/extensions/docs/templates/private/permissions/
web_request_blocking.html 1 Required if the extension uses the <a href="webRequest">chrome.webRequest</a> API in a blocking fashion.
  /frameworks/av/media/libnbaio/
README.txt 1 libnbaio (for "Non-Blocking Audio I/O") was originally intended to
2 be a purely non-blocking API. It has evolved to now include
3 a few blocking implementations of the interface.
16 non-blocking
21 non-blocking
31 write are optionally blocking:
37 non-blocking
  /external/harfbuzz_ng/test/shaping/tests/
MANIFEST 4 indic-pref-blocking.tests
  /external/libpcap/
pcap_setnonblock.3pcap 25 non-blocking mode on a capture device
44 puts a capture handle into ``non-blocking'' mode, or takes it out
45 of ``non-blocking'' mode, depending on whether the
53 ``non-blocking'' mode, an attempt to read from the capture descriptor
57 immediately rather than blocking waiting for packets to arrive.
61 will not work in ``non-blocking'' mode.
64 returns the current ``non-blocking'' state of the capture descriptor; it
  /external/okhttp/
concurrency.md 3 The HttpURLConnection API is a blocking API. You make a blocking write to send a request, and a blocking read to receive the response.
5 #### Blocking APIs
7 Blocking APIs are convenient because you get top-to-bottom procedural code without indirection. Network calls work like regular method calls: ask for data and it is returned. If the request fails, you get a stacktrace right were the call was made.
9 Blocking APIs may be inefficient because you hold a thread idle while waiting on the network. Threads are expensive because they have both a memory overhead and a context-switching overhead.
13 Framed protocols like spdy/3 and http/2 don't lend themselves to blocking APIs. Each application-layer thread wants to do blocking I/O for a specific stream, but the streams are multiplexed on the socket. You can't just talk to the socket, you need to cooperate with the other application-layer threads that you're sharing it with.
15 Framing rules make it impractical to implement spdy/3 or http/2 correctly on a single blocking thread. The flow-control features introduce feedback between reads and writes, requiring writes to acknowledge reads and reads to throttle writes.
17 In OkHttp we expose a blocking API over a framed protocol. This document explains the code and policy that makes that work
    [all...]
  /external/bison/m4/
signalblocking.m4 7 # Determine available signal blocking primitives. Three different APIs exist:
11 # For simplicity, here we check only for the POSIX signal blocking.
  /frameworks/opt/bitmap/src/com/android/bitmap/
BitmapCache.java 22 * Notify the cache when it should start and stop blocking for cache misses.
26 void setBlocking(boolean blocking);
  /libcore/luni/src/main/java/java/util/concurrent/
TimeoutException.java 10 * Exception thrown when a blocking operation times out. Blocking
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm-generic/
signal-defs.h 7 #define SIG_BLOCK 0 /* for blocking signals */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
signal-defs.h 7 #define SIG_BLOCK 0 /* for blocking signals */
  /external/chromium_org/net/base/
static_cookie_policy.h 22 // Do not perform any cookie blocking.
43 // Consults the user's third-party cookie blocking preferences to determine
47 // Consults the user's third-party cookie blocking preferences to determine
  /external/chromium_org/components/sync_driver/
non_blocking_data_type_manager.h 32 // enabling and disabling sync for a particular non-blocking type. This class
39 // Declares |type| as a non-blocking type. Should be done early
64 // Returns the list of all known non-blocking sync types that registered with
73 // List of data type controllers for non-blocking types.
76 // Deleter for elements of the non-blocking data types controller map.
  /external/chromium_org/content/browser/dom_storage/
dom_storage_task_runner.h 23 // shutdown-blocking primary sequence tasks.
25 // as shutdown-blocking primary sequence tasks.
28 // shutdown-blocking commit sequence tasks.
38 // post shutdown-blocking tasks on the primary sequence.
44 // Posts a shutdown blocking task to |sequence_id|.
106 // There is no distinction between [non]-shutdown-blocking or
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_truetype_font_list_host.cc 24 // Handles the font list request on the blocking pool.
53 // Use the blocking pool to get the font list (currently the only message)
77 // OK to use "slow blocking" version since we're on the blocking pool.
91 // OK to use "slow blocking" version since we're on the blocking pool.
  /external/bluetooth/bluedroid/osi/include/
semaphore.h 50 // without blocking. If select indicates the fd is writable, the caller may
51 // call |semaphore_post| without blocking. Note that there may be a race
53 // which results in blocking behaviour.
  /external/chromium_org/chrome/browser/sync/test/integration/
status_change_checker.h 31 // Returns true if the blocking wait was exited because of a timeout.
39 // Timeout length when blocking.
57 // Called when the blocking wait timeout is exceeded.
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractSelectableChannel.java 121 * if this channel is in blocking mode.
192 * Indicates whether this channel is in blocking mode.
194 * @return {@code true} if this channel is blocking, {@code false}
216 * Sets the blocking mode of this channel. A call to this method blocks if
223 * {@code true} for setting this channel's mode to blocking,
224 * {@code false} to set it to non-blocking.
253 * Implements the configuration of blocking/non-blocking mode.
255 * @param blocking true for blocking, false for non-blocking
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
test_util.h 30 // Runs a task posted to the blocking pool, including subsequent tasks posted
31 // to the UI message loop and the blocking pool.
33 // A task is often posted to the blocking pool with PostTaskAndReply(). In
35 // post a task to the blocking pool. This function processes these tasks
  /external/chromium_org/chrome/browser/chromeos/
version_loader.h 17 // Loading is done asynchronously in the blocking thread pool. Once loaded,
61 // VersionLoader calls into the Backend in the blocking thread pool to load
68 // blocking thread pool.
72 // blocking thread pool.
  /external/chromium_org/chrome/browser/media_galleries/win/
portable_device_map_service.h 23 // specified by the |device_location|. Called on a blocking pool thread.
31 // Callers of this function should post a task on a blocking pool thread to
40 // Called on a blocking pool thread.
46 // Called on a blocking pool thread.
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/catblock/
background.js 23 ["blocking"]);
  /external/chromium_org/components/os_crypt/
os_crypt_switches.h 17 // Uses mock keychain for testing purposes, which prevents blocking dialogs
  /external/chromium_org/content/test/
content_browser_test_utils_internal.h 19 // Navigates the frame represented by |node| to |url|, blocking until the

Completed in 699 milliseconds

1 2 3 4 5 6 7 8 91011>>