Searched defs:DataChannel (Results 1 - 5 of 5) sorted by relevance

/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DDataChannel.java33 public class DataChannel { class
61 /** Java version of C++ DataBuffer. The atom of data in a DataChannel. */
98 public DataChannel(long nativeDataChannel) { method in class:DataChannel
/external/webrtc/talk/app/webrtc/
H A Ddatachannel.cc83 DataChannel::PacketQueue::PacketQueue() : byte_count_(0) {}
85 DataChannel::PacketQueue::~PacketQueue() {
89 bool DataChannel::PacketQueue::Empty() const {
93 DataBuffer* DataChannel::PacketQueue::Front() {
97 void DataChannel::PacketQueue::Pop() {
106 void DataChannel::PacketQueue::Push(DataBuffer* packet) {
111 void DataChannel::PacketQueue::Clear() {
119 void DataChannel::PacketQueue::Swap(PacketQueue* other) {
127 rtc::scoped_refptr<DataChannel> DataChannel
140 DataChannel::DataChannel( function in class:webrtc::DataChannel
[all...]
H A Ddatachannel.h45 class DataChannel;
54 virtual bool ConnectDataChannel(DataChannel* data_channel) = 0;
56 virtual void DisconnectDataChannel(DataChannel* data_channel) = 0;
109 // DataChannel is a an implementation of the DataChannelInterface based on
114 // DataChannel states:
124 class DataChannel : public DataChannelInterface, class in namespace:webrtc
128 static rtc::scoped_refptr<DataChannel> Create(
160 // Sigslots from cricket::DataChannel
161 void OnDataReceived(cricket::DataChannel* channel,
197 sigslot::signal1<DataChannel*> SignalClose
[all...]
/external/webrtc/talk/session/media/
H A Dchannel.h530 // DataChannel is a specialization for data.
531 class DataChannel : public BaseChannel { class in namespace:cricket
533 DataChannel(rtc::Thread* thread,
538 ~DataChannel();
553 sigslot::signal2<DataChannel*, const DataMediaInfo&> SignalMediaMonitor;
554 sigslot::signal2<DataChannel*, const std::vector<ConnectionInfo>&>
556 sigslot::signal3<DataChannel*, const ReceiveDataParams&, const rtc::Buffer&>
562 // Signal for notifying that the remote side has closed the DataChannel.
H A Dchannel.cc2008 DataChannel::DataChannel(rtc::Thread* thread, function in class:cricket::DataChannel
2021 DataChannel::~DataChannel() {
2029 bool DataChannel::Init() {
2034 this, &DataChannel::OnDataReceived);
2036 this, &DataChannel::OnDataChannelReadyToSend);
2038 this, &DataChannel::OnStreamClosedRemotely);
2042 bool DataChannel::SendData(const SendDataParams& params,
2049 const ContentInfo* DataChannel
[all...]

Completed in 173 milliseconds