HomeSort by relevance Sort by last modified time
    Searched full:mshares (Results 1 - 2 of 2) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppBatch.java 75 private final ArrayList<BluetoothOppShareInfo> mShares;
108 mShares = Lists.newArrayList();
113 mShares.add(info);
126 mShares.add(info);
155 * 2) Go through mShares list and mark all incomplete share as CANCELED status
165 for (int i = mShares.size() - 1; i >= 0; i--) {
166 BluetoothOppShareInfo info = mShares.get(i);
177 mShares.clear();
182 return mShares.contains(info);
187 return (mShares.size() == 0)
    [all...]
BluetoothOppService.java 100 private ArrayList<BluetoothOppShareInfo> mShares;
152 mShares = Lists.newArrayList();
352 if(mShares != null) {
353 mShares.clear();
468 while (!isAfterLast || arrayPos < mShares.size()) {
473 if (mShares.size() != 0)
475 mShares.get(arrayPos).mId + " @ " + arrayPos);
484 if (arrayPos == mShares.size()) {
502 if (mShares.size() != 0)
503 arrayId = mShares.get(arrayPos).mId
    [all...]

Completed in 91 milliseconds