OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:close
(Results
76 - 100
of
3530
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/development/samples/Vault/src/com/example/android/vault/
Utils.java
34
closable.
close
();
54
out.
close
();
69
in.
close
();
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileReaderTest.java
45
bw.
close
();
49
br.
close
();
60
bw.
close
();
65
br.
close
();
66
fis.
close
();
77
bw.
close
();
81
br.
close
();
100
* Tears down the fixture, for example,
close
a network connection. This
105
bw.
close
();
110
br.
close
();
[
all
...]
/external/apache-http/src/org/apache/http/conn/
EofSensorInputStream.java
38
* A stream wrapper that triggers actions on {@link #
close
close
()} and EOF.
46
* different kinds of event, and does not always
close
the underlying stream
95
* closed when EOF is detected or {@link #
close
close
} is called.
101
* auto-
close
behavior without notification
210
public void
close
() throws IOException {
method in class:EofSensorInputStream
211
// tolerate multiple calls to
close
()
237
boolean scws = true; // should
close
wrapped stream?
241
wrappedStream.
close
();
[
all
...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
TeeOutputStream.java
46
public void
close
()
method in class:TeeOutputStream
49
this.output1.
close
();
50
this.output2.
close
();
/external/javassist/src/main/javassist/
URLClassPath.java
106
is.
close
();
117
public void
close
() {}
method in class:URLClassPath
155
s.
close
();
/external/smack/src/com/kenai/jbosh/
GZIPCodec.java
67
gzOut.
close
();
68
byteOut.
close
();
71
gzOut.
close
();
72
byteOut.
close
();
99
gzIn.
close
();
100
byteOut.
close
();
ZLIBCodec.java
67
deflateOut.
close
();
68
byteOut.
close
();
71
deflateOut.
close
();
72
byteOut.
close
();
99
inflaterIn.
close
();
100
byteOut.
close
();
/frameworks/base/core/tests/coretests/src/android/net/
LocalSocketTest.java
134
ss.
close
();
136
ls.
close
();
169
ls1.
close
();
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
InputPort.java
49
public void
close
() {
method in class:InputPort
51
mSourcePort.
close
();
53
super.
close
();
/libcore/benchmarks/src/benchmarks/
BufferedZipFileBenchmark.java
51
out.
close
();
62
in.
close
();
63
zipFile.
close
();
75
in.
close
();
76
zipFile.
close
();
/libcore/harmony-tests/src/test/java/org/apache/harmony/luni/tests/java/util/
ScannerParseLargeFileBenchmarkTest.java
38
scanner.
close
();
39
reader.
close
();
54
public void
close
() throws IOException {
method in class:ScannerParseLargeFileBenchmarkTest.MyReader
/libcore/luni/src/main/java/java/io/
FileInputStream.java
42
* in.
close
();
80
guard.open("
close
");
114
public void
close
() throws IOException {
method in class:FileInputStream
115
guard.
close
();
118
channel.
close
();
121
IoUtils.
close
(fd);
123
// An owned fd has been invalidated by IoUtils.
close
, but
142
close
();
method
FileOutputStream.java
40
* out.
close
();
90
this.guard.open("
close
");
132
public void
close
() throws IOException {
method in class:FileOutputStream
133
guard.
close
();
136
channel.
close
();
139
IoUtils.
close
(fd);
141
// An owned fd has been invalidated by IoUtils.
close
, but
153
close
();
method
/libcore/luni/src/main/java/java/util/logging/
SocketHandler.java
133
public void
close
() {
method in class:SocketHandler
135
super.
close
();
137
this.socket.
close
();
/libcore/luni/src/test/java/libcore/java/io/
FileOutputStreamTest.java
33
//
Close
the second FileDescriptor and check we can't use it...
34
fos2.
close
();
48
//
Close
the first FileDescriptor and check we can't use it...
49
fos1.
close
();
66
fos.
close
();
67
fos.
close
();
OldAndroidPushbackReaderTest.java
39
a.
close
();
47
b.
close
();
54
c.
close
();
/packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
BinaryTempFileBody.java
76
base64Out.
close
();
86
public void
close
() throws IOException {
method in class:BinaryTempFileBody.BinaryTempFileBodyInputStream
87
super.
close
();
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
TeeOutputStream.java
89
public void
close
() throws IOException {
method in class:TeeOutputStream
90
super.
close
();
91
this.branch.
close
();
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
ReorderingCursorWrapper.java
46
public void
close
() {
method in class:ReorderingCursorWrapper
47
super.
close
();
48
mCursor.
close
();
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
TemplatedInputStream.java
82
public void
close
() throws IOException {
method in class:TemplatedInputStream
83
super.
close
();
84
mIn.
close
();
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ProfilesLoader.java
67
out.
close
();
70
in.
close
();
73
socket.
close
();
VersionLoader.java
63
out.
close
();
66
in.
close
();
69
socket.
close
();
/art/test/048-server-socket/src/
Main.java
47
socket.
close
();
49
System.out.println("couldn't
close
socket " + ioe.getMessage());
/build/libs/host/
list.java
20
writer.
close
();
/cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptor_AutoCloseOutputStreamTest.java
32
out.
close
();
Completed in 346 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>