Home
last modified time | relevance | path

Searched refs:stats (Results 1 – 8 of 8) sorted by relevance

/development/tools/repo_diff/
Drepo_diff_trees.py87 stats = {
96 for key in stats:
98 stats[key] = int(element.split()[0])
100 return stats
118 stats = {
127 stats = get_revision_diff_stats(downstream_dir, 'FETCH_HEAD', 'HEAD')
129 return stats
351 stats = []
357 stats.append({
365 'stats': stats,
[all …]
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
DSyncAdapter.java132 syncResult.stats.numParseExceptions++; in onPerformSync()
137 syncResult.stats.numIoExceptions++; in onPerformSync()
140 syncResult.stats.numAuthExceptions++; in onPerformSync()
143 syncResult.stats.numParseExceptions++; in onPerformSync()
146 syncResult.stats.numParseExceptions++; in onPerformSync()
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
DSyncAdapter.java155 syncResult.stats.numParseExceptions++; in onPerformSync()
159 syncResult.stats.numIoExceptions++; in onPerformSync()
163 syncResult.stats.numParseExceptions++; in onPerformSync()
167 syncResult.stats.numParseExceptions++; in onPerformSync()
234 syncResult.stats.numEntries++; in updateLocalFeedData()
257 syncResult.stats.numUpdates++; in updateLocalFeedData()
267 syncResult.stats.numDeletes++; in updateLocalFeedData()
281 syncResult.stats.numInserts++; in updateLocalFeedData()
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DImageCache.java672 final StatFs stats = new StatFs(path.getPath()); in getUsableSpace() local
673 return (long) stats.getBlockSize() * (long) stats.getAvailableBlocks(); in getUsableSpace()
/development/tools/logblame/
Dsample.txt904 begin updateExternalStatsSync reason=get-stats
910 Reading cpu stats took 34 ms
1170 begin updateExternalStatsSync reason=get-stats
1198 Reading cpu stats took 34 ms
2181 begin updateExternalStatsSync reason=get-stats
2198 Reading cpu stats took 34 ms
2449 begin updateExternalStatsSync reason=get-stats
2455 Reading cpu stats took 34 ms
2738 begin updateExternalStatsSync reason=get-stats
2755 Reading cpu stats took 35 ms
/development/vndk/tools/definition-tool/datasets/
Deligible-list-29-properties.csv16 android.frameworks.stats@1.0,True,False,True,hidl_interface
17 android.frameworks.stats@1.0-adapter-helper,True,False,True,hidl_interface
200 android.hardware.power.stats@1.0,True,False,True,hidl_interface
201 android.hardware.power.stats@1.0-adapter-helper,True,False,True,hidl_interface
Deligible-list-29.csv11 /system/${LIB}/android.frameworks.stats@1.0.so,VNDK,
105 /system/${LIB}/android.hardware.power.stats@1.0.so,VNDK,
525 /system/${LIB}/vndk${VNDK_VER}/android.frameworks.stats@1.0.so,VNDK,
613 /system/${LIB}/vndk${VNDK_VER}/android.hardware.power.stats@1.0.so,VNDK,
/development/apps/Development/src/com/android/development/
DConnectivity.java493 mLinkStatsResults = (TextView)findViewById(R.id.stats); in onCreate()