Home
last modified time | relevance | path

Searched refs:Pull (Results 1 – 25 of 28) sorted by relevance

12

/aosp12/packages/modules/StatsD/statsd/tests/external/
H A DStatsPuller_test.cpp95 EXPECT_TRUE(puller.Pull(getElapsedRealtimeNs(), &dataHolder)); in TEST_F()
109 EXPECT_TRUE(puller.Pull(getElapsedRealtimeNs(), &dataHolder)); in TEST_F()
123 EXPECT_TRUE(puller.Pull(getElapsedRealtimeNs(), &dataHolder)); in TEST_F()
137 EXPECT_FALSE(puller.Pull(getElapsedRealtimeNs(), &dataHolder)); in TEST_F()
195 EXPECT_TRUE(puller.Pull(getElapsedRealtimeNs(), &dataHolder)); in TEST_F()
241 EXPECT_TRUE(puller.Pull(eventTimeNs, &dataHolder)); in TEST_F()
256 EXPECT_TRUE(puller.Pull(eventTimeNs, &dataHolder)); in TEST_F()
273 EXPECT_FALSE(puller.Pull(eventTimeNs, &dataHolder)); in TEST_F()
285 EXPECT_FALSE(puller.Pull(eventTimeNs, &dataHolder)); in TEST_F()
296 EXPECT_FALSE(puller.Pull(eventTimeNs, &dataHolder)); in TEST_F()
[all …]
H A DStatsPullerManager_test.cpp104 EXPECT_FALSE(pullerManager->Pull(pullTagId1, {unregisteredUid}, /*timestamp =*/1, &data)); in TEST()
111 EXPECT_TRUE(pullerManager->Pull(pullTagId1, {uid1}, /*timestamp =*/1, &data)); in TEST()
124 EXPECT_FALSE(pullerManager->Pull(pullTagId1, badConfigKey, /*timestamp =*/1, &data)); in TEST()
133 EXPECT_TRUE(pullerManager->Pull(pullTagId1, configKey, /*timestamp =*/1, &data)); in TEST()
145 EXPECT_FALSE(pullerManager->Pull(pullTagId2, configKey, /*timestamp =*/1, &data)); in TEST()
H A DStatsCallbackPuller_test.cpp199 EXPECT_FALSE(pullerManager->Pull(pullTagId, {uid}, startTimeNs, &dataHolder)); in TEST_F()
/aosp12/system/bt/gd/common/
H A Dcircular_buffer_test.cc41 auto vec = buffer.Pull(); in TEST()
47 auto vec2 = buffer.Pull(); in TEST()
65 auto vec2 = buffer.Pull(); in TEST()
77 auto vec = buffer.Pull(); in TEST()
96 auto vec = buffer.Pull(); in TEST()
H A Dcircular_buffer.h36 std::vector<T> Pull() const;
74 std::vector<TimestampedEntry<T>> Pull() const;
97 std::vector<T> bluetooth::common::CircularBuffer<T>::Pull() const { in Pull() function
122 …uct bluetooth::common::TimestampedEntry<T>> bluetooth::common::TimestampedCircularBuffer<T>::Pull()
124 return bluetooth::common::CircularBuffer<TimestampedEntry<T>>::Pull();
/aosp12/packages/modules/StatsD/statsd/tests/metrics/
H A Dmetrics_test_helper.h41 MOCK_METHOD4(Pull, bool(const int pullCode, const ConfigKey& key, const int64_t eventTimeNs,
43 MOCK_METHOD4(Pull, bool(const int pullCode, const vector<int32_t>& uids,
H A DGaugeMetricProducer_test.cpp134 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, bucketStartTimeNs, _)) in TEST()
302 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST_P()
377 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, bucketStartTimeNs, _)) in TEST()
426 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, conditionChangeNs, _)) in TEST()
509 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, sliceConditionChangeNs, _)) in TEST()
548 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, bucketStartTimeNs, _)) in TEST()
641 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST()
709 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST()
783 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, bucketStartTimeNs + 3, _)) in TEST()
H A DValueMetricProducer_test.cpp356 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST_P()
609 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST()
751 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST_P()
831 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST_P()
1061 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST()
1176 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST()
1240 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST()
1992 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST()
2032 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST()
2152 EXPECT_CALL(*pullerManager, Pull(tagId, kConfigKey, _, _)) in TEST()
[all …]
/aosp12/packages/modules/StatsD/statsd/src/external/
H A DStatsPullerManager.h104 virtual bool Pull(int tagId, const ConfigKey& configKey, const int64_t eventTimeNs,
108 virtual bool Pull(int tagId, const vector<int32_t>& uids, const int64_t eventTimeNs,
H A DStatsPullerManager.cpp94 bool StatsPullerManager::Pull(int tagId, const ConfigKey& configKey, const int64_t eventTimeNs, in Pull() function in android::os::statsd::StatsPullerManager
100 bool StatsPullerManager::Pull(int tagId, const vector<int32_t>& uids, const int64_t eventTimeNs, in Pull() function in android::os::statsd::StatsPullerManager
134 bool ret = pullerIt->second->Pull(eventTimeNs, data); in PullLocked()
H A DStatsPuller.h54 bool Pull(const int64_t eventTimeNs, std::vector<std::shared_ptr<LogEvent>>* data);
H A DStatsPuller.cpp45 bool StatsPuller::Pull(const int64_t eventTimeNs, std::vector<std::shared_ptr<LogEvent>>* data) { in Pull() function in android::os::statsd::StatsPuller
/aosp12/packages/modules/StatsD/statsd/tests/shell/
H A DShellSubscriber_test.cpp193 EXPECT_CALL(*pullerManager, Pull(10016, uids, _, _)) in TEST()
/aosp12/system/bt/gd/btaa/linux_generic/
H A Dattribution_processor.cc115 …::vector<common::TimestampedEntry<WakeupDescriptor>> wakeup_aggregator = wakeup_aggregator_.Pull(); in Dump()
/aosp12/packages/modules/StatsD/statsd/src/shell/
H A DShellSubscriber.cpp149 mPullerMgr->Pull(pullInfo.mPullerMatcher.atom_id(), uids, nowNanos, &data); in pullAndSendHeartbeats()
/aosp12/frameworks/base/services/tests/servicestests/assets/PackageSignaturesTest/xml/
H A DREADME14 4. Pull the packages.xml file containing the new entry for the APK from the device:
/aosp12/packages/services/Car/tests/BugReportApp/
H A DREADME.md84 5. Pull collected zip files from the device:
/aosp12/system/bt/gd/hal/
H A Dsnoop_logger.cc378 DumpSnoozLogToFile(btsnooz_buffer_.Pull()); in GetDumpsysData()
/aosp12/packages/modules/StatsD/statsd/src/metrics/
H A DGaugeMetricProducer.cpp386 if (!mPullerManager->Pull(mPullTagId, mConfigKey, timestampNs, &allData)) { in pullAndMatchEventsLocked()
H A DValueMetricProducer.cpp608 if (!mPullerManager->Pull(mPullTagId, mConfigKey, timestampNs, &allData)) { in pullAndMatchEventsLocked()
/aosp12/packages/modules/StatsD/statsd/src/
H A DStatsService.cpp829 if (mPullerManager->Pull(s, uids, getElapsedRealtimeNs(), &stats)) { in cmd_print_pulled_metrics()
/aosp12/system/bt/main/shim/
H A Dacl.cc1001 std::vector<Record> history = btm_cb.history_->Pull(); in DumpsysBtm()
/aosp12/hardware/interfaces/radio/1.0/
H A DIRadio.hal1486 * Pull LCE service for capacity information.
/aosp12/frameworks/base/proto/src/metrics_constants/
H A Dmetrics_constants.proto1230 // ACTION: Lockscreen > Pull shade open
/aosp12/frameworks/proto_logging/stats/
H A Datoms.proto16768 * Pull atom for the number of hibernated packages on the device for the given user.
16781 * Pull atom for total number of globally hibernated packages on the device and the storage savings

12