HomeSort by relevance Sort by last modified time
    Searched refs:connect (Results 451 - 475 of 2749) sorted by null

<<11121314151617181920>>

  /packages/services/Car/tests/android_support_car_api_test/src/com/android/support/car/apitest/
CarPackageManagerTest.java 65 mCar.connect();
  /prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/test/
py25tests.py 39 self.con = sqlite.connect(":memory:", factory=MyConnection)
transactions.py 38 self.con1 = sqlite.connect(get_db_path(), timeout=0.1)
41 self.con2 = sqlite.connect(get_db_path(), timeout=0.1)
156 con = sqlite.connect(":memory:")
173 self.con = sqlite.connect(":memory:")
  /prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/test/
py25tests.py 39 self.con = sqlite.connect(":memory:", factory=MyConnection)
transactions.py 38 self.con1 = sqlite.connect(get_db_path(), timeout=0.1)
41 self.con2 = sqlite.connect(get_db_path(), timeout=0.1)
156 con = sqlite.connect(":memory:")
173 self.con = sqlite.connect(":memory:")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
py25tests.py 39 self.con = sqlite.connect(":memory:", factory=MyConnection)
transactions.py 38 self.con1 = sqlite.connect(get_db_path(), timeout=0.1)
41 self.con2 = sqlite.connect(get_db_path(), timeout=0.1)
156 con = sqlite.connect(":memory:")
173 self.con = sqlite.connect(":memory:")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
py25tests.py 39 self.con = sqlite.connect(":memory:", factory=MyConnection)
transactions.py 38 self.con1 = sqlite.connect(get_db_path(), timeout=0.1)
41 self.con2 = sqlite.connect(get_db_path(), timeout=0.1)
156 con = sqlite.connect(":memory:")
173 self.con = sqlite.connect(":memory:")
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Connection.java 86 * Emulator may connect to SDK controller before the app registers a channel
112 public void connect() { method in class:Connection
186 // Remove the socket from the pending list, and connect the registered channel with it.
190 channel.connect(pending_socket);
253 waker.connect(socket.getLocalSocketAddress());
394 // connect it.
398 channel.connect(sk);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
VersionLoader.java 47 socket.connect(new InetSocketAddress("127.0.0.1",
ViewManager.java 48 socket.connect(new InetSocketAddress("127.0.0.1",
  /system/chre/host/common/include/chre_host/
socket_client.h 39 * the receive thread. Note that it is *not* safe to call connect(),
59 * Called when we have failed to (re-)connect the socket after many attempts
73 * Synchronously attempts to connect to the Android reserved namespace socket
78 * @param socketName Name of the Android domain socket to connect to
83 bool connect(const char *socketName,
87 * Starts up the receive thread and attempts to connect to the socket in the
93 * @param socketName Name of the Android domain socket to connect to
96 * @return true if the receive thread was started and will attempt to connect
105 * callbacks object provided to connect().
  /system/core/init/
property_service_test.cpp 33 // Connect to the property service directly...
43 ASSERT_NE(connect(fd, reinterpret_cast<sockaddr*>(&addr), addr_len), -1);
  /tools/test/connectivity/acts/framework/acts/test_utils/power/
PowerCoexBaseTest.py 51 self.main_network[WiFi_band], connect=False)
  /external/webrtc/webrtc/examples/peerconnection/client/
peer_connection_client.cc 61 control_socket_->SignalCloseEvent.connect(this,
63 hanging_get_->SignalCloseEvent.connect(this,
65 control_socket_->SignalConnectEvent.connect(this,
67 hanging_get_->SignalConnectEvent.connect(this,
69 control_socket_->SignalReadEvent.connect(this,
71 hanging_get_->SignalReadEvent.connect(this,
93 void PeerConnectionClient::Connect(const std::string& server, int port,
100 << "The client must not be connected before you can call Connect()";
120 resolver_->SignalDone.connect(this, &PeerConnectionClient::OnResolveResult);
229 int err = control_socket_->Connect(server_address_)
    [all...]
  /external/webrtc/webrtc/p2p/base/
stunport.cc 135 resolver->SignalDone.connect(this,
223 socket_->SignalReadPacket.connect(this, &UDPPort::OnReadPacket);
225 socket_->SignalSentPacket.connect(this, &UDPPort::OnSentPacket);
226 socket_->SignalReadyToSend.connect(this, &UDPPort::OnReadyToSend);
227 socket_->SignalAddressReady.connect(this, &UDPPort::OnLocalAddressReady);
228 requests_.SignalSendPacket.connect(this, &UDPPort::OnSendPacket);
364 resolver_->SignalDone.connect(this, &UDPPort::OnResolveResult);
stunport_unittest.cc 70 stun_port_->SignalPortComplete.connect(this,
72 stun_port_->SignalPortError.connect(this,
80 socket_->SignalReadPacket.connect(this, &StunPortTest::OnReadPacket);
90 stun_port_->SignalPortComplete.connect(this,
92 stun_port_->SignalPortError.connect(this,
  /frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
Filters.java 357 Type connect = tb.create(); local
364 b.addConnection(connect, s_uc2f.getKernelID_uc4tof4(),
369 b.addConnection(connect, mFilters[i-1].getKernelID(),
389 connect, in);
392 c = mFilters[i].asyncLaunch(b2, c.getReturn(), connect);
405 mScratchPixelsAllocation[0] = Allocation.createTyped(mRS, connect);
406 mScratchPixelsAllocation[1] = Allocation.createTyped(mRS, connect);
  /external/webrtc/webrtc/base/
testutils.h 62 stream->SignalEvent.connect(this, &StreamSink::OnEvent);
78 socket->SignalConnectEvent.connect(this, &StreamSink::OnConnectEvent);
79 socket->SignalReadEvent.connect(this, &StreamSink::OnReadEvent);
80 socket->SignalWriteEvent.connect(this, &StreamSink::OnWriteEvent);
81 socket->SignalCloseEvent.connect(this, &StreamSink::OnCloseEvent);
286 socket_->Connect(address);
331 socket_->SignalConnectEvent.connect(this,
333 socket_->SignalReadEvent.connect(this, &SocketTestClient::OnReadEvent);
334 socket_->SignalWriteEvent.connect(this, &SocketTestClient::OnWriteEvent);
335 socket_->SignalCloseEvent.connect(this, &SocketTestClient::OnCloseEvent)
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
ConscryptSocketBase.java 135 public final void connect(SocketAddress endpoint) throws IOException { method in class:ConscryptSocketBase
136 connect(endpoint, 0); method
143 public final void connect(SocketAddress endpoint, int timeout) throws IOException { method in class:ConscryptSocketBase
150 socket.connect(endpoint, timeout);
152 super.connect(endpoint, timeout);
  /external/python/cpython3/Lib/test/
test_timeout.py 20 performed by connect().
154 # Testing connect timeout is tricky: we need to have IP connectivity
162 # to hosts that attempt to connect to this address: which is exactly
163 # what we need to confidently test connect timeout.
175 # is sent for UDP/ICMP packets. This means our attempts to connect to
178 # the whitehole, we proceed with testing connect timeout against the
207 sock.connect((whitehole))
220 "{}:{} within {} seconds, so we're unable to test connect "
232 # All that hard work just to test if connect times out in 0.001s ;-)
235 self._sock_operation(1, 0.001, 'connect', self.addr_remote
    [all...]
  /external/selinux/gui/
booleansPage.py 101 self.booleansFilter.connect("focus_out_event", self.filter_changed)
102 self.booleansFilter.connect("activate", self.filter_changed)
103 self.booleansFilter.connect("changed", self.filter_changed)
109 self.revertButton.connect("clicked", self.on_revert_clicked)
118 checkbox.connect("toggled", self.boolean_toggled)
  /libcore/ojluni/src/main/java/sun/nio/ch/
SocketAdaptor.java 78 public void connect(SocketAddress remote) throws IOException { method in class:SocketAdaptor
79 connect(remote, 0); method
82 public void connect(SocketAddress remote, int timeout) throws IOException { method in class:SocketAdaptor
84 throw new IllegalArgumentException("connect: The address can't be null");
86 throw new IllegalArgumentException("connect: timeout can't be negative");
97 sc.connect(remote);
107 if (sc.connect(remote))
  /external/adhd/scripts/audio_tuning/frontend/
audio.js 145 osc.connect(filter1);
146 osc.connect(filter2);
147 filter1.connect(context.destination);
148 filter2.connect(inverter);
149 inverter.connect(context.destination);
200 /* no processing needed, directly connect from source to destination. */
201 sourceNode.connect(audioContext.destination);
390 connect(stages[i - 1], stages[i]);
434 splitter.connect(analyzer_left, 0, 0);
435 splitter.connect(analyzer_right, 1, 0)
817 function connect(c1, c2, n, m) { function
    [all...]

Completed in 355 milliseconds

<<11121314151617181920>>