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

1 2 3 4

  /libcore/luni/src/main/java/libcore/net/http/
AbstractHttpOutputStream.java 29 protected boolean closed; field in class:AbstractHttpOutputStream
36 if (closed) {
37 throw new IOException("stream closed");
AbstractHttpInputStream.java 32 * is populated. If the stream is closed early, that cache entry will be
40 protected boolean closed; field in class:AbstractHttpInputStream
67 if (closed) {
68 throw new IOException("stream closed");
91 * should be invoked when the connection is closed unexpectedly to
  /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.");