HomeSort by relevance Sort by last modified time
    Searched defs:closed (Results 1 - 25 of 194) sorted by null

1 2 3 4 5 6 7 8

  /external/conscrypt/src/compat/native/
NetFd.h 32 bool closed = (mFd == -1); local
33 if (closed) {
34 jniThrowException(mEnv, "java/net/SocketException", "Socket closed");
36 return closed;
  /external/doclava/res/assets/templates/
diff.cs 41 .handle-closed { property
42 background-image: url("<?cs var:triangle.closed?>");
70 $(tr).children(".handle").removeClass("handle-closed");
78 $(tr).children(".handle").addClass("handle-closed");
97 $(tr).children(".handle").removeClass("handle-closed");
105 $(tr).children(".handle").addClass("handle-closed");
  /libcore/luni/src/main/native/
NetFd.h 32 bool closed = (mFd == -1); local
33 if (closed) {
34 jniThrowException(mEnv, "java/net/SocketException", "Socket closed");
36 return closed;
  /external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java 52 private boolean closed = false; field in class:IdentityInputStream
63 if (!this.closed && this.in.isDataAvailable(10)) {
71 this.closed = true;
75 if (this.closed) {
83 if (this.closed) {
ContentLengthInputStream.java 83 /** True if the stream is closed. */
84 private boolean closed = false; field in class:ContentLengthInputStream
118 if (!closed) {
125 // to read after closed!
126 closed = true;
139 if (closed) {
140 throw new IOException("Attempted read from closed stream.");
163 if (closed) {
164 throw new IOException("Attempted read from closed stream.");
IdentityOutputStream.java 55 /** True if the stream is closed. */
56 private boolean closed = false; field in class:IdentityOutputStream
72 if (!this.closed) {
73 this.closed = true;
83 if (this.closed) {
84 throw new IOException("Attempted write to closed stream.");
94 if (this.closed) {
95 throw new IOException("Attempted write to closed stream.");
ContentLengthOutputStream.java 64 /** True if the stream is closed. */
65 private boolean closed = false; field in class:ContentLengthOutputStream
94 if (!this.closed) {
95 this.closed = true;
105 if (this.closed) {
106 throw new IOException("Attempted write to closed stream.");
123 if (this.closed) {
124 throw new IOException("Attempted write to closed stream.");
ChunkedInputStream.java 90 /** True if this stream is closed */
91 private boolean closed = false; field in class:ChunkedInputStream
118 if (this.closed) {
119 throw new IOException("Attempted read from closed stream.");
147 if (closed) {
148 throw new IOException("Attempted read from closed stream.");
259 if (!closed) {
266 closed = true;
ChunkedOutputStream.java 61 /** True if the stream is closed. */
62 private boolean closed = false; field in class:ChunkedOutputStream
141 if (this.closed) {
142 throw new IOException("Attempted write to closed stream.");
160 if (this.closed) {
161 throw new IOException("Attempted write to closed stream.");
185 if (!this.closed) {
186 this.closed = true;
  /external/guava/guava/src/com/google/common/io/
AppendableWriter.java 35 private boolean closed; field in class:AppendableWriter
66 this.closed = true;
113 if (closed) {
114 throw new IOException("Cannot write to a closed writer.");
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractInterruptibleChannel.java 38 private volatile boolean closed = false; field in class:AbstractInterruptibleChannel
56 return !closed;
60 * Closes an open channel. If the channel is already closed then this method
64 * If an attempt is made to perform an operation on a closed channel then a
76 if (!closed) {
78 if (!closed) {
79 closed = true;
103 * if this channel is closed by another thread while this method
115 if (!success && closed) {
124 * closed through another invocation of {@code close()} and that the metho
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
AbstractFileSystem.java 32 private boolean closed; field in class:AbstractFileSystem
40 this.closed = false;
51 closed = true;
57 return closed;
66 * Checks if this {@code FileSystem} was already closed, and throws an
70 * already closed
76 throw new IllegalStateException("file system was already closed");
  /external/chromium_org/third_party/skia/src/effects/
SkCornerPathEffect.cpp 44 bool closed; local
61 closed = iter.isClosedContour();
62 if (closed) {
  /external/skia/src/effects/
SkCornerPathEffect.cpp 44 bool closed; local
61 closed = iter.isClosedContour();
62 if (closed) {
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherInputStreamTest.java 35 private boolean closed = false; field in class:CipherInputStreamTest.TestInputStream
42 closed = true;
46 return closed;
CipherOutputStreamTest.java 38 private boolean closed = false; field in class:CipherOutputStreamTest.TestOutputStream
41 closed = true;
45 return closed;
  /external/chromium_org/chrome/browser/chromeos/drive/fileapi/
fileapi_worker_unittest.cc 59 bool closed() const { return closed_; } function in class:drive::fileapi_internal::__anon7637::TestFileSystemForOpenFile
177 EXPECT_TRUE(file_system.closed());
199 EXPECT_TRUE(file_system.closed());
221 EXPECT_TRUE(file_system.closed());
243 EXPECT_TRUE(file_system.closed());
262 EXPECT_TRUE(file_system.closed());
  /external/guava/guava/src/com/google/common/collect/
Ranges.java 36 * <dd>{@link #closed}
97 public static <C extends Comparable<?>> Range<C> closed(C lower, C upper) { method in class:Ranges
127 * upper}, where each endpoint may be either inclusive (closed) or exclusive
165 * either inclusive (closed) or exclusive (open).
172 case CLOSED:
197 * (closed) or exclusive (open), with no upper bound.
204 case CLOSED:
218 * the given value. The returned range is {@linkplain BoundType#CLOSED closed}
222 return closed(value, value)
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
AppendableWriterTest.java 34 boolean closed; field in class:AppendableWriterTest.SpyAppendable
57 closed = true;
93 assertFalse(spy.closed);
97 assertFalse(spy.closed);
101 assertTrue(spy.closed);
113 fail("Should have thrown IOException due to writer already closed");
120 fail("Should have thrown IOException due to writer already closed");
125 // close()ing already closed writer is allowed
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RetryableSink.java 34 private boolean closed; field in class:RetryableSink
47 if (closed) return;
48 closed = true;
56 if (closed) throw new IllegalStateException("closed");
  /external/okhttp/okio/src/main/java/okio/
InflaterSource.java 37 private boolean closed; field in class:InflaterSource
58 if (closed) throw new IllegalStateException("closed");
119 if (closed) return;
121 closed = true;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
DeferredFileOutputStream.java 31 * closed before the threshold is reached, the data will not be written to
90 private boolean closed = false; field in class:DeferredFileOutputStream
227 * Closes underlying output stream, and mark this as closed
234 closed = true;
240 * after it has been closed.
243 * @exception IOException if this stream is not yet closed or an error occurs.
247 // we may only need to check if this is closed if we are working with a file
250 if (!closed)
252 throw new IOException("Stream not closed");
  /external/chromium_org/content/browser/shared_worker/
shared_worker_host.h 87 bool closed() const { return closed_; } function in class:content::SharedWorkerHost
  /external/clang/lib/Parse/
ParseInit.cpp 457 bool closed = !T.consumeClose(); local
459 if (InitExprsOk && closed)
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSState.java 61 CLOSED("closed", StateClass.closed);
64 probing, announcing, announced, canceling, canceled, closing, closed enum constant in enum:DNSState.StateClass
113 return CLOSED;
114 case CLOSED:
115 return CLOSED;
144 case CLOSED:
145 return CLOSED;
209 * @return <code>true</code> if closed state, <code>false</code> otherwis
    [all...]

Completed in 249 milliseconds

1 2 3 4 5 6 7 8