Home | History | Annotate | Download | only in item

Lines Matching defs:rxBytes

42         public int rxBytes = 0;
100 * @param rxBytes the number of received bytes
103 public void addRow(int uid, int rxBytes, int txBytes) {
105 row.rxBytes = rxBytes;
112 * It adds rxBytes and txBytes to the previously added row.
116 * @param rxBytes the number of received bytes
120 public void updateRow(int uid, int rxBytes, int txBytes) {
126 row.rxBytes += rxBytes;
141 return mRows.get(uid).rxBytes;