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

<<31323334353637383940>>

  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
networkconfig.cpp 36 connect(authSelect, SIGNAL(activated(int)), this,
38 connect(cancelButton, SIGNAL(clicked()), this, SLOT(close()));
39 connect(addButton, SIGNAL(clicked()), this, SLOT(addNetwork()));
40 connect(encrSelect, SIGNAL(activated(const QString &)), this,
42 connect(removeButton, SIGNAL(clicked()), this, SLOT(removeNetwork()));
43 connect(eapSelect, SIGNAL(activated(int)), this,
45 connect(useWpsButton, SIGNAL(clicked()), this, SLOT(useWps()));
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 149 connection.connect();
187 connection.connect();
378 connection.connect();
396 // request 1: proxy CONNECT, respond with OK
418 connection.connect();
443 // request 1: proxy CONNECT, respond with auth challenge
445 // request 2: proxy CONNECT, respond with OK
467 connection.connect();
520 // request 1: proxy CONNECT, respond with OK
550 // request 1: proxy CONNECT, respond with auth challeng
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_ftplib.py 407 self.client.connect(self.server.host, self.server.port)
560 self.client.connect(self.server.host, self.server.port)
599 self.client.connect(self.server.host, self.server.port)
612 self.client.connect(self.server.host, self.server.port)
736 ftp.connect(HOST, timeout=30)
743 ftp.connect(HOST)
751 ftp.connect(HOST)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_ftplib.py 407 self.client.connect(self.server.host, self.server.port)
560 self.client.connect(self.server.host, self.server.port)
599 self.client.connect(self.server.host, self.server.port)
612 self.client.connect(self.server.host, self.server.port)
736 ftp.connect(HOST, timeout=30)
743 ftp.connect(HOST)
751 ftp.connect(HOST)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ftplib.py 407 self.client.connect(self.server.host, self.server.port)
560 self.client.connect(self.server.host, self.server.port)
599 self.client.connect(self.server.host, self.server.port)
612 self.client.connect(self.server.host, self.server.port)
736 ftp.connect(HOST, timeout=30)
743 ftp.connect(HOST)
751 ftp.connect(HOST)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ftplib.py 407 self.client.connect(self.server.host, self.server.port)
560 self.client.connect(self.server.host, self.server.port)
599 self.client.connect(self.server.host, self.server.port)
612 self.client.connect(self.server.host, self.server.port)
736 ftp.connect(HOST, timeout=30)
743 ftp.connect(HOST)
751 ftp.connect(HOST)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ssl.py 300 # connected at the time of the call. We connect it, then wrap it.
302 raise ValueError("attempt to connect already-connected SSLSocket!")
307 socket.connect(self, addr)
319 def connect(self, addr): member in class:SSLSocket
433 s.connect(addr)
  /external/autotest/client/cros/chameleon/
chameleon_stream_server.py 353 def connect(self): member in class:ChameleonStreamServer
354 """Connect to the server and check the compatibility."""
357 self._video_sock.connect(server_address)
358 self._audio_sock.connect(server_address)
  /external/chromium-trace/catapult/telemetry/third_party/websocket-client/websocket/
_core.py 57 We can connect to the websocket server and send/receive data.
62 >>> ws.connect("ws://echo.websocket.org")
179 def connect(self, url, **options): member in class:WebSocket
181 Connect to url. url is websocket url scheme.
187 >>> ws.connect("ws://echo.websocket.org/",
210 self.sock, addrs = connect(url, self.sock_opt, proxy_info(**options),
438 connect to url and return websocket object.
440 Connect to url and return the WebSocket object.
457 settimeout and connect. It's __init__ should be compatible with
487 websock.connect(url, **options
    [all...]
  /external/ltp/utils/sctp/func_tests/
test_tcp_style.c 142 /* Try to do a connect from a listening socket. It should fail. */
143 error = connect(listen_sk, (struct sockaddr *)&clt_loop[0],
146 tst_brkm(TBROK, tst_exit, "connect to non-listening socket "
149 tst_resm(TPASS, "connect to non-listening socket");
151 /* Do a blocking connect from clt_sk's to listen_sk */
155 tst_resm(TPASS, "connect to listening socket");
157 /* Verify that no more connect's can be done after the acceptq
160 error = connect(clt2_sk, &svr_loop.sa, sizeof(svr_loop));
162 tst_brkm(TBROK, tst_exit, "connect after max backlog "
165 tst_resm(TPASS, "connect after max backlog")
    [all...]
  /external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/
MockWebServerTest.java 267 connection.connect();
350 server.getUrl("/").openConnection().connect();
358 server.getUrl("/").openConnection().connect();
  /external/webrtc/webrtc/p2p/stunprober/
stunprober.cc 117 socket_->SignalReadPacket.connect(
299 resolver->SignalDone.connect(this, &StunProber::OnServerResolved);
357 socket->SignalAddressReady.connect(this, &StunProber::OnSocketReady);
  /libcore/luni/src/test/java/libcore/java/nio/channels/
AsynchronousServerSocketChannelTest.java 114 s.connect(assc.getLocalAddress());
139 s.connect(assc.getLocalAddress());
167 s.connect(assc.getLocalAddress());
  /libcore/ojluni/src/main/java/java/net/
DatagramSocket.java 94 * to calling connect() but not read by the application
134 throw new IllegalArgumentException("connect: " + port);
137 throw new IllegalArgumentException("connect: null address");
139 checkAddress (address, "connect");
155 // Android-changed: This section now throws any SocketException generated by connect()
160 // old impls do not support connect/disconnect
168 getImpl().connect(address, port);
185 // Android-changed: Propagate the SocketException so connect() can store it.
475 public void connect(InetAddress address, int port) { method in class:DatagramSocket
480 //throw new Error("connect failed", se)
509 public void connect(SocketAddress addr) throws SocketException { method in class:DatagramSocket
    [all...]
SocksSocketImpl.java 100 super.connect(new InetSocketAddress(host, port), timeout);
126 throw new SocketTimeoutException("Connect timed out");
268 out.write(CONNECT);
314 * connect to the SOCKS proxy and negotiate the access. If the proxy
315 * grants the connections, then the connect is successful and all
318 * @param endpoint the {@code SocketAddress} to connect to.
327 protected void connect(SocketAddress endpoint, int timeout) throws IOException { method in class:SocksSocketImpl
356 super.connect(epoint, remainingMillis(deadlineMillis));
404 out.write(CONNECT);
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpService.java 176 public boolean connect(BluetoothDevice device) { method in class:A2dpService
196 mStateMachine.sendMessage(A2dpStateMachine.CONNECT, device);
364 public boolean connect(BluetoothDevice device) { method in class:A2dpService.BluetoothA2dpBinder
367 return service.connect(device);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ssl.py 309 # connected at the time of the call. We connect it, then wrap it.
311 raise ValueError("attempt to connect already-connected SSLSocket!")
320 socket.connect(self, addr)
330 def connect(self, addr): member in class:SSLSocket
448 s.connect(addr)
  /prebuilts/gdb/linux-x86/lib/python2.7/
ssl.py 309 # connected at the time of the call. We connect it, then wrap it.
311 raise ValueError("attempt to connect already-connected SSLSocket!")
320 socket.connect(self, addr)
330 def connect(self, addr): member in class:SSLSocket
448 s.connect(addr)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ssl.py 309 # connected at the time of the call. We connect it, then wrap it.
311 raise ValueError("attempt to connect already-connected SSLSocket!")
320 socket.connect(self, addr)
330 def connect(self, addr): member in class:SSLSocket
448 s.connect(addr)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ssl.py 309 # connected at the time of the call. We connect it, then wrap it.
311 raise ValueError("attempt to connect already-connected SSLSocket!")
320 socket.connect(self, addr)
330 def connect(self, addr): member in class:SSLSocket
448 s.connect(addr)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
ConnectionAccessClientActivity.java 115 mChatService.connect(device, false);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hcef/
HceFReaderActivity.java 100 felica.connect();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
ConnectReqTestCase.java 81 * Tries to connect the target devices.
123 * Try to connect the target device.
128 mP2pMgr.connect(mChannel, config, actionListener);
  /developers/build/prebuilts/gradle/DelayedConfirmation/Application/src/main/java/com/example/android/wearable/delayedconfirmation/
MainActivity.java 61 mGoogleApiClient.connect();
102 Log.e(TAG, "Failed to connect to Google Api Client with error code "
128 Log.e(TAG, "Failed to connect to Google Api Client with status "
  /developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/midiscope/
MainActivity.java 90 mLogSenderSelector.getSender().connect(connectFramer);

Completed in 952 milliseconds

<<31323334353637383940>>