Searched refs:mArrayList (Results 1 – 2 of 2) sorted by relevance
25 private ArrayList<byte[]> mArrayList; field in ByteArrayRingBuffer38 mArrayList = new ArrayList<byte[]>(); in ByteArrayRingBuffer()58 mArrayList.add(newData); in appendBuffer()69 return mArrayList.get(i); in getBuffer()77 return mArrayList.size(); in getNumBuffers()92 while (i < mArrayList.size() && newBytesUsed > sizeBytes) { in pruneToSize()93 newBytesUsed -= mArrayList.get(i).length; in pruneToSize()96 mArrayList.subList(0, i).clear(); in pruneToSize()
479 private ArrayList<E> mArrayList; field in WifiDiagnostics.LimitedCircularArray482 mArrayList = new ArrayList<E>(max); in LimitedCircularArray()487 if (mArrayList.size() >= mMax) in addLast()488 mArrayList.remove(0); in addLast()489 mArrayList.add(e); in addLast()493 return mArrayList.size(); in size()497 return mArrayList.get(i); in get()