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

1 2 3 4

  /external/webrtc/webrtc/p2p/base/
transportchannel.cc 26 void TransportChannel::set_receiving(bool receiving) {
27 if (receiving_ == receiving) {
30 receiving_ = receiving;
transportchannel.h 76 bool receiving() const { return receiving_; } function in class:cricket::TransportChannel
164 // Sets the receiving state, signaling if necessary.
165 void set_receiving(bool receiving);
p2ptransportchannel_unittest.cc 502 ep1_ch1()->receiving() &&
504 ep2_ch1()->receiving() &&
571 // This test waits for the transport to become receiving and writable on both
579 EXPECT_TRUE_WAIT_MARGIN(ep1_ch1()->receiving() && ep1_ch1()->writable() &&
580 ep2_ch1()->receiving() && ep2_ch1()->writable(),
626 EXPECT_TRUE_WAIT(ep1_ch1()->receiving() &&
628 ep2_ch1()->receiving() &&
    [all...]
transport.h 87 receiving(false),
101 bool receiving; // Has this connection received anything? member in struct:cricket::ConnectionInfo
142 // The ICE connection receiving timeout value.
p2ptransportchannel.cc 56 // Compare two connections based on their writing, receiving, and connected
65 // We prefer a receiving connection to a non-receiving, higher-priority
68 if (a->receiving() && !b->receiving())
70 if (!a->receiving() && b->receiving())
136 // data? It would help rendezvous on the connection that is also receiving
160 // We prefer to switch to a writable and receiving connection over a
161 // non-writable or non-receiving connection, even if the latter ha
1115 bool receiving = false; local
    [all...]
turnport_unittest.cc 409 EXPECT_FALSE(conn1->receiving());
420 EXPECT_TRUE(conn1->receiving());
421 EXPECT_TRUE(conn2->receiving());
427 EXPECT_TRUE(conn2->receiving());
463 EXPECT_TRUE_WAIT(conn2->receiving(), kTimeout);
    [all...]
dtlstransportchannel.cc 391 // - Prior to the DTLS handshake, the state is neither receiving nor
441 << "DTLSTransportChannelWrapper: channel receiving state changed to "
442 << channel_->receiving();
445 set_receiving(channel_->receiving());
faketransportcontroller.h 185 void SetReceiving(bool receiving) { set_receiving(receiving); }
port.h 446 bool receiving() const { return receiving_; } function in class:cricket::Connection
451 bool weak() const { return !(writable() && receiving() && connected()); }
638 // Time duration to switch from receiving to not receiving.
  /prebuilts/go/darwin-x86/test/chan/
select3.go 61 // sending/receiving from a nil channel blocks
69 // sending/receiving from a nil channel inside a select is never selected
91 // receiving from a closed channel never blocks
109 // receiving from a non-ready channel always blocks
  /prebuilts/go/darwin-x86/test/ken/
chan1.go 14 const M = 10 // receiving goroutines
  /prebuilts/go/linux-x86/test/chan/
select3.go 61 // sending/receiving from a nil channel blocks
69 // sending/receiving from a nil channel inside a select is never selected
91 // receiving from a closed channel never blocks
109 // receiving from a non-ready channel always blocks
  /prebuilts/go/linux-x86/test/ken/
chan1.go 14 const M = 10 // receiving goroutines
  /external/curl/docs/cmdline-opts/
pinnedpubkey.d 14 abort the connection before sending or receiving any data.
  /external/autotest/client/site_tests/power_LoadTest/extension/
ct.js 10 //receiving a message from content script assumes the page has
  /external/webrtc/talk/app/webrtc/
webrtcsession.h 104 // Called whenever the state changes between receiving and not receiving.
105 virtual void OnIceConnectionReceivingChange(bool receiving) {}
424 void SetIceConnectionReceiving(bool receiving);
450 void OnTransportControllerReceiving(bool receiving);
peerconnectioninterface.h 484 // Called when the ICE connection receiving status changes.
485 virtual void OnIceConnectionReceivingChange(bool receiving) {}
  /external/webrtc/webrtc/voice_engine/
channel.h 95 receiving(false) {}
103 bool receiving; member in struct:webrtc::voe::ChannelState::State
152 state_.receiving = enable;
163 public FileCallback, // receiving notification from file player & recorder
426 bool Receiving() const
428 return channel_state_.Get().receiving;
  /external/iputils/
iputils.spec 22 receiving network traffic.
  /prebuilts/go/darwin-x86/src/syscall/
creds_test.go 17 // TestSCMCredentials tests the sending and receiving of credentials
  /prebuilts/go/linux-x86/src/syscall/
creds_test.go 17 // TestSCMCredentials tests the sending and receiving of credentials
  /external/chromium-trace/catapult/devil/devil/android/
battery_utils.py 358 logger.warning('Dumpsys battery not receiving updates. '
  /external/libmojo/third_party/catapult/devil/devil/android/
battery_utils.py 314 logging.warning('Dumpsys battery not receiving updates. '
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java 69 /** Triggered when the ICE connection receiving status changes. */
70 public void onIceConnectionReceivingChange(boolean receiving);
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_kay.h 112 Boolean receiving; /* bool receiving (read only) */ member in struct:receive_sc

Completed in 376 milliseconds

1 2 3 4