Searched defs:close (Results 1 - 25 of 142) sorted by relevance

123456

/frameworks/base/core/java/android/content/
H A DEntityIterator.java24 * resetting the iterator back to the beginning and provides for an explicit {@link #close()}
38 public void close(); method in interface:EntityIterator
H A DCursorEntityIterator.java105 public final void close() { method in class:CursorEntityIterator
110 mCursor.close();
/frameworks/base/core/java/android/content/res/
H A DXmlResourceParser.java26 * an additional close() method on this interface for the client to indicate
34 public void close(); method in interface:XmlResourceParser
/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
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothInputStream.java43 public void close() throws IOException { method in class:BluetoothInputStream
44 mSocket.close();
H A DBluetoothOutputStream.java39 public void close() throws IOException { method in class:BluetoothOutputStream
40 mSocket.close();
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteClosable.java31 * a call to {@link #releaseReference()} or {@link #close()}.
105 public void close() { method in class:SQLiteClosable
/frameworks/base/core/java/android/net/
H A DLocalServerSocket.java113 public void close() throws IOException method in class:LocalServerSocket
115 impl.close();
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java114 public void close() { method in class:AndroidHandler
115 // No need to close, but must implement abstract method.
/frameworks/base/obex/javax/obex/
H A DObexTransport.java62 void close() throws IOException; method in interface:ObexTransport
H A DOperation.java77 * out.close();
78 * op.close();
96 * in.close();
97 * op.close();
103 * <code>close()</code> the <code>OutputStream</code> returned from
108 * <code>getResponseCode()</code> will do an implicit close on the
114 * close on the <code>InputStream</code>. No further data may be read at this
124 * operation since <code>close()</code> will be called by this method.
178 void close() throws IOException; method in interface:Operation
H A DPrivateInputStream.java177 public void close() throws IOException { method in class:PrivateInputStream
H A DPrivateOutputStream.java159 public void close() throws IOException { method in class:PrivateOutputStream
/frameworks/base/voip/jni/rtp/
H A DRtpStream.cpp53 ::close(socket);
64 ::close(socket);
85 ::close(socket);
89 void close(JNIEnv *env, jobject thiz) function in namespace:__anon1177
92 ::close(socket);
98 {"close", "()V", (void *)close},
/frameworks/native/services/surfaceflinger/
H A DBarrier.h36 void close() { function in class:android::Barrier
/frameworks/support/v4/java/android/support/v4/util/
H A DLogWriter.java43 @Override public void close() { method in class:LogWriter
/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/util/
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 DLogWriter.java56 @Override public void close() { method in class:LogWriter
/frameworks/base/core/java/android/webkit/
H A DWebIconDatabase.java54 public void close() { method in class:WebIconDatabase
/frameworks/base/nfc-extras/java/com/android/nfc_extras/
H A DNfcExecutionEnvironment.java125 * on its contact interface, so make sure to call {@link #close} once complete.
150 public void close() throws IOException { method in class:NfcExecutionEnvironment
152 throwBundle(mExtras.getService().close(mExtras.mPackageName, mToken));
/frameworks/base/services/java/com/android/server/
H A DRandomBlock.java48 close(stream);
73 close(out);
91 private static void close(Closeable c) { method in class:RandomBlock
96 c.close();
/frameworks/opt/mms/src/java/com/google/android/mms/util/
H A DDrmConvertSession.java124 public int close(String filename) { method in class:DrmConvertSession
156 rndAccessFile.close();
159 Log.w(TAG, "Failed to close File:" + filename
166 Log.w(TAG, "Could not close convertsession. Convertsession: " +
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DPoolingByteArrayOutputStream.java57 public void close() throws IOException { method in class:PoolingByteArrayOutputStream
60 super.close();

Completed in 3261 milliseconds

123456