HomeSort by relevance Sort by last modified time
    Searched defs:usagestats (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/chrome/installer/setup/
setup_util.cc 368 // Copy usagestats from the binaries to the product's ClientState key.
371 DWORD usagestats = 0; local
372 if (product && product->GetUsageStats(&usagestats)) {
378 << dist->GetDisplayName() << " to migrate usagestats.";
380 state_key.WriteValue(google_update::kRegUsageStatsField, usagestats);
setup_util_unittest.cc 435 DWORD usagestats = 0; local
475 // Confirm that usagestats were copied to CF and that its channel was
479 EXPECT_TRUE(chrome_frame.GetUsageStats(&usagestats));
480 EXPECT_EQ(1U, usagestats);
install_worker.cc 1048 DWORD usagestats = 0; local
    [all...]
  /external/chromium_org/chrome/installer/util/
installation_validator.cc 56 // Products must not have usagestats consent values when multi-install
90 // Products must not have usagestats consent values when multi-install
146 // UsageStats consent values are always allowed on the binaries.
700 // Validates usagestats for the product or binaries in |ctx|.
703 DWORD usagestats = 0; local
704 if (ctx.state.GetUsageStats(&usagestats)) {
708 << " has a usagestats value (" << usagestats
710 } else if (usagestats != 0 && usagestats != 1)
    [all...]
  /frameworks/base/tests/UsageStatsTest/src/com/android/tests/usagestats/
UsageLogActivity.java 16 package com.android.tests.usagestats;
UsageStatsActivity.java 17 package com.android.tests.usagestats;
20 import android.app.usage.UsageStats;
44 private Comparator<UsageStats> mComparator = new Comparator<UsageStats>() {
46 public int compare(UsageStats o1, UsageStats o2) {
87 Map<String, UsageStats> stats = mUsageStatsManager.queryAndAggregateUsageStats(
93 private ArrayList<UsageStats> mStats = new ArrayList<>();
95 public void update(Map<String, UsageStats> stats) {

Completed in 85 milliseconds