/external/webrtc/webrtc/voice_engine/include/ |
voe_neteq_stats.h | 35 virtual int GetNetworkStatistics(int channel, NetworkStatistics& stats) = 0;
|
/external/webrtc/webrtc/voice_engine/ |
voe_neteq_stats_impl.h | 23 int GetNetworkStatistics(int channel, NetworkStatistics& stats) override;
|
voe_neteq_stats_impl.cc | 48 int VoENetEqStatsImpl::GetNetworkStatistics(int channel, 58 "GetNetworkStatistics() failed to locate channel"); 62 return channelPtr->GetNetworkStatistics(stats);
|
channel_proxy.h | 60 virtual NetworkStatistics GetNetworkStatistics() const;
|
channel_proxy.cc | 102 NetworkStatistics ChannelProxy::GetNetworkStatistics() const { 105 int error = channel()->GetNetworkStatistics(stats);
|
channel.h | 283 int GetNetworkStatistics(NetworkStatistics& stats);
|
channel.cc | [all...] |
/external/webrtc/webrtc/test/ |
mock_voe_channel_proxy.h | 37 MOCK_CONST_METHOD0(GetNetworkStatistics, NetworkStatistics());
|
mock_voice_engine.h | 244 MOCK_METHOD2(GetNetworkStatistics,
|
/external/webrtc/webrtc/voice_engine/test/auto_test/standard/ |
neteq_stats_test.cc | 21 EXPECT_EQ(0, voe_neteq_stats_->GetNetworkStatistics(
|
/external/webrtc/webrtc/modules/audio_coding/acm2/ |
acm_receiver.h | 175 void GetNetworkStatistics(NetworkStatistics* statistics);
|
audio_coding_module_impl.h | 165 int GetNetworkStatistics(NetworkStatistics* statistics) override;
|
audio_coding_module_impl.cc | 700 int AudioCodingModuleImpl::GetNetworkStatistics(NetworkStatistics* statistics) { 701 receiver_.GetNetworkStatistics(statistics);
|
acm_receiver.cc | 446 void AcmReceiver::GetNetworkStatistics(NetworkStatistics* acm_stat) {
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
statistics_calculator.h | 84 void GetNetworkStatistics(int fs_hz,
|
statistics_calculator.cc | 206 void StatisticsCalculator::GetNetworkStatistics(
|
neteq_impl.cc | 332 stats_.GetNetworkStatistics(fs_hz_, total_samples_in_buffers, [all...] |
/external/webrtc/webrtc/modules/audio_coding/include/ |
audio_coding_module.h | 698 // int32_t GetNetworkStatistics() 709 virtual int32_t GetNetworkStatistics(
|
/external/webrtc/webrtc/modules/audio_coding/test/ |
target_delay_unittest.cc | 188 acm_->GetNetworkStatistics(&stats);
|
delay_test.cc | 195 acm_b_->GetNetworkStatistics(&statistics);
|
insert_packet_with_timing.cc | 215 receive_acm_->GetNetworkStatistics(&statistics);
|
APITest.cc | 735 CHECK_ERROR_MT(myACM->GetNetworkStatistics(&networkStat));
|
/external/webrtc/webrtc/audio/ |
audio_receive_stream.cc | 218 auto ns = channel_proxy_->GetNetworkStatistics();
|
audio_receive_stream_unittest.cc | 141 EXPECT_CALL(*channel_proxy_, GetNetworkStatistics())
|