Lines Matching refs:period
33 uint64_t period = sample->period + sample->accumulated_period; in DisplayAccumulatedOverhead() local
35 double percentage = (total_period != 0) ? 100.0 * period / total_period : 0.0; in DisplayAccumulatedOverhead()
41 return android::base::StringPrintf("%" PRIu64, sample->period + sample->accumulated_period); in DisplayAccumulatedPeriod()
46 uint64_t period = sample->period; in DisplaySelfOverhead() local
48 double percentage = (total_period != 0) ? 100.0 * period / total_period : 0.0; in DisplaySelfOverhead()
64 BUILD_DISPLAY_UINT64_FUNCTION(DisplaySelfPeriod, period);
141 if (node->period + node->children_period != parent_period) { in DisplayCallGraphEntry()
143 100.0 * (node->period + node->children_period) / parent_period; in DisplayCallGraphEntry()
161 if (!node->children.empty() && node->period != 0) { in DisplayCallGraphEntry()
163 100.0 * node->period / (node->period + node->children_period)); in DisplayCallGraphEntry()
167 node->children_period + node->period, in DisplayCallGraphEntry()