OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SetSend
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdataengine.h
111
virtual bool
SetSend
(bool send) {
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);
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
...]
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
...]
/external/chromium_org/third_party/libjingle/source/talk/media/other/
linphonemediaengine.cc
214
bool LinphoneVoiceChannel::
SetSend
(SendFlags flag) {
/external/chromium_org/third_party/libjingle/source/talk/session/media/
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) {
/external/chromium_org/third_party/libjingle/source/talk/media/sctp/
sctpdataengine.cc
477
bool SctpDataMediaChannel::
SetSend
(bool send) {
527
<< " len=" << payload.length() << " before
SetSend
(true).";
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
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
...]
webrtcvoiceengine.cc
[
all
...]
webrtcvideoengine.cc
[
all
...]
Completed in 182 milliseconds