Searched defs:stats (Results 1 - 22 of 22) sorted by relevance

/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/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 DProcessStatsService.java184 Slog.w(TAG, "Writing process stats before shutdown...");
278 boolean readLocked(ProcessStats stats, AtomicFile file) { argument
281 stats.read(stream);
283 if (stats.mReadError != null) {
284 Slog.w(TAG, "Ignoring existing stats; " + stats.mReadError);
287 = stats.mProcesses.getMap();
298 = stats.mPackages.getMap();
323 stats.mReadError = "caught exception: " + e;
348 if (DEBUG) Slog.d(TAG, "Skipping: current stats");
[all...]
H A DServiceRecord.java59 final BatteryStatsImpl.Uid.Pkg.Serv stats; field in class:ServiceRecord
304 this.stats = servStats;
/frameworks/base/tools/aapt/
H A DFileFinder.cpp80 void SystemFileFinder::checkAndAddFile(String8 path, const struct stat* stats, argument
94 fileStore.add(path,stats->st_mtime);
/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;
204 return ((stats.numDeletes > 0) && !tooManyDeletions)
205 || stats.numInserts > 0
206 || stats
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DNetworkStatsFactory.java52 /** Path to {@code /proc/net/xt_qtaguid/stats}. */
63 mStatsXtUid = new File(procRoot, "net/xt_qtaguid/stats");
72 * @throws IllegalStateException when problem parsing stats.
77 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 6);
106 stats.addValues(entry);
110 throw new ProtocolException("problem parsing stats", e);
112 throw new ProtocolException("problem parsing stats", e);
117 return stats;
125 * @throws IllegalStateException when problem parsing stats.
133 final NetworkStats stats
266 nativeReadNetworkStatsDetail( NetworkStats stats, String path, int limitUid) 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/core/jni/
H A Dcom_android_internal_net_NetworkStatsFactory.cpp63 static int readNetworkStatsDetail(JNIEnv* env, jclass clazz, jobject stats, argument
134 env->SetIntField(stats, gNetworkStatsClassInfo.size, size);
135 env->SetObjectField(stats, gNetworkStatsClassInfo.iface, iface.get());
136 env->SetObjectField(stats, gNetworkStatsClassInfo.uid, uid.getJavaArray());
137 env->SetObjectField(stats, gNetworkStatsClassInfo.set, set.getJavaArray());
138 env->SetObjectField(stats, gNetworkStatsClassInfo.tag, tag.getJavaArray());
139 env->SetObjectField(stats, gNetworkStatsClassInfo.rxBytes, rxBytes.getJavaArray());
140 env->SetObjectField(stats, gNetworkStatsClassInfo.rxPackets, rxPackets.getJavaArray());
141 env->SetObjectField(stats, gNetworkStatsClassInfo.txBytes, txBytes.getJavaArray());
142 env->SetObjectField(stats, gNetworkStatsClassInf
[all...]
H A Dandroid_net_TrafficStats.cpp34 static const char* QTAGUID_UID_STATS = "/proc/net/xt_qtaguid/stats";
57 static uint64_t getStatsType(struct Stats* stats, StatsType type) { argument
60 return stats->rxBytes;
62 return stats->rxPackets;
64 return stats->txBytes;
66 return stats->txPackets;
68 return stats->tcpRxPackets;
70 return stats->tcpTxPackets;
76 static int parseIfaceStats(const char* iface, struct Stats* stats) { argument
97 stats
120 parseUidStats(const uint32_t uid, struct Stats* stats) argument
151 struct Stats stats; local
166 struct Stats stats; local
176 struct Stats stats; local
[all...]
H A Dandroid_os_Debug.cpp121 #define BINDER_STATS "/proc/binder/stats"
218 static void read_mapinfo(FILE *fp, stats_t* stats) argument
391 stats[whichHeap].pss += pss;
392 stats[whichHeap].swappablePss += swappable_pss;
393 stats[whichHeap].privateDirty += private_dirty;
394 stats[whichHeap].sharedDirty += shared_dirty;
395 stats[whichHeap].privateClean += private_clean;
396 stats[whichHeap].sharedClean += shared_clean;
397 stats[whichHeap].swappedOut += swapped_out;
399 stats[subHea
411 load_maps(int pid, stats_t* stats) argument
427 stats_t stats[_NUM_HEAP]; local
[all...]
/frameworks/base/core/tests/coretests/src/android/net/
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...]
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...]
/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/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/java/android/net/
H A DNetworkStats.java221 * Add new stats entry, copying from given {@link Entry}. The {@link Entry}
253 * Return specific stats entry.
335 * Find first stats index that matches the requested parameters.
348 * Find first stats index that matches the requested parameters, starting
377 public void spliceOperationsFrom(NetworkStats stats) { argument
379 final int j = stats.findIndex(iface[i], uid[i], set[i], tag[i]);
383 operations[i] = stats.operations[j];
570 final NetworkStats stats = new NetworkStats(elapsedRealtime, 10);
587 stats.combineValues(entry);
590 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/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
971 assertValues(NetworkStats stats, String iface, int uid, int set, int tag, long rxBytes, long rxPackets, long txBytes, long txPackets, int operations) argument
994 assertValues(NetworkStatsHistory stats, long start, long end, long rxBytes, long rxPackets, long txBytes, long txPackets, int operations) argument
[all...]
/frameworks/av/media/libstagefright/
H A DACodec.cpp3149 ACodec::BufferStats stats; local
3150 stats.mEmptyBufferTimeUs = ALooper::GetNowUs();
3151 stats.mFillBufferDoneTimeUs = -1ll;
3152 mCodec->mBufferStats.add(timeUs, stats);
3269 ACodec::BufferStats *stats = &mCodec->mBufferStats.editValueAt(index); local
3270 stats->mFillBufferDoneTimeUs = ALooper::GetNowUs();
3274 stats->mFillBufferDoneTimeUs - stats->mEmptyBufferTimeUs);
3277 stats = NULL;
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java53 public static long COMMIT_PERIOD = 3*60*60*1000; // Commit current stats every 3 hours
1071 Slog.w(TAG, "Ignoring existing stats; bad " + what + " table size: " + size);
1083 Slog.w(TAG, "Ignoring existing stats; bad " + what + " table entry: "
2237 public DurationsTable(ProcessStats stats, String name) { argument
2238 mStats = stats;
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java81 // TODO: remove "tcp" from network methods, since we measure total stats.
647 boolean reset(BatteryStatsImpl stats, boolean detachIfReset) { argument
813 * A sequence counter, incremented once for each update of the stats.
909 boolean reset(BatteryStatsImpl stats, boolean detachIfReset) { argument
910 super.reset(stats, detachIfReset);
1025 public void addDuration(BatteryStatsImpl stats, long durationMillis) { argument
1036 public void abortLastDuration(BatteryStatsImpl stats) { argument
1056 boolean reset(BatteryStatsImpl stats, boolean detachIfReset) { argument
1060 super.reset(stats, !stillActive && detachIfReset);
1138 void startRunningLocked(BatteryStatsImpl stats) { argument
1164 stopRunningLocked(BatteryStatsImpl stats) argument
1200 refreshTimersLocked(final BatteryStatsImpl stats, final ArrayList<StopwatchTimer> pool) argument
1231 reset(BatteryStatsImpl stats, boolean detachIfReset) argument
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java7120 public MeasureParams(PackageStats stats, IPackageStatsObserver observer) { argument
7121 super(new UserHandle(stats.userHandle));
7123 mStats = stats;
9845 PackageStats stats = new PackageStats(packageName, userHandle);
9852 msg.obj = new MeasureParams(stats, observer);

Completed in 499 milliseconds