HomeSort by relevance Sort by last modified time
    Searched refs:reports (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
StatsObserver.java 30 /** Interface for observing Stats reports (see webrtc::StatsObservers). */
32 /** Called when the reports are ready.*/
33 public void onComplete(StatsReport[] reports);
  /external/chromium_org/chrome/browser/extensions/activity_log/
ad_injection_unittest.cc 32 // Returns the active reports. This also clears the internal map of metrics
33 // as a biproduct, so if comparing numbers of reports, the comparison should
57 rappor::RapporReports reports = rappor_service.GetReports(); local
58 EXPECT_EQ(0, reports.report_size());
63 reports = rappor_service.GetReports();
64 EXPECT_EQ(1, reports.report_size());
69 reports = rappor_service.GetReports();
70 EXPECT_EQ(1, reports.report_size());
75 reports = rappor_service.GetReports();
76 EXPECT_EQ(1, reports.report_size())
    [all...]
  /external/chromium_org/components/rappor/
rappor_service_unittest.cc 16 void GetReports(RapporReports* reports) {
17 ExportMetrics(reports);
44 RapporReports reports; local
45 rappor_service.GetReports(&reports);
46 EXPECT_EQ(1, reports.report_size());
48 const RapporReports::Report& report = reports.report(0);
rappor_service.cc 81 RapporReports reports; local
82 if (ExportMetrics(&reports)) {
84 bool success = reports.SerializeToString(&log_text);
134 bool RapporService::ExportMetrics(RapporReports* reports) {
139 reports->set_cohort(cohort_);
146 RapporReports::Report* report = reports->add_report();
rappor_service.h 38 // and periodically generates and uploads reports based on the collected data.
44 // Starts the periodic generation of reports and upload attempts.
64 // Logs all of the collected metrics to the reports proto message and clears
67 bool ExportMetrics(RapporReports* reports);
90 // reports and pass it to the uploader.
107 // A private LogUploader instance for sending reports to the server.
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
statscollector_unittest.cc 68 const char kNoReports[] = "NO REPORTS";
165 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)
518 StatsReports reports; \/\/ returned values. local
608 StatsReports reports; \/\/ returned values. local
641 StatsReports reports; \/\/ returned values. local
681 StatsReports reports; \/\/ returned values. local
696 StatsReports reports; \/\/ returned values. local
723 StatsReports reports; local
750 StatsReports reports; local
809 StatsReports reports; local
862 StatsReports reports; local
883 StatsReports reports; local
929 StatsReports reports; local
1007 StatsReports reports; \/\/ returned values. local
1054 StatsReports reports; \/\/ returned values. local
1128 StatsReports reports; \/\/ returned values. local
1197 StatsReports reports; \/\/ returned values. local
1271 StatsReports reports; \/\/ returned values. local
1322 StatsReports reports; \/\/ returned values. local
1397 StatsReports reports; \/\/ returned values. local
    [all...]
statscollector.h 78 // a track label or empty string. The most recent reports are stored in
79 // |reports|.
81 StatsReports* reports);
95 bool CopySelectedReports(const std::string& selector, StatsReports* reports);
statscollector.cc 271 void CreateTrackReports(const TrackVector& tracks, StatsMap* reports) {
280 (*reports)[report.id] = report;
565 StatsReports* reports) {
566 ASSERT(reports != NULL);
567 reports->clear();
572 reports->push_back(it->second);
580 reports->push_back(it->second);
590 reports->push_back(it->second);
601 reports->push_back(it->second);
745 // of its chain, and adds those reports to |reports_|. The return value i
    [all...]
  /external/chromium_org/tools/valgrind/
tsan_analyze.py 145 '''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 = self.GetReports(files
    [all...]
test_suppressions.py 22 # 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!"
waterfall.sh 9 # suppressions match the reports on the waterfall.
164 suppressions match the reports on the waterfall.
  /external/pixman/pixman/
Android.mk 20 # Will only be used if runtime detection reports NEON capabilities
  /external/chromium_org/content/test/data/media/
webrtc_test_audio.js 7 // GetStats reports audio output energy in the [0, 32768] range.
87 var reports = response.result();
89 for (var i = 0; i < reports.length; ++i) {
90 var report = reports[i];
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
mockpeerconnectionobservers.h 123 virtual void OnComplete(const std::vector<webrtc::StatsReport>& reports) {
125 reports_ = reports;
  /cts/suite/audio_quality/
Android.mk 39 zip -rq $(notdir $@) android-cts-audio-quality -x android-cts-audio-quality/reports/\*
  /build/core/combo/arch/x86/
x86.mk 17 # by our toolchain binaries. However, there have been reports that this may
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCPeerConnection.mm 125 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/
mock_peer_connection_impl.cc 272 std::vector<webrtc::StatsReport> reports(track ? 1 : 2);
273 webrtc::StatsReport& report = reports[0];
284 webrtc::StatsReport& report2 = reports[1];
295 observer->OnComplete(reports);
peer_connection_tracker.cc 204 const std::vector<webrtc::StatsReport>& reports) OVERRIDE {
207 for (size_t i = 0; i < reports.size(); ++i) {
208 base::DictionaryValue* report = GetDictValue(reports[i]);
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Benchmark.java 110 int reports = 0; local
113 // Run until we've printed enough reports.
114 while (reports < NUM_REPORTS) {
126 reports++;
  /external/chromium_org/content/browser/resources/media/
webrtc_internals.js 235 * @param {!Object} data The object containing pid, lid, and reports, where
236 * reports is an array of stats reports. Each report contains id, type,
246 for (var i = 0; i < data.reports.length; ++i) {
247 var report = data.reports[i];
  /external/chromium_org/chrome/test/chromedriver/js/
test.js 52 * Runs all tests and reports the results via the console.
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
AppRTCDemoActivity.java 199 // Update the heads-up display with information from |reports|.
200 private void updateHUD(StatsReport[] reports) {
202 for (StatsReport report : reports) {
285 public void onComplete(final StatsReport[] reports) {
288 updateHUD(reports);
291 for (StatsReport report : reports) {
  /external/chromium_org/build/android/buildbot/
bb_device_status_check.py 315 types, builds, batteries, reports, errors = [], [], [], [], []
318 types, builds, batteries, reports, errors, fail_step_lst = (
328 print '\n'.join(reports)
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-site-plugin/3.3/
maven-site-plugin-3.3.jar 

Completed in 1085 milliseconds

1 2 3