HomeSort by relevance Sort by last modified time
    Searched refs:connected (Results 26 - 50 of 345) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/okhttp/src/main/java/com/squareup/okhttp/
RouteDatabase.java 45 public synchronized void connected(Route route) { method in class:RouteDatabase
  /libcore/luni/src/main/java/libcore/net/url/
FileURLConnection.java 55 * @param url The URL this connection is connected to
86 connected = true;
99 if (!connected) {
117 if (!connected) {
180 if (!connected) {
  /external/chromium_org/chrome/test/functional/
chromeos_vpn.py 47 msg='VPN ping succeeded when not connected.')
59 self.assertTrue('connected' in result, msg='Could not connect to VPN')
60 connected = result['connected']
64 msg='VPN ping succeeded when not connected.')
66 self.ConnectToPrivateNetwork(connected)
70 msg='VPN ping succeeded when not connected.')
  /external/chromium_org/device/bluetooth/test/
mock_bluetooth_device.cc 17 bool connected)
30 .WillByDefault(testing::Return(connected));
  /external/chromium_org/net/tools/quic/test_tools/
quic_test_client.cc 112 if (connected()) {
194 // If we're not connected, try to find an sni hostname.
195 if (!connected()) {
238 if (!connected()) {
241 if (!connected()) {
259 bool QuicTestClient::connected() const { function in class:net::tools::test::QuicTestClient
260 return client_->connected();
272 DCHECK(!connected());
336 DCHECK(!connected());
  /external/chromium_org/ppapi/api/
ppb_gamepad.idl 56 * Is there a gamepad connected at this index? If this is false, no other
59 PP_Bool connected;
66 * The data for all gamepads connected to the system.
79 * Data for an individual gamepad device connected to the system.
86 * gamepad/joystick devices that are connected to the system.
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpsEngine.java 44 @Override protected void connected(Connection connection) { method in class:HttpsEngine
46 super.connected(connection);
  /external/opencv/cvaux/src/
cvclique.cpp 105 void _FillAdjMatrix( CvGraph* graph, int** connected, int reverse )
112 connected[i][j] = 0|reverse;
114 //memset( connected[i], 0, sizeof(int)*graph->total );
118 connected[i][i] = 1;
122 connected[i][NUMBER(v)] = 1^reverse;
264 int** connected = finder->adj_matr;
314 if ( !connected[p][old[j]] )
360 if (connected[sel][old[i]])
375 if (connected[sel][old[i]])
467 if( !connected[fixp[k]][old[s[k]]]
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpReceiver.java 46 boolean connected = extras.getBoolean(UsbManager.USB_CONFIGURED);
49 // Start MTP service if USB is connected and either the MTP or PTP function is enabled
50 if (connected && (mtpEnabled || ptpEnabled)) {
56 // tell MediaProvider MTP is connected so it can bind to the service
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
irc.js 19 this.connected = false;
96 that.connected = true;
103 if (!that.connected) {
104 that.connected = true;
117 that.connected = false;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/
irc.js 19 this.connected = false;
96 that.connected = true;
103 if (!that.connected) {
104 that.connected = true;
117 that.connected = false;
  /external/bluetooth/bluedroid/stack/srvc/
srvc_eng.c 33 static void srvc_eng_connect_cback (tGATT_IF gatt_if, BD_ADDR bda, UINT16 conn_id, BOOLEAN connected, tGATT_DISCONN_REASON reason);
71 if (p_clcb->in_use && p_clcb->connected && !memcmp(p_clcb->bda, bda, BD_ADDR_LEN))
96 if (p_clcb->in_use && p_clcb->connected && !memcmp(p_clcb->bda, bda, BD_ADDR_LEN))
120 if (p_clcb->in_use && p_clcb->connected && p_clcb->conn_id == conn_id)
144 if (p_clcb->in_use && p_clcb->connected && p_clcb->conn_id == conn_id)
172 p_clcb->connected = TRUE;
195 if (p_clcb->in_use && p_clcb->connected && (p_clcb->conn_id == conn_id))
342 BOOLEAN connected, tGATT_DISCONN_REASON reason)
344 GATT_TRACE_EVENT5 ("srvc_eng_connect_cback: from %08x%04x connected:%d conn_id=%d reason = 0x%04x",
346 (bda[4]<<8)+bda[5], connected, conn_id, reason)
    [all...]
  /external/libppp/src/
udp.c 71 unsigned connected : 2; /* Have we connect()d ? */ member in struct:udpdevice
88 switch (dev->connected) {
99 if (dev->connected == UDP_MAYBEUNCONNECTED) {
101 dev->connected = UDP_CONNECTED;
104 dev->connected = UDP_UNCONNECTED;
116 if (dev->connected == UDP_CONNECTED)
238 dev->connected = UDP_CONNECTED;
282 /* See if we're a connected udp socket */
307 log_Printf(LogPHASE, "%s: Link is a connected udp socket\n",
309 dev->connected = UDP_CONNECTED
    [all...]
  /external/chromium_org/remoting/host/
log_to_server.cc 42 bool connected) {
46 ServerLogEntry::MakeForSessionStateChange(connected));
50 if (connected) {
60 if (state == SignalStrategy::CONNECTED) {
server_log_entry.cc 39 const char kValueSessionStateConnected[] = "connected";
75 bool connected) {
79 entry->Set(kKeySessionState, GetValueSessionState(connected));
165 const char* ServerLogEntry::GetValueSessionState(bool connected) {
166 return connected ? kValueSessionStateConnected : kValueSessionStateClosed;
server_log_entry.h 66 static const char* GetValueSessionState(bool connected);
  /libcore/luni/src/main/java/java/net/
HttpURLConnection.java 131 * the socket to a pool of connected sockets. This behavior can be disabled by
667 * if this is called after connected, or the method is not
673 if (connected) {
755 * if already connected or another mode already set.
761 if (super.connected) {
762 throw new IllegalStateException("Already connected");
796 * @throws IllegalStateException if already connected or another mode
800 if (super.connected) {
801 throw new IllegalStateException("Already connected");
  /external/bluetooth/bluedroid/stack/gap/
gap_ble.c 59 static void gap_ble_c_connect_cback (tGATT_IF gatt_if, BD_ADDR bda, UINT16 conn_id, BOOLEAN connected, tGATT_DISCONN_REASON reason);
114 if (p_clcb->in_use && p_clcb->connected && p_clcb->conn_id == conn_id)
143 p_clcb->connected = TRUE;
171 p_clcb->connected = TRUE;
184 ** if the server is already connected
203 if (p_clcb->in_use && p_clcb->connected && !memcmp(p_clcb->bda, bd_addr, BD_ADDR_LEN) )
210 GATT_TRACE_DEBUG0 ("gap_get_conn_id_if_connected: not connected");
611 BOOLEAN connected, tGATT_DISCONN_REASON reason)
616 GAP_TRACE_EVENT5 ("gap_ble_c_connect_cback: from %08x%04x connected:%d conn_id=%d reason = 0x%04x",
618 (bda[4]<<8)+bda[5], connected, conn_id, reason)
    [all...]
  /device/google/accessory/arduino/AndroidAccessory/
AndroidAccessory.h 33 bool connected; member in class:AndroidAccessory
  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_api_utils.cc 22 out->connected.reset(new bool(device.IsConnected()));
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
GamepadsChromium.cpp 44 if (i < gamepads.length && webGamepad.connected) {
  /frameworks/base/core/java/android/ddm/
DdmHandleExit.java 49 public void connected() {} method in class:DdmHandleExit
DdmHandleNativeHeap.java 49 public void connected() {} method in class:DdmHandleNativeHeap
  /external/chromium_org/chrome/browser/chromeos/cros/
network_library_unittest.cc 212 // eth1: connected (active network)
213 // wifi1: connected
219 // cellular1: connected, activated, not roaming
268 EXPECT_TRUE(cros_->Connected());
273 // The "wifi1" is connected, so we do not return "wifi2" for the connecting
284 EXPECT_TRUE(wifi1->connected());
286 EXPECT_FALSE(wifi1->connected());
289 EXPECT_TRUE(wifi1->connected());
311 EXPECT_FALSE(wifi->connected());
313 EXPECT_FALSE(wifi->connected());
    [all...]
  /external/smack/src/org/jivesoftware/smack/
BOSHConnection.java 83 private boolean connected = false; field in class:BOSHConnection
150 if (connected) {
151 throw new IllegalStateException("Already connected to a server.");
213 while ((!connected) && (System.currentTimeMillis() < endTime)) {
222 if (!connected && !done) {
233 if (!connected) {
291 return connected;
307 throw new IllegalStateException("Not connected to server.");
375 throw new IllegalStateException("Not connected to server.");
419 throw new IllegalStateException("Not connected to server.")
    [all...]

Completed in 2638 milliseconds

12 3 4 5 6 7 8 91011>>