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);
127 mShares.add(info);
137 * 2) Go through mShares list and mark all incomplete share as CANCELED status
149 for (int i = mShares.size() - 1; i >= 0; i--) {
150 BluetoothOppShareInfo info = mShares.get(i);
163 mShares.clear();
168 return mShares.contains(info);
173 return (mShares
[all...]
H A DBluetoothOppService.java118 private ArrayList<BluetoothOppShareInfo> mShares; field in class:BluetoothOppService
197 mShares = Lists.newArrayList();
264 if (mShares.size() > 0) {
266 for (BluetoothOppShareInfo info : mShares) {
473 if (mShares != null) {
474 mShares.clear();
626 while (!isAfterLast || arrayPos < mShares.size() && mListenStarted) {
630 if (mShares.size() != 0) {
632 Log.v(TAG, "Array update: trimming " + mShares.get(arrayPos).mId
644 if (arrayPos == mShares
[all...]

Completed in 139 milliseconds