Searched defs:statistics (Results 1 - 25 of 50) sorted by path

12

/external/chromium_org/components/dom_distiller/core/
H A Ddistiller_page.cc120 const dom_distiller::proto::StatisticsInfo& statistics = local
122 if (statistics.has_word_count()) {
125 statistics.word_count(),
/external/chromium_org/content/browser/quota/
H A Dquota_temporary_storage_evictor_unittest.cc195 const QuotaTemporaryStorageEvictor::Statistics& statistics() const { function in class:content::QuotaTemporaryStorageEvictorTest
244 EXPECT_EQ(0, statistics().num_errors_on_evicting_origin);
245 EXPECT_EQ(0, statistics().num_errors_on_getting_usage_and_quota);
246 EXPECT_EQ(1, statistics().num_evicted_origins);
247 EXPECT_EQ(1, statistics().num_eviction_rounds);
248 EXPECT_EQ(0, statistics().num_skipped_eviction_rounds);
264 EXPECT_EQ(0, statistics().num_errors_on_evicting_origin);
265 EXPECT_EQ(0, statistics().num_errors_on_getting_usage_and_quota);
266 EXPECT_EQ(2, statistics().num_evicted_origins);
267 EXPECT_EQ(1, statistics()
[all...]
/external/chromium_org/dbus/
H A Ddbus_statistics.cc20 // Used to store dbus statistics sorted alphabetically by service, interface,
61 // Simple class for gathering DBus usage statistics.
137 namespace statistics { namespace in namespace:dbus
141 delete g_dbus_statistics; // reset statistics
282 } // namespace statistics
H A Ddbus_statistics.h12 // The functions defined here are used to gather DBus statistics, and
18 namespace statistics { namespace in namespace:dbus
34 // Initializes / shuts down dbus statistics gathering. Calling Initialize
35 // more than once will reset the statistics.
39 // Add sent/received calls to the statistics gathering class. These methods
76 } // namespace statistics
/external/chromium_org/media/filters/
H A Ddecoder_stream_traits.cc33 PipelineStatistics statistics; local
34 statistics.audio_bytes_decoded = bytes_decoded;
35 statistics_cb.Run(statistics);
70 PipelineStatistics statistics; local
71 statistics.video_bytes_decoded = bytes_decoded;
72 statistics_cb.Run(statistics);
H A Dvideo_frame_stream_unittest.cc97 // Check that the pipeline statistics callback was fired correctly.
116 void OnStatistics(const PipelineStatistics& statistics) { argument
117 total_bytes_decoded_ += statistics.video_bytes_decoded;
H A Dvideo_renderer_impl.cc438 PipelineStatistics statistics; local
439 statistics.video_frames_decoded = frames_decoded_;
440 statistics.video_frames_dropped = frames_dropped_;
441 task_runner_->PostTask(FROM_HERE, base::Bind(statistics_cb_, statistics));
/external/chromium_org/remoting/client/
H A Dclient_status_logger.cc93 void ClientStatusLogger::LogStatistics(ChromotingStats* statistics) { argument
98 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForStatistics(statistics));
H A Dserver_log_entry_client.cc25 const char kValueEventNameStatistics[] = "connection-statistics";
111 ChromotingStats* statistics) {
117 StringPrintf("%.2f", statistics->video_bandwidth()->Rate()));
119 StringPrintf("%.2f", statistics->video_capture_ms()->Average()));
121 StringPrintf("%.2f", statistics->video_encode_ms()->Average()));
123 StringPrintf("%.2f", statistics->video_decode_ms()->Average()));
125 StringPrintf("%.2f", statistics->video_frame_rate()->Rate()));
127 StringPrintf("%.2f", statistics->round_trip_ms()->Average()));
110 MakeLogEntryForStatistics( ChromotingStats* statistics) argument
H A Dserver_log_entry_client_unittest.cc52 ChromotingStats statistics; local
53 scoped_ptr<ServerLogEntry> entry(MakeLogEntryForStatistics(&statistics));
58 key_value_pairs["event-name"] = "connection-statistics";
/external/chromium_org/storage/browser/quota/
H A Dquota_manager.cc1121 std::map<std::string, std::string>* statistics) {
1122 DCHECK(statistics);
1129 (*statistics)[p->first] = base::Int64ToString(p->second);
1120 GetStatistics( std::map<std::string, std::string>* statistics) argument
H A Dquota_temporary_storage_evictor.cc63 std::map<std::string, int64>* statistics) {
64 DCHECK(statistics);
66 (*statistics)["errors-on-evicting-origin"] =
68 (*statistics)["errors-on-getting-usage-and-quota"] =
70 (*statistics)["evicted-origins"] =
72 (*statistics)["eviction-rounds"] =
74 (*statistics)["skipped-eviction-rounds"] =
62 GetStatistics( std::map<std::string, int64>* statistics) argument
/external/chromium_org/third_party/sqlite/src/tool/
H A Dlemon.c1411 static int statistics = 0; local
1427 {OPT_FLAG, "s", (char*)&statistics,
1528 if( statistics ){
1529 printf("Parser statistics: %d terminals, %d nonterminals, %d rules\n",
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Daudio_coding_module_impl.cc1785 int AudioCodingModuleImpl::NetworkStatistics(ACMNetworkStatistics* statistics) { argument
1786 receiver_.NetworkStatistics(statistics);
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A Ddelay_test.cc199 ACMNetworkStatistics statistics; local
200 acm_b_->NetworkStatistics(&statistics);
204 statistics.minWaitingTimeMs, statistics.maxWaitingTimeMs,
205 statistics.meanWaitingTimeMs, statistics.medianWaitingTimeMs,
206 average_delay, statistics.currentBufferSize,
207 statistics.preferredBufferSize);
H A Dinsert_packet_with_timing.cc222 ACMNetworkStatistics statistics; local
223 receive_acm_->NetworkStatistics(&statistics);
224 *optimal_delay = statistics.preferredBufferSize;
225 *current_delay = statistics.currentBufferSize;
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dreceive_statistics_impl.cc114 // new jitter statistics.
211 bool StreamStatisticianImpl::GetStatistics(RtcpStatistics* statistics, argument
226 *statistics = last_reported_statistics_;
230 *statistics = CalculateRtcpStatistics();
497 void ReceiveStatisticsImpl::StatisticsUpdated(const RtcpStatistics& statistics, argument
501 rtcp_stats_callback_->StatisticsUpdated(statistics, ssrc);
H A Dreceive_statistics_unittest.cc142 virtual void StatisticsUpdated(const RtcpStatistics& statistics, argument
145 stats_ = statistics;
178 RtcpStatistics statistics; local
180 ->GetStatistics(&statistics, true);
184 EXPECT_EQ(statistics.cumulative_lost, callback.stats_.cumulative_lost);
185 EXPECT_EQ(statistics.extended_max_sequence_number,
187 EXPECT_EQ(statistics.fraction_lost, callback.stats_.fraction_lost);
188 EXPECT_EQ(statistics.jitter, callback.stats_.jitter);
189 EXPECT_EQ(51, statistics.fraction_lost);
190 EXPECT_EQ(1u, statistics
[all...]
H A Drtcp_receiver_unittest.cc820 virtual void StatisticsUpdated(const RtcpStatistics& statistics, argument
822 stats_ = statistics;
/external/chromium_org/third_party/webrtc/video/
H A Dreceive_statistics_proxy.cc68 const webrtc::RtcpStatistics& statistics,
72 stats_.rtcp_stats = statistics;
67 StatisticsUpdated( const webrtc::RtcpStatistics& statistics, uint32_t ssrc) argument
H A Dsend_statistics_proxy.cc66 void SendStatisticsProxy::StatisticsUpdated(const RtcpStatistics& statistics, argument
73 stats->rtcp_stats = statistics;
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel.cc33 #include "webrtc/voice_engine/statistics.h"
44 // Extend the default RTCP statistics struct with max_jitter, defined as the
61 virtual void StatisticsUpdated(const RtcpStatistics& statistics,
67 stats_.rtcp = statistics;
68 if (statistics.jitter > stats_.max_jitter) {
69 stats_.max_jitter = statistics.jitter;
3231 "GetRemoteRTCPData() failed to measure statistics due"
3328 // The jitter statistics is updated for each received RTP packet and is
3336 // Don't use returned statistics, use data from proxy instead so that
3346 // Scale RTP statistics give
3405 RtcpStatistics statistics; local
[all...]
H A Dshared_data.h19 #include "webrtc/voice_engine/statistics.h"
38 Statistics& statistics() { return _engineStatistics; } function in class:webrtc::voe::SharedData
62 // Convenience methods for calling statistics().SetLastError().
/external/chromium_org/tools/perf/benchmarks/
H A Djetstream.py26 from telemetry.util import statistics namespace
73 all_scores.append(statistics.GeometricMean(score_list))
H A Doctane.py20 from telemetry.util import statistics namespace
122 total = statistics.GeometricMean(all_scores)

Completed in 5646 milliseconds

12