Searched refs:data_channel_type (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dhybriddataengine.h55 virtual DataMediaChannel* CreateChannel(DataChannelType data_channel_type) { argument
58 channel = first_->CreateChannel(data_channel_type);
61 channel = second_->CreateChannel(data_channel_type);
H A Drtpdataengine.h47 virtual DataMediaChannel* CreateChannel(DataChannelType data_channel_type);
H A Drtpdataengine.cc62 DataChannelType data_channel_type) {
63 if (data_channel_type != DCT_RTP) {
61 CreateChannel( DataChannelType data_channel_type) argument
H A Dfakemediaengine.h1049 virtual DataMediaChannel* CreateChannel(DataChannelType data_channel_type) { argument
1050 last_channel_type_ = data_channel_type;
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcall_main.cc411 cricket::DataChannelType data_channel_type = cricket::DCT_NONE; local
413 data_channel_type = cricket::DCT_RTP;
415 data_channel_type = cricket::DCT_SCTP;
477 client->SetDataChannelType(data_channel_type);
H A Dcallclient.h122 void SetDataChannelType(cricket::DataChannelType data_channel_type) { argument
123 data_channel_type_ = data_channel_type;
H A Dcallclient.cc199 options.data_channel_type = data_channel_type_;
217 options.data_channel_type = data_channel_type_;
332 options.data_channel_type = data_channel_type_;
342 options.data_channel_type = data_channel_type_;
579 options.data_channel_type = data_channel_type_;
597 options.data_channel_type = data_channel_type_;
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dchannelmanager.h125 bool rtcp, DataChannelType data_channel_type);
270 bool rtcp, DataChannelType data_channel_type);
H A Dmediasession_unittest.cc357 options.data_channel_type = cricket::DCT_RTP;
524 opts.data_channel_type = cricket::DCT_RTP;
554 opts.data_channel_type = cricket::DCT_NONE;
563 updated_opts.data_channel_type = cricket::DCT_RTP;
588 opts.data_channel_type = cricket::DCT_RTP;
625 opts.data_channel_type = cricket::DCT_SCTP;
660 opts.data_channel_type = cricket::DCT_SCTP;
755 opts.data_channel_type = cricket::DCT_RTP;
793 opts.data_channel_type = cricket::DCT_SCTP;
846 opts.data_channel_type
[all...]
H A Dmediasession.h98 data_channel_type(DCT_NONE),
107 bool has_data() const { return data_channel_type != DCT_NONE; }
129 DataChannelType data_channel_type; member in struct:cricket::MediaSessionOptions
H A Dmediasessionclient_unittest.cc1092 options.data_channel_type = cricket::DCT_NONE;
1102 options.data_channel_type = cricket::DCT_NONE;
1757 if (options.data_channel_type == cricket::DCT_RTP) {
2050 if (options.data_channel_type == cricket::DCT_RTP) {
2055 if (options.data_channel_type == cricket::DCT_SCTP) {
2419 if (options.data_channel_type == cricket::DCT_RTP) {
2771 options.data_channel_type = cricket::DCT_SCTP;
2805 options.data_channel_type = cricket::DCT_RTP;
2816 options.data_channel_type = cricket::DCT_SCTP;
2827 options.data_channel_type
[all...]
H A Dchannelmanager.cc425 bool rtcp, DataChannelType data_channel_type) {
429 data_channel_type);
432 << data_channel_type;
423 CreateDataChannel_w( BaseSession* session, const std::string& content_name, bool rtcp, DataChannelType data_channel_type) argument
H A Dcall.cc302 DataChannelType data_channel_type = DCT_RTP; local
305 data_channel_type = DCT_SCTP;
311 session, data_offer->name, rtcp, data_channel_type);
H A Dmediasession.cc1102 // If we haven't already set the data_channel_type, and we add a
1104 else if (type == MEDIA_TYPE_DATA && data_channel_type == DCT_NONE)
1105 data_channel_type = DCT_RTP;
1521 bool is_sctp = (options.data_channel_type == DCT_SCTP);
1700 bool is_sctp = (options.data_channel_type == DCT_SCTP);
H A Dchannel.cc2190 DataChannelType data_channel_type = is_sctp ? DCT_SCTP : DCT_RTP; local
2191 return SetDataChannelType(data_channel_type, error_desc);
/external/chromium_org/third_party/libjingle/source/talk/media/sctp/
H A Dsctpdataengine.h96 virtual DataMediaChannel* CreateChannel(DataChannelType data_channel_type);
H A Dsctpdataengine.cc297 DataChannelType data_channel_type) {
298 if (data_channel_type != DCT_SCTP) {
296 CreateChannel( DataChannelType data_channel_type) argument
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dwebrtcsessiondescriptionfactory.cc197 session_options.data_channel_type = cricket::DCT_SCTP;
252 options.data_channel_type = cricket::DCT_SCTP;
H A Ddatachannel.h168 cricket::DataChannelType data_channel_type() const { function in class:webrtc::DataChannel
H A Dwebrtcsession.h215 cricket::DataChannelType data_channel_type() const;
H A Dmediastreamsignaling.cc289 if (data_channel->data_channel_type() == cricket::DCT_RTP) {
298 ASSERT(data_channel->data_channel_type() == cricket::DCT_SCTP);
H A Dpeerconnection.cc502 if (session_->data_channel_type() == cricket::DCT_RTP || first_datachannel) {
H A Dwebrtcsession.cc1197 cricket::DataChannelType WebRtcSession::data_channel_type() const { function in class:webrtc::WebRtcSession
H A Dwebrtcsession_unittest.cc798 options.data_channel_type = cricket::DCT_SCTP;
3112 options.data_channel_type = cricket::DCT_SCTP;

Completed in 323 milliseconds