Searched defs:NetworkQuotaInfo (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/net/
H A DNetworkQuotaInfo.java27 public class NetworkQuotaInfo implements Parcelable { class in inherits:Parcelable
35 public NetworkQuotaInfo(long estimatedBytes, long softLimitBytes, long hardLimitBytes) { method in class:NetworkQuotaInfo
42 public NetworkQuotaInfo(Parcel in) { method in class:NetworkQuotaInfo
72 public static final Creator<NetworkQuotaInfo> CREATOR = new Creator<NetworkQuotaInfo>() {
74 public NetworkQuotaInfo createFromParcel(Parcel in) {
75 return new NetworkQuotaInfo(in);
79 public NetworkQuotaInfo[] newArray(int size) {
80 return new NetworkQuotaInfo[size];

Completed in 127 milliseconds