Searched defs:close (Results 1 - 25 of 102) sorted by relevance

12345

/frameworks/base/core/java/android/content/
H A DEntityIterator.java24 * resetting the iterator back to the beginning and provides for an explicit {@link #close()}
38 public void close(); method in interface:EntityIterator
H A DCursorEntityIterator.java105 public final void close() { method in class:CursorEntityIterator
110 mCursor.close();
H A DContentQueryMap.java158 public synchronized void close() { method in class:ContentQueryMap
163 mCursor.close();
169 if (mCursor != null) close();
/frameworks/base/core/java/android/content/res/
H A DXmlResourceParser.java26 * an additional close() method on this interface for the client to indicate
34 public void close(); method in interface:XmlResourceParser
/frameworks/base/core/java/android/os/
H A DConditionVariable.java25 * open(), close() and block() are sticky. If open() is called before block(),
59 * Any threads that later approach block() will not block unless close()
79 public void close() method in class:ConditionVariable
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothInputStream.java43 public void close() throws IOException { method in class:BluetoothInputStream
44 mSocket.close();
H A DBluetoothOutputStream.java39 public void close() throws IOException { method in class:BluetoothOutputStream
40 mSocket.close();
H A DBluetoothServerSocket.java46 * BluetoothSocket} is acquired, it's a good idea to call {@link #close()} on
49 * close the returned {@link BluetoothSocket}.
52 * safe. In particular, {@link #close} will always immediately abort ongoing
53 * operations and close the server socket.
85 * <p>{@link #close} can be used to abort this call from another thread.
99 * <p>{@link #close} can be used to abort this call from another thread.
109 * Immediately close this socket, and release all associated resources.
113 * close any {@link BluetoothSocket} received from {@link #accept()}.
115 public void close() throws IOException { method in class:BluetoothServerSocket
121 mSocket.close();
[all...]
/frameworks/base/core/java/android/net/
H A DLocalServerSocket.java113 public void close() throws IOException method in class:LocalServerSocket
115 impl.close();
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java114 public void close() { method in class:AndroidHandler
115 // No need to close, but must implement abstract method.
/frameworks/base/core/java/com/android/internal/nfc/
H A DLlcpConnectionlessSocket.java99 public void close() { method in class:LlcpConnectionlessSocket
101 mService.close(mHandle);
103 Log.e(TAG, "RemoteException in close(): ", e);
H A DLlcpServiceSocket.java127 public void close() { method in class:LlcpServiceSocket
129 mService.close(mHandle);
131 Log.e(TAG, "RemoteException in close(): ", e);
/frameworks/base/obex/javax/obex/
H A DObexTransport.java62 void close() throws IOException; method in interface:ObexTransport
H A DOperation.java77 * out.close();
78 * op.close();
96 * in.close();
97 * op.close();
103 * <code>close()</code> the <code>OutputStream</code> returned from
108 * <code>getResponseCode()</code> will do an implicit close on the
114 * close on the <code>InputStream</code>. No further data may be read at this
124 * operation since <code>close()</code> will be called by this method.
178 void close() throws IOException; method in interface:Operation
H A DPrivateInputStream.java177 public void close() throws IOException { method in class:PrivateInputStream
H A DPrivateOutputStream.java162 public void close() throws IOException { method in class:PrivateOutputStream
/frameworks/base/services/surfaceflinger/
H A DBarrier.h36 void close() { function in class:android::Barrier
/frameworks/base/core/java/android/nfc/tech/
H A DBasicTagTechnology.java113 public void close() throws IOException { method in class:BasicTagTechnology
H A DIsoDep.java82 * reset to a default value when {@link #close} is called.
100 public void close() throws IOException { method in class:IsoDep
106 super.close();
149 * {@link IOException} if {@link #close} is called from another thread.
H A DTagTechnology.java70 * <li>{@link #close} must be called after completing I/O operations with a
160 * {@link IOException} by calling {@link #close} from another thread.
162 * <p>Applications must call {@link #close} when I/O operations are complete.
166 * @see #close()
178 * {@link IOException} by calling {@link #close} from another thread.
183 * @see #close()
199 public void close() throws IOException; method in interface:TagTechnology
204 * <p>Returns true if {@link #connect} has completed, and {@link #close} has not been
/frameworks/base/core/java/android/util/
H A DBase64OutputStream.java89 * before doing a write(byte[], int, int) or a close().
104 public void close() throws IOException { method in class:Base64OutputStream
115 out.close();
/frameworks/base/nfc-extras/java/com/android/nfc_extras/
H A DNfcExecutionEnvironment.java127 * on its contact interface, so make sure to call {@link #close} once complete.
152 public void close() throws IOException { method in class:NfcExecutionEnvironment
154 throwBundle(mExtras.getService().close());
/frameworks/base/services/java/com/android/server/
H A DRandomBlock.java48 close(stream);
73 close(out);
91 private static void close(Closeable c) { method in class:RandomBlock
96 c.close();
/frameworks/base/voip/jni/rtp/
H A DRtpStream.cpp53 ::close(socket);
64 ::close(socket);
85 ::close(socket);
98 void close(JNIEnv *env, jobject thiz) function in namespace:__anon768
101 ::close(socket);
108 {"close", "()V", (void *)close},
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteOpenHelper.java84 * (Make sure to call {@link #close} when you no longer need the database.)
93 * @return a read/write database object valid until {@link #close} is called
148 try { mDatabase.close(); } catch (Exception e) { }
154 if (db != null) db.close();
175 * or {@link #close} is called.
209 if (db != null && db != mDatabase) db.close();
216 public synchronized void close() { method in class:SQLiteOpenHelper
220 mDatabase.close();

Completed in 1885 milliseconds

12345