Home
last modified time | relevance | path

Searched refs:counters (Results 1 – 25 of 30) sorted by relevance

12

/frameworks/base/core/java/android/net/metrics/
DWakeupStats.java132 private static void increment(SparseIntArray counters, int key) { in increment() argument
133 int newcount = counters.get(key, 0) + 1; in increment()
134 counters.put(key, newcount); in increment()
/frameworks/proto_logging/stats/atoms/threadnetwork/
Dthreadnetwork_atoms.proto157 // The counters for inbound unicast packets
160 // The counters for inbound multicast packets
163 // The counters for outbound unicast packets
166 // The counters for outbound multicast packets
172 // Error counters for NAT64 translator on the border router
249 // The counters of response codes sent by the SRP server
274 // The counters of response codes sent by the DNS server
308 // The response counters of host registrations
311 // The response counters of service registrations
314 // The response counters of host resolutions
[all …]
/frameworks/native/services/inputflinger/reader/mapper/
DTouchpadInputMapper.cpp200 for (auto& [id, counters] : mCounters) { in produceAtomsLocked()
204 counters.fingers, counters.palms, counters.twoFingerSwipeGestures, in produceAtomsLocked()
205 counters.threeFingerSwipeGestures, counters.fourFingerSwipeGestures, in produceAtomsLocked()
206 counters.pinchGestures); in produceAtomsLocked()
/frameworks/base/tests/FlickerTests/AppLaunch/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/libs/WindowManager/Shell/tests/flicker/bubble/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/tests/FlickerTests/Rotation/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/libs/WindowManager/Shell/tests/flicker/pip/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/tests/FlickerTests/Notification/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/tests/FlickerTests/ActivityEmbedding/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/tests/FlickerTests/IME/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/tests/FlickerTests/FlickerService/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/tests/FlickerTests/AppClose/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/libs/WindowManager/Shell/tests/flicker/appcompat/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/tests/FlickerTests/QuickSwitch/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/libs/WindowManager/Shell/tests/flicker/service/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/libs/WindowManager/Shell/tests/flicker/splitscreen/trace_config/
Dtrace_config.textproto40 # polled per-process memory counters and process/thread names.
41 # If you don't want the polled counters, remove the "process_stats_config"
/frameworks/base/libs/hwui/tests/macrobench/
DTestSceneRunner.cpp91 report.counters["FPS"] = opts.frameCount / durationInS; in outputBenchmarkReport()
95 report.counters["Rendering RAM"] = Counter{static_cast<double>(cpuUsage + gpuUsage), in outputBenchmarkReport()
/frameworks/av/media/module/libmediatranscoding/transcoder/benchmark/
DMediaSampleReaderBenchmark.cpp76 state.counters["VideoFrameRate"] = in ReadMediaSamples()
DMediaTranscoderBenchmark.cpp173 state.counters[PARAM_VIDEO_FRAME_RATE] = benchmark::Counter( in TranscodeMediaFile()
626 auto frameRate = run.counters.find(PARAM_VIDEO_FRAME_RATE); in PrintRunData()
627 if (frameRate == run.counters.end()) { in PrintRunData()
DMediaTrackTranscoderBenchmark.cpp390 state.counters["FrameRate"] = benchmark::Counter(sampleCount, benchmark::Counter::kIsRate); in BenchmarkTranscoder()
/frameworks/libs/binary_translation/backend/x86_64/
Dloop_guest_context_optimizer_test.cc960 auto counters = GetSortedOffsetCounters(&machine_ir, &loop); in TEST() local
961 EXPECT_EQ(counters.size(), 3UL); in TEST()
962 EXPECT_EQ(std::get<0>(counters[0]), GetThreadStateRegOffset(0)); in TEST()
963 EXPECT_EQ(std::get<1>(counters[0]), 3); in TEST()
965 EXPECT_EQ(std::get<0>(counters[1]), GetThreadStateRegOffset(2)); in TEST()
966 EXPECT_EQ(std::get<1>(counters[1]), 2); in TEST()
968 EXPECT_EQ(std::get<0>(counters[2]), GetThreadStateRegOffset(1)); in TEST()
969 EXPECT_EQ(std::get<1>(counters[2]), 1); in TEST()
/frameworks/proto_logging/stats/atoms/corenetworking/networkstack/
Dapf_extension_atoms.proto61 // The values of all APF counters.
/frameworks/base/services/core/java/com/android/server/power/stats/wakeups/
DCpuWakeupStats.java354 final long counters = attributionStats.get(attribution.keyAt(subsystemIdx), in dump() local
356 int attributed = IntPair.first(counters); in dump()
357 final int total = IntPair.second(counters) + 1; in dump()
/frameworks/proto_logging/stats/enums/bluetooth/
Denums.proto180 // Reserver smaller counters for very important bt features
/frameworks/base/proto/src/
Dipconnectivity.proto237 // Represents a collections of DNS lookup latencies and counters for a
397 // List of hardware counters collected by the APF interpreter.

12