Searched defs:batch (Results 1 - 3 of 3) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsTransaction.java32 * transaction is involved in, and whether the operation being performed is a batch operation.
37 * Whether this transaction is encompassing a batch of operations. If we're in batch mode,
38 * transactional operations from non-batch callers are ignored.
68 * Creates a new transaction object, optionally marked as a batch transaction.
69 * @param batch Whether the transaction is in batch mode.
71 public ContactsTransaction(boolean batch) { argument
72 mBatch = batch;
157 * @param callerIsBatch Whether this is being performed in the context of a batch operatio
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppTransfer.java108 BluetoothOppBatch batch, BluetoothOppObexSession session) {
111 mBatch = batch;
119 public BluetoothOppTransfer(Context context, PowerManager powerManager, BluetoothOppBatch batch) { argument
120 this(context, powerManager, batch, null);
146 * RFCOMM connect fail is for outbound share only! Mark batch
147 * failed, and all shares in batch failed
182 " from batch " + mBatch.mId);
193 * Handle session completed status Set batch status to
197 if (V) Log.v(TAG, "receive MSG_SESSION_COMPLETE for batch " + mBatch.mId);
200 * trigger content provider again to know batch statu
107 BluetoothOppTransfer(Context context, PowerManager powerManager, BluetoothOppBatch batch, BluetoothOppObexSession session) argument
[all...]
H A DBluetoothOppService.java597 * Add info into a batch. The logic is
599 * 2) If there is no batch, create a batch and insert this transfer into batch,
600 * then run the batch
601 * 3) If there is existing batch and timestamp match, insert transfer into batch
602 * 4) If there is existing batch and timestamp does not match, create a new batch and
648 if (V) Log.v(TAG, "Service add info " + info.mId + " to existing batch "
831 removeBatch(BluetoothOppBatch batch) argument
[all...]

Completed in 118 milliseconds