Searched defs:close (Results 151 - 175 of 298) sorted by path

1234567891011>>

/frameworks/base/core/java/com/android/internal/util/
H A DProcFileReader.java230 public void close() throws IOException { method in class:ProcFileReader
231 mStream.close();
H A DSizedInputStream.java38 public void close() throws IOException { method in class:SizedInputStream
39 super.close();
40 mWrapped.close();
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenu.java125 public void close() { method in class:ActionMenu
H A DMenuBuilder.java161 * Called by menu to notify of close and selection changes.
794 close(true /* closeAllMenus */);
915 close(true /* closeAllMenus */);
928 close(true /* closeAllMenus */);
932 close(true /* closeAllMenus */);
947 public final void close(boolean closeAllMenus) { method in class:MenuBuilder
963 public void close() { method in class:MenuBuilder
964 close(true /* closeAllMenus */);
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp129 static void close(JNIEnv* env, jclass clazz, jlong objHandle) { function in class:android::SkPathGlue
131 obj->close();
309 // Divides Bezier curves until linear interpolation is very close to accurate, using
526 {"nClose","(J)V", (void*) SkPathGlue::close},
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfDocument.cpp105 document->close();
108 void close() { function in class:android::PdfDocument
117 close();
152 document->close();
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.cpp320 status_t close();
370 status_t JniOutputStream::close() { function in class:JniOutputStream
389 status_t close();
459 status_t JniInputStream::close() { function in class:JniInputStream
478 status_t close();
531 status_t JniInputByteBuffer::close() { function in class:JniInputByteBuffer
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothTestUtils.java407 public void close() { method in class:BluetoothTestUtils
414 mOutputWriter.close();
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DLineBreakBufferedWriterTest.java235 public void close() { method in class:LineBreakBufferedWriterTest.RecordingWriter
/frameworks/base/core/tests/utiltests/src/android/util/
H A DRemoteIntArray.java98 public void close() { method in class:RemoteIntArray
100 mRemoteInstance.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();
H A DDrmOutputStream.java84 public void close() throws IOException { method in class:DrmOutputStream
89 mPfd.close();
/frameworks/base/graphics/java/android/graphics/
H A DPath.java498 public void close() { method in class:Path
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfDocument.java37 * pages, you write the document to an output stream and close the document.
67 * // close the document
68 * document.close();
94 mCloseGuard.open("close");
105 * <strong>Note:</strong> Do not call this method after {@link #close()}.
131 * <strong>Note:</strong> Do not call this method after {@link #close()}.
160 * <strong>Note:</strong> Do not call this method after {@link #close()}.
197 public void close() { method in class:PdfDocument
215 mCloseGuard.close();
H A DPdfEditor.java53 * with this class you must call {@link #close()}.
66 * @see #close()
88 mCloseGuard.open("close");
265 public void close() { method in class:PdfEditor
288 mCloseGuard.close();
H A DPdfRenderer.java44 * to render, you open the page, render it, and close the page. After you are done
45 * with rendering, you close the renderer. After the renderer is closed it should not
66 * // close the page
67 * page.close();
70 * // close the renderer
71 * renderer.close();
100 * @see #close()
175 mCloseGuard.open("close");
182 public void close() { method in class:PdfRenderer
220 * @see android.graphics.pdf.PdfRenderer.Page#close() PdfRendere
439 public void close() { method in class:PdfRenderer.Page
[all...]
/frameworks/base/keystore/java/android/security/
H A DKeyChain.java609 @Override public void close() { method in class:KeyChain.KeyChainConnection
/frameworks/base/libs/androidfw/
H A DAsset.cpp155 ::close(fd);
162 ::close(fd);
167 ::close(fd);
208 ::close(fd);
216 ::close(fd);
227 ::close(fd);
412 close();
577 void _FileAsset::close(void) function in class:_FileAsset
743 close();
873 void _CompressedAsset::close(voi function in class:_CompressedAsset
[all...]
/frameworks/base/media/java/android/media/
H A DAmrInputStream.java171 public void close() throws IOException { method in class:AmrInputStream
174 mInputStream.close();
H A DImage.java274 public abstract void close(); method in class:Image
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 DMediaCas.java313 public void close() { method in class:MediaCas.Session
643 public void close() { method in class:MediaCas
656 close();
H A DMediaCodec.java2684 * needs to be <i>reasonably close</i> to the current {@link System#nanoTime}.
2696 * <li>if the timestamp is <em>not</em> "reasonably close" to the current system
2810 mImage.close();
3535 public void close() { method in class:MediaCodec.MediaImage
H A DMediaDescrambler.java219 public void close() { method in class:MediaDescrambler
233 close();

Completed in 494 milliseconds

1234567891011>>