Searched defs:close (Results 76 - 100 of 249) sorted by relevance

12345678910

/frameworks/base/core/java/android/database/
H A DMergeCursor.java171 public void close() { method in class:MergeCursor
175 mCursors[i].close();
177 super.close();
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteCursor.java157 // and fails to close the cursor.
204 public void close() { method in class:SQLiteCursor
205 super.close();
207 mQuery.close();
260 // if the cursor hasn't been closed yet, close it first
272 close();
H A DSQLiteOpenHelper.java150 * (Make sure to call {@link #close} when you no longer need the database.)
159 * @return a read/write database object valid until {@link #close} is called
183 * or {@link #close} is called.
194 // Darn! The user closed the database by calling mDatabase.close().
277 db.close();
285 public synchronized void close() { method in class:SQLiteOpenHelper
289 mDatabase.close();
/frameworks/base/core/java/android/hardware/usb/
H A DUsbRequest.java70 public void close() { method in class:UsbRequest
80 close();
/frameworks/base/core/java/android/os/
H A DFileBridge.java120 Os.close(mTarget);
150 public void close() throws IOException { method in class:FileBridge.FileBridgeOutputStream
152 writeCommandAndBlock(CMD_CLOSE, "close()");
/frameworks/base/core/java/android/util/
H A DJsonWriter.java39 * methods or by nesting other arrays and objects. Finally close the array
45 * Finally close the object using {@link #endObject()}.
75 * writer.close();
212 return close(JsonScope.EMPTY_ARRAY, JsonScope.NONEMPTY_ARRAY, "]");
231 return close(JsonScope.EMPTY_OBJECT, JsonScope.NONEMPTY_OBJECT, "}");
249 private JsonWriter close(JsonScope empty, JsonScope nonempty, String closeBracket) method in class:JsonWriter
392 public void close() throws IOException { method in class:JsonWriter
393 out.close();
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java266 public void close() { method in class:SortCursor
270 mCursors[i].close();
/frameworks/base/core/java/com/android/internal/midi/
H A DEventScheduler.java245 public void close() { method in class:EventScheduler
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DLineBreakBufferedWriterTest.java235 public void close() { method in class:LineBreakBufferedWriterTest.RecordingWriter
/frameworks/base/media/java/android/media/midi/
H A DMidiDevice.java65 mGuard.open("close");
69 public void close() throws IOException { method in class:MidiDevice.MidiConnection
72 mGuard.close();
74 // close input port
76 // close output port
79 Log.e(TAG, "RemoteException in MidiConnection.close");
89 close();
103 mGuard.open("close");
174 * to close the connection.
197 // and we can safely close thi
213 public void close() throws IOException { method in class:MidiDevice
[all...]
H A DMidiInputPort.java59 mGuard.open("close");
116 // Set mIsClosed = true so we will not call mDeviceServer.closePort() in close().
117 // MidiDevice.MidiConnection.close() will do the cleanup instead.
123 // used by MidiDevice.MidiConnection to close this port after the connection is closed
128 // used by MidiDevice.MidiConnection to close this port after the connection is closed
134 public void close() throws IOException { method in class:MidiInputPort
137 mGuard.close();
140 mParcelFileDescriptor.close();
144 mOutputStream.close();
152 Log.e(TAG, "RemoteException in MidiInputPort.close()");
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DAsyncRunner.java117 mRunner.close();
202 * been completed. Calling stop will close the filter graph. */
212 synchronized public void close() { method in class:AsyncRunner
214 throw new RuntimeException("Cannot close graph while it is running!");
217 mRunner.close();
H A DSyncRunner.java102 public void close() { method in class:SyncRunner
175 mWakeCondition.close();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/ui/
H A DSurfaceRenderFilter.java197 public void close(FilterContext context) { method in class:SurfaceRenderFilter
H A DSurfaceTargetFilter.java190 public void close(FilterContext context) { method in class:SurfaceTargetFilter
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureSource.java97 * filter to close.
201 mNewFrameAvailable.close();
226 public void close(FilterContext context) { method in class:SurfaceTextureSource
H A DSurfaceTextureTarget.java175 public synchronized void close(FilterContext context) { method in class:SurfaceTextureTarget
/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
H A DBluetoothMidiDevice.java93 close();
108 close();
137 close();
270 private void close() { method in class:BluetoothMidiDevice
272 mEventScheduler.close();
280 mBluetoothGatt.close();
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DMtpClient.java192 public void close() { method in class:MtpClient
/frameworks/base/obex/javax/obex/
H A DClientSession.java220 op.close();
607 public void close() throws IOException { method in class:ClientSession
609 mInput.close();
610 mOutput.close();
H A DServerSession.java152 close();
678 * Closes the server session - in detail close I/O streams and the
682 public synchronized void close() { method in class:ServerSession
690 mInput.close();
692 mOutput.close();
694 mTransport.close();
696 if(V) Log.d(TAG,"Exception occured during close() - ignore",e);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRecentsLoader.java151 public void close() {
309 public void close() throws IOException { method in class:RecentsLoader.RecentsTask
H A DRootCursorWrapper.java72 public void close() { method in class:RootCursorWrapper
73 super.close();
74 mCursor.close();
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DAppFuse.java75 void close() { method in class:AppFuse
77 // Remote side of ParcelFileDescriptor is tracking the close of mDeviceFd, and unmount
80 mDeviceFd.close();
83 Log.e(MtpDocumentsProvider.TAG, "Failed to close device FD.", exp);
244 * It's owned by native loop and does not need to close here.
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DHTTPHandler.java128 close();
173 public void close() throws IOException { method in class:HTTPHandler
174 mIn.close();
175 mOut.close();
176 mSocket.close();

Completed in 8047 milliseconds

12345678910