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

  /external/webrtc/webrtc/p2p/base/
transportchannel.cc 13 #include "webrtc/p2p/base/transportchannel.h"
17 std::string TransportChannel::ToString() const {
26 void TransportChannel::set_receiving(bool receiving) {
34 void TransportChannel::set_writable(bool writable) {
47 void TransportChannel::set_dtls_state(DtlsTransportState state) {
57 bool TransportChannel::SetSrtpCryptoSuites(const std::vector<int>& ciphers) {
62 bool TransportChannel::SetSrtpCiphers(const std::vector<std::string>& ciphers) {
transportchannel.h 47 // A TransportChannel represents one logical stream of packets that are sent
51 class TransportChannel : public sigslot::has_slots<> {
53 TransportChannel(const std::string& transport_name, int component)
58 virtual ~TransportChannel() {}
61 // TransportChannel have this defined.
78 sigslot::signal1<TransportChannel*> SignalWritableState;
79 // Emitted when the TransportChannel's ability to send has changed.
80 sigslot::signal1<TransportChannel*> SignalReadyToSend;
81 sigslot::signal1<TransportChannel*> SignalReceivingState;
84 sigslot::signal2<TransportChannel*, DtlsTransportState> SignalDtlsState
    [all...]
dtlstransportchannel.h 30 explicit StreamInterfaceChannel(TransportChannel* channel);
48 TransportChannel* channel_; // owned by DtlsTransportChannelWrapper
56 // This class provides a DTLS SSLStreamAdapter inside a TransportChannel-style
57 // packet-based interface, wrapping an existing TransportChannel instance
86 // channel -- the TransportChannel we are wrapping
111 // TransportChannel calls that we forward to the wrapped transport.
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
    [all...]
transportchannelimpl.h 16 #include "webrtc/p2p/base/transportchannel.h"
30 // Base class for real implementations of TransportChannel. This includes some
33 class TransportChannelImpl : public TransportChannel {
37 : TransportChannel(transport_name, component) {}
dtlstransportchannel.cc 44 StreamInterfaceChannel::StreamInterfaceChannel(TransportChannel* channel)
397 void DtlsTransportChannelWrapper::OnWritableState(TransportChannel* channel) {
437 void DtlsTransportChannelWrapper::OnReceivingState(TransportChannel* channel) {
450 TransportChannel* channel, const char* data, size_t size,
515 TransportChannel* channel,
522 void DtlsTransportChannelWrapper::OnReadyToSend(TransportChannel* channel) {
620 TransportChannel* channel, const Candidate& candidate) {
transportcontroller.h 82 virtual TransportChannel* CreateTransportChannel_w(
183 void OnChannelWritableState_w(TransportChannel* channel);
184 void OnChannelReceivingState_w(TransportChannel* channel);
transport.h 43 class TransportChannel;
transportcontroller.cc 142 TransportChannel* TransportController::CreateTransportChannel_w(
183 << " TransportChannel " << component
485 void TransportController::OnChannelWritableState_w(TransportChannel* channel) {
487 LOG(LS_INFO) << channel->transport_name() << " TransportChannel "
493 void TransportController::OnChannelReceivingState_w(TransportChannel* channel) {
543 LOG(LS_INFO) << channel->transport_name() << " TransportChannel "
p2ptransportchannel_unittest.cc 218 CandidateData(cricket::TransportChannel* ch, const cricket::Candidate& c)
221 cricket::TransportChannel* channel;
231 bool HasChannel(cricket::TransportChannel* ch) {
234 ChannelData* GetChannelData(cricket::TransportChannel* ch) {
266 ChannelData* GetChannelData(cricket::TransportChannel* channel) {
698 void OnReadPacket(cricket::TransportChannel* channel, const char* data,
711 int SendData(cricket::TransportChannel* channel,
716 bool CheckDataOnChannel(cricket::TransportChannel* channel,
730 Endpoint* GetEndpoint(cricket::TransportChannel* ch) {
740 cricket::TransportChannel* ch)
    [all...]
dtlstransportchannel_unittest.cc 326 void OnTransportChannelWritableState(cricket::TransportChannel* channel) {
331 void OnTransportChannelReadPacket(cricket::TransportChannel* channel,
344 void OnTransportChannelSentPacket(cricket::TransportChannel* channel,
352 void OnFakeTransportChannelReadPacket(cricket::TransportChannel* channel,
356 // Flags shouldn't be set on the underlying TransportChannel packets.
    [all...]
transport_unittest.cc 21 using cricket::TransportChannel;
faketransportcontroller.h 19 #include "webrtc/p2p/base/transportchannel.h"
501 TransportChannel* CreateTransportChannel_w(const std::string& transport_name,
transportcontroller_unittest.cc 38 using cricket::TransportChannel;
46 // TODO(deadbeef): Change this once the Transport/TransportChannel class
83 TransportChannel* channel =
  /external/webrtc/talk/session/media/
channel.h 99 TransportChannel* transport_channel() const {
102 TransportChannel* rtcp_transport_channel() const {
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);
215 // From TransportChannel
216 void OnWritableState(TransportChannel* channel);
217 virtual void OnChannelRead(TransportChannel* channel,
222 void OnReadyToSend(TransportChannel* channel)
    [all...]
channel.cc 43 #include "webrtc/p2p/base/transportchannel.h"
269 LOG(LS_INFO) << "Create RTCP TransportChannel for " << content_name()
298 void BaseChannel::set_transport_channel(TransportChannel* new_tc) {
301 TransportChannel* old_tc = transport_channel_;
329 void BaseChannel::set_rtcp_transport_channel(TransportChannel* new_tc,
333 TransportChannel* old_tc = rtcp_transport_channel_;
366 void BaseChannel::ConnectToTransportChannel(TransportChannel* tc) {
375 void BaseChannel::DisconnectFromTransportChannel(TransportChannel* tc) {
428 // would be pointing to the wrong TransportChannel.
474 TransportChannel* channel = NULL
    [all...]
channel_unittest.cc 62 using cricket::TransportChannel;
    [all...]
  /external/webrtc/talk/app/webrtc/
webrtcsession.h 467 void OnSentPacket_w(cricket::TransportChannel* channel,
webrtcsession_unittest.cc 52 #include "webrtc/p2p/base/transportchannel.h"
254 cricket::TransportChannel* voice_rtp_transport_channel() {
258 cricket::TransportChannel* voice_rtcp_transport_channel() {
262 cricket::TransportChannel* video_rtp_transport_channel() {
266 cricket::TransportChannel* video_rtcp_transport_channel() {
270 cricket::TransportChannel* data_rtp_transport_channel() {
274 cricket::TransportChannel* data_rtcp_transport_channel() {
285 cricket::TransportChannel* rtp_transport_channel(cricket::BaseChannel* ch) {
292 cricket::TransportChannel* rtcp_transport_channel(cricket::BaseChannel* ch) {
    [all...]
webrtcsession.cc 57 #include "webrtc/p2p/base/transportchannel.h"
    [all...]

Completed in 552 milliseconds