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

123456

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothPan.java148 /*package*/ void close() { method in class:BluetoothPan
149 if (VDBG) log("close()");
163 close();
/frameworks/base/core/java/android/content/res/
H A DAssetFileDescriptor.java69 * in addition to the normal FileDescriptor object also allows you to close
123 * Convenience for calling <code>getParcelFileDescriptor().close()</code>.
125 public void close() throws IOException { method in class:AssetFileDescriptor
126 mFd.close();
130 * Create and return a new auto-close input stream for this asset. This
145 * Create and return a new auto-close output stream for this asset. This
167 * take care of calling {@link ParcelFileDescriptor#close
168 * ParcelFileDescritor.close()} for you when the stream is closed.
254 * take care of calling {@link ParcelFileDescriptor#close
255 * ParcelFileDescritor.close()} fo
[all...]
/frameworks/base/core/java/android/database/
H A DCursor.java372 void close(); method in interface:Cursor
401 * {@link #requery()}, {@link #deactivate()}, or {@link #close()}.
H A DCursorWrapper.java48 public void close() { method in class:CursorWrapper
49 mCursor.close();
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDeviceConnection.java56 public void close() { method in class:UsbDeviceConnection
/frameworks/base/core/java/android/net/
H A DSSLCertificateSocketFactory.java377 public Socket createSocket(Socket k, String host, int port, boolean close) throws IOException { argument
378 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(k, host, port, close);
/frameworks/base/core/java/android/net/http/
H A DAndroidHttpClient.java236 public void close() { method in class:AndroidHttpClient
310 zipper.close();
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java87 * {@link #close()} when you are done using it.
170 public void close() { method in class:DropBoxManager.Entry
171 try { if (mFileDescriptor != null) mFileDescriptor.close(); } catch (IOException e) { }
205 try { if (is != null) is.close(); } catch (IOException e) {}
304 entry.close();
323 * {@link Entry#close()} on the return value!
H A DMemoryFile.java83 public void close() { method in class:MemoryFile
91 * Unmaps the memory file from the process's memory space, but does not close it.
126 close();
H A DParcelFileDescriptor.java33 * you to close it when done with it.
152 * so you must still close that fd as well as the new ParcelFileDescriptor.
170 * responsible for closing it. You must not close the fd yourself.
188 * the Socket, so you must still close the Socket as well as the new
302 mGuard.close();
307 mGuard.close();
317 * If an error occurs attempting to close this ParcelFileDescriptor.
320 public void close() throws IOException { method in class:ParcelFileDescriptor
323 mGuard.close();
327 // close metho
348 public void close() throws IOException { method in class:ParcelFileDescriptor.AutoCloseInputStream
371 public void close() throws IOException { method in class:ParcelFileDescriptor.AutoCloseOutputStream
[all...]
/frameworks/base/core/java/android/view/
H A DMenu.java123 * Flag for {@link #performShortcut}: if set, do not close the menu after
130 * close the menu after executing the shortcut. Closing the menu also resets
400 public void close(); method in interface:Menu
/frameworks/base/core/java/android/webkit/
H A DWebIconDatabaseClassic.java162 if (c != null) c.close();
189 public void close() { method in class:WebIconDatabaseClassic
/frameworks/base/core/java/com/android/internal/os/
H A DLoggingPrintStream.java165 public void close() { /* ignored */ } method in class:LoggingPrintStream
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenu.java125 public void close() { method in class:ActionMenu
/frameworks/base/media/java/android/drm/mobile1/
H A DDrmRawContent.java375 * @see java.io.InputStream#close()
377 public void close() { method in class:DrmRawContent.DrmInputStream
/frameworks/base/media/java/android/mtp/
H A DMtpDevice.java52 * The connection will be closed when you call {@link #close()}
61 connection.close();
71 public void close() { method in class:MtpDevice
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterPort.java79 public void close() { method in class:FilterPort
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
H A DMediaEncoderFilter.java456 public void close(FilterContext context) { method in class:MediaEncoderFilter
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DCameraSource.java219 public void close(FilterContext context) { method in class:CameraSource
291 // the requested size, but as close as possible. The below isn't a
H A DMediaSource.java237 // Video playback is done, so close us down
252 // Video playback is done, so close us down
276 // Video playback is done, so close us down
354 public void close(FilterContext context) { method in class:MediaSource
/frameworks/base/obex/javax/obex/
H A DClientOperation.java156 close();
303 public void close() throws IOException { method in class:ClientOperation
431 mPrivateInput.close();
435 mPrivateOutput.close();
H A DServerOperation.java316 mPrivateInput.close();
320 mPrivateOutput.close();
673 public void close() throws IOException { method in class:ServerOperation
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java152 public void close() { method in class:MockCursor
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DLayoutTestsAutoTest.java113 public void close() { method in class:MyTestRecorder
115 mBufferedOutputPassedStream.close();
116 mBufferedOutputFailedStream.close();
117 mBufferedOutputIgnoreResultStream.close();
118 mBufferedOutputNoResultStream.close();
180 inReader.close();
442 bos.close();
485 out.close();
486 in.close();
/frameworks/base/voip/java/android/net/sip/
H A DSipManager.java254 * @param localProfileUri the URI of the profile to close
257 public void close(String localProfileUri) throws SipException { method in class:SipManager
259 mSipService.close(localProfileUri);
261 throw new SipException("close()", e);

Completed in 1254 milliseconds

123456