Searched refs:reports (Results 1 - 25 of 41) sorted by relevance

12

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DStatsObserver.java30 /** Interface for observing Stats reports (see webrtc::StatsObservers). */
32 /** Called when the reports are ready.*/
33 public void onComplete(StatsReport[] reports); argument
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Dad_injection_unittest.cc41 // Returns the active reports. This also clears the internal map of metrics
42 // as a biproduct, so if comparing numbers of reports, the comparison should
70 rappor::RapporReports reports = rappor_service.GetReports(); local
71 EXPECT_EQ(0, reports.report_size());
76 reports = rappor_service.GetReports();
77 EXPECT_EQ(1, reports.report_size());
82 reports = rappor_service.GetReports();
83 EXPECT_EQ(1, reports.report_size());
88 reports = rappor_service.GetReports();
89 EXPECT_EQ(0, reports
[all...]
/external/chromium_org/components/rappor/
H A Drappor_service_unittest.cc30 void GetReports(RapporReports* reports) { argument
31 ExportMetrics(reports);
62 RapporReports reports; local
63 rappor_service.GetReports(&reports);
64 EXPECT_EQ(1, reports.report_size());
66 const RapporReports::Report& report = reports.report(0);
H A Drappor_service.cc115 RapporReports reports; local
116 if (ExportMetrics(&reports)) {
118 bool success = reports.SerializeToString(&log_text);
121 << reports.report_size() << " value(s).";
174 bool RapporService::ExportMetrics(RapporReports* reports) { argument
179 reports->set_cohort(cohort_);
186 RapporReports::Report* report = reports->add_report();
H A Drappor_service.h39 // and periodically generates and uploads reports based on the collected data.
51 // Starts the periodic generation of reports and upload attempts.
81 // Logs all of the collected metrics to the reports proto message and clears
84 bool ExportMetrics(RapporReports* reports);
98 // reports and pass it to the uploader.
121 // A private LogUploader instance for sending reports to the server.
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dstatscollector_unittest.cc165 const StatsReports& reports,
167 if (reports.empty()) {
170 for (size_t i = 0; i < reports.size(); ++i) {
171 if (reports[i]->type != type)
174 if (GetValue(reports[i], name, &ret)) {
182 // Finds the |n|-th report of type |type| in |reports|.
185 const StatsReports& reports, const std::string& type, int n) {
186 for (size_t i = 0; i < reports.size(); ++i) {
187 if (reports[i]->type == type) {
190 return reports[
164 ExtractStatsValue(const std::string& type, const StatsReports& reports, StatsReport::StatsValueName name) argument
184 FindNthReportByType( const StatsReports& reports, const std::string& type, int n) argument
196 FindReportById(const StatsReports& reports, const std::string& id) argument
206 ExtractSsrcStatsValue(StatsReports reports, StatsReport::StatsValueName name) argument
212 ExtractBweStatsValue(StatsReports reports, StatsReport::StatsValueName name) argument
232 CheckCertChainReports(const StatsReports& reports, const std::vector<std::string>& ders, const std::string& start_id) argument
505 SetupAndVerifyAudioTrackStats( FakeAudioTrack* audio_track, webrtc::MediaStream* stream, webrtc::StatsCollector* stats, cricket::VoiceChannel* voice_channel, const std::string& vc_name, MockVoiceMediaChannel* media_channel, cricket::VoiceSenderInfo* voice_sender_info, cricket::VoiceReceiverInfo* voice_receiver_info, cricket::VoiceMediaInfo* stats_read, StatsReports* reports) argument
585 StatsReports reports; // returned values. local
674 StatsReports reports; // returned values. local
707 StatsReports reports; // returned values. local
748 StatsReports reports; // returned values. local
762 StatsReports reports; // returned values. local
787 StatsReports reports; local
827 StatsReports reports; local
892 StatsReports reports; local
920 StatsReports reports; local
966 StatsReports reports; local
1002 StatsReports reports; local
1062 StatsReports reports; // returned values. local
1108 StatsReports reports; // returned values. local
1202 StatsReports reports; // returned values. local
1238 StatsReports reports; // returned values. local
1270 StatsReports reports; // returned values. local
1312 StatsReports reports; // returned values. local
1388 StatsReports reports; // returned values. local
1437 StatsReports reports; // returned values. local
[all...]
H A Dstatscollector.h73 // a track label or empty string. The most recent reports are stored in
74 // |reports|.
76 // of filling in |reports|. As is, there's a requirement that the caller
77 // uses |reports| immediately without allowing any async activity on
80 StatsReports* reports);
96 bool CopySelectedReports(const std::string& selector, StatsReports* reports);
H A Dpeerconnectioninterface.h117 virtual void OnComplete(const std::vector<StatsReport>& reports) {} argument
120 virtual void OnComplete(const StatsReports& reports) { argument
122 for (size_t i = 0; i < reports.size(); ++i)
123 report_copies.push_back(StatsReportCopyable(*reports[i]));
238 // Used by GetStats to decide which stats to include in the stats reports.
H A Dstatscollector.cc296 void AddTrackReport(StatsSet* reports, const std::string& track_id) { argument
298 StatsReport* report = reports->ReplaceOrAddNew(
305 void CreateTrackReports(const TrackVector& tracks, StatsSet* reports) { argument
308 AddTrackReport(reports, track->id());
605 StatsReports* reports) {
606 ASSERT(reports != NULL);
607 ASSERT(reports->empty());
612 reports->push_back(&(*it));
620 reports->push_back(report);
628 reports
604 GetStats(MediaStreamTrackInterface* track, StatsReports* reports) argument
[all...]
/external/chromium_org/mojo/shell/
H A Dshell_test_base_unittest.cc259 std::vector<ServiceReport> reports; local
260 GetReport(&reports);
261 ASSERT_EQ(1U, reports.size());
262 EXPECT_EQ(TestService::Name_, reports[0].service_name);
263 EXPECT_EQ(10U, reports[0].total_requests);
297 std::vector<ServiceReport> reports; local
298 GetReport(&reports);
299 ASSERT_EQ(3U, reports.size());
300 EXPECT_EQ(TestService::Name_, reports[0].service_name);
301 EXPECT_EQ(6U, reports[
[all...]
/external/chromium_org/content/test/data/media/
H A Dwebrtc_test_audio.js7 // GetStats reports audio output energy in the [0, 32768] range.
121 var reports = response.result();
123 for (var i = 0; i < reports.length; ++i) {
124 var report = reports[i];
/external/chromium_org/mojo/services/test_service/
H A Dtest_request_tracker_impl.cc53 mojo::Array<ServiceReportPtr> reports; local
69 reports.push_back(report.Pass());
71 callback.Run(reports.Pass());
/external/chromium_org/tools/valgrind/
H A Dtsan_analyze.py145 '''Parses a report file and returns a list of ThreadSanitizer reports.
157 # Read ThreadSanitizer reports.
194 '''Extracts reports from a set of files.
197 ThreadSanitizer race reports. As a side effect, populates
206 reports = []
209 reports.extend(self.ParseReportFile(file))
213 reports = map(lambda(x): map(str, x), reports)
214 return [''.join(report_lines) for report_lines in reports]
227 reports
[all...]
H A Dtest_suppressions.py22 # reports is a list of (error hash, report) pairs.
23 reports = []
37 reports += [[last_hash, "\n".join(cur_supp)]]
49 return reports,line
118 parser.add_argument('reports', metavar='report file', nargs='+',
131 for f in args.reports:
163 # Skip reports if none of the symbols are in the report.
186 print ("%d unique reports don't match any of the suppressions" %
192 print "Congratulations! All reports are suppressed!"
H A Dwaterfall.sh9 # suppressions match the reports on the waterfall.
164 suppressions match the reports on the waterfall.
/external/pixman/pixman/
H A DAndroid.mk20 # Will only be used if runtime detection reports NEON capabilities
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dmockpeerconnectionobservers.h123 virtual void OnComplete(const StatsReports& reports) { argument
126 reports_.reserve(reports.size());
128 for (it = reports.begin(); it != reports.end(); ++it)
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
H A DRTCPeerConnection.mm125 virtual void OnComplete(const std::vector<StatsReport>& reports) OVERRIDE {
126 NSMutableArray* stats = [NSMutableArray arrayWithCapacity:reports.size()];
127 std::vector<StatsReport>::const_iterator it = reports.begin();
128 for (; it != reports.end(); ++it) {
/external/chromium_org/content/renderer/media/
H A Dmock_peer_connection_impl.cc281 webrtc::StatsReports reports; local
282 reports.push_back(&report1);
294 reports.push_back(&report2);
299 observer->OnComplete(reports);
H A Dpeer_connection_tracker.cc250 const std::vector<webrtc::StatsReport>& reports) OVERRIDE {
253 for (size_t i = 0; i < reports.size(); ++i) {
254 base::DictionaryValue* report = GetDictValue(reports[i]);
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DBenchmark.java110 int reports = 0;
113 // Run until we've printed enough reports.
114 while (reports < NUM_REPORTS) {
126 reports++;
/external/chromium_org/build/android/buildbot/
H A Dbb_device_status_check.py328 types, builds, batteries, reports, errors = [], [], [], [], []
331 types, builds, batteries, reports, errors, fail_step_lst = (
341 print '\n'.join(reports)
/external/chromium_org/content/browser/resources/media/
H A Dwebrtc_internals.js252 * @param {!Object} data The object containing pid, lid, and reports, where
253 * reports is an array of stats reports. Each report contains id, type,
263 for (var i = 0; i < data.reports.length; ++i) {
264 var report = data.reports[i];
/external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
H A DAppRTCDemoActivity.java191 // Update the heads-up display with information from |reports|.
192 private void updateHUD(StatsReport[] reports) { argument
194 for (StatsReport report : reports) {
310 public void onComplete(final StatsReport[] reports) {
313 updateHUD(reports);
316 for (StatsReport report : reports) {
/external/chromium_org/remoting/host/
H A Dcast_extension_session.cc138 const std::vector<webrtc::StatsReport>& reports) OVERRIDE {
141 VLOG(1) << "Received " << reports.size() << " new StatsReports.";
145 for (it = reports.begin(), index = 0; it != reports.end(); ++it, ++index) {

Completed in 3623 milliseconds

12