HomeSort by relevance Sort by last modified time
    Searched refs:stats (Results 26 - 50 of 480) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
rstat.h 72 struct stats { struct
86 typedef struct stats stats; typedef in typeref:struct:stats
128 extern stats * rstatproc_stats_1(void *, CLIENT *);
129 extern stats * rstatproc_stats_1_svc(void *, struct svc_req *);
135 extern stats * rstatproc_stats_1();
136 extern stats * rstatproc_stats_1_svc();
148 extern bool_t xdr_stats (XDR *, stats*);
rstat.x 98 struct stats { /* RSTATVERS_ORIG */
139 stats
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
rstat.h 72 struct stats { struct
86 typedef struct stats stats; typedef in typeref:struct:stats
128 extern stats * rstatproc_stats_1(void *, CLIENT *);
129 extern stats * rstatproc_stats_1_svc(void *, struct svc_req *);
135 extern stats * rstatproc_stats_1();
136 extern stats * rstatproc_stats_1_svc();
148 extern bool_t xdr_stats (XDR *, stats*);
rstat.x 98 struct stats { /* RSTATVERS_ORIG */
139 stats
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
LoadAverageService.java 37 private static final class Stats extends ProcessStats {
43 Stats(Paint paint) {
73 private final Stats mStats;
153 mStats = new Stats(mLoadPaint);
182 final Stats stats = mStats; local
183 final int userTime = stats.getLastUserTime();
184 final int systemTime = stats.getLastSystemTime();
185 final int iowaitTime = stats.getLastIoWaitTime();
186 final int irqTime = stats.getLastIrqTime()
262 final Stats stats = mStats; local
    [all...]
  /external/chromium/base/
sys_info_posix.cc 47 struct statvfs stats;
48 if (statvfs(path.value().c_str(), &stats) != 0) {
51 return static_cast<int64>(stats.f_bavail) * stats.f_frsize;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowStatFs.java 15 private static final Stats DEFAULT_STATS = new Stats(0, 0, 0);
16 private static Map<String, Stats> stats = new HashMap<String, Stats>(); field in class:ShadowStatFs
17 private Stats stat;
45 stat = stats.get(path);
56 stats.put(path, new Stats(blockCount, freeBlocks, availableBlocks));
60 stats.clear()
    [all...]
  /frameworks/base/packages/FusedLocation/src/com/android/location/fused/
FusionEngine.java 132 ProviderStats stats = mStats.get(name); local
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); local
148 if (stats.requested) {
149 stats.requested = false
278 ProviderStats stats = mStats.get(provider); local
287 ProviderStats stats = mStats.get(provider); local
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_matrix.c 52 } stats; member in struct:_Ewk_Tile_Matrix
76 if (t->updates || t->stats.full_update)
88 tm->stats.bytes.freed += t->bytes;
89 tm->stats.tiles.freed++;
112 if (t->updates || t->stats.full_update)
131 tm->stats.bytes.freed += t->bytes;
132 tm->stats.tiles.freed++;
208 tiles = tm->stats.tiles.allocated - tm->stats.tiles.freed;
209 bytes = tm->stats.bytes.allocated - tm->stats.bytes.freed
    [all...]
  /external/yaffs2/yaffs2/utils/
mkyaffs2image.c 356 struct stat stats; local
362 lstat(full_name,&stats);
391 stats.st_mode) < 0) {
399 if(S_ISLNK(stats.st_mode) ||
400 S_ISREG(stats.st_mode) ||
401 S_ISDIR(stats.st_mode) ||
402 S_ISFIFO(stats.st_mode) ||
403 S_ISBLK(stats.st_mode) ||
404 S_ISCHR(stats.st_mode) ||
405 S_ISSOCK(stats.st_mode)
537 struct stat stats; local
    [all...]
mkyaffsimage.c 404 struct stat stats; local
410 lstat(full_name,&stats);
412 if(S_ISLNK(stats.st_mode) ||
413 S_ISREG(stats.st_mode) ||
414 S_ISDIR(stats.st_mode) ||
415 S_ISFIFO(stats.st_mode) ||
416 S_ISBLK(stats.st_mode) ||
417 S_ISCHR(stats.st_mode) ||
418 S_ISSOCK(stats.st_mode))
427 if((equivalentObj = find_obj_in_list(stats.st_dev, stats.st_ino)) > 0
531 struct stat stats; local
    [all...]
  /system/extras/tests/bionic/libc/common/
bench_pthread.c 78 static int64_t stats[MAX_STATS]; variable
99 qsort(stats, count, sizeof(stats[0]), compare_stats);
110 median = stats[(min_index+max_index)/2];
113 min = stats[min_index];
114 max = stats[max_index];
120 total += stats[nn];
130 printf(" %lld", (long long)stats[nn]);
148 stats[num_stats++] = sub_end - sub_start; \
  /frameworks/base/core/java/com/android/internal/net/
NetworkStatsFactory.java 52 /** 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); local
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 = new NetworkStats(SystemClock.elapsedRealtime(), 6)
173 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 0); local
196 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 24); local
    [all...]
  /external/chromium/chrome/browser/
oom_priority_manager.cc 108 RendererStats stats; local
109 stats.last_selected = contents->last_selected_time();
110 stats.renderer_handle = contents->GetRenderProcessHost()->GetHandle();
111 stats.is_pinned = model->IsTabPinned(i);
112 stats.memory_used = 0; // This gets calculated in DoAdjustOomPriorities.
113 renderer_stats.push_back(stats);
  /external/compiler-rt/lib/asan/
asan_thread_registry.cc 60 FlushToAccumulatedStatsUnlocked(&thread->stats());
104 return (t) ? t->stats() : main_thread_.stats();
107 void AsanThreadRegistry::GetAccumulatedStats(AsanStats *stats) {
110 internal_memcpy(stats, &accumulated_stats_, sizeof(accumulated_stats_));
119 // way we update accumulated stats.
139 // way we update accumulated stats.
143 // Return several stats counters with a single call to
176 FlushToAccumulatedStatsUnlocked(&t->stats());
187 void AsanThreadRegistry::FlushToAccumulatedStatsUnlocked(AsanStats *stats) {
    [all...]
asan_thread_registry.h 47 // Returns stats for GetCurrent(), or stats for
50 // Flushes all thread-local stats to accumulated stats, and makes
51 // a copy of accumulated stats.
52 void GetAccumulatedStats(AsanStats *stats);
63 // Adds values of all counters in "stats" to accumulated stats,
64 // and fills "stats" with zeroes.
65 void FlushToAccumulatedStatsUnlocked(AsanStats *stats);
    [all...]
  /external/iproute2/netem/
Makefile 19 stats: stats.c
  /frameworks/base/core/tests/benchmarks/src/com/android/internal/net/
NetworkStatsFactoryBenchmark.java 29 // TODO: consider staging stats file with different number of rows
33 mStats = new File("/proc/net/xt_qtaguid/stats");
49 final NetworkStats stats = new NetworkStats(SystemClock.elapsedRealtime(), 0); local
51 stats, mStats.getAbsolutePath(), NetworkStats.UID_ALL);
  /frameworks/base/services/java/com/android/server/am/
BackupRecord.java 31 final BatteryStatsImpl.Uid.Pkg.Serv stats; field in class:BackupRecord
41 stats = _agentStats;
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryHistoryPreference.java 38 public BatteryHistoryPreference(Context context, BatteryStats stats) {
41 mStats = stats;
  /packages/providers/ApplicationsProvider/tests/src/com/android/providers/applications/
MockActivityManager.java 33 PkgUsageStats stats = new PkgUsageStats(packageName, 1, 0, new HashMap<String, Long>()); local
34 mPackageUsageStats.put(packageName, stats);
  /frameworks/base/core/tests/coretests/src/android/net/
NetworkStatsTest.java 43 final NetworkStats stats = new NetworkStats(TEST_START, 3) local
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) local
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.findIndexHinted(TEST_IFACE, 102, SET_DEFAULT, TAG_NONE, hint))
76 final NetworkStats stats = new NetworkStats(TEST_START, 2); local
102 final NetworkStats stats = new NetworkStats(TEST_START, 10); local
262 final NetworkStats stats = new NetworkStats(TEST_START, 3) local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
rstat.x 98 struct stats { /* RSTATVERS_ORIG */
139 stats
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorStartup.java 40 SdkStatsService stats = new SdkStatsService();
47 ping(stats, toolsPath);
55 private static void ping(SdkStatsService stats, String toolsLocation) {
79 stats.ping("ddms", revision); //$NON-NLS-1$
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarReport2.java 48 stats(root, buf); method
51 stats(g, buf); method
56 void stats(Grammar g, StringBuilder buf) { method in class:GrammarReport2

Completed in 542 milliseconds

12 3 4 5 6 7 8 91011>>