Home
last modified time | relevance | path

Searched refs:GnssBatching (Results 1 – 5 of 5) sorted by relevance

/device/generic/goldfish/gnss/
DGnssBatching.cpp34 GnssBatching::~GnssBatching() { in ~GnssBatching()
38 ndk::ScopedAStatus GnssBatching::init(const std::shared_ptr<IGnssBatchingCallback>& callback) { in init()
51 ndk::ScopedAStatus GnssBatching::getBatchSize(int* size) { in getBatchSize()
56 ndk::ScopedAStatus GnssBatching::start(const Options& options) { in start()
88 ndk::ScopedAStatus GnssBatching::flush() { in flush()
97 ndk::ScopedAStatus GnssBatching::stop() { in stop()
102 ndk::ScopedAStatus GnssBatching::cleanup() { in cleanup()
111 void GnssBatching::onGnssLocationCb(GnssLocation location) { in onGnssLocationCb()
116 void GnssBatching::stopImpl() { in stopImpl()
135 void GnssBatching::batchLocationLocked(GnssLocation location, in batchLocationLocked()
[all …]
DGnssBatching.h30 struct GnssBatching : public BnGnssBatching { struct
31 ~GnssBatching();
DAndroid.bp36 "GnssBatching.cpp",
DGnss.h99 const std::shared_ptr<GnssBatching> mGnssBatching;
DGnss.cpp44 : mGnssBatching(ndk::SharedRefBase::make<GnssBatching>()) in Gnss()