Searched refs:mShares (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppBatch.java75 private final ArrayList<BluetoothOppShareInfo> mShares; field in class:BluetoothOppBatch
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
[all...]
H A DBluetoothOppService.java100 private ArrayList<BluetoothOppShareInfo> mShares; field in class:BluetoothOppService
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
[all...]

Completed in 52 milliseconds