Home
last modified time | relevance | path

Searched refs:mBatchedLocations (Results 1 – 2 of 2) sorted by relevance

/hardware/interfaces/gnss/aidl/default/
DGnssBatching.cpp37 mBatchedLocations(std::vector<GnssLocation>()) {} in GnssBatching()
83 std::vector<GnssLocation> copy = std::vector<GnssLocation>(mBatchedLocations); in flush()
92 mBatchedLocations.clear(); in flush()
119 if (mBatchedLocations.size() > BATCH_SIZE) { in batchLocation()
120 mBatchedLocations.erase(mBatchedLocations.begin()); in batchLocation()
122 mBatchedLocations.push_back(location); in batchLocation()
123 if (mWakeUpOnFifoFull && mBatchedLocations.size() == BATCH_SIZE) { in batchLocation()
DGnssBatching.h51 std::vector<GnssLocation> mBatchedLocations; member