Lines Matching refs:set

53     /** {@link #set} value when all sets combined, not including debug sets. */
55 /** {@link #set} value where background data is accounted. */
57 /** {@link #set} value where foreground data is accounted. */
59 /** All {@link #set} value greater than SET_DEBUG_START are debug {@link #set} values. */
61 /** Debug {@link #set} value when the VPN stats are moved in. */
63 /** Debug {@link #set} value when the VPN stats are moved out of a vpn UID. */
80 private int[] set;
91 public int set;
108 public Entry(String iface, int uid, int set, int tag, long rxBytes, long rxPackets,
112 this.set = set;
143 builder.append(" set=").append(setToString(set));
157 return uid == e.uid && set == e.set && tag == e.tag && rxBytes == e.rxBytes
173 this.set = new int[initialSize];
185 this.set = EmptyArray.INT;
201 set = parcel.createIntArray();
217 dest.writeIntArray(set);
245 public NetworkStats addValues(String iface, int uid, int set, int tag, long rxBytes,
248 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
260 set = Arrays.copyOf(set, newLength);
272 set[size] = entry.set;
291 entry.set = set[i];
333 public NetworkStats combineValues(String iface, int uid, int set, int tag, long rxBytes,
336 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
345 final int i = findIndex(entry.iface, entry.uid, entry.set, entry.tag);
373 public int findIndex(String iface, int uid, int set, int tag) {
375 if (uid == this.uid[i] && set == this.set[i] && tag == this.tag[i]
388 public int findIndexHinted(String iface, int uid, int set, int tag, int hintIndex) {
400 if (uid == this.uid[i] && set == this.set[i] && tag == this.tag[i]
415 final int j = stats.findIndex(iface[i], uid[i], set[i], tag[i]);
503 entry.set = SET_ALL;
597 entry.set = left.set[i];
601 final int j = right.findIndexHinted(entry.iface, entry.uid, entry.set, entry.tag, i);
645 entry.set = SET_ALL;
673 entry.set = SET_ALL;
718 pw.print(" set="); pw.print(setToString(set[i]));
729 * Return text description of {@link #set} value.
731 public static String setToString(int set) {
732 switch (set) {
749 * Return text description of {@link #set} value.
751 public static String setToCheckinString(int set) {
752 switch (set) {
872 } if (recycle.set == SET_DBG_VPN_IN || recycle.set == SET_DBG_VPN_OUT) {
934 tmpEntry.set = set[i];
939 tmpEntry.set = SET_DBG_VPN_IN;
950 moved.set = SET_DBG_VPN_OUT;