HomeSort by relevance Sort by last modified time
    Searched defs:close (Results 51 - 75 of 3530) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/bluetooth/
BluetoothServerSocket.java 48 * BluetoothSocket} is acquired, it's a good idea to call {@link #close()} on
51 * close the returned {@link BluetoothSocket}.
54 * safe. In particular, {@link #close} will always immediately abort ongoing
55 * operations and close the server socket.
111 * <p>{@link #close} can be used to abort this call from another thread.
125 * <p>{@link #close} can be used to abort this call from another thread.
135 * Immediately close this socket, and release all associated resources.
139 * close any {@link BluetoothSocket} received from {@link #accept()}.
141 public void close() throws IOException { method in class:BluetoothServerSocket
147 mSocket.close();
    [all...]
  /frameworks/base/core/java/android/content/
CursorEntityIterator.java 105 public final void close() { method in class:CursorEntityIterator
110 mCursor.close();
  /frameworks/base/core/java/android/net/
LocalServerSocket.java 113 public void close() throws IOException method in class:LocalServerSocket
115 impl.close();
  /frameworks/ex/common/java/com/android/common/io/
MoreCloseables.java 30 cursor.close();
40 assetFileDescriptor.close();
  /libcore/luni/src/main/java/java/io/
FilterInputStream.java 63 public void close() throws IOException { method in class:FilterInputStream
64 in.close();
FilterOutputStream.java 55 * if an error occurs attempting to close this stream.
58 public void close() throws IOException { method in class:FilterOutputStream
67 out.close();
FilterReader.java 55 public void close() throws IOException { method in class:FilterReader
57 in.close();
FilterWriter.java 53 * if an error occurs attempting to close this writer.
56 public void close() throws IOException { method in class:FilterWriter
58 out.close();
SequenceInputStream.java 96 public void close() throws IOException { method in class:SequenceInputStream
110 in.close();
162 * will close that substream and start with the next one. If there are no
  /libcore/luni/src/main/java/javax/crypto/
CipherOutputStream.java 113 * Close this cipher output stream.
123 public void close() throws IOException { method in class:CipherOutputStream
141 out.close();
  /libcore/luni/src/test/java/libcore/io/
StrictLineReaderTest.java 57 refStream.close();
58 lineReader.close();
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
BrokenInputStream.java 51 public void close() throws IOException { method in class:BrokenInputStream
52 stream.close();
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLSessions.java 61 public void close() { method in class:TestSSLSessions
62 s.close();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionCursorWrapper.java 35 public void close() { method in class:SuggestionCursorWrapper
37 mCursor.close();
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
MockNamedTaskExecutor.java 39 public void close() { method in class:MockNamedTaskExecutor
40 mExecutor.close();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
AutoCloseInputStream.java 61 public void close() throws IOException { method in class:AutoCloseInputStream
62 in.close();
68 * If the underlying stream returns -1, the {@link #close()} method is
69 * called to automatically close and discard the stream.
77 close(); method
84 * buffer. If the underlying stream returns -1, the {@link #close()} method
85 * i called to automatically close and discard the stream.
94 close(); method
101 * buffer. If the underlying stream returns -1, the {@link #close()} method
102 * i called to automatically close and discard the stream.
113 close(); method
125 close(); method
    [all...]
DemuxInputStream.java 53 public void close() method in class:DemuxInputStream
59 input.close();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ProxyOutputStream.java 82 * Invokes the delegate's <code>close()</code> method.
85 public void close() throws IOException { method in class:ProxyOutputStream
86 out.close();
ProxyWriter.java 104 * Invokes the delegate's <code>close()</code> method.
107 public void close() throws IOException { method in class:ProxyWriter
108 out.close();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ReadOnlyBinaryDictionary.java 112 public void close() { method in class:ReadOnlyBinaryDictionary
115 mBinaryDictionary.close();
SynchronouslyLoadedContactsBinaryDictionary.java 51 public synchronized void close() { method in class:SynchronouslyLoadedContactsBinaryDictionary
52 // Actually with the current implementation of ContactsDictionary it's safe to close
56 super.close();
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidBufferedInputStreamTest.java 43 a.close();
50 b.close();
57 c.close();
69 d.close();
78 e.close();
  /libcore/luni/src/test/java/libcore/java/net/
OldServerSocketTest.java 82 theSocket.close();
83 servSock.close();
84 clientSocket.close();
92 sconn.close();
93 s.close();
120 cs.close();
130 ss.close();
145 sconn.close();
147 s.close();
155 sconn.close();
373 protected void close() throws IOException { method in class:OldServerSocketTest.MockSocketImpl
    [all...]
OldUnixSocketTest.java 43 pingServer.close();
53 worker.close();
63 clientIn.close();
78 pingClient.close();
79 pingServer.close();
95 theSocket.close();
104 ss.close();
113 socket.close();
  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
UnixSocketTest.java 47 pingServer.close();
57 worker.close();
67 clientIn.close();
82 pingClient.close();
83 pingServer.close();
99 theSocket.close();
108 ss.close();
117 socket.close();

Completed in 211 milliseconds

1 23 4 5 6 7 8 91011>>