/aosp12/packages/modules/StatsD/statsd/tests/external/ |
H A D | StatsPuller_test.cpp | 95 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 D | StatsPullerManager_test.cpp | 104 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 D | StatsCallbackPuller_test.cpp | 199 EXPECT_FALSE(pullerManager->Pull(pullTagId, {uid}, startTimeNs, &dataHolder)); in TEST_F()
|
/aosp12/system/bt/gd/common/ |
H A D | circular_buffer_test.cc | 41 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 D | circular_buffer.h | 36 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 D | metrics_test_helper.h | 41 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 D | GaugeMetricProducer_test.cpp | 134 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 D | ValueMetricProducer_test.cpp | 356 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 D | StatsPullerManager.h | 104 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 D | StatsPullerManager.cpp | 94 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 D | StatsPuller.h | 54 bool Pull(const int64_t eventTimeNs, std::vector<std::shared_ptr<LogEvent>>* data);
|
H A D | StatsPuller.cpp | 45 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 D | ShellSubscriber_test.cpp | 193 EXPECT_CALL(*pullerManager, Pull(10016, uids, _, _)) in TEST()
|
/aosp12/system/bt/gd/btaa/linux_generic/ |
H A D | attribution_processor.cc | 115 …::vector<common::TimestampedEntry<WakeupDescriptor>> wakeup_aggregator = wakeup_aggregator_.Pull(); in Dump()
|
/aosp12/packages/modules/StatsD/statsd/src/shell/ |
H A D | ShellSubscriber.cpp | 149 mPullerMgr->Pull(pullInfo.mPullerMatcher.atom_id(), uids, nowNanos, &data); in pullAndSendHeartbeats()
|
/aosp12/frameworks/base/services/tests/servicestests/assets/PackageSignaturesTest/xml/ |
H A D | README | 14 4. Pull the packages.xml file containing the new entry for the APK from the device:
|
/aosp12/packages/services/Car/tests/BugReportApp/ |
H A D | README.md | 84 5. Pull collected zip files from the device:
|
/aosp12/system/bt/gd/hal/ |
H A D | snoop_logger.cc | 378 DumpSnoozLogToFile(btsnooz_buffer_.Pull()); in GetDumpsysData()
|
/aosp12/packages/modules/StatsD/statsd/src/metrics/ |
H A D | GaugeMetricProducer.cpp | 386 if (!mPullerManager->Pull(mPullTagId, mConfigKey, timestampNs, &allData)) { in pullAndMatchEventsLocked()
|
H A D | ValueMetricProducer.cpp | 608 if (!mPullerManager->Pull(mPullTagId, mConfigKey, timestampNs, &allData)) { in pullAndMatchEventsLocked()
|
/aosp12/packages/modules/StatsD/statsd/src/ |
H A D | StatsService.cpp | 829 if (mPullerManager->Pull(s, uids, getElapsedRealtimeNs(), &stats)) { in cmd_print_pulled_metrics()
|
/aosp12/system/bt/main/shim/ |
H A D | acl.cc | 1001 std::vector<Record> history = btm_cb.history_->Pull(); in DumpsysBtm()
|
/aosp12/hardware/interfaces/radio/1.0/ |
H A D | IRadio.hal | 1486 * Pull LCE service for capacity information.
|
/aosp12/frameworks/base/proto/src/metrics_constants/ |
H A D | metrics_constants.proto | 1230 // ACTION: Lockscreen > Pull shade open
|
/aosp12/frameworks/proto_logging/stats/ |
H A D | atoms.proto | 16768 * 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
|