Home
last modified time | relevance | path

Searched refs:nextBatch (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
DSyncMessagesAction.java388 final SyncMessagesAction nextBatch = in processBackgroundResponse() local
393 requestBackgroundWork(nextBatch); in processBackgroundResponse()
448 final SyncMessagesAction nextBatch = in processBackgroundResponse() local
454 requestBackgroundWork(nextBatch); in processBackgroundResponse()
475 final SyncMessagesAction nextBatch = in processBackgroundResponse() local
478 requestBackgroundWork(nextBatch); in processBackgroundResponse()
485 final SyncMessagesAction nextBatch = in processBackgroundResponse() local
489 requestBackgroundWork(nextBatch); in processBackgroundResponse()
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppService.java1014 for (BluetoothOppBatch nextBatch : mBatches) { in removeBatch()
1016 if (nextBatch.mStatus == Constants.BATCH_STATUS_RUNNING) { in removeBatch()
1020 if (nextBatch.mDirection == BluetoothShare.DIRECTION_OUTBOUND) { in removeBatch()
1022 Log.v(TAG, "Start pending outbound batch " + nextBatch.mId); in removeBatch()
1024 mTransfer = new BluetoothOppTransfer(this, nextBatch); in removeBatch()
1027 } else if (nextBatch.mDirection == BluetoothShare.DIRECTION_INBOUND in removeBatch()
1032 Log.v(TAG, "Start pending inbound batch " + nextBatch.mId); in removeBatch()
1034 mServerTransfer = new BluetoothOppTransfer(this, nextBatch, mServerSession); in removeBatch()
1036 if (nextBatch.getPendingShare() != null in removeBatch()
1037 && nextBatch.getPendingShare().mConfirm in removeBatch()