HomeSort by relevance Sort by last modified time
    Searched refs:is_connected (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/chromium_org/remoting/protocol/
video_reader.h 37 virtual bool is_connected() = 0;
video_writer.h 40 virtual bool is_connected() = 0;
channel_dispatcher_base.h 44 bool is_connected() { return channel() != NULL; } function in class:remoting::protocol::ChannelDispatcherBase
protobuf_video_reader.h 32 virtual bool is_connected() OVERRIDE;
protobuf_video_writer.h 35 virtual bool is_connected() OVERRIDE;
connection_to_client.cc 185 if (!control_dispatcher_.get() || !control_dispatcher_->is_connected())
187 if (!event_dispatcher_.get() || !event_dispatcher_->is_connected())
189 if (!video_writer_.get() || !video_writer_->is_connected())
191 if ((!audio_writer_.get() || !audio_writer_->is_connected()) &&
connection_to_host.cc 256 if (!control_dispatcher_.get() || !control_dispatcher_->is_connected())
258 if (!event_dispatcher_.get() || !event_dispatcher_->is_connected())
260 if (!video_reader_.get() || !video_reader_->is_connected())
262 if ((!audio_reader_.get() || !audio_reader_->is_connected()) &&
protobuf_video_reader.cc 40 bool ProtobufVideoReader::is_connected() { function in class:remoting::protocol::ProtobufVideoReader
protobuf_video_writer.cc 60 bool ProtobufVideoWriter::is_connected() { function in class:remoting::protocol::ProtobufVideoWriter
transport.h 108 virtual bool is_connected() const = 0;
libjingle_transport_factory.cc 67 virtual bool is_connected() const OVERRIDE;
142 DCHECK(!is_connected() || socket_.get() == NULL);
264 bool LibjingleStreamTransport::is_connected() const { function in class:remoting::protocol::__anon14507::LibjingleStreamTransport
353 if (is_connected()) {
379 DCHECK(!is_connected());
386 DCHECK(!is_connected());
  /external/chromium_org/chrome/browser/chromeos/login/screens/
network_screen.cc 161 bool is_connected = network_state_helper_->IsConnected();
162 if (is_connected)
166 if (is_connected) {
176 bool is_connected = network_state_helper_->IsConnected(); local
177 if (is_connected && continue_pressed_) {
188 actor_->EnableContinue(is_connected);
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main.cc 63 if (conductor->connection_active() || client.is_connected()) {
64 while ((conductor->connection_active() || client.is_connected()) &&
peer_connection_client.cc 96 bool PeerConnectionClient::is_connected() const { function in class:PeerConnectionClient
178 ASSERT(is_connected());
180 if (!is_connected() || peer_id == -1)
380 ASSERT(is_connected());
peer_connection_client.h 72 bool is_connected() const;
  /external/chromium_org/chrome/browser/devtools/device/adb/
adb_client_socket_browsertest.cc 51 devices_[0]->is_connected() ? devices_[0] : devices_[1];
54 devices_[0]->is_connected() ? devices_[1] : devices_[0];
56 ASSERT_TRUE(connected->is_connected());
57 ASSERT_FALSE(not_connected->is_connected());
  /external/lldb/source/Target/
Platform.cpp 309 const bool is_connected = IsConnected(); local
310 if (is_connected)
312 strm.Printf(" Connected: %s\n", is_connected ? "yes" : "no");
340 const bool is_connected = IsConnected(); local
349 if (is_connected && !m_os_version_set_while_connected)
355 fetch = is_connected;
563 const bool is_connected = IsConnected(); local
572 if (is_connected && !m_system_arch_set_while_connected)
578 fetch = is_connected;
  /external/chromium_org/extensions/browser/api/socket/
tcp_socket.h 28 bool is_connected = false);
62 bool is_connected = false);
103 bool is_connected);
tcp_socket.cc 47 bool is_connected)
51 this->is_connected_ = is_connected;
64 bool is_connected) {
65 return new TCPSocket(tcp_client_socket, owner_extension_id, is_connected);
315 bool is_connected)
316 : TCPSocket(tcp_client_socket, owner_extension_id, is_connected),
udp_socket.cc 96 if (!socket_.is_connected()) {
116 if (!socket_.is_connected())
142 if (!socket_.is_connected()) {
186 if (!socket_.is_connected()) {
240 bool UDPSocket::IsBound() { return socket_.is_connected(); }
  /external/chromium_org/net/udp/
udp_socket_libevent.cc 94 if (!is_connected())
122 if (!is_connected())
142 if (!is_connected())
256 DCHECK(!is_connected());
299 DCHECK(!is_connected());
338 DCHECK(!is_connected());
345 DCHECK(!is_connected());
641 if (!is_connected())
688 if (!is_connected())
724 if (is_connected())
    [all...]
udp_socket_win.cc 190 if (!is_connected())
212 if (!is_connected())
233 if (!is_connected())
324 DCHECK(!is_connected());
364 DCHECK(!is_connected());
436 DCHECK(!is_connected());
443 DCHECK(!is_connected());
730 if (!is_connected())
769 if (!is_connected())
805 if (is_connected())
    [all...]
udp_socket_win.h 106 bool is_connected() const { return socket_ != INVALID_SOCKET; } function in class:net::UDPSocketWin
  /external/bluetooth/bluedroid/btif/src/
btif_hf.c 188 ** Function is_connected
195 static BOOLEAN is_connected(bt_bdaddr_t *bd_addr) function
751 if (!is_connected(bd_addr))
785 if (is_connected(bd_addr) && (idx != BTIF_HF_INVALID_IDX))
809 if (is_connected(bd_addr) && (idx != BTIF_HF_INVALID_IDX))
837 if (is_connected(bd_addr) && (idx != BTIF_HF_INVALID_IDX))
861 if (is_connected(bd_addr) && (idx != BTIF_HF_INVALID_IDX))
896 if (is_connected(bd_addr) && (idx != BTIF_HF_INVALID_IDX))
934 if (is_connected(bd_addr) && (idx != BTIF_HF_INVALID_IDX))
960 if (is_connected(NULL)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/linux/
main.cc 58 client_ != NULL && !client_->is_connected()) {

Completed in 908 milliseconds

1 2 3