Searched refs:pullAtomId (Results 1 – 6 of 6) sorted by relevance
/packages/modules/StatsD/statsd/src/guardrail/ |
D | StatsdStats.h | 490 void updateMinPullIntervalSec(int pullAtomId, long intervalSec); 495 void notePull(int pullAtomId); 500 void notePullFromCache(int pullAtomId); 505 void notePullDataError(int pullAtomId); 511 void notePullTime(int pullAtomId, int64_t pullTimeNs); 517 void notePullDelay(int pullAtomId, int64_t pullDelayNs); 522 void notePullTimeout(int pullAtomId, int64_t pullUptimeMillis, int64_t pullElapsedMillis); 527 void notePullExceedMaxDelay(int pullAtomId);
|
D | StatsdStats.cpp | 691 void StatsdStats::updateMinPullIntervalSec(int pullAtomId, long intervalSec) { in updateMinPullIntervalSec() argument 693 mPulledAtomStats[pullAtomId].minPullIntervalSec = in updateMinPullIntervalSec() 694 std::min(mPulledAtomStats[pullAtomId].minPullIntervalSec, intervalSec); in updateMinPullIntervalSec() 697 void StatsdStats::notePull(int pullAtomId) { in notePull() argument 699 mPulledAtomStats[pullAtomId].totalPull++; in notePull() 702 void StatsdStats::notePullFromCache(int pullAtomId) { in notePullFromCache() argument 704 mPulledAtomStats[pullAtomId].totalPullFromCache++; in notePullFromCache() 707 void StatsdStats::notePullTime(int pullAtomId, int64_t pullTimeNs) { in notePullTime() argument 709 auto& pullStats = mPulledAtomStats[pullAtomId]; in notePullTime() 716 void StatsdStats::notePullDelay(int pullAtomId, int64_t pullDelayNs) { in notePullDelay() argument [all …]
|
/packages/modules/StatsD/statsd/src/metrics/ |
D | ValueMetricProducer.h | 71 const int pullAtomId; member
|
D | ValueMetricProducer.cpp | 92 mPullAtomId(pullOptions.pullAtomId), in ValueMetricProducer()
|
/packages/modules/StatsD/statsd/tests/metrics/ |
D | NumericValueMetricProducer_test.cpp | 110 const int pullAtomId = tagId) { in createValueProducerNoConditions() argument 111 return createValueProducer(pullerManager, metric, pullAtomId); in createValueProducerNoConditions() 116 ConditionState conditionAfterFirstBucketPrepared, const int pullAtomId = tagId) { in createValueProducerWithCondition() argument 117 return createValueProducer(pullerManager, metric, pullAtomId, in createValueProducerWithCondition() 125 const int pullAtomId = tagId) { in createValueProducerWithState() argument 126 return createValueProducer(pullerManager, metric, pullAtomId, in createValueProducerWithState() 135 ConditionState conditionAfterFirstBucketPrepared, const int pullAtomId = tagId) { in createValueProducerWithConditionAndState() argument 136 return createValueProducer(pullerManager, metric, pullAtomId, in createValueProducerWithConditionAndState() 143 const int pullAtomId = tagId) { in createValueProducerWithSampling() argument 145 pullerManager, metric, pullAtomId, /*conditionAfterFirstBucketPrepared=*/nullopt, in createValueProducerWithSampling() [all …]
|
/packages/modules/StatsD/statsd/tests/ |
D | statsd_test_util.cpp | 1511 const int pullAtomId = isPulled ? atomId : -1; in createNumericValueMetricProducer() local 1513 configKey, metric, protoHash, {pullAtomId, pullerManager}, in createNumericValueMetricProducer()
|