HomeSort by relevance Sort by last modified time
    Searched full:blocking (Results 526 - 550 of 1339) sorted by null

<<21222324252627282930>>

  /external/libnl/lib/
nl.c 394 * A non-blocking sockets causes the function to return immediately with
696 * A non-blocking sockets causes the function to return immediately if
729 * @pre The netlink socket must be in blocking state.
  /frameworks/av/include/private/media/
AudioTrackShared.h 243 // NULL or &kNonBlocking means non-blocking (zero timeout).
256 // WOULD_BLOCK Non-blocking mode and no frames are available.
435 // Always non-blocking.
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
post_proc_semaphore.cpp 52 zero. This case can induce horizontal and vertical blocking artifacts,
58 (q_block[n], n = 0,..., B_SIZE-1) are non-zero, vertical blocking artifacts
62 (q_block[n*B_SIZE], n = 0, ..., B_SIZE-1) are non-zero, horizontal blocking
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.cpp 193 static status_t MakeSocketBlocking(int s, bool blocking) {
194 // Make socket non-blocking.
201 if (blocking) {
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedSynchronizer.java 20 * Provides a framework for implementing blocking locks and related
28 * out all queuing and blocking mechanics. Subclasses can maintain
147 * computations before blocking. This gives most of the benefits of
161 * {@link java.util.Queue} classes, and {@link LockSupport} blocking
282 * spinlocks. We instead use them for blocking synchronizers, but
318 * <p>We also use "next" links to implement blocking mechanics.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SocketServer.py 265 """Handle one request, possibly blocking.
283 """Handle one request, without blocking.
287 no risk of blocking in get_request().
telnetlib.py 162 without blocking.
166 socket, without blocking.
404 """Read everything that's possible without blocking in I/O (eager).
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SocketServer.py 265 """Handle one request, possibly blocking.
283 """Handle one request, without blocking.
287 no risk of blocking in get_request().
telnetlib.py 162 without blocking.
166 socket, without blocking.
404 """Read everything that's possible without blocking in I/O (eager).
  /external/netperf/
nettest_sctp.c 98 non_block = 0, /* default to blocking sockets */
129 -B run the test in non-blocking mode\n\
628 /* now that we are connected, mark the socket as non-blocking */
800 * In blocking mode, we can call recvmsg. In non-blocking
    [all...]
  /external/libxml2/
nanohttp.c 481 * Since non-blocking sockets are used, wait for
520 * This is a blocking call (but it blocks in select(), not read()).
844 * non-blocking semantic on the socket, and allow 60 seconds for
922 __xmlIOErr(XML_FROM_HTTP, 0, "error setting non-blocking IO\n");
1260 * and saves them in @dest. This is a blocking call.
    [all...]
  /external/lldb/source/Core/
ConnectionFileDescriptor.cpp 334 // because somebody is doing a blocking read on our file descriptor. If that's the case,
462 case EAGAIN: // The file was marked for non-blocking I/O, and no data were ready to be read.
731 // or we have non-blocking IO
887 // or we have non-blocking IO
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
image.c 141 /* Set |sd| to be blocking. Returns True on success. */
151 /* Tries to read 'len' bytes from fd, blocking if necessary. Assumes
152 fd has been set in blocking mode. If it returns with the number of
169 /* Tries to write 'len' bytes to fd, blocking if necessary. Assumes
170 fd has been set in blocking mode. If it returns with the number of
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
SynchronousQueue.java 19 * A {@linkplain BlockingQueue blocking queue} in which each insert
106 * Blocking is mainly accomplished using LockSupport park/unpark,
159 * The number of times to spin before blocking in timed waits.
168 * The number of times to spin before blocking in untimed waits.
393 * preceded by spins to avoid blocking when producers and
    [all...]
LinkedTransferQueue.java 67 * and vice versa for enqueuing requests. Blocking Dual Queues
293 * spins a bit before blocking. In either case, before blocking
309 * nodes spinning vs blocking. Further, front threads that
386 * to Thread.yield) on multiprocessor before blocking when a node
395 * The number of times to spin before blocking when a node is
    [all...]
PriorityBlockingQueue.java 18 * An unbounded {@linkplain BlockingQueue blocking queue} that uses
20 * blocking retrieval operations. While this queue is logically
130 * Condition for blocking when empty
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DatagramChannelTest.java 422 // blocking mode
441 // Non blocking mode
    [all...]
  /ndk/docs/Additional_library_docs/opensles/
index.html     [all...]
  /docs/source.android.com/src/devices/audio/
terminology.jd 612 <a href="avoiding_pi.html#nonBlockingAlgorithms">non-blocking FIFO</a>, which is
670 Non-blocking audio input/output. Abstraction for AudioFlinger ports. The term
671 can be misleading as some implementations of the NBAIO API support blocking. The
  /external/boringssl/src/ssl/
d1_pkt.c 255 * or non-blocking IO.
279 return n; /* error or non-blocking */
705 * all data has been sent or non-blocking IO. */
  /external/chromium-trace/trace-viewer/tracing/tracing/extras/android/
android_auditor.html 306 'Blocking Garbage Collection',
307 'Blocking GCs are caused by object churn, and made worse by having large numbers of objects in the heap. Avoid allocating objects during animations/scrolling, and recycle Bitmaps to avoid triggering garbage collection.', // @suppress longLineCheck
374 key = 'Blocking I/O delay';
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/servlets/
DoSFilter.java 90 * <dd>how long to blocking wait for the throttle semaphore.</dd>
786 * blocking wait for the throttle semaphore.
797 * blocking wait for the throttle semaphore.
    [all...]
  /external/ppp/pppd/
tty.c 556 * First we open it in non-blocking mode so we can set the
593 warn("Couldn't reset non-blocking mode on device: %m");
1054 /* set all the fds to non-blocking mode */
    [all...]
  /frameworks/av/media/libmedia/
AudioRecord.cpp 749 // Non-blocking if track is stopped
799 ssize_t AudioRecord::read(void* buffer, size_t userSize, bool blocking)
819 blocking ? &ClientProxy::kForever : &ClientProxy::kNonBlocking);
    [all...]
  /libcore/luni/src/main/java/java/net/
Socket.java 352 * {@link SocketChannel} and that channel is in non-blocking mode then reads from the
397 * {@link SocketChannel} and that channel is in non-blocking mode then writes to the
540 * To take effect, this option must be set before the blocking method was called.
    [all...]

Completed in 635 milliseconds

<<21222324252627282930>>