/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
StorageMeasurement.java | 56 * Filesystem stats (using DefaultContainerService) 322 public void onGetStatsCompleted(PackageStats stats, boolean succeeded) { 330 mAppsSizeForThisStatsObserver += stats.codeSize + stats.dataSize; 332 mAppsSizeForThisStatsObserver += stats.externalObbSize + 333 stats.externalCodeSize + stats.externalDataSize + 334 stats.externalCacheSize + stats.externalMediaSize; 336 mAppsSizeForThisStatsObserver += stats.codeSize + stats.dataSize 373 final long[] stats = imcs.getFileSystemStats(path); local [all...] |
/external/bison/lib/ |
bitset_stats.c | 171 struct bitset_type_info_struct *stats) 173 if (!stats) 178 stats->allocs, stats->frees, 179 stats->allocs ? 100.0 * stats->frees / stats->allocs : 0); 181 stats->sets, stats->cache_sets, 182 stats->sets ? 100.0 * stats->cache_sets / stats->sets : 0) [all...] |
/external/libvpx/ |
vpxenc.c | 121 int stats_open_file(stats_io_t *stats, const char *fpf, int pass) 125 stats->pass = pass; 129 stats->file = fopen(fpf, "wb"); 130 stats->buf.sz = 0; 131 stats->buf.buf = NULL, 132 res = (stats->file != NULL); 142 stats->file = fdopen(fd, "rb"); 144 stats->buf.sz = stat_buf.st_size; 145 stats->buf.buf = mmap(NULL, stats->buf.sz, PROT_READ, MAP_PRIVATE 1097 stats_io_t stats; local [all...] |
/packages/experimental/procstatlog/ |
procstatlog.c | 49 // /proc/binder/stats - per line: "/proc/binder/stats:BC_REPLY" 54 // /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state 105 struct data *stats, int stats_count) { 143 struct data *data = &stats[num++]; 160 static int read_proc_yaffs(struct data *stats, int stats_count) { 193 struct data *data = &stats[num++]; 285 struct data *stats = malloc((stats_count + 1) * sizeof(struct data)); local 286 struct data *next = stats; 295 struct data *end = stats + stats_count [all...] |
/external/compiler-rt/lib/asan/ |
asan_thread_registry.cc | 58 FlushToAccumulatedStatsUnlocked(&thread->stats()); 101 return (t) ? t->stats() : main_thread_.stats(); 158 FlushToAccumulatedStatsUnlocked(&t->stats()); 163 void AsanThreadRegistry::FlushToAccumulatedStatsUnlocked(AsanStats *stats) { 166 size_t *src = (size_t*)stats;
|
asan_stats.cc | 39 Printf("Stats: %zuM malloced (%zuM for red zones) by %zu calls\n", 41 Printf("Stats: %zuM realloced by %zu calls\n", realloced>>20, reallocs); 42 Printf("Stats: %zuM freed by %zu calls\n", freed>>20, frees); 43 Printf("Stats: %zuM really freed by %zu calls\n", 45 Printf("Stats: %zuM (%zu full pages) mmaped in %zu calls\n", 52 Printf("Stats: malloc large: %zu small slow: %zu\n", 59 AsanStats stats = asanThreadRegistry().GetAccumulatedStats(); local 62 stats.Print();
|
/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/ |
Utils.java | 104 final StatFs stats = new StatFs(path.getPath()); local 105 return (long) stats.getBlockSize() * (long) stats.getAvailableBlocks();
|
/external/chromium/chrome/browser/renderer_host/ |
web_cache_manager.h | 59 int renderer_id, const WebKit::WebCache::UsageStats& stats); 138 // Add up all the stats from the given set of renderers and place the result 139 // in |stats|. 141 WebKit::WebCache::UsageStats* stats); 147 const WebKit::WebCache::UsageStats& stats);
|
chrome_render_message_filter.cc | 105 const WebCache::ResourceTypeStats& stats) { 107 static_cast<int>(stats.images.size / 1024)); 109 static_cast<int>(stats.cssStyleSheets.size / 1024)); 111 static_cast<int>(stats.scripts.size / 1024)); 113 static_cast<int>(stats.xslStyleSheets.size / 1024)); 115 static_cast<int>(stats.fonts.size / 1024)); 119 base::GetProcId(peer_handle()), stats);
|
/external/chromium/net/disk_cache/ |
stats_histogram.cc | 8 #include "net/disk_cache/stats.h" 16 const Stats* StatsHistogram::stats_ = NULL; 29 Sample maximum = disk_cache::Stats::kDataSizesLength - 1; 30 size_t bucket_count = disk_cache::Stats::kDataSizesLength; 55 bool StatsHistogram::Init(const Stats* stats) { 56 DCHECK(stats); 62 stats_ = stats; 72 return disk_cache::Stats::kDataSizesLength;
|
/external/valgrind/main/memcheck/tests/ |
sbfragment.c | 11 void stats(char *msg) function 98 stats ("before freeing last block"); 101 stats ("after freeing last block");
|
/external/chromium/chrome/browser/resources/net_internals/ |
httpcacheview.js | 25 for (var statName in info.stats) { 27 addTextNode(li, statName + ': ' + info.stats[statName]);
|
/external/icu4c/test/perf/perldriver/ |
Dataset.pm | 26 my $stats = Statistics::Descriptive::Full->new(); 27 $stats->add_data(@{$self->{_data}}); 28 $self->{_mean} = $stats->mean(); 36 $self->{_error} = $t * $stats->standard_deviation();
|
/frameworks/base/tools/aapt/ |
FileFinder.h | 75 static void checkAndAddFile(String8 path, const struct stat* stats,
|
/external/iproute2/ip/ |
iplink_can.c | 263 struct can_device_stats *stats; local 265 if (xstats && RTA_PAYLOAD(xstats) == sizeof(*stats)) { 266 stats = RTA_DATA(xstats); 271 stats->restarts, stats->bus_error, 272 stats->arbitration_lost, stats->error_warning, 273 stats->error_passive, stats->bus_off);
|
/frameworks/base/core/java/com/android/internal/net/ |
NetworkStatsFactory.java | 49 /** Path to {@code /proc/net/xt_qtaguid/stats}. */ 60 mStatsXtUid = new File(procRoot, "net/xt_qtaguid/stats"); 69 * @throws IllegalStateException when problem parsing stats. 74 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 6); local 103 stats.addValues(entry); 107 throw new IllegalStateException("problem parsing stats: " + e); 109 throw new IllegalStateException("problem parsing stats: " + e); 111 throw new IllegalStateException("problem parsing stats: " + e); 116 return stats; 124 * @throws IllegalStateException when problem parsing stats 181 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 24); local [all...] |
/frameworks/base/core/jni/ |
android_os_Debug.cpp | 88 #define BINDER_STATS "/proc/binder/stats" 120 static void read_mapinfo(FILE *fp, stats_t* stats) 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) 239 read_mapinfo(fp, stats); 246 stats_t stats[_NUM_HEAP]; local 247 memset(&stats, 0, sizeof(stats)); [all...] |
/external/quake/quake/src/QW/server/ |
sv_send.c | 514 Performs a delta update of the stats array. This should only be performed 521 int stats[MAX_CL_STATS]; local 525 memset (stats, 0, sizeof(stats)); 527 // if we are a spectator and we are tracking a player, we get his stats 532 stats[STAT_HEALTH] = ent->v.health; 533 stats[STAT_WEAPON] = SV_ModelIndex(PR_GetString(ent->v.weaponmodel)); 534 stats[STAT_AMMO] = ent->v.currentammo; 535 stats[STAT_ARMOR] = ent->v.armorvalue; 536 stats[STAT_SHELLS] = ent->v.ammo_shells [all...] |
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
mediamonitor.h | 81 MI stats(media_info_); 83 SignalUpdate(media_channel_, stats);
|
/external/iproute2/netem/ |
stats.c | 18 stats(FILE *fp) function 75 stats(fp);
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/ |
SyncAdapter.java | 144 syncResult.stats.numParseExceptions++; 149 syncResult.stats.numIoExceptions++; 152 syncResult.stats.numAuthExceptions++; 155 syncResult.stats.numParseExceptions++; 158 syncResult.stats.numParseExceptions++;
|
/external/linux-tools-perf/ |
builtin-stat.c | 13 Performance counter stats for './hackbench 10': 86 * Detailed stats (-d), covering the L1 and last level data caches: 116 * Very detailed stats (-d -d), covering the instruction cache and the TLB caches: 159 * Very, very detailed stats (-d -d -d), adding prefetch events: 201 struct stats struct 207 struct stats res_stats[3]; 222 static void update_stats(struct stats *stats, u64 val) 226 stats->n++; 227 delta = val - stats->mean [all...] |
/external/quake/quake/src/WinQuake/ |
cl_parse.cpp | 557 cl.stats[STAT_WEAPONFRAME] = MSG_ReadByte (); 559 cl.stats[STAT_WEAPONFRAME] = 0; 565 if (cl.stats[STAT_ARMOR] != i) 567 cl.stats[STAT_ARMOR] = i; 575 if (cl.stats[STAT_WEAPON] != i) 577 cl.stats[STAT_WEAPON] = i; 582 if (cl.stats[STAT_HEALTH] != i) 584 cl.stats[STAT_HEALTH] = i; 589 if (cl.stats[STAT_AMMO] != i) 591 cl.stats[STAT_AMMO] = i [all...] |
/gdk/samples/quake/jni/ |
cl_parse.cpp | 557 cl.stats[STAT_WEAPONFRAME] = MSG_ReadByte (); 559 cl.stats[STAT_WEAPONFRAME] = 0; 565 if (cl.stats[STAT_ARMOR] != i) 567 cl.stats[STAT_ARMOR] = i; 575 if (cl.stats[STAT_WEAPON] != i) 577 cl.stats[STAT_WEAPON] = i; 582 if (cl.stats[STAT_HEALTH] != i) 584 cl.stats[STAT_HEALTH] = i; 589 if (cl.stats[STAT_AMMO] != i) 591 cl.stats[STAT_AMMO] = i [all...] |
/external/quake/quake/src/QW/client/ |
sbar.c | 27 #define STAT_MINUS 10 // num frame for '-' stats digit 517 if (cl.stats[STAT_ITEMS] & (IT_SHOTGUN<<i) ) 525 if ( cl.stats[STAT_ACTIVEWEAPON] == (IT_SHOTGUN<<i) ) 549 sprintf (num, "%3i",cl.stats[STAT_SHELLS+i] ); 572 if (cl.stats[STAT_ITEMS] & (1<<(17+i))) 587 if (cl.stats[STAT_ITEMS] & (1<<(28+i))) 677 if ( (cl.stats[STAT_ITEMS] & (IT_INVISIBILITY | IT_INVULNERABILITY) ) 683 if (cl.stats[STAT_ITEMS] & IT_QUAD) 688 if (cl.stats[STAT_ITEMS] & IT_INVISIBILITY) 693 if (cl.stats[STAT_ITEMS] & IT_INVULNERABILITY) [all...] |