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 - 24
of
24
) 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.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
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
call_main.cc
411
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
);
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_;
579
options.
data_channel_type
= data_channel_type_;
597
options.
data_channel_type
= data_channel_type_;
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/media/sctp/
sctpdataengine.h
96
virtual DataMediaChannel* CreateChannel(DataChannelType
data_channel_type
);
sctpdataengine.cc
297
DataChannelType
data_channel_type
) {
298
if (
data_channel_type
!= DCT_SCTP) {
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
channelmanager.h
125
bool rtcp, DataChannelType
data_channel_type
);
270
bool rtcp, DataChannelType
data_channel_type
);
mediasession_unittest.cc
357
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;
[
all
...]
mediasession.h
98
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
mediasessionclient_unittest.cc
[
all
...]
channelmanager.cc
425
bool rtcp, DataChannelType
data_channel_type
) {
429
data_channel_type
);
432
<<
data_channel_type
;
call.cc
302
DataChannelType
data_channel_type
= DCT_RTP;
local
305
data_channel_type
= DCT_SCTP;
311
session, data_offer->name, rtcp,
data_channel_type
);
[
all
...]
mediasession.cc
[
all
...]
channel.cc
2190
DataChannelType
data_channel_type
= is_sctp ? DCT_SCTP : DCT_RTP;
local
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
datachannel.h
168
cricket::DataChannelType
data_channel_type
() const {
function in class:webrtc::DataChannel
webrtcsessiondescriptionfactory.cc
197
session_options.
data_channel_type
= cricket::DCT_SCTP;
252
options.
data_channel_type
= cricket::DCT_SCTP;
webrtcsession.h
215
cricket::DataChannelType
data_channel_type
() const;
mediastreamsignaling.cc
289
if (data_channel->
data_channel_type
() == cricket::DCT_RTP) {
298
ASSERT(data_channel->
data_channel_type
() == cricket::DCT_SCTP);
[
all
...]
peerconnection.cc
502
if (session_->
data_channel_type
() == cricket::DCT_RTP || first_datachannel) {
webrtcsession.cc
1197
cricket::DataChannelType WebRtcSession::
data_channel_type
() const {
function in class:webrtc::WebRtcSession
[
all
...]
webrtcsession_unittest.cc
798
options.
data_channel_type
= cricket::DCT_SCTP;
[
all
...]
Completed in 272 milliseconds