Home
last modified time | relevance | path

Searched refs:ChannelId (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/audio/voip/
Dvoip_core.h68 absl::optional<ChannelId> CreateChannel(
71 void ReleaseChannel(ChannelId channel) override;
72 bool StartSend(ChannelId channel) override;
73 bool StopSend(ChannelId channel) override;
74 bool StartPlayout(ChannelId channel) override;
75 bool StopPlayout(ChannelId channel) override;
78 void ReceivedRTPPacket(ChannelId channel,
80 void ReceivedRTCPPacket(ChannelId channel,
84 void SetSendCodec(ChannelId channel,
88 ChannelId channel,
[all …]
Dvoip_core.cc119 absl::optional<ChannelId> VoipCore::CreateChannel( in CreateChannel()
122 absl::optional<ChannelId> channel; in CreateChannel()
138 channel = static_cast<ChannelId>(next_channel_id_); in CreateChannel()
152 void VoipCore::ReleaseChannel(ChannelId channel) { in ReleaseChannel()
169 rtc::scoped_refptr<AudioChannel> VoipCore::GetChannel(ChannelId channel) { in GetChannel()
239 bool VoipCore::StartSend(ChannelId channel) { in StartSend()
250 bool VoipCore::StopSend(ChannelId channel) { in StopSend()
261 bool VoipCore::StartPlayout(ChannelId channel) { in StartPlayout()
282 bool VoipCore::StopPlayout(ChannelId channel) { in StopPlayout()
311 void VoipCore::ReceivedRTPPacket(ChannelId channel, in ReceivedRTPPacket()
[all …]
Daudio_channel.h44 void SetId(ChannelId id) { id_ = id; } in SetId()
45 ChannelId GetId() const { return id_; } in GetId()
79 ChannelId id_;
/external/webrtc/api/voip/
Dvoip_base.h36 enum class ChannelId : int {}; enum
50 virtual absl::optional<ChannelId> CreateChannel(
55 virtual void ReleaseChannel(ChannelId channel_id) = 0;
61 virtual bool StartSend(ChannelId channel_id) = 0;
68 virtual bool StopSend(ChannelId channel_id) = 0;
75 virtual bool StartPlayout(ChannelId channel_id) = 0;
82 virtual bool StopPlayout(ChannelId channel_id) = 0;
Dvoip_codec.h32 virtual void SetSendCodec(ChannelId channel_id,
41 ChannelId channel_id,
Dvoip_network.h30 virtual void ReceivedRTPPacket(ChannelId channel_id,
35 ChannelId channel_id,
/external/pigweed/pw_rpc/
Dchannel_test.cc45 enum class ChannelId { enum
51 constexpr rpc::Channel one = Channel::Create<ChannelId::kOne>(nullptr); in TEST()
52 constexpr rpc::Channel two = Channel::Create<ChannelId::kTwo>(nullptr); in TEST()
Ddocs.rst255 enum ChannelId {
262 pw::rpc::Channel::Create<ChannelId::kUartChannel>(&output);
/external/webrtc/examples/androidvoip/jni/
Dandroid_voip_client.h144 absl::optional<webrtc::ChannelId> channel_;
Dandroid_voip_client.cc244 channel_ = voip_thread_->Invoke<absl::optional<webrtc::ChannelId>>( in StartSession()