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

1 2

  /external/chromium_org/third_party/libjingle/source/talk/media/base/
filemediaengine.cc 133 bool SetSend(bool send);
209 bool RtpSenderReceiver::SetSend(bool send) {
234 // to sleep until SetSend(true) wakes it up.
296 bool FileVoiceChannel::SetSend(SendFlags flag) {
297 return rtp_sender_receiver_->SetSend(flag != SEND_NOTHING);
342 bool FileVideoChannel::SetSend(bool send) {
343 return rtp_sender_receiver_->SetSend(send);
filemediaengine_unittest.cc 308 // Test that SetSend() controls whether a voice channel sends RTP packets.
322 voice_channel_->SetSend(SEND_MICROPHONE);
326 voice_channel_->SetSend(SEND_NOTHING);
334 voice_channel_->SetSend(SEND_MICROPHONE);
341 voice_channel_->SetSend(SEND_NOTHING);
355 voice_channel_->SetSend(SEND_MICROPHONE);
361 voice_channel_->SetSend(SEND_NOTHING);
393 voice_channel_->SetSend(SEND_MICROPHONE);
399 voice_channel_->SetSend(SEND_NOTHING);
444 voice_channel_->SetSend(SEND_MICROPHONE)
    [all...]
videoengine_unittest.h 581 bool success = SetSend(false);
585 success = SetSend(sending);
588 bool SetSend(bool send) {
589 return channel_->SetSend(send);
762 // Test that SetSend works.
763 void SetSend() {
768 EXPECT_TRUE(SetSend(true));
772 EXPECT_TRUE(SetSend(false));
775 // Test that SetSend fails without codecs being set.
778 EXPECT_FALSE(SetSend(true))
    [all...]
rtpdataengine.h 111 virtual bool SetSend(bool send) {
filemediaengine.h 204 virtual bool SetSend(SendFlags flag);
291 virtual bool SetSend(bool send);
rtpdataengine_unittest.cc 252 ASSERT_TRUE(dmc->SetSend(true));
322 ASSERT_TRUE(dmc1->SetSend(true));
323 ASSERT_TRUE(dmc2->SetSend(true));
377 ASSERT_TRUE(dmc->SetSend(true));
fakemediaengine.h 278 virtual bool SetSend(SendFlags flag) {
563 virtual bool SetSend(bool send) { return set_sending(send); }
671 virtual bool SetSend(bool send) { return set_sending(send); }
    [all...]
mediachannel.h     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/sctp/
sctpdataengine.h 138 // When SetSend is set to true, connects. When set to false, disconnects.
139 // Calling: "SetSend(true); SetSend(false); SetSend(true);" will connect,
141 virtual bool SetSend(bool send);
sctpdataengine_unittest.cc 266 chan2_->SetSend(true);
268 // deterministic and realistic small timing delay between the SetSend calls.
273 chan1_->SetSend(true);
277 channel1()->SetSend(false);
278 channel2()->SetSend(false);
sctpdataengine.cc 477 bool SctpDataMediaChannel::SetSend(bool send) {
527 << " len=" << payload.length() << " before SetSend(true).";
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
srtpfilter_unittest.cc 590 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen));
596 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen));
598 EXPECT_FALSE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey2, kTestKeyLen));
604 EXPECT_FALSE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, 1));
610 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen));
620 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_32, kTestKey1, kTestKeyLen));
629 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_32, kTestKey1, kTestKeyLen));
642 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen));
655 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen));
664 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen))
    [all...]
srtpfilter.cc 158 if (!send_session_->SetSend(send_cs, send_key, send_key_len))
417 ret = (send_session_->SetSend(send_params.cipher_suite,
486 bool SrtpSession::SetSend(const std::string& cs, const uint8* key, int len) {
778 bool SrtpSession::SetSend(const std::string& cs, const uint8* key, int len) {
srtpfilter.h 71 // Initialize by calling SetSend with the local security params, then call
201 bool SetSend(const std::string& cs, const uint8* key, int len);
channel.cc     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine2_unittest.cc 459 EXPECT_FALSE(channel->SetSend(true))
461 EXPECT_TRUE(channel->SetSend(false))
506 WEBRTC_BASE_TEST(SetSend);
600 EXPECT_TRUE(SetSend(true));
814 EXPECT_TRUE(channel_->SetSend(true));
    [all...]
webrtcvideoengine_unittest.cc 673 EXPECT_TRUE(channel_->SetSend(true));
    [all...]
webrtcvoiceengine_unittest.cc 195 EXPECT_TRUE(channel_->SetSend(cricket::SEND_MICROPHONE));
    [all...]
webrtcvideoengine.h 258 virtual bool SetSend(bool send);
webrtcvideoengine2.h 232 virtual bool SetSend(bool send) OVERRIDE;
webrtcvoiceengine.h 348 virtual bool SetSend(SendFlags send);
webrtcvideoengine2.cc 861 bool WebRtcVideoChannel2::SetSend(bool send) {
862 LOG(LS_VERBOSE) << "SetSend: " << (send ? "true" : "false");
864 LOG(LS_ERROR) << "SetSend(true) called before setting codec.";
    [all...]
webrtcvideoengine.cc     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/other/
linphonemediaengine.h 124 virtual bool SetSend(SendFlags flag);
linphonemediaengine.cc 214 bool LinphoneVoiceChannel::SetSend(SendFlags flag) {

Completed in 659 milliseconds

1 2