OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:closed
(Results
1 - 25
of
1153
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/dalvik/tests/048-server-socket/
expected.txt
2
closed
!
/external/jsr305/ri/src/main/java/javax/annotation/
WillCloseWhenClosed.java
11
* object (X) will close the resource when X is
closed
.
/frameworks/base/libs/surfaceflinger/
Barrier.h
29
inline Barrier() : state(
CLOSED
) { }
42
state =
CLOSED
;
46
while (state ==
CLOSED
) {
51
enum { OPENED,
CLOSED
};
/development/simulator/app/assets/danger-hiptop-m1/
layout.xml
12
<mode name="
closed
">
13
<!-- hiptop when
closed
-->
/external/apache-http/src/org/apache/http/impl/io/
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.");
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/nls/
messages.properties
17
nio.00=Socket is
closed
23
nio.06=InputStreamReader is
closed
.
24
nio.07=Writer is
closed
.
/dalvik/libcore/nio/src/main/java/java/nio/channels/
Channel.java
26
* Channels are open upon creation, and can be
closed
explicitly. Once a channel
27
* is
closed
it cannot be re-opened, and any attempts to perform I/O operations
28
* on the
closed
channel result in a <code>ClosedChannelException</code>.
43
* Closes an open channel. If the channel is already
closed
then this method
48
* If an attempt is made to perform an operation on a
closed
channel then a
GatheringByteChannel.java
38
* if the channel is
closed
by another thread during this write
43
* thread is set and the channel is
closed
.
45
* if the channel is
closed
.
76
* if the channel is
closed
by another thread during this write
81
* thread is set and the channel is
closed
.
83
* if the channel is
closed
.
ScatteringByteChannel.java
38
* if the channel is
closed
by another thread during this read
43
* thread is set and the channel is
closed
.
45
* if the channel is
closed
.
70
* if the channel is
closed
by another thread during this read
75
* thread is set and the channel is
closed
.
77
* if the channel is
closed
.
InterruptibleChannel.java
22
* Channels that implement this interface can be asynchronously
closed
and
25
* A channel that can be asynchronously
closed
permits that a thread blocked on
28
* {@link AsynchronousCloseException} and the channel will be
closed
.
34
* its interrupted status set and the channel will be
closed
. If the I/O thread
/dalvik/libcore/nio/src/main/java/java/nio/channels/spi/
AbstractInterruptibleChannel.java
64
private volatile boolean
closed
= false;
field in class:AbstractInterruptibleChannel
79
*
closed
.
83
return !
closed
;
87
* Closes an open channel. If the channel is already
closed
then this method
91
* If an attempt is made to perform an operation on a
closed
channel then a
103
if (!
closed
) {
105
if (!
closed
) {
106
closed
= true;
148
* if this channel is
closed
by another thread while this method
169
if (!success &&
closed
) {
[
all
...]
/dalvik/libcore/support/src/test/java/tests/support/
Support_StringReader.java
47
* This method closes this StringReader. Once it is
closed
, you can no
86
throw new IOException("StringReader is
closed
");
115
* If the StringReader is already
closed
.
126
throw new IOException("StringReader is
closed
");
145
* If the StringReader is
closed
.
164
throw new IOException("StringReader is
closed
");
176
* returns <code>true</code> even when it has been
closed
.
191
throw new IOException("StringReader is
closed
");
202
* If this StringReader has already been
closed
.
210
throw new IOException("StringReader is
closed
");
[
all
...]
/external/webkit/WebCore/websockets/
WebSocket.cpp
123
m_state =
CLOSED
;
130
m_state =
CLOSED
;
136
m_state =
CLOSED
;
142
m_state =
CLOSED
;
148
m_state =
CLOSED
;
165
// No exception is raised if the connection was once established but has subsequently been
closed
.
166
if (m_state ==
CLOSED
) {
178
if (m_state ==
CLOSED
)
180
m_state =
CLOSED
;
211
ASSERT(m_state ==
CLOSED
);
[
all
...]
/packages/apps/Email/src/org/apache/commons/io/input/
CloseShieldInputStream.java
22
* Proxy stream that prevents the underlying input stream from being
closed
.
35
*
closed
.
46
* will appear
closed
.
AutoCloseInputStream.java
24
* end of input has been reached or when the stream is explicitly
closed
.
26
*
closed
, so any allocated in-memory buffers can be freed even if the
56
* underlying input stream is
closed
and discarded only once when this
59
* @throws IOException if the underlying input stream can not be
closed
72
* @throws IOException if the stream could not be read or
closed
89
* @throws IOException if the stream could not be read or
closed
108
* @throws IOException if the stream could not be read or
closed
119
* Ensures that the stream is
closed
before it gets garbage-collected.
121
* already been
closed
.
TeeInputStream.java
30
* The proxied input stream is
closed
when the {@link #close()} method is
32
* stream will also
closed
.
47
* stream is
closed
.
54
* output stream will not be
closed
when this stream gets
closed
.
66
* output stream will be
closed
when this stream gets
closed
if the
72
* stream is
closed
86
* @throws IOException if either of the streams could not be
closed
/packages/apps/Email/src/org/apache/commons/io/output/
CloseShieldOutputStream.java
22
* Proxy stream that prevents the underlying output stream from being
closed
.
35
*
closed
.
46
* will appear
closed
.
ClosedOutputStream.java
23
*
Closed
output stream. This stream throws an exception on all attempts to
41
* Throws an {@link IOException} to indicate that the stream is
closed
.
47
throw new IOException("write(" + b + ") failed: stream is
closed
");
/external/clearsilver/java-jni/
CS.java
56
throw new NullPointerException("CS is
closed
.");
63
throw new NullPointerException("CS is
closed
.");
70
throw new NullPointerException("CS is
closed
.");
79
throw new NullPointerException("CS is
closed
.");
HDF.java
65
throw new NullPointerException("HDF is
closed
.");
73
throw new NullPointerException("HDF is
closed
.");
110
throw new NullPointerException("HDF is
closed
.");
121
throw new NullPointerException("HDF is
closed
.");
131
throw new NullPointerException("HDF is
closed
.");
140
throw new NullPointerException("HDF is
closed
.");
150
throw new NullPointerException("HDF is
closed
.");
159
throw new NullPointerException("HDF is
closed
.");
167
throw new NullPointerException("HDF is
closed
.");
175
throw new NullPointerException("HDF is
closed
.")
[
all
...]
/external/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.");
/frameworks/base/obex/javax/obex/
BaseStream.java
46
* @throws IOException if the object is
closed
70
* Called when the output or input stream is
closed
.
71
* @param inStream <code>true</code> if the input stream is
closed
;
72
* <code>false</code> if the output stream is
closed
/dalvik/libcore/luni/src/main/java/java/io/
Closeable.java
20
* Defines an interface for classes that can (or need to) be
closed
once they
29
* object has already been
closed
, then invoking this method has no effect.
/external/proguard/src/proguard/io/
Finisher.java
27
* before it is
closed
.
34
* Finishes an output stream right before it is
closed
.
Completed in 65 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>