Searched defs:close (Results 226 - 250 of 298) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/app/usage/
H A DNetworkStats.java72 * The session while the query requires it, null if all the stats have been collected or close()
106 mCloseGuard.open("close");
118 close();
427 public void close() { method in class:NetworkStats
430 mSession.close();
438 mCloseGuard.close();
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGatt.java648 public void close() { method in class:BluetoothGatt
649 if (DBG) Log.d(TAG, "close()");
H A DBluetoothHeadset.java43 * {@link BluetoothAdapter#closeProfileProxy} to close the service connection.
342 * results once close() has been called. Multiple invocations of close()
345 /*package*/ void close() { method in class:BluetoothHeadset
346 if (VDBG) log("close()");
H A DBluetoothSocket.java70 * safe. In particular, {@link #close} will always immediately abort ongoing
71 * operations and close the socket.
241 as.close();
273 close();
351 * <p>{@link #close} can be used to abort this call from another thread.
444 mPfd.close();
446 Log.e(TAG, "bindListen, close mPfd: " + e1);
563 public void close() throws IOException { method in class:BluetoothSocket
564 Log.d(TAG, "close() this: " + this + ", channel: " + mPort +
580 mSocket.close();
[all...]
/frameworks/base/core/java/android/database/
H A DAbstractCursor.java166 public void close() { method in class:AbstractCursor
350 // cursor will unregister all observers when it close
470 if (!mClosed) close();
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java190 mCloseGuard.open("close");
204 public void close() { method in class:SQLiteConnectionPool
213 mCloseGuard.close();
266 // because we need to close all but the primary connection first.
296 // we have no choice but to close the primary connection beforehand
303 // close and discard all existing connections.
490 + "to end transactions in progress properly and to close the database "
528 connection.close(); // might throw
530 Log.e(TAG, "Failed to close connection, its fate is now in the hands "
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCameraDeviceUserShim.java147 Looper.loop(); // Blocks forever until #close is called.
154 public void close() { method in class:CameraDeviceUserShim.CameraLooper
223 public void close() { method in class:CameraDeviceUserShim.CameraCallbackThread
408 mLegacyDevice.close();
410 mCameraInit.close();
411 mCameraCallbacks.close();
H A DLegacyCameraDevice.java197 mIdle.close();
457 mIdle.close();
513 public void close() { method in class:LegacyCameraDevice
538 close();
/frameworks/base/core/java/android/os/
H A DParcelFileDescriptor.java64 * you to close it when done with it.
72 * Optional socket used to communicate close events, status at close, and
192 mGuard.open("close");
349 * so you must still close that fd as well as the new ParcelFileDescriptor.
371 * responsible for closing it. You must not close the fd yourself.
388 * the Socket, so you must still close the Socket as well as the new
673 * expecting a reliable signal through {@link #close()} or
689 mGuard.close();
700 * If an error occurs attempting to close thi
703 public void close() throws IOException { method in class:ParcelFileDescriptor
911 public void close() throws IOException { method in class:ParcelFileDescriptor.AutoCloseInputStream
962 public void close() throws IOException { method in class:ParcelFileDescriptor.AutoCloseOutputStream
[all...]
/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java726 * Toggles the drawer open and close. Takes effect immediately.
729 * @see #close()
745 * Toggles the drawer open and close with an animation.
748 * @see #close()
765 * @see #close()
783 public void close() { method in class:SlidingDrawer
792 * @see #close()
814 * @see #close()
880 * Sets the listener that receives a notification when the drawer becomes close.
962 // allowed to open/close th
[all...]
H A DSuggestionsAdapter.java209 public void close() { method in class:SuggestionsAdapter
210 if (DBG) Log.d(LOG_TAG, "close()");
260 if (c != null) c.close();
612 stream.close();
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothTestUtils.java407 public void close() { method in class:BluetoothTestUtils
414 mOutputWriter.close();
/frameworks/base/drm/java/android/drm/
H A DDrmManagerClient.java266 close();
284 public void close() { method in class:DrmManagerClient
285 mCloseGuard.close();
305 * @deprecated replaced by {@link #close()}.
309 close();
626 is.close();
863 cursor.close();
/frameworks/base/media/java/android/media/
H A DImageReader.java317 * until the Image is {@link Image#close closed} to release the image back to the ImageReader.
327 * @see Image#close
360 * but {@link #close} all images that aren't the latest. This function is
376 * calls greater than {@link #getMaxImages} without calling {@link Image#close} in-between
379 * released with {@link Image#close}.
398 image.close();
403 image.close();
480 * calling {@link Image#close} in-between will exhaust the underlying queue. At such a time,
482 * {@link Image#close}.
504 "call #close befor
598 public void close() { method in class:ImageReader
823 public void close() { method in class:ImageReader.SurfaceImage
[all...]
H A DImageWriter.java214 * {@link Image#close()}.
226 * @see Image#close
244 * {@link Image#close()}.
274 * @see Image#close
330 * as if the Image is {@link Image#close closed}. Attempting to access the
368 image.close();
385 // Do not call close here, as close is essentially cancel image.
485 public void close() { method in class:ImageWriter
488 image.close();
762 public void close() { method in class:ImageWriter.WriterSurfaceImage
[all...]
H A DRingtoneManager.java417 * so do not {@link Cursor#close()} the cursor. The cursor can be
600 cursor.close();
1146 public void close() { method in class:RingtoneManager.NewRingtoneScanner
H A DVolumeShaper.java88 * The effect of {@code replace()} is similar to an atomic close of
137 * {@code close()} may be safely called after a prior {@code close()}.
142 public void close() { method in class:VolumeShaper
157 close(); // ensure we remove the native VolumeShaper
1258 * Do not call directly, use {@link VolumeShaper#close()}.
/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java203 mCloseGuard.open("close");
224 public void close() { method in class:MtpDatabase
225 mCloseGuard.close();
227 mMediaScanner.close();
228 mMediaProvider.close();
237 close();
279 if (c != null) c.close();
280 if (db != null) db.close();
358 c.close();
541 c.close();
[all...]
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DMtpDocumentsProvider.java184 cursor.close();
187 cursor.close();
230 cursor.close();
427 pipe[0].close(); // 0 bytes for a new document.
464 pipe[1].close();
633 mDatabase.close();
663 getDeviceToolkit(deviceId).close();
700 cursor.close();
734 public void close() throws InterruptedException { method in class:MtpDocumentsProvider.DeviceToolkit
735 mPipeManager.close();
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPageAdapter.java292 public void close(Runnable callback) { method in class:PageAdapter
298 mPageContentRepository.close(callback);
547 mCloseGuard.close();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputView.java343 public void close() { method in class:RemoteInputView
390 other.close();
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkDiagnostics.java415 public void close() { method in class:NetworkDiagnostics.SimpleSocketCheck
499 close();
593 close();
/frameworks/base/services/midi/java/com/android/server/midi/
H A DMidiService.java163 close();
180 close();
184 // called from Device.close()
188 close();
233 private void close() { method in class:MidiService.Client
247 close();
996 if (parser != null) parser.close();
/frameworks/base/telephony/java/com/android/ims/internal/
H A DImsCallSession.java433 public synchronized void close() { method in class:ImsCallSession
439 miSession.close();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParser.java404 public void close() { method in class:BridgeXmlBlockParser

Completed in 1046 milliseconds

1234567891011>>