HomeSort by relevance Sort by last modified time
    Searched refs:SetSend (Results 1 - 18 of 18) sorted by null

  /external/webrtc/talk/media/base/
videoengine_unittest.h 222 bool success = SetSend(false);
229 success = SetSend(sending);
233 bool SetSend(bool send) {
234 return channel_->SetSend(send);
411 // Test that SetSend works.
412 void SetSend() {
417 EXPECT_TRUE(SetSend(true));
421 EXPECT_TRUE(SetSend(false));
424 // Test that SetSend fails without codecs being set.
427 EXPECT_FALSE(SetSend(true))
    [all...]
rtpdataengine.h 104 virtual bool SetSend(bool send) {
rtpdataengine_unittest.cc 251 ASSERT_TRUE(dmc->SetSend(true));
321 ASSERT_TRUE(dmc1->SetSend(true));
322 ASSERT_TRUE(dmc2->SetSend(true));
376 ASSERT_TRUE(dmc->SetSend(true));
fakemediaengine.h 272 virtual bool SetSend(SendFlags flag) {
516 virtual bool SetSend(bool send) { return set_sending(send); }
632 virtual bool SetSend(bool send) { return set_sending(send); }
mediachannel.h     [all...]
  /external/webrtc/talk/media/sctp/
sctpdataengine.h 144 // When SetSend is set to true, connects. When set to false, disconnects.
145 // Calling: "SetSend(true); SetSend(false); SetSend(true);" will connect,
147 virtual bool SetSend(bool send);
sctpdataengine_unittest.cc 254 chan2_->SetSend(true);
256 // deterministic and realistic small timing delay between the SetSend calls.
261 chan1_->SetSend(true);
265 channel1()->SetSend(false);
266 channel2()->SetSend(false);
sctpdataengine.cc 552 bool SctpDataMediaChannel::SetSend(bool send) {
610 << " len=" << payload.size() << " before SetSend(true).";
    [all...]
  /external/webrtc/talk/session/media/
srtpfilter_unittest.cc 620 EXPECT_TRUE(s1_.SetSend(rtc::SRTP_AES128_CM_SHA1_80, kTestKey1, kTestKeyLen));
626 EXPECT_TRUE(s1_.SetSend(rtc::SRTP_AES128_CM_SHA1_80, kTestKey1, kTestKeyLen));
629 s1_.SetSend(rtc::SRTP_AES128_CM_SHA1_80, kTestKey2, kTestKeyLen));
636 EXPECT_FALSE(s1_.SetSend(rtc::SRTP_AES128_CM_SHA1_80, kTestKey1, 1));
642 EXPECT_TRUE(s1_.SetSend(rtc::SRTP_AES128_CM_SHA1_80, kTestKey1, kTestKeyLen));
652 EXPECT_TRUE(s1_.SetSend(rtc::SRTP_AES128_CM_SHA1_32, kTestKey1, kTestKeyLen));
661 EXPECT_TRUE(s1_.SetSend(rtc::SRTP_AES128_CM_SHA1_32, kTestKey1, kTestKeyLen));
674 EXPECT_TRUE(s1_.SetSend(rtc::SRTP_AES128_CM_SHA1_80, kTestKey1, kTestKeyLen));
687 EXPECT_TRUE(s1_.SetSend(rtc::SRTP_AES128_CM_SHA1_80, kTestKey1, kTestKeyLen));
696 EXPECT_TRUE(s1_.SetSend(rtc::SRTP_AES128_CM_SHA1_80, kTestKey1, kTestKeyLen))
    [all...]
srtpfilter.cc 160 if (!send_session_->SetSend(send_cs, send_key, send_key_len))
431 ret = (send_session_->SetSend(
516 bool SrtpSession::SetSend(int cs, const uint8_t* key, int len) {
819 bool SrtpSession::SetSend(const std::string& cs, const uint8_t* key, int len) {
srtpfilter.h 65 // Initialize by calling SetSend with the local security params, then call
203 bool SetSend(int cs, const uint8_t* key, int len);
channel.cc     [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvideoengine2_unittest.cc 349 EXPECT_FALSE(channel->SetSend(true))
351 EXPECT_TRUE(channel->SetSend(false))
376 EXPECT_TRUE(channel->SetSend(true));
433 channel->SetSend(true);
487 channel->SetSend(true);
573 EXPECT_TRUE(channel->SetSend(true));
651 EXPECT_TRUE(channel->SetSend(true));
792 WEBRTC_BASE_TEST(SetSend);
    [all...]
webrtcvoiceengine.h 168 bool SetSend(SendFlags send) override;
webrtcvoiceengine_unittest.cc 153 EXPECT_TRUE(channel_->SetSend(cricket::SEND_MICROPHONE));
    [all...]
webrtcvideoengine2.h 166 bool SetSend(bool send) override;
webrtcvideoengine2.cc 903 bool WebRtcVideoChannel2::SetSend(bool send) {
904 LOG(LS_VERBOSE) << "SetSend: " << (send ? "true" : "false");
906 LOG(LS_ERROR) << "SetSend(true) called before setting codec.";
    [all...]
webrtcvoiceengine.cc     [all...]

Completed in 2173 milliseconds