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 76 private final ArrayList<BluetoothOppShareInfo> mShares;
109 mShares = Lists.newArrayList();
114 mShares.add(info);
127 mShares.add(info);
156 * 2) Go through mShares list and mark all incomplete share as CANCELED status
166 for (int i = mShares.size() - 1; i >= 0; i--) {
167 BluetoothOppShareInfo info = mShares.get(i);
178 mShares.clear();
183 return mShares.contains(info);
188 return (mShares.size() == 0)
    [all...]
BluetoothOppService.java 102 private ArrayList<BluetoothOppShareInfo> mShares;
154 mShares = Lists.newArrayList();
432 while (!isAfterLast || arrayPos < mShares.size()) {
438 mShares.get(arrayPos).mId + " @ " + arrayPos);
447 if (arrayPos == mShares.size()) {
464 int arrayId = mShares.get(arrayPos).mId;
557 mShares.add(arrayPos, info);
653 BluetoothOppShareInfo info = mShares.get(arrayPos);
    [all...]

Completed in 30 milliseconds