HomeSort by relevance Sort by last modified time
    Searched refs:DataChannel (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
datachannel.cc 27 #include "talk/app/webrtc/datachannel.h"
40 talk_base::scoped_refptr<DataChannel> DataChannel::Create(
44 talk_base::scoped_refptr<DataChannel> channel(
45 new talk_base::RefCountedObject<DataChannel>(session, label));
52 DataChannel::DataChannel(WebRtcSession* session, const std::string& label)
65 bool DataChannel::Init(const DataChannelInit* config) {
94 bool DataChannel::HasNegotiationCompleted() {
98 DataChannel::~DataChannel()
    [all...]
datachannel.h 44 // DataChannel is a an implementation of the DataChannelInterface based on
49 // DataChannel states:
59 class DataChannel : public DataChannelInterface,
62 static talk_base::scoped_refptr<DataChannel> Create(
100 DataChannel(WebRtcSession* session, const std::string& label);
101 virtual ~DataChannel();
106 // Sigslots from cricket::DataChannel
107 void OnDataReceived(cricket::DataChannel* channel,
133 cricket::DataChannel* data_session_;
147 virtual talk_base::scoped_refptr<DataChannel> CreateDataChannel
    [all...]
webrtcsession.h 36 #include "talk/app/webrtc/datachannel.h"
47 class DataChannel;
126 virtual cricket::DataChannel* data_channel() {
183 talk_base::scoped_refptr<DataChannel> CreateDataChannel(
268 cricket::DataChannel* channel,
283 talk_base::scoped_ptr<cricket::DataChannel> data_channel_;
datachannel_unittest.cc 28 #include "talk/app/webrtc/datachannel.h"
104 webrtc_data_channel_ = webrtc::DataChannel::Create(&session_, "test", NULL);
125 talk_base::scoped_refptr<webrtc::DataChannel> webrtc_data_channel_;
128 // Tests that DataChannel::buffered_amount() is correct after the channel is
mediastreamsignaling.cc 228 bool MediaStreamSignaling::AddDataChannel(DataChannel* data_channel) {
231 LOG(LS_ERROR) << "DataChannel with label " << data_channel->label()
243 LOG(LS_WARNING) << "Remote peer requested a DataChannel but DataChannels "
249 LOG(LS_ERROR) << "DataChannel with label " << label
253 scoped_refptr<DataChannel> channel(
451 DataChannel* data_channel = it->second;
512 const DataChannel* channel = data_channel_it->second;
513 if (channel->state() == DataChannel::kConnecting ||
514 channel->state() == DataChannel::kOpen) {
515 // |streamid| and |sync_label| are both set to the DataChannel labe
    [all...]
mediastreamsignaling.h 35 #include "talk/app/webrtc/datachannel.h"
121 // To signal that a DataChannel should be established:
122 // 1. Call AddDataChannel with the new DataChannel. Next time
123 // GetMediaSessionOptions will include the description of the DataChannel.
126 // this DataChannel.
128 // session description. If the DataChannel label and a SSRC is included in
129 // the description, the DataChannel is updated with SSRC that will be used
131 // 4. When both the local and remote SSRC of a DataChannel is set the state of
132 // the DataChannel change to kOpen.
134 // To setup a DataChannel initialized by the remote end
    [all...]
webrtcsession.cc 63 // DataChannel pseudo constraints.
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
DataChannel.java 33 public class DataChannel {
61 /** Java version of C++ DataBuffer. The atom of data in a DataChannel. */
96 public DataChannel(long nativeDataChannel) {
PeerConnection.java 83 /** Triggered when a remote peer opens a DataChannel. */
84 public void onDataChannel(DataChannel dataChannel);
124 public native DataChannel createDataChannel(
125 String label, DataChannel.Init init);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/javatests/src/org/webrtc/
PeerConnectionTest.java 56 DataChannel.Observer,
79 private DataChannel dataChannel;
80 private LinkedList<DataChannel.Buffer> expectedBuffers =
81 new LinkedList<DataChannel.Buffer>();
82 private LinkedList<DataChannel.State> expectedStateChanges =
83 new LinkedList<DataChannel.State>();
94 public synchronized void setDataChannel(DataChannel dataChannel) {
95 assertNull(this.dataChannel);
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channelmanager.h 120 DataChannel* CreateDataChannel(
124 void DestroyDataChannel(DataChannel* data_channel);
240 typedef std::vector<DataChannel*> DataChannels;
256 DataChannel* CreateDataChannel_w(
259 void DestroyDataChannel_w(DataChannel* data_channel);
call.h 55 class DataChannel;
193 void OnDataReceived(DataChannel* channel,
198 DataChannel* GetDataChannel(Session* session) const;
253 DataChannel* data_channel;
channel.cc     [all...]
channel.h 582 // DataChannel is a specialization for data.
583 class DataChannel : public BaseChannel {
585 DataChannel(talk_base::Thread* thread,
590 ~DataChannel();
605 sigslot::signal2<DataChannel*, const DataMediaInfo&> SignalMediaMonitor;
606 sigslot::signal2<DataChannel*, const std::vector<ConnectionInfo>&>
608 sigslot::signal3<DataChannel*, uint32, DataMediaChannel::Error>
610 sigslot::signal3<DataChannel*,
channelmanager.cc 412 DataChannel* ChannelManager::CreateDataChannel(
415 return worker_thread_->Invoke<DataChannel*>(
420 DataChannel* ChannelManager::CreateDataChannel_w(
433 DataChannel* data_channel = new DataChannel(
445 void ChannelManager::DestroyDataChannel(DataChannel* data_channel) {
452 void ChannelManager::DestroyDataChannel_w(DataChannel* data_channel) {
channelmanager_unittest.cc 141 cricket::DataChannel* data_channel =
163 cricket::DataChannel* data_channel =
190 cricket::DataChannel* data_channel =
call.cc 361 DataChannel* data_channel = it->second.data_channel;
388 DataChannel* Call::GetDataChannel(Session* session) const {
414 DataChannel* data_channel = it->second.data_channel;
445 DataChannel* data_channel = GetDataChannel(session);
776 void Call::OnDataReceived(DataChannel* channel,
894 DataChannel* data_channel = GetDataChannel(session);
    [all...]
channel_unittest.cc 151 class DataTraits : public Traits<cricket::DataChannel,
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
AppRTCDemoActivity.java 45 import org.webrtc.DataChannel;
346 @Override public void onDataChannel(final DataChannel dc) {

Completed in 1079 milliseconds