Home
last modified time | relevance | path

Searched refs:event_count (Results 1 – 7 of 7) sorted by relevance

/system/extras/simpleperf/scripts/
Dreport_html.py73 self.event_count = 0
84 result['eventCount'] = self.event_count
85 processes = sorted(self.processes.values(), key=lambda a: a.event_count, reverse=True)
109 self.event_count = 0
124 result['eventCount'] = self.event_count
125 threads = sorted(self.threads.values(), key=lambda a: a.event_count, reverse=True)
131 self.event_count += process.event_count
150 self.event_count = 0
156 def add_callstack(self, event_count, callstack, build_addr_hit_map): argument
170 function.subtree_event_count += event_count
[all …]
/system/core/libappfuse/
DEpollController.cc27 bool EpollController::Wait(size_t event_count) { in Wait() argument
28 events_.resize(event_count); in Wait()
29 const int result = TEMP_FAILURE_RETRY(epoll_wait(poll_fd_, events_.data(), event_count, -1)); in Wait()
DFuseBridgeLoop.cc275 const size_t event_count = std::max<size_t>(bridge_count * 2, 1); in Wait() local
276 if (!EpollController::Wait(event_count)) { in Wait()
/system/core/libappfuse/include/libappfuse/
DEpollController.h33 bool Wait(size_t event_count);
/system/extras/simpleperf/
Dreport_sample.proto48 // event_count field shows the count of the events (belong to the sample's event type)
51 // sample, the event_count is the count of events from the last lost sample.
52 optional uint64 event_count = 4; field
Dcmd_report_sample.cpp342 FprintIndented(report_fp_, 1, "event_count: %" PRIu64 "\n", sample.event_count()); in DumpProtobufReport()
/system/core/toolbox/
Dgetevent.c527 int event_count = 0; in getevent_main() local
588 event_count = atoi(optarg); in getevent_main()
684 if(event_count && --event_count == 0) in getevent_main()