OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:data_channel_type
(Results
1 - 22
of
22
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/media/base/
hybriddataengine.h
55
virtual DataMediaChannel* CreateChannel(DataChannelType
data_channel_type
) {
58
channel = first_->CreateChannel(
data_channel_type
);
61
channel = second_->CreateChannel(
data_channel_type
);
rtpdataengine.cc
62
DataChannelType
data_channel_type
) {
63
if (
data_channel_type
!= DCT_RTP) {
rtpdataengine.h
47
virtual DataMediaChannel* CreateChannel(DataChannelType
data_channel_type
);
fakemediaengine.h
983
virtual DataMediaChannel* CreateChannel(DataChannelType
data_channel_type
) {
984
last_channel_type_ =
data_channel_type
;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
datachannel.cc
67
if (session_->
data_channel_type
() == cricket::DCT_RTP &&
75
} else if (session_->
data_channel_type
() == cricket::DCT_SCTP) {
113
if (session_->
data_channel_type
() == cricket::DCT_RTP) {
171
if (session_->
data_channel_type
() == cricket::DCT_RTP) {
195
ASSERT(session_->
data_channel_type
() == cricket::DCT_RTP ||
211
ASSERT(session_->
data_channel_type
() == cricket::DCT_RTP ||
401
if (session_->
data_channel_type
() == cricket::DCT_SCTP) {
webrtcsessiondescriptionfactory.cc
201
options.
data_channel_type
= cricket::DCT_SCTP;
253
options.
data_channel_type
= cricket::DCT_SCTP;
webrtcsession.h
187
cricket::DataChannelType
data_channel_type
() const;
peerconnection.cc
430
session_->
data_channel_type
() == cricket::DCT_SCTP) {
webrtcsession.cc
981
cricket::DataChannelType WebRtcSession::
data_channel_type
() const {
function in class:webrtc::WebRtcSession
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
mediasession_unittest.cc
317
options.
data_channel_type
= cricket::DCT_RTP;
484
opts.
data_channel_type
= cricket::DCT_RTP;
514
opts.
data_channel_type
= cricket::DCT_NONE;
523
updated_opts.
data_channel_type
= cricket::DCT_RTP;
548
opts.
data_channel_type
= cricket::DCT_RTP;
663
opts.
data_channel_type
= cricket::DCT_RTP;
722
opts.
data_channel_type
= cricket::DCT_RTP;
[
all
...]
mediasession.h
95
data_channel_type
(DCT_NONE),
104
bool has_data() const { return
data_channel_type
!= DCT_NONE; }
116
DataChannelType
data_channel_type
;
member in struct:cricket::MediaSessionOptions
channelmanager.h
122
bool rtcp, DataChannelType
data_channel_type
);
258
bool rtcp, DataChannelType
data_channel_type
);
mediasessionclient_unittest.cc
[
all
...]
channelmanager.cc
422
bool rtcp, DataChannelType
data_channel_type
) {
426
data_channel_type
);
429
<<
data_channel_type
;
call.cc
292
DataChannelType
data_channel_type
= DCT_RTP;
local
295
data_channel_type
= DCT_SCTP;
301
session, data_offer->name, rtcp,
data_channel_type
);
[
all
...]
mediasession.cc
[
all
...]
channel.cc
2502
DataChannelType
data_channel_type
= is_sctp ? DCT_SCTP : DCT_RTP;
local
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
call_main.cc
413
cricket::DataChannelType
data_channel_type
= cricket::DCT_NONE;
local
415
data_channel_type
= cricket::DCT_RTP;
417
data_channel_type
= cricket::DCT_SCTP;
479
client->SetDataChannelType(
data_channel_type
);
callclient.h
122
void SetDataChannelType(cricket::DataChannelType
data_channel_type
) {
123
data_channel_type_ =
data_channel_type
;
callclient.cc
199
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_;
577
options.
data_channel_type
= data_channel_type_;
595
options.
data_channel_type
= data_channel_type_;
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/media/sctp/
sctpdataengine.h
86
virtual DataMediaChannel* CreateChannel(DataChannelType
data_channel_type
);
sctpdataengine.cc
208
DataChannelType
data_channel_type
) {
209
if (
data_channel_type
!= DCT_SCTP) {
Completed in 1146 milliseconds