HomeSort by relevance Sort by last modified time
    Searched refs:disconnect (Results 101 - 125 of 456) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/av/include/media/
IMediaPlayer.h 42 virtual void disconnect() = 0;
  /frameworks/av/media/libstagefright/include/
ChromiumHTTPDataSource.h 38 virtual void disconnect();
  /frameworks/av/services/camera/libcameraservice/common/
CameraDeviceBase.h 45 virtual status_t disconnect() = 0;
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3Stream.h 83 * When disconnect() is called after making sure stream is idle with
200 * Disconnect stream from its non-HAL endpoint. After this,
205 status_t disconnect();
  /frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
DumpCommand.java 104 automationWrapper.disconnect();
  /frameworks/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
DumpCommand.java 104 automationWrapper.disconnect();
  /frameworks/wilhelm/src/android/
android_StreamPlayer.cpp 50 disconnect();
110 void StreamSourceAppProxy::disconnect() { function in class:android::StreamSourceAppProxy
309 mAppProxy->disconnect();
350 mPlayer->disconnect();
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMnsObexClient.java 116 * Disconnect the connection to MNS server.
119 public void disconnect() { method in class:BluetoothMnsObexClient
122 mClientSession.disconnect(null);
126 Log.w(TAG, "OBEX session disconnect error " + e.getMessage());
168 /* Disconnect if connected */
169 disconnect(); method
193 // Unregister - should we disconnect, or keep the connection? - the spec. says nothing about this.
197 disconnect(); method
267 Log.w(TAG, "sendEvent after disconnect:" + mConnected);
  /external/chromium/third_party/libjingle/source/talk/base/
socketpool.cc 64 it->second->SignalEvent.disconnect(this);
116 it->second->SignalEvent.disconnect(this);
203 stream_->SignalEvent.disconnect(this);
  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
SocketStreamHandle.cpp 225 disconnect();
228 void SocketStreamHandle::disconnect() function in class:WebCore::SocketStreamHandle
250 disconnect();
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WorkerThreadableWebSocketChannel.h 75 virtual void disconnect() OVERRIDE; // Will suppress didClose().
99 void disconnect();
148 void disconnect();
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/
irclib.py 88 # ERROR from the server triggers the error event and the disconnect event.
89 # dropping of the connection triggers the disconnect event.
234 c.disconnect(message)
412 self.disconnect("Changing servers")
458 self.disconnect("Closing object")
496 self.disconnect("Connection reset by peer")
500 self.disconnect("Connection reset by peer")
647 def disconnect(self, message=""): member in class:ServerConnection
666 self._handle_event(Event("disconnect", self.server, "", [message]))
795 self.disconnect("Connection reset by peer."
920 def disconnect(self, message=""): member in class:DCCConnection
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
socketpool.cc 64 it->second->SignalEvent.disconnect(this);
116 it->second->SignalEvent.disconnect(this);
208 stream_->SignalEvent.disconnect(this);
  /frameworks/base/core/java/android/net/
EthernetDataTracker.java 87 mTracker.disconnect();
133 public void disconnect() { method in class:EthernetDataTracker
161 disconnect(); method
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
CameraBinderTest.java 124 cameraUser.disconnect();
148 cameraUser.disconnect();
189 cameraUser.disconnect();
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
SourceActivity.java 126 disconnect(); method
138 disconnect(); method
168 private void disconnect() { method in class:SourceActivity
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpService.java 132 boolean disconnect(BluetoothDevice device) { method in class:A2dpService
141 mStateMachine.sendMessage(A2dpStateMachine.DISCONNECT, device);
231 public boolean disconnect(BluetoothDevice device) { method in class:A2dpService.BluetoothA2dpBinder
234 return service.disconnect(device);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
HeadsetProfile.java 118 mService.disconnect(sink);
124 public boolean disconnect(BluetoothDevice device) { method in class:HeadsetProfile
132 return mService.disconnect(device);
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Connection.java 129 public boolean disconnect() { method in class:Connection
154 // Disconnect all the emualtors.
157 if (channel.disconnect()) {
285 // disconnect request, we should reconnect again.
286 } while (disconnect());
  /libcore/luni/src/main/java/java/nio/
DatagramChannelImpl.java 139 * @see java.nio.channels.DatagramChannel#disconnect()
142 synchronized public DatagramChannel disconnect() throws IOException { method in class:DatagramChannelImpl
154 socket.disconnect();
580 * @see java.net.DatagramSocket#disconnect()
583 public void disconnect() { method in class:DatagramChannelImpl.DatagramSocketAdapter
585 channelImpl.disconnect();
589 super.disconnect();
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLConnectionTest.java 194 public void disconnect() { method in class:URLConnectionTest.NewHandler
240 ((HttpURLConnection) uc).disconnect();
241 ((HttpURLConnection) uc2).disconnect();
332 ((HttpURLConnection) uc).disconnect();
374 ((HttpURLConnection) uc).disconnect();
402 ((HttpURLConnection) uc).disconnect();
851 ((HttpURLConnection) uc).disconnect();
881 ((HttpURLConnection) uc2).disconnect();
    [all...]
  /external/chromium_org/remoting/webapp/
event_handlers.js 56 { event: 'click', id: 'toolbar-disconnect', fn: remoting.disconnect },
111 window.addEventListener('unload', remoting.disconnect, false);
  /external/smack/src/org/jivesoftware/smack/
Connection.java.orig 69 * // Disconnect from the server
70 * con.disconnect();
78 * again. To stop the reconnection process, use {@link #disconnect()}. Once stopped
489 public void disconnect() {
490 disconnect(new Presence(Presence.Type.unavailable));
509 public abstract void disconnect(Presence unavailablePresence);
    [all...]
Connection.java 69 * // Disconnect from the server
70 * con.disconnect();
78 * again. To stop the reconnection process, use {@link #disconnect()}. Once stopped
489 public void disconnect() { method in class:Connection
490 disconnect(new Presence(Presence.Type.unavailable)); method
509 public abstract void disconnect(Presence unavailablePresence); method in class:Connection
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pan/
PanService.java 117 mTetherAc.disconnect();
203 mTetherAc.disconnect();
241 public boolean disconnect(BluetoothDevice device) { method in class:PanService.BluetoothPanBinder
244 return service.disconnect(device);
298 boolean disconnect(BluetoothDevice device) { method in class:PanService
334 disconnect(dev);

Completed in 908 milliseconds

1 2 3 45 6 7 8 91011>>