OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:close
(Results
151 - 175
of
3530
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/ganymed-ssh2/examples/
UsingKnownHosts.java
69
/*
Close
this session */
71
sess.
close
();
73
/*
Close
the connection */
75
conn.
close
();
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SCPInputStream.java
118
public void
close
() throws IOException
method in class:SCPInputStream
129
session.
close
();
SCPOutputStream.java
43
public void
close
() throws IOException
method in class:SCPOutputStream
58
session.
close
();
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
CompositeResourceLoader.java
73
public void
close
(Reader reader) throws IOException {
method in class:CompositeResourceLoader
75
throw new IllegalArgumentException("I can't
close
a reader I didn't open.");
77
reader.
close
();
108
*
close
() is called, we delegate back to original ResourceLoader.
119
public void
close
() throws IOException {
method in class:CompositeResourceLoader.ReaderTracer
120
originalLoader.
close
(in);
/external/okhttp/src/test/java/com/squareup/okhttp/internal/
StrictLineReaderTest.java
53
refStream.
close
();
54
lineReader.
close
();
/external/proguard/src/proguard/io/
DirectoryWriter.java
60
// Should we
close
the current file?
89
// Should we
close
the current file?
122
public void
close
() throws IOException
method in class:DirectoryWriter
124
//
Close
the file stream, if any.
150
//
Close
the file stream, if any.
160
currentOutputStream.
close
();
/external/protobuf/examples/
AddPerson.java
74
input.
close
();
87
output.
close
();
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5BytestreamSession.java
94
public void
close
() throws IOException {
method in class:Socks5BytestreamSession
95
this.socket.
close
();
/external/smack/src/org/xbill/DNS/
Client.java
28
selector.
close
();
30
channel.
close
();
54
key.selector().
close
();
55
key.channel().
close
();
/external/smali/baksmali/src/main/java/org/jf/baksmali/
dump.java
74
writer.
close
();
100
fileOutputStream.
close
();
/frameworks/volley/src/com/android/volley/toolbox/
PoolingByteArrayOutputStream.java
57
public void
close
() throws IOException {
method in class:PoolingByteArrayOutputStream
60
super.
close
();
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/
MappedByteBufferTest.java
64
fc.
close
();
120
fc.
close
();
162
fileChannelRead.
close
();
163
fileChannelR.
close
();
164
fileChannelReadWrite.
close
();
165
fileChannelRW.
close
();
186
fileChannelRead.
close
();
187
fileChannelReadWrite.
close
();
205
fileChannel.
close
();
206
fileOutputStream.
close
();
[
all
...]
/libcore/luni/src/main/java/java/io/
BufferedOutputStream.java
146
@Override public synchronized void
close
() throws IOException {
method in class:BufferedOutputStream
152
super.
close
();
/libcore/luni/src/test/java/libcore/java/io/
OldAndroidPrintWriterTest.java
44
a.
close
();
69
b.
close
();
/libcore/support/src/test/java/tests/util/
FieldTestFileGenerator.java
60
oos.
close
();
67
if (fos != null) fos.
close
();
75
oos.
close
();
82
if (fos != null) fos.
close
();
90
oos.
close
();
97
if (fos != null) fos.
close
();
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapRfcommTransport.java
36
public void
close
() throws IOException {
method in class:BluetoothMapRfcommTransport
37
mSocket.
close
();
BluetoothMnsRfcommTransport.java
36
public void
close
() throws IOException {
method in class:BluetoothMnsRfcommTransport
37
mSocket.
close
();
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppRfcommTransport.java
54
public void
close
() throws IOException {
method in class:BluetoothOppRfcommTransport
55
mSocket.
close
();
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapRfcommTransport.java
53
public void
close
() throws IOException {
method in class:BluetoothPbapRfcommTransport
54
mSocket.
close
();
/packages/apps/Camera/tests/src/com/android/camera/stress/
TestUtil.java
43
mOut.
close
();
44
mfstream.
close
();
/packages/apps/Camera2/tests/src/com/android/camera/stress/
TestUtil.java
43
mOut.
close
();
44
mfstream.
close
();
/packages/apps/LegacyCamera/tests/src/com/android/camera/stress/
TestUtil.java
43
mOut.
close
();
44
mfstream.
close
();
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
PerNameExecutor.java
44
public synchronized void
close
() {
method in class:PerNameExecutor
47
executor.
close
();
/packages/apps/UnifiedEmail/src/com/android/mail/content/
ObjectCursor.java
89
public void
close
() {
method in class:ObjectCursor
90
super.
close
();
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
ProxyInputStream.java
98
* Invokes the delegate's <code>
close
()</code> method.
101
public void
close
() throws IOException {
method in class:ProxyInputStream
102
in.
close
();
Completed in 1030 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>