/external/chromium/third_party/libjingle/source/talk/session/phone/ |
filemediaengine.cc | 86 bool SetSend(bool send); 142 bool RtpSenderReceiver::SetSend(bool send) { 161 // to sleep until SetSend(true) wakes it up. 221 bool FileVoiceChannel::SetSend(SendFlags flag) { 222 return rtp_sender_receiver_->SetSend(flag != SEND_NOTHING); 244 bool FileVideoChannel::SetSend(bool send) { 245 return rtp_sender_receiver_->SetSend(send);
|
filemediaengine.h | 136 virtual bool SetSend(SendFlags flag); 171 virtual bool SetSend(bool send);
|
srtpfilter.h | 65 bool SetSend(const std::string& cs, const uint8* key, int len); 93 // Initialize by calling SetSend with the local security params, then call
|
srtpfilter.cc | 198 ret = (send_session_.SetSend(send_params.cipher_suite, 263 bool SrtpSession::SetSend(const std::string& cs, const uint8* key, int len) { 466 bool SrtpSession::SetSend(const std::string& cs, const uint8* key, int len) {
|
mediachannel.h | 217 virtual bool SetSend(SendFlags flag) = 0; 442 virtual bool SetSend(bool send) = 0;
|
mediaengine.h | 268 virtual bool SetSend(SendFlags flag) { return true; }
|
/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 | 311 // Test that SetSend() controls whether a voice channel sends RTP packets. 325 voice_channel_->SetSend(SEND_MICROPHONE); 329 voice_channel_->SetSend(SEND_NOTHING); 337 voice_channel_->SetSend(SEND_MICROPHONE); 344 voice_channel_->SetSend(SEND_NOTHING); 358 voice_channel_->SetSend(SEND_MICROPHONE); 364 voice_channel_->SetSend(SEND_NOTHING); 396 voice_channel_->SetSend(SEND_MICROPHONE); 402 voice_channel_->SetSend(SEND_NOTHING); 447 voice_channel_->SetSend(SEND_MICROPHONE) [all...] |
videoengine_unittest.h | 533 bool success = SetSend(false); 537 success = SetSend(sending); 540 bool SetSend(bool send) { 541 return channel_->SetSend(send); 708 // Test that SetSend works. 709 void SetSend() { 714 EXPECT_TRUE(SetSend(true)); 718 EXPECT_TRUE(SetSend(false)); 721 // Test that SetSend fails without codecs being set. 724 EXPECT_FALSE(SetSend(true)) [all...] |
rtpdataengine.h | 110 virtual bool SetSend(bool send) {
|
filemediaengine.h | 205 virtual bool SetSend(SendFlags flag); 291 virtual bool SetSend(bool send);
|
hybridvideoengine.cc | 191 bool HybridVideoMediaChannel::SetSend(bool send) { 197 active_channel_->SetSend(send); 213 // The failure on SetSend(false) is a known issue in webrtc.
|
rtpdataengine_unittest.cc | 243 ASSERT_TRUE(dmc->SetSend(true)); 313 ASSERT_TRUE(dmc1->SetSend(true)); 314 ASSERT_TRUE(dmc2->SetSend(true)); 368 ASSERT_TRUE(dmc->SetSend(true));
|
hybridvideoengine.h | 79 virtual bool SetSend(bool send);
|
/external/chromium_org/third_party/libjingle/source/talk/media/sctp/ |
sctpdataengine_unittest.cc | 199 chan2_->SetSend(true); 201 // deterministic and realistic small timing delay between the SetSend calls. 206 chan1_->SetSend(true); 330 channel1()->SetSend(false); 331 channel2()->SetSend(false);
|
sctpdataengine.h | 130 // When SetSend is set to true, connects. When set to false, disconnects. 131 // Calling: "SetSend(true); SetSend(false); SetSend(true);" will connect, 133 virtual bool SetSend(bool send);
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
srtpfilter_unittest.cc | 571 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen)); 577 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen)); 579 EXPECT_FALSE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey2, kTestKeyLen)); 585 EXPECT_FALSE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, 1)); 591 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen)); 601 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_32, kTestKey1, kTestKeyLen)); 612 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen)); 625 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen)); 634 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen)); 648 EXPECT_TRUE(s1_.SetSend(CS_AES_CM_128_HMAC_SHA1_80, kTestKey1, kTestKeyLen)) [all...] |
srtpfilter.cc | 150 if (!send_session_->SetSend(send_cs, send_key, send_key_len)) 391 ret = (send_session_->SetSend(send_params.cipher_suite, 460 bool SrtpSession::SetSend(const std::string& cs, const uint8* key, int len) { 690 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 195 bool SetSend(const std::string& cs, const uint8* key, int len);
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtcvideoengine_unittest.cc | 552 EXPECT_TRUE(channel_->SetSend(true)); 627 EXPECT_TRUE(channel_->SetSend(true)); 646 EXPECT_TRUE(channel_->SetSend(true)); 668 EXPECT_TRUE(channel_->SetSend(true)); 689 EXPECT_TRUE(channel_->SetSend(true)); [all...] |
webrtcvoiceengine_unittest.cc | 166 EXPECT_TRUE(channel_->SetSend(cricket::SEND_MICROPHONE)); [all...] |
webrtcvideoengine.h | 257 virtual bool SetSend(bool send);
|
webrtcvoiceengine.h | 336 virtual bool SetSend(SendFlags send);
|
/external/chromium_org/third_party/libjingle/source/talk/media/other/ |
linphonemediaengine.h | 126 virtual bool SetSend(SendFlags flag);
|
linphonemediaengine.cc | 214 bool LinphoneVoiceChannel::SetSend(SendFlags flag) {
|