HomeSort by relevance Sort by last modified time
    Searched defs:stats (Results 276 - 300 of 829) sorted by null

<<11121314151617181920>>

  /system/extras/showslab/
showslab.c 60 static struct slab_info * get_slabinfo(struct slab_stat *stats)
88 stats->min_obj_size = INT_MAX;
103 if (stats->nr_caches++ == 0)
121 if (p->obj_size < stats->min_obj_size)
122 stats->min_obj_size = p->obj_size;
123 if (p->obj_size > stats->max_obj_size)
124 stats->max_obj_size = p->obj_size;
130 stats->nr_active_caches++;
134 stats->nr_objs += p->nr_objs;
135 stats->nr_active_objs += p->nr_active_objs
273 struct slab_stat stats = { .nr_objs = 0 }; local
    [all...]
  /system/extras/sound/
playwav.c 43 struct msm_audio_stats stats; local
84 if (ioctl(afd, AUDIO_GET_STATS, &stats) == 0)
85 fprintf(stderr,"%10d\n", stats.out_bytes);
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationUsageStats.java 53 * <p>This class receives signals from NoMan and keeps running stats of
108 AggregatedStats stats = getOrCreateAggregatedStatsLocked(packageName); local
109 if (stats != null) {
110 return stats.getEnqueueRate(SystemClock.elapsedRealtime());
121 for (AggregatedStats stats : aggregatedStatsArray) {
122 stats.numEnqueuedByApp++;
132 notification.stats.posttimeElapsedMs = now;
135 for (AggregatedStats stats : aggregatedStatsArray) {
136 stats.numPostedByApp++;
137 stats.updateInterarrivalEstimate(now)
332 AggregatedStats stats = getOrCreateAggregatedStatsLocked(DEVICE_GLOBAL_STATS); local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/net/
NetworkStatsServiceTest.java 330 // graceful shutdown system, which should trigger persist of stats, and
357 // after systemReady(), we should have historical stats loaded again
419 // verify identical stats, but spread across 4 buckets now
557 // now pretend two UIDs are uninstalled, which should migrate stats to
711 NetworkStats stats = mSession.getSummaryForAllUid( local
713 assertEquals(3, stats.size());
714 assertValues(stats, IFACE_ALL, UID_RED, SET_DEFAULT, TAG_NONE, ROAMING_NO, 50L, 5L,
716 assertValues(stats, IFACE_ALL, UID_RED, SET_DEFAULT, 0xF00D, ROAMING_NO, 10L, 1L, 10L,
718 assertValues(stats, IFACE_ALL, UID_BLUE, SET_DEFAULT, TAG_NONE, ROAMING_NO, 2048L, 16L,
723 stats = mSession.getSummaryForAllUid
787 final NetworkStats stats = mSession.getSummaryForAllUid( local
838 final NetworkStats stats = mSession.getSummaryForAllUid( local
1036 final NetworkStats stats = mSession.getSummaryForNetwork(template, start, end); local
1057 final NetworkStats stats = mSession.getSummaryForAllUid( local
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageSummary.java 288 final BatteryStats stats = mStatsHelper.getStats(); local
300 : stats != null ? stats.getDischargeAmount(mStatsType) : 0;
386 ArrayList<BatterySipper> stats = new ArrayList<>(); local
392 stats.add(new BatterySipper(type, null, use));
396 stats.add(new BatterySipper(DrainType.APP,
399 stats.add(new BatterySipper(DrainType.APP,
406 stats.add(sipper);
411 stats.add(sipper);
415 stats.add(sipper)
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
SensorBatchingTests.java 304 SensorStats stats = operation.getStats(); local
305 stats.log(TAG);
321 stats.logToFile(fileName);
  /development/ndk/platforms/android-3/include/linux/
if_ppp.h 67 struct ppp_stats stats; member in struct:ifpppstatsreq
72 struct ppp_comp_stats stats; member in struct:ifpppcstatsreq
  /device/lge/bullhead/power/
power.c 621 uint64_t stats[sizeof(parameter_names)] = {0}; local
628 ret = extract_stats(stats, RPM_STAT, RPM_PARAMETERS, 0);
634 ret = extract_stats(stats, RPM_MASTER_STAT, NUM_PARAMETERS, 4);
642 list[0].total_transitions = stats[0];
643 list[0].residency_in_msec_since_boot = stats[1];
649 list[0].voters[0].total_time_in_msec_voted_for_since_boot = stats[4];
650 list[0].voters[0].total_number_of_times_voted_since_boot = stats[5];
654 list[0].voters[1].total_time_in_msec_voted_for_since_boot = stats[6];
655 list[0].voters[1].total_number_of_times_voted_since_boot = stats[7];
659 list[0].voters[2].total_time_in_msec_voted_for_since_boot = stats[8]
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
EmpiricalDistributionImpl.java 189 * Compute bin stats.
191 * @throws IOException if an error occurs computing bin stats
198 * @throws IOException if an error occurs computing sample stats
256 SummaryStatistics stats = binStats.get(findBin(val)); local
257 stats.addValue(val);
310 SummaryStatistics stats = local
312 stats.addValue(inputArray[i]);
334 SummaryStatistics stats = new SummaryStatistics(); local
335 binStats.add(i,stats);
384 SummaryStatistics stats = binStats.get(i) local
    [all...]
  /external/autotest/client/tests/signaltest/src/
signaltest.c 48 struct thread_stat *stats; member in struct:thread_param
98 struct thread_stat *stat = par->stats;
293 struct thread_stat *stat = par->stats;
360 par[i].stats = &stat[i];
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
httparchive.py 34 $ ./httparchive.py stats archive.wpr
37 $ ./httparchive.py stats --host www.example.com archive.wpr
266 def stats(self, command=None, host=None, full_path=None): member in class:HttpArchive
267 """Print stats about the archive for all URLs that match given params."""
274 stats = {
283 stats['Domains'][request.host] += 1
284 stats['HTTP_response_code'][self[request].status] += 1
290 stats['content_type'][str_content_type] += 1
294 stats['Documents'][request.host] += 1
296 print >>out, json.dumps(stats, indent=4
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 260 AllocatorStats stats; local
261 stats.Init();
262 a->AllocateBatch(&stats, &cache, 32);
287 AllocatorStats stats; local
288 stats.Init();
289 a->AllocateBatch(&stats, &cache, 32);
304 AllocatorStats stats; local
305 stats.Init();
306 void *x = a.Allocate(&stats, 1 << 20, 1);
308 a.Deallocate(&stats, x)
319 AllocatorStats stats; local
338 AllocatorStats stats; local
710 AllocatorStats stats; local
737 AllocatorStats stats; local
    [all...]
  /external/e2fsprogs/e2fsck/
journal.c 879 io_stats stats = 0; local
900 ctx->fs->io->manager->get_stats(ctx->fs->io, &stats);
901 if (stats && stats->bytes_written)
902 kbytes_written = stats->bytes_written >> 10;
  /external/fonttools/Lib/fontTools/ttLib/tables/
otBase.py 46 stats = sorted([(v, k) for k, v in cachingStats.items()]) variable in class:BaseTTXConverter.decompile.GlobalState
47 stats.reverse()
49 for v, k in stats:
53 print("---", len(stats))
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
StatisticsTool.java 164 NGramList stats = new NGramList(inputFile); local
178 stats.put(value);
186 return stats;
283 NGramList stats = dumpNGrams(); local
284 ArrayList statKeys = new ArrayList(stats.keys());
309 return stats;
  /external/iproute2/ip/
ipl2tp.c 85 struct l2tp_stats stats; member in struct:l2tp_data
338 data->stats.data_tx_packets = rta_getattr_u64(tb[L2TP_ATTR_TX_PACKETS]);
340 data->stats.data_tx_bytes = rta_getattr_u64(tb[L2TP_ATTR_TX_BYTES]);
342 data->stats.data_tx_errors = rta_getattr_u64(tb[L2TP_ATTR_TX_ERRORS]);
344 data->stats.data_rx_packets = rta_getattr_u64(tb[L2TP_ATTR_RX_PACKETS]);
346 data->stats.data_rx_bytes = rta_getattr_u64(tb[L2TP_ATTR_RX_BYTES]);
348 data->stats.data_rx_errors = rta_getattr_u64(tb[L2TP_ATTR_RX_ERRORS]);
350 data->stats.data_rx_oos_discards = rta_getattr_u64(tb[L2TP_ATTR_RX_SEQ_DISCARDS]);
352 data->stats.data_rx_oos_packets = rta_getattr_u64(tb[L2TP_ATTR_RX_OOS_PACKETS]);
  /external/libchrome/base/test/
trace_event_analyzer_unittest.cc 719 RateStats stats; local
729 ASSERT_TRUE(GetRateStats(event_ptrs, &stats, NULL));
730 EXPECT_EQ(little_delta, stats.mean_us);
731 EXPECT_EQ(little_delta, stats.min_us);
732 EXPECT_EQ(little_delta, stats.max_us);
733 EXPECT_EQ(0.0, stats.standard_deviation_us);
740 ASSERT_TRUE(GetRateStats(event_ptrs, &stats, NULL));
741 EXPECT_LT(little_delta, stats.mean_us);
742 EXPECT_EQ(little_delta, stats.min_us);
743 EXPECT_EQ(big_delta, stats.max_us)
    [all...]
  /external/ppp/pppd/include/net/
if_ppp.h 103 struct ppp_stats stats; member in struct:ifpppstatsreq
108 struct ppp_comp_stats stats; member in struct:ifpppcstatsreq
  /external/testng/src/main/java/org/testng/reporters/
JqReporter.java 86 header.push(D, C, "stats");
88 String stats = String.format("%s, %d failed, %d skipped, %d passed", local
92 // Method stats
94 header.addOptional(S, stats, C, "method-stats");
100 C, "test-stats"));
  /external/webrtc/webrtc/call/
call.cc 80 Stats GetStats() const override;
494 Call::Stats Call::GetStats() const {
498 Stats stats; local
507 stats.send_bandwidth_bps = send_bandwidth;
508 stats.recv_bandwidth_bps = recv_bandwidth;
509 stats.pacer_delay_ms = congestion_controller_->GetPacerQueuingDelayMs();
516 stats.rtt_ms = rtt_ms;
519 return stats;
594 // We only update these stats if we have send streams, and assume tha
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimator_unittest_helper.cc 593 ReceiveBandwidthEstimatorStats stats; local
594 EXPECT_TRUE(bitrate_estimator_->GetStats(&stats));
595 EXPECT_EQ(1U, stats.recent_propagation_time_delta_ms.size());
596 EXPECT_EQ(kFrameIntervalMs, stats.recent_propagation_time_delta_ms[0]);
597 EXPECT_EQ(1U, stats.recent_arrival_time_ms.size());
598 EXPECT_EQ(kFrameIntervalMs, stats.total_propagation_time_delta_ms);
610 EXPECT_TRUE(bitrate_estimator_->GetStats(&stats));
611 EXPECT_EQ(0, stats.total_propagation_time_delta_ms);
613 // Send more than 1000 frames and make sure the stats queues stays within
622 EXPECT_TRUE(bitrate_estimator_->GetStats(&stats));
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_framework_unittest.cc 90 Stats<int32_t> stats; local
91 EXPECT_EQ(0, stats.GetMean());
93 stats.Push(1);
94 stats.Push(3);
95 EXPECT_EQ(2, stats.GetMean());
98 stats.Push(-3);
99 EXPECT_EQ(0, stats.GetMean());
103 Stats<int32_t> stats; local
118 Stats<int32_t> stats; local
132 Stats<int32_t> stats; local
    [all...]
  /external/webrtc/webrtc/p2p/stunprober/
stunprober.cc 435 bool StunProber::GetStats(StunProber::Stats* prob_stats) const {
441 StunProber::Stats stats; local
463 ++stats.raw_num_request_sent;
479 stats.srflx_addrs.insert(request->srflx_addr.ToString());
509 stats.shared_socket_mode =
512 if (stats.shared_socket_mode && nat_type == NATTYPE_INVALID) {
518 if (stats.srflx_addrs.size() &&
519 !srflx_addr.FromString(*(stats.srflx_addrs.begin()))) {
525 stats.host_ip = net->GetBestIP().ToString()
    [all...]
  /external/webrtc/webrtc/video/
send_statistics_proxy.cc 193 VideoSendStream::Stats SendStatisticsProxy::GetStats() {
234 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
235 if (stats == nullptr)
238 stats->total_bitrate_bps = 0;
239 stats->retransmit_bitrate_bps = 0;
240 stats->height = 0;
241 stats->width = 0;
262 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
263 if (stats == nullptr)
266 stats->width = encoded_image._encodedWidth
335 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
345 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
359 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
370 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
381 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
392 VideoSendStream::StreamStats* stats = GetStatsEntry(ssrc); local
    [all...]
  /external/zopfli/src/zopfli/
squeeze.c 42 static void InitStats(SymbolStats* stats) {
43 memset(stats->litlens, 0, 288 * sizeof(stats->litlens[0]));
44 memset(stats->dists, 0, 32 * sizeof(stats->dists[0]));
46 memset(stats->ll_symbols, 0, 288 * sizeof(stats->ll_symbols[0]));
47 memset(stats->d_symbols, 0, 32 * sizeof(stats->d_symbols[0]));
98 static void RandomizeStatFreqs(RanState* state, SymbolStats* stats) {
142 SymbolStats* stats = (SymbolStats*)context; local
457 SymbolStats stats, beststats, laststats; local
    [all...]

Completed in 710 milliseconds

<<11121314151617181920>>