Searched defs:close (Results 101 - 125 of 142) sorted by last modified time

123456

/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/arp/
H A DArpPeer.java158 peer.close();
168 public void close() { method in class:ArpPeer
170 mSocket.close();
/frameworks/base/core/java/android/net/http/
H A DAndroidHttpClient.java236 public void close() { method in class:AndroidHttpClient
310 zipper.close();
H A DAndroidHttpClientConnection.java223 tmpsocket.close();
227 public void close() throws IOException { method in class:AndroidHttpClientConnection
245 this.socket.close();
H A DHttpResponseCache.java186 // don't close and reopen if an equivalent cache is already installed
285 @Override public void close() throws IOException { method in class:HttpResponseCache
289 delegate.getCache().close();
/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
169 * {@link IOException} by calling {@link #close} from another thread.
171 * <p>Applications must call {@link #close} when I/O operations are complete.
175 * @see #close()
187 * {@link IOException} by calling {@link #close} from another thread.
192 * @see #close()
208 public void close() throws IOException; method in interface:TagTechnology
213 * <p>Returns true if {@link #connect} has completed, and {@link #close} has not been
/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
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/speech/srec/
H A DMicrophoneInputStream.java51 close();
80 public void close() throws IOException { method in class:MicrophoneInputStream
97 close();
98 throw new IOException("someone forgot to close MicrophoneInputStream");
H A DUlawEncoderInputStream.java175 public void close() throws IOException { method in class:UlawEncoderInputStream
179 in.close();
/frameworks/base/core/java/android/util/
H A DBase64InputStream.java87 public void close() throws IOException { method in class:Base64InputStream
88 in.close();
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 DJsonReader.java93 * reader.close();
533 public void close() throws IOException { method in class:JsonReader
538 in.close();
623 * previous name-value pair, or a close brace to denote the end of the
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();
H A DLogWriter.java56 @Override public void close() { method in class:LogWriter
/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
H A DWindow.java814 public void setCloseOnTouchOutside(boolean close) { argument
815 mCloseOnTouchOutside = close;
820 public void setCloseOnTouchOutsideIfNotSet(boolean close) { argument
822 mCloseOnTouchOutside = close;
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSession.java168 public void close() { method in class:SpellCheckerSession
171 mSpellCheckerSessionListenerImpl.close();
301 Log.e(TAG, "Failed to close " + e);
378 public void close() { method in class:SpellCheckerSession.SpellCheckerSessionListenerImpl
380 Log.w(TAG, "close");
402 // Only one close task should be processed, while we need to remove
403 // all close tasks from the queue
479 close();
/frameworks/base/core/java/android/webkit/
H A DWebBackForwardListClassic.java105 /*package*/ synchronized void close(int nativeFrame) { method in class:WebBackForwardListClassic
H A DWebIconDatabase.java54 public void close() { method in class:WebIconDatabase
H A DWebIconDatabaseClassic.java162 if (c != null) c.close();
189 public void close() { method in class:WebIconDatabaseClassic
/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java710 * Toggles the drawer open and close. Takes effect immediately.
713 * @see #close()
729 * Toggles the drawer open and close with an animation.
732 * @see #close()
749 * @see #close()
767 public void close() { method in class:SlidingDrawer
776 * @see #close()
798 * @see #close()
871 * Sets the listener that receives a notification when the drawer becomes close.
953 // allowed to open/close th
[all...]

Completed in 1434 milliseconds

123456