HomeSort by relevance Sort by last modified time
    Searched refs:connect (Results 176 - 200 of 2487) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webrtc/webrtc/libjingle/xmpp/
mucroomlookuptask_unittest.cc 80 task->SignalResult.connect(listener, &MucRoomLookupListener::OnResult);
121 task->SignalResult.connect(listener, &MucRoomLookupListener::OnResult);
158 task->SignalError.connect(listener, &MucRoomLookupListener::OnError);
174 task->SignalError.connect(listener, &MucRoomLookupListener::OnError);
  /external/webrtc/webrtc/p2p/client/
autoportallocator.h 34 jit->SignalJingleInfo.connect(this, &AutoPortAllocator::OnJingleInfo);
  /frameworks/av/media/libstagefright/include/
MediaHTTP.h 32 virtual status_t connect(
  /frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
EventsCommand.java 54 automationWrapper.connect();
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
OppProfile.java 43 public boolean connect(BluetoothDevice device) { method in class:OppProfile
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BluetoothController.java 36 void connect(CachedBluetoothDevice device); method in interface:BluetoothController
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
FakeBluetoothController.java 73 public void connect(CachedBluetoothDevice device) { method in class:FakeBluetoothController
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
SocketConnect.java 41 public static void connect(Socket first, Socket second) { method in class:SocketConnect
  /frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/
Utils.java 54 httpConnection.connect();
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapRfcommTransport.java 51 public void connect() throws IOException { method in class:BluetoothMapRfcommTransport
  /hardware/libhardware/include/hardware/
bt_pan.h 72 bt_status_t (*connect)(const bt_bdaddr_t *bd_addr, int local_role, int remote_role); member in struct:__anon41134
  /hardware/qcom/display/msm8084/libqservice/
IQService.cpp 47 virtual void connect(const sp<IQClient>& client) { function in class:qService::BpQService
48 ALOGD_IF(QSERVICE_DEBUG, "%s: connect HWC client", __FUNCTION__);
55 virtual void connect(const sp<IQHDMIClient>& client) { function in class:qService::BpQService
56 ALOGD_IF(QSERVICE_DEBUG, "%s: connect HDMI client", __FUNCTION__);
112 connect(client);
124 connect(client);
  /hardware/qcom/display/msm8960/libqservice/
IQService.h 42 CONNECT,
51 virtual void connect(const android::sp<qClient::IQClient>& client) = 0;
QService.cpp 62 void QService::connect(const sp<qClient::IQClient>& client) { function in class:qService::QService
  /hardware/qcom/display/msm8996/hdmi_cec/
QHDMIClient.cpp 63 mQService->connect(interface_cast<IQHDMIClient>(client));
  /hardware/qcom/display/msm8996/libqservice/
IQService.cpp 47 virtual void connect(const sp<IQClient>& client) { function in class:qService::BpQService
48 ALOGD_IF(QSERVICE_DEBUG, "%s: connect HWC client", __FUNCTION__);
55 virtual void connect(const sp<IQHDMIClient>& client) { function in class:qService::BpQService
56 ALOGD_IF(QSERVICE_DEBUG, "%s: connect HDMI client", __FUNCTION__);
106 connect(client);
117 connect(client);
  /hardware/qcom/display/msm8998/hdmi_cec/
QHDMIClient.cpp 63 mQService->connect(interface_cast<IQHDMIClient>(client));
  /hardware/qcom/display/msm8998/libqservice/
IQService.cpp 47 virtual void connect(const sp<IQClient>& client) { function in class:qService::BpQService
48 ALOGD_IF(QSERVICE_DEBUG, "%s: connect HWC client", __FUNCTION__);
55 virtual void connect(const sp<IQHDMIClient>& client) { function in class:qService::BpQService
56 ALOGD_IF(QSERVICE_DEBUG, "%s: connect HDMI client", __FUNCTION__);
108 connect(client);
119 connect(client);
  /libcore/luni/src/main/java/libcore/io/
ClassPathURLStreamHandler.java 108 // Sharing occurs if getUseCaches() is true when connect() is called (which can take place
109 // implicitly). useCachedJarFile records the state of sharing at connect() time.
115 // then call setUseCaches(false) before connect() to prevent sharing. The developer must then
140 public void connect() throws IOException { method in class:ClassPathURLStreamHandler.ClassPathURLConnection
156 connect(); method
173 connect(); method
210 connect(); method
  /libcore/luni/src/test/java/libcore/dalvik/system/
SocketTaggingTest.java 100 sc.connect(server.getLocalAddress());
120 dc.connect(server.getLocalAddress());
130 s.connect(server.getLocalAddress());
140 d.connect(server.getLocalAddress());
  /libcore/luni/src/test/java/libcore/java/net/
SocketTimeoutTest.java 77 // #connect(SocketAddress endpoint, int timeout)
78 checkOperationTimesOut(() -> new Socket(), s -> s.connect(UNREACHABLE_ADDRESS,
81 // Setting SO_TIMEOUT should not affect connect timeout.
85 s.connect(UNREACHABLE_ADDRESS, TIMEOUT_MILLIS);
97 s.connect(ss.getLocalSocketAddress());
118 sock.connect(serverSocket.getLocalSocketAddress());
  /packages/services/Car/service/src/com/android/car/
CarBluetoothUserService.java 136 Log.e(TAG, "Cannot connect to Profile. Proxy Unavailable");
140 Log.d(TAG, "Trying to connect to " + device.getName() + " Profile: " + profile);
144 mBluetoothA2dpSink.connect(device);
148 mBluetoothHeadsetClient.connect(device);
152 mBluetoothMapClient.connect(device);
156 mBluetoothPbapClient.connect(device);
175 Log.e(TAG, "Cannot connect to Profile. Proxy Unavailable");
  /system/core/libcutils/
socket_network_client_windows.c 53 // Now create and connect the socket.
61 if (connect(sock, address->ai_addr, address->ai_addrlen) == SOCKET_ERROR) {
  /tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
RemoteClient.java 48 * Initialize the {@RemoteClient}, and instruct it to connect to the given port
60 * Initialize the {@RemoteClient}, and instruct it to connect to the given hostname and port.
62 * @param hostName to connect to
100 * @throws RemoteException if failed to connect
102 public static IRemoteClient connect(int port) throws RemoteException { method in class:RemoteClient
116 * @throws RemoteException if failed to connect
118 public static IRemoteClient connect(String hostname, int port) throws RemoteException { method in class:RemoteClient
130 * @throws RemoteException if failed to connect
132 public static IRemoteClient connect() throws RemoteException { method in class:RemoteClient
133 return connect(DEFAULT_PORT)
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/command/remote/
RemoteManagerFuncTest.java 86 mRemoteClient = RemoteClient.connect(port);
105 mRemoteClient = RemoteClient.connect(port);
123 mRemoteClient = RemoteClient.connect(port);
145 mRemoteClient = RemoteClient.connect(port);
169 mRemoteClient = RemoteClient.connect(port);
183 mRemoteClient = RemoteClient.connect(port);
226 mRemoteClient = RemoteClient.connect(port);
267 mRemoteClient = RemoteClient.connect(port);
310 mRemoteClient = RemoteClient.connect(port);
335 mRemoteClient = RemoteClient.connect(port)
    [all...]

Completed in 960 milliseconds

1 2 3 4 5 6 78 91011>>