OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:data_channel_type
(Results
1 - 17
of
17
) sorted by null
/external/webrtc/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.h
47
virtual DataMediaChannel* CreateChannel(DataChannelType
data_channel_type
);
rtpdataengine.cc
62
DataChannelType
data_channel_type
) {
63
if (
data_channel_type
!= DCT_RTP) {
fakemediaengine.h
917
virtual DataMediaChannel* CreateChannel(DataChannelType
data_channel_type
) {
918
last_channel_type_ =
data_channel_type
;
/external/webrtc/talk/session/media/
channelmanager.h
121
DataChannelType
data_channel_type
);
208
DataChannelType
data_channel_type
);
mediasession_unittest.cc
385
options.
data_channel_type
= cricket::DCT_RTP;
550
opts.
data_channel_type
= cricket::DCT_RTP;
580
opts.
data_channel_type
= cricket::DCT_NONE;
589
updated_opts.
data_channel_type
= cricket::DCT_RTP;
615
opts.
data_channel_type
= cricket::DCT_RTP;
652
opts.
data_channel_type
= cricket::DCT_SCTP;
664
opts.
data_channel_type
= cricket::DCT_SCTP;
674
// Now set
data_channel_type
to 'none' (default) and make sure that the
677
opts.
data_channel_type
= cricket::DCT_NONE;
732
opts.
data_channel_type
= cricket::DCT_SCTP
[
all
...]
mediasession.h
100
data_channel_type
(DCT_NONE),
115
bool has_data() const { return
data_channel_type
!= DCT_NONE; }
143
DataChannelType
data_channel_type
;
member in struct:cricket::MediaSessionOptions
channelmanager.cc
381
DataChannelType
data_channel_type
) {
385
data_channel_type
);
388
<<
data_channel_type
;
mediasession.cc
[
all
...]
channel.cc
2092
DataChannelType
data_channel_type
= is_sctp ? DCT_SCTP : DCT_RTP;
local
[
all
...]
/external/webrtc/talk/media/sctp/
sctpdataengine.h
98
virtual DataMediaChannel* CreateChannel(DataChannelType
data_channel_type
);
sctpdataengine.cc
321
DataChannelType
data_channel_type
) {
322
if (
data_channel_type
!= DCT_SCTP) {
[
all
...]
/external/webrtc/talk/app/webrtc/
peerconnection.cc
850
if (session_->
data_channel_type
() == cricket::DCT_RTP || first_datachannel) {
[
all
...]
datachannel.h
190
cricket::DataChannelType
data_channel_type
() const {
function in class:webrtc::DataChannel
webrtcsession.h
301
cricket::DataChannelType
data_channel_type
() const;
webrtcsession_unittest.cc
553
if (data_channel_ && session_->
data_channel_type
() == cricket::DCT_RTP) {
581
if (session_->
data_channel_type
() == cricket::DCT_SCTP && data_channel_) {
582
session_options->
data_channel_type
= cricket::DCT_SCTP;
598
if (session_->
data_channel_type
() == cricket::DCT_SCTP) {
599
session_options->
data_channel_type
= cricket::DCT_SCTP;
[
all
...]
webrtcsession.cc
1491
cricket::DataChannelType WebRtcSession::
data_channel_type
() const {
function in class:webrtc::WebRtcSession
[
all
...]
Completed in 307 milliseconds