Searched defs:close (Results 1 - 25 of 142) sorted by last modified time

123456

/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/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DExportTestProvider.java76 public void close() { method in class:ExportTestProvider.MockEntityIterator
176 public void close() {
/frameworks/support/v4/java/android/support/v4/util/
H A DLogWriter.java43 @Override public void close() { method in class:LogWriter
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DPoolingByteArrayOutputStream.java57 public void close() throws IOException { method in class:PoolingByteArrayOutputStream
60 super.close();
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DTracer.java59 public void close(); method in interface:Tracer.TracerSink
75 public void close() { method in class:Tracer.FileSink
76 mOut.close();
88 public void close() { method in class:Tracer.LogcatSink
151 sink.close();
/frameworks/compile/mclinker/lib/Support/
H A DFileHandle.cpp31 close();
140 bool FileHandle::close() function in class:FileHandle
147 if (-1 == ::close(m_Handler)) {
/frameworks/ex/common/java/com/android/common/widget/
H A DCompositeCursorAdapter.java102 cursor.close();
126 public void close() { method in class:CompositeCursorAdapter
130 cursor.close();
214 prevCursor.close();
/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp207 status_t Loader::close(void* driver) function in class:android::Loader
/frameworks/native/services/surfaceflinger/
H A DBarrier.h36 void close() { function in class:android::Barrier
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParser.java404 public void close() { method in class:BridgeXmlBlockParser
/frameworks/base/voip/java/android/net/rtp/
H A DRtpStream.java184 close();
188 private native void close(); method in class:RtpStream
192 close();
/frameworks/base/voip/java/android/net/sip/
H A DSipAudioCall.java293 public void close() { method in class:SipAudioCall
294 close(true);
297 private synchronized void close(boolean closeRtp) { method in class:SipAudioCall
481 close();
495 close(false);
580 close(true);
926 * it is undefined after the call ends or the {@link #close} method is
945 * {@link #close} method is called. If a group object is set by
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);
/frameworks/base/voip/java/com/android/server/sip/
H A DSipService.java195 public synchronized void close(String localProfileUri) { method in class:SipService
201 Log.w(TAG, "only creator or radio can close this profile");
207 group.close();
514 // close mSipGroup but remember mOpenedToReceiveCalls
515 if (DEBUG) Log.d(TAG, " close auto reg temporarily: "
517 mSipGroup.close();
522 public void close() { method in class:SipService.SipSessionGroupExt
524 mSipGroup.close();
526 if (DEBUG) Log.d(TAG, " close: " + getUri() + ": "
645 mGroup.close();
[all...]
H A DSipSessionGroup.java178 socket.close();
181 socket.close();
191 close();
246 public synchronized void close() { method in class:SipSessionGroup
247 Log.d(TAG, " close stack for " + mLocalProfile.getUriString());
/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/compile/libbcc/lib/Support/
H A DFileBase.cpp58 close();
276 void FileBase::close() { function in class:FileBase
282 ::close(mFD);
/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/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 DClientSession.java179 op.close();
518 public void close() throws IOException { method in class:ClientSession
520 mInput.close();
521 mOutput.close();
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
H A DServerOperation.java316 mPrivateInput.close();
320 mPrivateOutput.close();
673 public void close() throws IOException { method in class:ServerOperation

Completed in 2208 milliseconds

123456