Searched defs:disconnect (Results 1 - 25 of 122) sorted by relevance

12345

/frameworks/base/media/java/android/media/midi/
H A DMidiSender.java40 * @param receiver the receiver to disconnect
42 public void disconnect(MidiReceiver receiver) { method in class:MidiSender
44 throw new NullPointerException("receiver null in MidiSender.disconnect");
57 * Called to disconnect a {@link MidiReceiver} from the sender
59 * @param receiver the receiver to disconnect
/frameworks/av/media/libstagefright/
H A DOMXClient.cpp92 void OMXClient::disconnect() { function in class:android::OMXClient
/frameworks/base/obex/javax/obex/
H A DObexTransport.java66 void disconnect() throws IOException; method in interface:ObexTransport
H A DClientSession.java225 public HeaderSet disconnect(HeaderSet header) throws IOException { method in class:ClientSession
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapRfcommTransport.java55 public void disconnect() throws IOException { method in class:BluetoothMapRfcommTransport
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DLocalBluetoothProfile.java40 boolean disconnect(BluetoothDevice device); method in interface:LocalBluetoothProfile
H A DOppProfile.java47 public boolean disconnect(BluetoothDevice device) { method in class:OppProfile
H A DPanProfile.java90 mService.disconnect(sink);
96 public boolean disconnect(BluetoothDevice device) { method in class:PanProfile
98 return mService.disconnect(device);
H A DPbapServerProfile.java90 public boolean disconnect(BluetoothDevice device) { method in class:PbapServerProfile
92 return mService.disconnect();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBluetoothController.java37 void disconnect(CachedBluetoothDevice device); method in interface:BluetoothController
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
H A DFakeBluetoothController.java78 public void disconnect(CachedBluetoothDevice device) { method in class:FakeBluetoothController
/frameworks/base/tests/utils/testutils/java/com/android/internal/util/test/
H A DBidirectionalAsyncChannel.java83 public void disconnect() { method in class:BidirectionalAsyncChannel
84 assertEquals("AsyncChannel must be connected to disconnect",
/frameworks/av/media/libaudioclient/
H A DIEffect.cpp108 void disconnect() function in class:android::BpEffect
110 ALOGV("disconnect");
212 disconnect();
/frameworks/av/media/libmedia/
H A DIMediaHTTPConnection.cpp82 virtual void disconnect() { function in struct:android::BpMediaHTTPConnection
H A Dmediametadataretriever.cpp80 disconnect();
84 void MediaMetadataRetriever::disconnect() function in class:android::MediaMetadataRetriever
86 ALOGV("disconnect");
94 retriever->disconnect();
/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.cpp58 disconnect();
74 void MetadataRetrieverClient::disconnect() function in class:android::MetadataRetrieverClient
76 ALOGV("disconnect from pid %d", mPid);
/frameworks/av/media/libstagefright/http/
H A DMediaHTTP.cpp80 void MediaHTTP::disconnect() { function in class:android::MediaHTTP
86 mHTTPConnection->disconnect();
135 // disconnect. NuCachedSource2 relies on this.
/frameworks/av/media/libstagefright/httplive/
H A DHTTPDownloader.cpp51 void HTTPDownloader::disconnect() { function in class:android::HTTPDownloader
56 mHTTPDataSource->disconnect();
219 mHTTPDataSource->disconnect();
235 mHTTPDataSource->disconnect();
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/core/
H A DUiAutomationShellWrapper.java61 public void disconnect() { method in class:UiAutomationShellWrapper
65 mUiAutomation.disconnect();
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothPbap.java268 public boolean disconnect() { method in class:BluetoothPbap
269 if (DBG) log("disconnect()");
272 mService.disconnect();
H A DBluetoothPbapClient.java189 * Initiate disconnect.
195 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothPbapClient
197 log("disconnect(" + device + ")" + new Exception() );
201 mService.disconnect(device);
H A DBluetoothSap.java260 * Initiate disconnect.
267 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothSap
268 if (DBG) log("disconnect(" + device + ")");
272 return mService.disconnect(device);
/frameworks/base/media/java/android/media/
H A DMediaScannerConnection.java47 private boolean mConnected; // true if connect() has been called since last disconnect()
128 public void disconnect() { method in class:MediaScannerConnection
142 Log.v(TAG, "disconnect failed: " + ex);
211 mConnection.disconnect();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureTarget.java173 // down the graph on purpose, such as in the disconnect call.
185 public synchronized void disconnect(FilterContext context) { method in class:SurfaceTextureTarget
186 if (mLogVerbose) Log.v(TAG, "disconnect");
188 Log.d(TAG, "SurfaceTexture is already null. Nothing to disconnect.");
194 // surfacetexture was valid. For example, the disconnect can be called before
/frameworks/native/opengl/libs/EGL/
H A Degl_object.cpp71 disconnect();
76 void egl_surface_t::disconnect() { function in class:android::egl_surface_t
80 ALOGW("EGLNativeWindowType %p disconnect failed", win);
87 disconnect();

Completed in 526 milliseconds

12345