Searched refs:stats (Results 1 - 25 of 33) sorted by relevance

12

/frameworks/base/core/java/android/content/
H A DSyncResult.java91 public final SyncStats stats; field in class:SyncResult
135 this.stats = new SyncStats();
147 stats = new SyncStats(parcel);
166 return stats.numParseExceptions > 0
167 || stats.numConflictDetectedExceptions > 0
168 || stats.numAuthExceptions > 0
187 return syncAlreadyInProgress || stats.numIoExceptions > 0;
199 return ((stats.numDeletes > 0) && !tooManyDeletions)
200 || stats.numInserts > 0
201 || stats
[all...]
H A DSyncManager.java1398 for (AccountSyncStats stats: sortedAccounts) {
1399 elapsedTime = stats.elapsedTime;
1400 times = stats.times;
1407 pw.printf(accountFormat, stats.name, timesStr, timeStr);
1775 syncResult.stats.numIoExceptions++;
2320 syncOperation.authority, syncResult.stats.numDeletes,
2356 if (syncResult.stats.numAuthExceptions > 0)
2358 if (syncResult.stats.numIoExceptions > 0)
2360 if (syncResult.stats.numParseExceptions > 0)
2362 if (syncResult.stats
[all...]
/frameworks/base/core/tests/coretests/src/android/net/
H A DNetworkStatsHistoryTest.java55 private NetworkStatsHistory stats; field in class:NetworkStatsHistoryTest
60 if (stats != null) {
61 assertConsistent(stats);
93 stats = new NetworkStatsHistory(BUCKET_SIZE);
96 stats.recordData(TEST_START, TEST_START + SECOND_IN_MILLIS,
99 assertEquals(1, stats.size());
100 assertValues(stats, 0, SECOND_IN_MILLIS, 1024L, 10L, 2048L, 20L, 2L);
105 stats = new NetworkStatsHistory(bucketDuration);
109 stats.recordData(recordStart, recordStart + bucketDuration,
112 assertEquals(2, stats
454 assertIndexBeforeAfter( NetworkStatsHistory stats, int before, int after, long time) argument
468 assertConsistent(NetworkStatsHistory stats) argument
479 assertValues( NetworkStatsHistory stats, int index, long rxBytes, long txBytes) argument
486 assertValues( NetworkStatsHistory stats, long start, long end, long rxBytes, long txBytes) argument
493 assertValues(NetworkStatsHistory stats, int index, long activeTime, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) argument
504 assertFullValues(NetworkStatsHistory stats, long activeTime, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) argument
510 assertValues(NetworkStatsHistory stats, long start, long end, long activeTime, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) argument
[all...]
H A DNetworkStatsTest.java43 final NetworkStats stats = new NetworkStats(TEST_START, 3)
48 assertEquals(2, stats.findIndex(TEST_IFACE, 102, SET_DEFAULT, TAG_NONE));
49 assertEquals(2, stats.findIndex(TEST_IFACE, 102, SET_DEFAULT, TAG_NONE));
50 assertEquals(0, stats.findIndex(TEST_IFACE, 100, SET_DEFAULT, TAG_NONE));
51 assertEquals(-1, stats.findIndex(TEST_IFACE, 6, SET_DEFAULT, TAG_NONE));
55 final NetworkStats stats = new NetworkStats(TEST_START, 3)
64 for (int hint = 0; hint < stats.size(); hint++) {
65 assertEquals(0, stats.findIndexHinted(TEST_IFACE, 100, SET_DEFAULT, TAG_NONE, hint));
66 assertEquals(1, stats.findIndexHinted(TEST_IFACE, 101, SET_DEFAULT, TAG_NONE, hint));
67 assertEquals(2, stats
313 assertValues(NetworkStats stats, int index, String iface, int uid, int set, int tag, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) argument
[all...]
/frameworks/base/core/tests/coretests/src/com/android/internal/net/
H A DNetworkStatsFactoryTest.java73 stageFile(R.raw.xt_qtaguid_typical, new File(mTestProc, "net/xt_qtaguid/stats"));
75 final NetworkStats stats = mFactory.readNetworkStatsDetail();
76 assertEquals(70, stats.size());
77 assertStatsEntry(stats, "wlan0", 0, SET_DEFAULT, 0x0, 18621L, 2898L);
78 assertStatsEntry(stats, "wlan0", 10011, SET_DEFAULT, 0x0, 35777L, 5718L);
79 assertStatsEntry(stats, "wlan0", 10021, SET_DEFAULT, 0x7fffff01, 562386L, 49228L);
80 assertStatsEntry(stats, "rmnet1", 10021, SET_DEFAULT, 0x30100000, 219110L, 227423L);
81 assertStatsEntry(stats, "rmnet2", 10001, SET_DEFAULT, 0x0, 1125899906842624L, 984L);
99 stageFile(R.raw.xt_qtaguid_typical, new File(mTestProc, "net/xt_qtaguid/stats"));
101 final NetworkStats stats
157 assertStatsEntry(NetworkStats stats, String iface, int uid, int set, int tag, long rxBytes, long txBytes) argument
165 assertStatsEntry(NetworkStats stats, String iface, int uid, int set, int tag, long rxBytes, long rxPackets, long txBytes, long txPackets) argument
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDebug.java32 private static native void nativeGetPagerStats(PagerStats stats); argument
133 /** statement cache stats: hits/misses/cachesize */
147 * return all pager and database stats for the current process.
151 PagerStats stats = new PagerStats();
152 nativeGetPagerStats(stats);
153 stats.dbStats = SQLiteDatabase.getDbStats();
154 return stats;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DLoadAverageService.java182 final Stats stats = mStats;
183 final int userTime = stats.getLastUserTime();
184 final int systemTime = stats.getLastSystemTime();
185 final int iowaitTime = stats.getLastIoWaitTime();
186 final int irqTime = stats.getLastIrqTime();
187 final int softIrqTime = stats.getLastSoftIrqTime();
188 final int idleTime = stats.getLastIdleTime();
216 canvas.drawText(stats.mLoadText, RIGHT-mPaddingRight-stats.mLoadWidth-1,
218 canvas.drawText(stats
[all...]
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
H A DFusionEngine.java132 ProviderStats stats = mStats.get(name);
134 if (!stats.requested) {
135 stats.requestTime = SystemClock.elapsedRealtime();
136 stats.requested = true;
137 stats.minTime = minTime;
139 } else if (stats.minTime != minTime) {
140 stats.minTime = minTime;
146 ProviderStats stats = mStats.get(name);
148 if (stats.requested) {
149 stats
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DBackupRecord.java31 final BatteryStatsImpl.Uid.Pkg.Serv stats; field in class:BackupRecord
41 stats = _agentStats;
H A DActiveServices.java248 synchronized (r.stats.getBatteryStats()) {
249 r.stats.startRunningLocked();
259 synchronized (service.stats.getBatteryStats()) {
260 service.stats.stopRunningLocked();
355 synchronized (r.stats.getBatteryStats()) {
356 r.stats.stopRunningLocked();
748 BatteryStatsImpl stats = mAm.mBatteryStatsService.getActiveStatistics();
749 synchronized (stats) {
750 ss = stats.getServiceStatsLocked(
1095 synchronized (r.stats
[all...]
H A DServiceRecord.java57 final BatteryStatsImpl.Uid.Pkg.Serv stats; field in class:ServiceRecord
287 this.stats = servStats;
/frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
H A DDataIdleTest.java70 * Helper method that fetches all the network stats available and reports it
79 final NetworkStats stats = session.getSummaryForAllUid(
81 reportStats(stats);
83 Log.w(LOG_TAG, "Failed to fetch network stats.");
90 * Print network data usage stats to instrumentation out
91 * @param stats {@link NetworkorStats} to print
93 void reportStats(NetworkStats stats) { argument
99 for (int i = 0; i < stats.size(); ++i) {
101 Entry statsEntry = stats.getValues(i, null);
/frameworks/base/core/java/com/android/internal/net/
H A DNetworkStatsFactory.java50 /** Path to {@code /proc/net/xt_qtaguid/stats}. */
61 mStatsXtUid = new File(procRoot, "net/xt_qtaguid/stats");
70 * @throws IllegalStateException when problem parsing stats.
75 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 6);
104 stats.addValues(entry);
108 throw new IllegalStateException("problem parsing stats: " + e);
110 throw new IllegalStateException("problem parsing stats: " + e);
112 throw new IllegalStateException("problem parsing stats: " + e);
117 return stats;
125 * @throws IllegalStateException when problem parsing stats
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp88 #define BINDER_STATS "/proc/binder/stats"
120 static void read_mapinfo(FILE *fp, stats_t* stats) argument
223 stats[whichHeap].pss += pss;
224 stats[whichHeap].privateDirty += private_dirty;
225 stats[whichHeap].sharedDirty += shared_dirty;
230 static void load_maps(int pid, stats_t* stats) argument
239 read_mapinfo(fp, stats);
246 stats_t stats[_NUM_HEAP]; local
247 memset(&stats, 0, sizeof(stats));
[all...]
/frameworks/base/tools/aapt/
H A DFileFinder.h75 static void checkAndAddFile(String8 path, const struct stat* stats,
H A DFileFinder.cpp80 void SystemFileFinder::checkAndAddFile(String8 path, const struct stat* stats, argument
94 fileStore.add(path,stats->st_mtime);
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkStatsServiceTest.java284 // graceful shutdown system, which should trigger persist of stats, and
312 // after systemReady(), we should have historical stats loaded again
372 // verify identical stats, but spread across 4 buckets now
507 // now pretend two UIDs are uninstalled, which should migrate stats to
658 NetworkStats stats = mSession.getSummaryForAllUid(
660 assertEquals(3, stats.size());
661 assertValues(stats, IFACE_ALL, UID_RED, SET_DEFAULT, TAG_NONE, 50L, 5L, 50L, 5L, 1);
662 assertValues(stats, IFACE_ALL, UID_RED, SET_DEFAULT, 0xF00D, 10L, 1L, 10L, 1L, 1);
663 assertValues(stats, IFACE_ALL, UID_BLUE, SET_DEFAULT, TAG_NONE, 2048L, 16L, 1024L, 8L, 0);
667 stats
972 assertValues(NetworkStats stats, String iface, int uid, int set, int tag, long rxBytes, long rxPackets, long txBytes, long txPackets, int operations) argument
995 assertValues(NetworkStatsHistory stats, long start, long end, long rxBytes, long rxPackets, long txBytes, long txPackets, int operations) argument
[all...]
H A DNetworkPolicyManagerServiceTest.java562 NetworkStats stats = null;
591 stats = new NetworkStats(getElapsedRealtime(), 1)
594 .andReturn(stats.getTotalBytes()).atLeastOnce();
638 NetworkStats stats = null;
650 stats = new NetworkStats(getElapsedRealtime(), 1)
657 .andReturn(stats.getTotalBytes()).atLeastOnce();
674 stats = new NetworkStats(getElapsedRealtime(), 1)
681 .andReturn(stats.getTotalBytes()).atLeastOnce();
699 stats = new NetworkStats(getElapsedRealtime(), 1)
705 .andReturn(stats
[all...]
H A DThrottleServiceTest.java101 // provide stats without policy, verify not throttled
116 // provide stats under limits, and verify not throttled
131 // provide stats over limits, and verify throttled
146 // provide stats right under 201MB limit, verify not throttled
173 // provide stats under limit, verify not throttled
184 // provide same stats, but verify that modified policy will throttle
207 // provide stats over limit, verify throttle kicks in
219 // provide slightly updated stats, but verify throttle is removed
234 // test is currently no-op, just exercises stats apis
295 final NetworkStats stats
[all...]
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
H A DBandwidthTest.java89 * Ensure that downloading on wifi reports reasonable stats.
99 * Ensure that downloading on mobile reports reasonable stats.
111 * data usage stats to instrumentation out.
143 * Ensure that uploading on wifi reports reasonable stats.
153 * Ensure that uploading on wifi reports reasonable stats.
162 * Helper method that downloads a test file to upload. The stats reported to instrumentation out
163 * only include upload stats.
219 * the stats to instrumentation out.
264 NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 1);
265 stats
306 AddStatsToResults(String label, NetworkStats stats, Bundle results) argument
[all...]
/frameworks/base/core/tests/utillib/src/android/test/
H A DBandwidthTestCase.java105 NetworkStats stats = TrafficStats.stopDataProfiling(null);
106 NetworkStats.Entry entry = stats.getTotal(null);
109 Log.w(TAG, "Failed to collect bandwidth stats");
/frameworks/base/core/java/android/net/
H A DNetworkStats.java209 * Add new stats entry, copying from given {@link Entry}. The {@link Entry}
241 * Return specific stats entry.
323 * Find first stats index that matches the requested parameters.
336 * Find first stats index that matches the requested parameters, starting
365 public void spliceOperationsFrom(NetworkStats stats) { argument
367 final int j = stats.findIndex(iface[i], uid[i], set[i], tag[i]);
371 operations[i] = stats.operations[j];
558 final NetworkStats stats = new NetworkStats(elapsedRealtime, 10);
575 stats.combineValues(entry);
578 return stats;
[all...]
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DAppCacheTest.java550 public PackageStats stats; field in class:AppCacheTest.PackageStatsObserver
557 stats = pStats;
583 if(localLOGV) Log.i(TAG, "OBSERVER RET VALUES code="+observer.stats.codeSize+
584 ", data="+observer.stats.dataSize+", cache="+observer.stats.cacheSize);
585 return observer.stats;
598 PackageStats stats = invokePMGetPackageSizeInfo();
599 assertTrue(stats!=null);
601 if(localLOGV) Log.i(TAG, "code="+stats.codeSize+", data="+stats
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DProcessStats.java565 String file = readFile("/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state", '\0');
634 Stats stats = mProcStats.get(i);
635 if (stats.working) {
636 mWorkingProcs.add(stats);
637 if (stats.threadStats != null && stats.threadStats.size() > 1) {
638 stats.workingThreads.clear();
639 final int M = stats.threadStats.size();
641 Stats tstats = stats.threadStats.get(j);
643 stats
[all...]
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsCollection.java166 final NetworkStats stats = new NetworkStats(end - start, 24);
170 // shortcut when we know stats will be empty
171 if (start == end) return stats;
190 stats.combineValues(entry);
195 return stats;
359 // missing stats is okay, probably first boot
424 // missing stats is okay, probably first boot
439 // migrate all UID stats into special "removed" bucket

Completed in 5293 milliseconds

12