Home | History | Annotate | Download | only in item

Lines Matching defs:txBytes

43         public int txBytes = 0;
101 * @param txBytes the number of sent bytes
103 public void addRow(int uid, int rxBytes, int txBytes) {
106 row.txBytes = txBytes;
112 * It adds rxBytes and txBytes to the previously added row.
117 * @param txBytes the number of sent bytes
120 public void updateRow(int uid, int rxBytes, int txBytes) {
127 row.txBytes += txBytes;
148 return mRows.get(uid).txBytes;