/external/libvncserver/vncterm/ |
VNConsole.h | 82 char vcGetChar(vncConsolePtr c); /* blocking */
|
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/ |
SynchronousHttpClient.java | 25 /** Any HTTP client with a blocking API. */
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
ServiceException.java | 34 * Thrown by blocking RPC methods when a failure occurs.
|
/external/sfntly/cpp/src/sfntly/port/ |
lock.h | 46 // Take the lock, blocking until it is available if necessary.
|
/frameworks/av/include/media/nbaio/ |
AudioStreamOutSink.h | 44 // This is an over-estimate, and could dupe the caller into making a blocking write()
|
NBAIO.h | 20 // Non-blocking audio I/O interface 23 // elsewhere. Implementations _should_ be non-blocking for all methods, especially read() and 140 // Abstract class (interface) representing a non-blocking data sink, for use by a data provider. 157 // Estimate of number of frames that could be written successfully now without blocking. 164 // WOULD_BLOCK Determining how many frames can be written without blocking would itself block. 177 // WOULD_BLOCK No frames can be transferred without blocking. 197 // WOULD_BLOCK No frames can be transferred without blocking. 242 // Abstract class (interface) representing a non-blocking data source, for use by a data consumer. 267 // WOULD_BLOCK Determining how many frames can be read without blocking would itself block. 282 // WOULD_BLOCK No frames can be transferred without blocking [all...] |
/frameworks/av/services/audioflinger/ |
FastThreadState.h | 47 NBLog::Writer* mNBLogWriter; // non-blocking logger
|
FastMixer.cpp | 186 // to avoid blocking here and to prevent possible priority inversion 373 // in the overall fast mix cycle being delayed. Should use a non-blocking FIFO. 428 // if non-NULL, then duplicate write() to this non-blocking sink 433 // FIXME write() is non-blocking and lock-free for a properly implemented NBAIO sink, 434 // but this code should be modified to handle both non-blocking and blocking sinks
|
/frameworks/base/docs/html/guide/topics/renderscript/reference/ |
rs_io.jd | 35 Send a message to the client, non-blocking 43 Send a message to the client, blocking 106 <span class='normal'>: Send a message to the client, non-blocking</span> 147 <span class='normal'>: Send a message to the client, blocking</span>
|
/frameworks/base/tools/layoutlib/bridge/src/android/os/ |
ServiceManager.java | 46 * service manager. Non-blocking.
|
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/ |
BlockingSessionCallback.java | 16 package com.android.ex.camera2.blocking; 37 * A camera session listener that implements blocking operations on session state changes. 96 * Create a blocking session listener without forwarding the session listener invocations 104 * Create a blocking session listener; forward original listener invocations
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
ChannelsTest.java | 40 * read in non-blocking mode.
|
/packages/apps/Camera2/src/com/android/camera/one/v2/core/ |
Request.java | 40 * @throws InterruptedException if interrupted while blocking for resources
|
/external/jetty/src/java/org/eclipse/jetty/websocket/ |
WebSocketGeneratorD00.java | 88 // Gently flush the data, issuing a non-blocking write 93 // Forcibly flush the data, issuing a blocking write 99 // Gently flush the data, issuing a non-blocking write
|
/frameworks/base/core/java/android/accounts/ |
AccountManagerFuture.java | 26 * <tt>get</tt> when the computation has completed, blocking if 82 * available without blocking, one may call {@link #isDone()} and {@link #isCancelled()}. 99 * available without blocking, one may call {@link #isDone()} and {@link #isCancelled()}.
|
/frameworks/base/core/java/com/android/internal/net/ |
VpnConfig.java | 100 public boolean blocking; field in class:VpnConfig 160 out.writeInt(blocking ? 1 : 0); 185 config.blocking = in.readInt() != 0;
|
/libcore/luni/src/main/java/java/nio/channels/ |
ServerSocketChannel.java | 88 * This method returns {@code null} when this channel is non-blocking and no 91 * method will always be in blocking mode. 97 * the channel is non-blocking and no connection is available.
|
/libcore/luni/src/main/java/java/nio/channels/spi/ |
AbstractInterruptibleChannel.java | 88 * that is potentially blocking. After this operation, the application 97 * {@code begin()} and that includes a potentially blocking I/O operation. 100 * pass {@code true} if the blocking operation has succeeded and
|
/packages/apps/Settings/src/com/android/settings/net/ |
UidDetailProvider.java | 78 public UidDetail getUidDetail(int uid, boolean blocking) { 87 } else if (!blocking) { 101 * Build {@link UidDetail} object, blocking until all {@link Drawable}
|
/system/bt/osi/include/ |
socket.h | 71 // in blocking. If this function returns -1, errno will also be set (see send(2) for 72 // possible errno values). If no bytes could be written without blocking, this 83 // Returns the number of bytes that can be read from |socket| without blocking. On error,
|
/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/ |
ImageBackend.java | 80 * tasks have no implementation, but emulate the processing delay by blocking 111 * Map for ImageShadowTask and release of blocking on 277 // Conditionally signal the blocking thread to go. 340 * non-blocking 364 * non-blocking 410 * non-blocking 420 * @throws InterruptedException occurs when call is set to be blocking and 448 // and the boolean flags for imaging closing and thread blocking 455 // Implement blocking if required 478 * @throws InterruptedException occurs when call is set to be blocking an [all...] |
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/testcases/ |
Camera2MultiViewTestCase.java | 20 import static com.android.ex.camera2.blocking.BlockingSessionCallback.*; 21 import static com.android.ex.camera2.blocking.BlockingStateCallback.*; 48 import com.android.ex.camera2.blocking.BlockingCameraManager; 49 import com.android.ex.camera2.blocking.BlockingSessionCallback; 50 import com.android.ex.camera2.blocking.BlockingStateCallback;
|
/external/v8/src/x64/ |
lithium-gap-resolver-x64.cc | 62 // graph. We first recursively perform any move blocking this one. We 86 // this call cannot create a blocking move via a swap (this loop does 87 // not miss any). Assume there is a non-blocking move with source A 92 // involved in the same cycle. In that case, the blocking move will 110 // we have a cycle. Search for such a blocking move and perform a swap to
|
/libcore/luni/src/main/java/libcore/io/ |
IoBridge.java | 118 * Use timeoutMs == 0 for a blocking connect with no timeout. 142 // 1. set the socket to non-blocking, 146 // 4. set the socket back to blocking. 148 // 1. set the socket to non-blocking. 151 // 2. call connect(2) non-blocking. 155 IoUtils.setBlocking(fd, true); // 4. set the socket back to blocking. 172 IoUtils.setBlocking(fd, true); // 4. set the socket back to blocking. 187 * Closes the supplied file descriptor and sends a signal to any threads are currently blocking. 189 * the AsynchronousCloseMonitor before they entered the blocking operation. 475 // We return 0 rather than throw if we try to read from an empty non-blocking pipe [all...] |
/libcore/luni/src/main/java/java/nio/ |
SocketChannelImpl.java | 196 // When in blocking mode, IoBridge.connect() will return without an exception when the 197 // socket is connected. When in non-blocking mode it will return without an exception 474 @Override protected void implConfigureBlocking(boolean blocking) throws IOException { 475 IoUtils.setBlocking(fd, blocking); 581 * Throws an IllegalBlockingModeException if the channel is in non-blocking 626 * Throws an IllegalBlockingModeException if the channel is in non-blocking
|