OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:connecting
(Results
1 - 8
of
8
) sorted by null
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
DefaultClient.java
73
private CountDownLatch
connecting
= new CountDownLatch(1);
field in class:DefaultClient
179
connecting
.await();
226
// Make sure we aren't still
connecting
274
connecting
.countDown();
388
connecting
.countDown();
DefaultServer.java
83
private Map<Long,Connection>
connecting
= new ConcurrentHashMap<Long,Connection>();
field in class:DefaultServer
319
Connection c =
connecting
.remove(tempId);
371
connecting
.put(tempId, c);
415
// Just in case the endpoint was still
connecting
416
connecting
.values().remove(p);
/external/chromium/net/spdy/
spdy_proxy_client_socket.cc
490
bool
connecting
= next_state_ != STATE_DISCONNECTED &&
local
502
// If we're in the middle of
connecting
, we need to make sure
504
if (
connecting
) {
/external/chromium_org/ash/system/tray/
system_tray_delegate.h
31
bool highlight() const { return connected ||
connecting
; }
33
bool
connecting
;
member in struct:ash::NetworkIconInfo
50
bool
connecting
;
member in struct:ash::BluetoothDeviceInfo
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py
228
connecting
= False
variable in class:dispatcher
346
self.
connecting
= True
406
self.
connecting
= False
445
if self.
connecting
:
457
self.
connecting
= False
466
if self.
connecting
:
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asyncore.py
228
connecting
= False
variable in class:dispatcher
346
self.
connecting
= True
406
self.
connecting
= False
445
if self.
connecting
:
457
self.
connecting
= False
466
if self.
connecting
:
/external/qemu/hw/
bt-hci.c
64
int
connecting
;
member in struct:bt_hci_s::__anon27968
686
bacpy(&hci->lm.awaiting_bdaddr[hci->lm.
connecting
++], &slave->bd_addr);
815
for (i = 0; i < hci->lm.
connecting
; i ++)
817
if (i < -- hci->lm.
connecting
)
819
&hci->lm.awaiting_bdaddr[hci->lm.
connecting
]);
1128
hci->lm.
connecting
= 0;
[
all
...]
/external/chromium/chrome/browser/chromeos/cros/
network_library.h
285
bool
connecting
() const { return IsConnectingState(state_); }
function in class:chromeos::Network
288
bool connecting_or_connected() const { return
connecting
() || connected(); }
377
void set_connecting(bool
connecting
) {
378
state_ = (
connecting
? STATE_ASSOCIATION : STATE_IDLE);
[
all
...]
Completed in 197 milliseconds