Searched refs:tetherStatsList (Results 1 – 4 of 4) sorted by relevance
95 final TetherStatsParcel[] tetherStatsList; in tetherOffloadGetStats() local100 tetherStatsList = mNetd.tetherOffloadGetStats(); in tetherOffloadGetStats()106 return toTetherStatsValueSparseArray(tetherStatsList); in tetherOffloadGetStats()123 final SparseArray<TetherStatsValue> tetherStatsList = new SparseArray<TetherStatsValue>(); in toTetherStatsValueSparseArray() local126 tetherStatsList.put(p.ifIndex, new TetherStatsValue(p.rxPackets, p.rxBytes, in toTetherStatsValueSparseArray()130 return tetherStatsList; in toTetherStatsValueSparseArray()
231 final SparseArray<TetherStatsValue> tetherStatsList = new SparseArray<TetherStatsValue>(); in tetherOffloadGetStats() local235 mBpfStatsMap.forEach((key, value) -> tetherStatsList.put((int) key.ifindex, value)); in tetherOffloadGetStats()240 return tetherStatsList; in tetherOffloadGetStats()
2129 SparseArray<TetherStatsValue> tetherStatsList = new SparseArray<TetherStatsValue>(); in maybeClearLimit() local2130 tetherStatsList.put(upstreamIfindex, statsValue); in maybeClearLimit()2133 updateQuotaAndStatsFromSnapshot(tetherStatsList); in maybeClearLimit()2224 @NonNull final SparseArray<TetherStatsValue> tetherStatsList) { in updateQuotaAndStatsFromSnapshot()2226 for (int i = 0; i < tetherStatsList.size(); i++) { in updateQuotaAndStatsFromSnapshot()2227 final Integer ifIndex = tetherStatsList.keyAt(i); in updateQuotaAndStatsFromSnapshot()2228 final TetherStatsValue tetherStats = tetherStatsList.valueAt(i); in updateQuotaAndStatsFromSnapshot()2261 final SparseArray<TetherStatsValue> tetherStatsList = in updateForwardedStats() local2264 if (tetherStatsList == null) { in updateForwardedStats()2269 updateQuotaAndStatsFromSnapshot(tetherStatsList); in updateForwardedStats()
727 private void updateStatsEntriesAndWaitForUpdate(@NonNull TetherStatsParcel[] tetherStatsList) in updateStatsEntriesAndWaitForUpdate() argument730 for (TetherStatsParcel stats : tetherStatsList) { in updateStatsEntriesAndWaitForUpdate()734 when(mNetd.tetherOffloadGetStats()).thenReturn(tetherStatsList); in updateStatsEntriesAndWaitForUpdate()