Searched defs:close (Results 1 - 25 of 122) 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.java134 // while another thread called close(), which nulls out mCursor.
168 public synchronized void close() { method in class:ContentQueryMap
173 mCursor.close();
179 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.
87 * <p>{@link #close} can be used to abort this call from another thread.
101 * <p>{@link #close} can be used to abort this call from another thread.
111 * Immediately close this socket, and release all associated resources.
115 * close any {@link BluetoothSocket} received from {@link #accept()}.
117 public void close() throws IOException { method in class:BluetoothServerSocket
123 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/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.java159 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/support/v4/java/android/support/v4/util/
H A DLogWriter.java43 @Override public void close() { method in class:LogWriter
/frameworks/base/core/java/android/nfc/tech/
H A DBasicTagTechnology.java117 public void close() throws IOException { method in class:BasicTagTechnology
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();
H A DLogWriter.java56 @Override public void close() { method in class:LogWriter
/frameworks/base/nfc-extras/java/com/android/nfc_extras/
H A DNfcExecutionEnvironment.java125 * on its contact interface, so make sure to call {@link #close} once complete.
150 public void close() throws IOException { method in class:NfcExecutionEnvironment
152 throwBundle(mExtras.getService().close(mExtras.mPackageName, mToken));
/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:__anon1262
101 ::close(socket);
108 {"close", "()V", (void *)close},
/frameworks/base/core/java/android/database/
H A DIBulkCursor.java57 public void close() throws RemoteException; method in interface:IBulkCursor
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteOpenHelper.java118 * (Make sure to call {@link #close} when you no longer need the database.)
127 * @return a read/write database object valid until {@link #close} is called
132 // darn! the user closed the database by calling mDatabase.close()
187 try { mDatabase.close(); } catch (Exception e) { }
193 if (db != null) db.close();
214 * or {@link #close} is called.
219 // darn! the user closed the database by calling mDatabase.close()
254 if (db != null && db != mDatabase) db.close();
261 public synchronized void close() { method in class:SQLiteOpenHelper
265 mDatabase.close();
[all...]

Completed in 601 milliseconds

12345