HomeSort by relevance Sort by last modified time
    Searched defs:NetworkStats (Results 1 - 2 of 2) sorted by null

  /frameworks/base/services/java/com/android/server/net/
NetworkStatsCollection.java 19 import static android.net.NetworkStats.IFACE_ALL;
20 import static android.net.NetworkStats.SET_ALL;
21 import static android.net.NetworkStats.SET_DEFAULT;
22 import static android.net.NetworkStats.TAG_NONE;
23 import static android.net.NetworkStats.UID_ALL;
27 import android.net.NetworkStats;
163 public NetworkStats getSummary(NetworkTemplate template, long start, long end) {
166 final NetworkStats stats = new NetworkStats(end - start, 24);
167 final NetworkStats.Entry entry = new NetworkStats.Entry()
    [all...]
  /frameworks/base/core/java/android/net/
NetworkStats.java 42 public class NetworkStats implements Parcelable {
152 public NetworkStats(long elapsedRealtime, int initialSize) {
166 public NetworkStats(Parcel parcel) {
196 public NetworkStats clone() {
197 final NetworkStats clone = new NetworkStats(elapsedRealtime, size);
198 NetworkStats.Entry entry = null;
207 public NetworkStats addIfaceValues(
214 public NetworkStats addValues(String iface, int uid, int set, int tag, long rxBytes,
224 public NetworkStats addValues(Entry entry)
    [all...]

Completed in 122 milliseconds