HomeSort by relevance Sort by last modified time
    Searched defs:connect (Results 1 - 25 of 1359) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
connect.cpp 21 int connect(int sockfd, const sockaddr* addr, socklen_t addrlen) { function
22 return __netdClientDispatch.connect(sockfd, addr, addrlen);
  /external/autotest/site_utils/lxc/container_pool/
unittest_client.py 11 def connect(address, timeout=30): function
14 @param address: Address of the socket to connect to.
20 return _ClientFactory(address).connect(timeout)
26 Instantiate this with an address, and call connect. The factory will take
46 def connect(self, timeout): member in class:_ClientFactory
72 'Test client failed to connect after %s seconds', i)
client.py 40 with Client.connect(pool_address, timeout) as client:
47 @param address: The address of the pool to connect to.
59 self._connection = _ConnectionHelper(address).connect(timeout)
64 def connect(cls, address, timeout): member in class:Client
132 Instantiate this with an address, and call connect. The factory will take
158 def connect(self, timeout): member in class:_ConnectionHelper
190 'Test client failed to connect after %s seconds.', i)
  /external/autotest/tko/
db_mysql.py 9 def connect(self, host, database, user, password, port): member in class:db_mysql
19 return driver.connect(**connection_args)
  /prebuilts/go/darwin-x86/src/runtime/
stubs_android.go 5 // Return values of access/connect/socket are the return values of the syscall
12 // int connect(int, const struct sockaddr*, socklen_t)
13 func connect(fd int32, addr unsafe.Pointer, len int32) int32 func
  /prebuilts/go/linux-x86/src/runtime/
stubs_android.go 5 // Return values of access/connect/socket are the return values of the syscall
12 // int connect(int, const struct sockaddr*, socklen_t)
13 func connect(fd int32, addr unsafe.Pointer, len int32) int32 func
  /bionic/libc/private/
NetdClientDispatch.h 27 int (*connect)(int, const struct sockaddr*, socklen_t); member in struct:NetdClientDispatch
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
connect.c 2 Implement the connect API.
19 Connect to a remote system via the network.
21 The connect routine attempts to establish a connection to a
30 In the initial "Not connected" state, calls to connect start the connection
32 the "Connection in progress" state, connect polls for connection completion
37 connect again.
40 <a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/connect.html">POSIX</a>
54 connect ( function
79 // Attempt to connect to a remote system
  /external/autotest/client/cros/scripts/
wifi 36 print cmd, 'connect <ssid> [passphrase] [security]'
67 def connect(ssid, security, credentials, save_credentials, timeout=15): function
68 """Attempt to connect to a WiFi network.
70 Blocks until we connect successfully to a WiFi network described
73 @param ssid string Name of the network to connect to.
74 @param security string security type of the network to connect to.
192 if command == 'connect':
202 return connect(ssid, security, credentials, save_credentials)
211 return connect(ssid, security, credentials, save_credentials, timeout)
  /external/autotest/server/cros/faft/
rpc_proxy.py 78 self.connect()
82 def connect(self): member in class:RPCProxy
83 """Connect the RPC server."""
  /external/autotest/server/cros/network/rf_switch/
rf_mocks.py 31 def connect(self, host, port): member in class:SocketMock
50 self.socket.connect(host, port)
60 self.socket.connect(host, scpi.Scpi.SCPI_PORT)
  /external/tensorflow/tensorflow/contrib/graph_editor/
edit.py 33 "connect",
172 def connect(sgv0, sgv1, disconnect_first=False): function
173 """Connect the outputs of sgv0 to the inputs of sgv1.
  /frameworks/av/media/libstagefright/
OMXClient.cpp 39 status_t OMXClient::connect() { function in class:android::OMXClient
40 return connect("default");
43 status_t OMXClient::connect(const char* name) { function in class:android::OMXClient
  /frameworks/base/media/java/android/media/midi/
MidiSender.java 28 * @param receiver the receiver to connect
30 public void connect(MidiReceiver receiver) { method in class:MidiSender
32 throw new NullPointerException("receiver null in MidiSender.connect");
50 * Called to connect a {@link MidiReceiver} to the sender
52 * @param receiver the receiver to connect
  /hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
CommBase.h 50 virtual int connect() { return 0; } function in class:android::hardware::automotive::vehicle::V2_0::impl::CommBase
  /libcore/luni/src/test/java/libcore/java/net/customstreamhandler/http/
Handler.java 39 @Override public void connect() throws IOException { method in class:Handler.HandlerURLConnection
  /libcore/ojluni/src/main/java/java/sql/
Driver.java 39 * driver in turn to try to connect to the target URL.
60 * of driver to connect to the given URL. This will be common, as when
61 * the JDBC driver manager is asked to connect to a given URL it passes
65 * driver to connect to the given URL but has trouble connecting to
73 * @param url the URL of the database to which to connect
81 Connection connect(String url, java.util.Properties info) method in interface:Driver
104 * enough information to connect to a database. Note that depending on
109 * @param url the URL of the database to which to connect
111 * connect open
  /packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
ShadowWifiManager.java 36 public void connect(WifiConfiguration config, WifiManager.ActionListener listener) { method in class:ShadowWifiManager
  /packages/services/Car/car-support-lib/src/android/support/car/
CarServiceLoaderEmbedded.java 57 public void connect() throws IllegalStateException { method in class:CarServiceLoaderEmbedded
58 mEmbeddedCar.connect();
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
HttpOverHttp2Test.java 101 connection1.connect();
103 connection2.connect();
105 connection3.connect();
  /external/testng/src/main/java/org/testng/remote/strprotocol/
MessageHub.java 11 * Central class to connect to the host and send message.
30 public void connect() throws IOException { method in class:MessageHub
31 m_messageSender.connect();
  /frameworks/base/tests/utils/testutils/java/com/android/internal/util/test/
BidirectionalAsyncChannel.java 45 public void connect(final Looper looper, final Messenger messenger, method in class:BidirectionalAsyncChannel
47 assertEquals("AsyncChannel must be disconnected to connect",
60 Log.d(TAG, "Failed to connect channel " + this);
80 mChannel.connect(null, rawMessageHandler, messenger);
  /packages/services/Car/obd2-lib/src/com/android/car/obd2/connections/
BluetoothConnection.java 48 connect(); method
64 * @return true if it could connect, false otherwise
66 private boolean connect() { method in class:BluetoothConnection
69 mSocket.connect();
99 return connect();
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
TcpStream.cpp 113 int TcpStream::connect(unsigned short port) function in class:TcpStream
115 return connect("127.0.0.1",port);
118 int TcpStream::connect(const char* hostname, unsigned short port) function in class:TcpStream
  /external/autotest/server/cros/bluetooth/
bluetooth_tester.py 140 def connect(self, address): member in class:BluetoothTester
141 """Connect to device with the given address
146 self._proxy.connect(address)

Completed in 526 milliseconds

1 2 3 4 5 6 7 8 91011>>