OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BaseChannel
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/talk/session/media/
channel.h
71
//
BaseChannel
contains logic common to voice and video, including
77
// vtable, and the media channel's thread using
BaseChannel
as the
80
class
BaseChannel
85
BaseChannel
(rtc::Thread* thread,
90
virtual ~
BaseChannel
();
161
sigslot::signal2<
BaseChannel
*, bool> SignalDtlsSetupFailure;
166
sigslot::signal1<
BaseChannel
*> SignalFirstPacketReceived;
340
class VoiceChannel : public
BaseChannel
{
360
return static_cast<VoiceMediaChannel*>(
BaseChannel
::media_channel());
402
// overrides from
BaseChannel
[
all
...]
channel.cc
169
BaseChannel
::
BaseChannel
(rtc::Thread* thread,
196
BaseChannel
::~
BaseChannel
() {
221
bool
BaseChannel
::Init() {
240
void
BaseChannel
::Deinit() {
244
bool
BaseChannel
::SetTransport(const std::string& transport_name) {
246
Bind(&
BaseChannel
::SetTransport_w, this, transport_name));
249
bool
BaseChannel
::SetTransport_w(const std::string& transport_name) {
298
void
BaseChannel
::set_transport_channel(TransportChannel* new_tc)
[
all
...]
Completed in 114 milliseconds