/external/webrtc/webrtc/p2p/base/ |
D | transportchannel.h | 51 class TransportChannel : public sigslot::has_slots<> { 53 TransportChannel(const std::string& transport_name, int component) in TransportChannel() function 58 virtual ~TransportChannel() {} in ~TransportChannel() 78 sigslot::signal1<TransportChannel*> SignalWritableState; 80 sigslot::signal1<TransportChannel*> SignalReadyToSend; 81 sigslot::signal1<TransportChannel*> SignalReceivingState; 84 sigslot::signal2<TransportChannel*, DtlsTransportState> SignalDtlsState; 143 sigslot::signal5<TransportChannel*, const char*, 147 sigslot::signal2<TransportChannel*, const rtc::SentPacket&> SignalSentPacket; 152 sigslot::signal2<TransportChannel*, const Candidate&> SignalRouteChange; [all …]
|
D | transportchannel.cc | 17 std::string TransportChannel::ToString() const { in ToString() 26 void TransportChannel::set_receiving(bool receiving) { in set_receiving() 34 void TransportChannel::set_writable(bool writable) { in set_writable() 47 void TransportChannel::set_dtls_state(DtlsTransportState state) { in set_dtls_state() 57 bool TransportChannel::SetSrtpCryptoSuites(const std::vector<int>& ciphers) { in SetSrtpCryptoSuites() 62 bool TransportChannel::SetSrtpCiphers(const std::vector<std::string>& ciphers) { in SetSrtpCiphers()
|
D | dtlstransportchannel.h | 30 explicit StreamInterfaceChannel(TransportChannel* channel); 48 TransportChannel* channel_; // owned by DtlsTransportChannelWrapper 202 void OnReadableState(TransportChannel* channel); 203 void OnWritableState(TransportChannel* channel); 204 void OnReadPacket(TransportChannel* channel, const char* data, size_t size, 206 void OnSentPacket(TransportChannel* channel, 208 void OnReadyToSend(TransportChannel* channel); 209 void OnReceivingState(TransportChannel* channel); 217 void OnRouteChange(TransportChannel* channel, const Candidate& candidate);
|
D | dtlstransportchannel.cc | 44 StreamInterfaceChannel::StreamInterfaceChannel(TransportChannel* channel) in StreamInterfaceChannel() 397 void DtlsTransportChannelWrapper::OnWritableState(TransportChannel* channel) { in OnWritableState() 437 void DtlsTransportChannelWrapper::OnReceivingState(TransportChannel* channel) { in OnReceivingState() 450 TransportChannel* channel, const char* data, size_t size, in OnReadPacket() 515 TransportChannel* channel, in OnSentPacket() 522 void DtlsTransportChannelWrapper::OnReadyToSend(TransportChannel* channel) { in OnReadyToSend() 620 TransportChannel* channel, const Candidate& candidate) { in OnRouteChange()
|
D | transportchannelimpl.h | 33 class TransportChannelImpl : public TransportChannel { 37 : TransportChannel(transport_name, component) {} in TransportChannelImpl()
|
D | transportcontroller.h | 82 virtual TransportChannel* CreateTransportChannel_w( 183 void OnChannelWritableState_w(TransportChannel* channel); 184 void OnChannelReceivingState_w(TransportChannel* channel);
|
D | transportcontroller.cc | 142 TransportChannel* TransportController::CreateTransportChannel_w( in CreateTransportChannel_w() 485 void TransportController::OnChannelWritableState_w(TransportChannel* channel) { in OnChannelWritableState_w() 493 void TransportController::OnChannelReceivingState_w(TransportChannel* channel) { in OnChannelReceivingState_w()
|
D | dtlstransportchannel_unittest.cc | 326 void OnTransportChannelWritableState(cricket::TransportChannel* channel) { in OnTransportChannelWritableState() 331 void OnTransportChannelReadPacket(cricket::TransportChannel* channel, in OnTransportChannelReadPacket() 344 void OnTransportChannelSentPacket(cricket::TransportChannel* channel, in OnTransportChannelSentPacket() 352 void OnFakeTransportChannelReadPacket(cricket::TransportChannel* channel, in OnFakeTransportChannelReadPacket()
|
D | p2ptransportchannel_unittest.cc | 218 CandidateData(cricket::TransportChannel* ch, const cricket::Candidate& c) in CandidateData() 221 cricket::TransportChannel* channel; 231 bool HasChannel(cricket::TransportChannel* ch) { in HasChannel() 234 ChannelData* GetChannelData(cricket::TransportChannel* ch) { in GetChannelData() 266 ChannelData* GetChannelData(cricket::TransportChannel* channel) { in GetChannelData() 698 void OnReadPacket(cricket::TransportChannel* channel, const char* data, in OnReadPacket() 711 int SendData(cricket::TransportChannel* channel, in SendData() 716 bool CheckDataOnChannel(cricket::TransportChannel* channel, in CheckDataOnChannel() 730 Endpoint* GetEndpoint(cricket::TransportChannel* ch) { in GetEndpoint() 740 cricket::TransportChannel* ch) { in GetRemoteChannel() [all …]
|
D | transport.h | 43 class TransportChannel; variable
|
D | transport_unittest.cc | 21 using cricket::TransportChannel;
|
D | transportcontroller_unittest.cc | 38 using cricket::TransportChannel; 83 TransportChannel* channel = in CreateChannel()
|
D | faketransportcontroller.h | 501 TransportChannel* CreateTransportChannel_w(const std::string& transport_name, in CreateTransportChannel_w()
|
/external/webrtc/talk/session/media/ |
D | channel.h | 99 TransportChannel* transport_channel() const { in transport_channel() 102 TransportChannel* rtcp_transport_channel() const { in rtcp_transport_channel() 183 void set_transport_channel(TransportChannel* transport); 184 void set_rtcp_transport_channel(TransportChannel* transport, 204 void ConnectToTransportChannel(TransportChannel* tc); 205 void DisconnectFromTransportChannel(TransportChannel* tc); 216 void OnWritableState(TransportChannel* channel); 217 virtual void OnChannelRead(TransportChannel* channel, 222 void OnReadyToSend(TransportChannel* channel); 224 void OnDtlsState(TransportChannel* channel, DtlsTransportState state); [all …]
|
D | channel.cc | 298 void BaseChannel::set_transport_channel(TransportChannel* new_tc) { in set_transport_channel() 301 TransportChannel* old_tc = transport_channel_; in set_transport_channel() 329 void BaseChannel::set_rtcp_transport_channel(TransportChannel* new_tc, in set_rtcp_transport_channel() 333 TransportChannel* old_tc = rtcp_transport_channel_; in set_rtcp_transport_channel() 366 void BaseChannel::ConnectToTransportChannel(TransportChannel* tc) { in ConnectToTransportChannel() 375 void BaseChannel::DisconnectFromTransportChannel(TransportChannel* tc) { in DisconnectFromTransportChannel() 474 TransportChannel* channel = NULL; in SetOption() 490 void BaseChannel::OnWritableState(TransportChannel* channel) { in OnWritableState() 495 void BaseChannel::OnChannelRead(TransportChannel* channel, in OnChannelRead() 510 void BaseChannel::OnReadyToSend(TransportChannel* channel) { in OnReadyToSend() [all …]
|
D | channel_unittest.cc | 62 using cricket::TransportChannel; 1734 cricket::TransportChannel* transport_channel = in TestSrtpError() 1745 TransportChannel* rtp = channel1_->transport_channel(); in TestOnReadyToSend() 1746 TransportChannel* rtcp = channel1_->rtcp_transport_channel(); in TestOnReadyToSend() 1777 TransportChannel* rtp = channel1_->transport_channel(); in TestOnReadyToSendWithRtcpMux()
|
/external/webrtc/talk/app/webrtc/ |
D | webrtcsession_unittest.cc | 254 cricket::TransportChannel* voice_rtp_transport_channel() { in voice_rtp_transport_channel() 258 cricket::TransportChannel* voice_rtcp_transport_channel() { in voice_rtcp_transport_channel() 262 cricket::TransportChannel* video_rtp_transport_channel() { in video_rtp_transport_channel() 266 cricket::TransportChannel* video_rtcp_transport_channel() { in video_rtcp_transport_channel() 270 cricket::TransportChannel* data_rtp_transport_channel() { in data_rtp_transport_channel() 274 cricket::TransportChannel* data_rtcp_transport_channel() { in data_rtcp_transport_channel() 285 cricket::TransportChannel* rtp_transport_channel(cricket::BaseChannel* ch) { in rtp_transport_channel() 292 cricket::TransportChannel* rtcp_transport_channel(cricket::BaseChannel* ch) { in rtcp_transport_channel() 2369 cricket::TransportChannel* voice_transport_channel = in TEST_F() 2373 cricket::TransportChannel* video_transport_channel = in TEST_F()
|
D | webrtcsession.h | 467 void OnSentPacket_w(cricket::TransportChannel* channel,
|
D | webrtcsession.cc | 2207 void WebRtcSession::OnSentPacket_w(cricket::TransportChannel* channel, in OnSentPacket_w()
|