Searched defs:batch (Results 1 - 8 of 8) 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/UnifiedEmail/src/com/android/mail/ui/
H A DToastBarOperation.java49 public ToastBarOperation(int count, int menuId, int type, boolean batch, argument
53 mBatch = batch;
H A DConversationUpdater.java85 * @param isBatch true if this is a batch action, false otherwise.
165 * @param batch whether this is a batch operation
171 boolean batch, boolean showUndo, boolean isMoveTo);
170 assignFolder(Collection<FolderOperation> folders, Collection<Conversation> target, boolean batch, boolean showUndo, boolean isMoveTo) argument
H A DAnimatedAdapter.java252 ConversationCheckedSet batch, ControllableActivity activity,
256 mBatchConversations = batch;
251 AnimatedAdapter(Context context, ConversationCursor cursor, ConversationCheckedSet batch, ControllableActivity activity, SwipeableListView listView, final List<ConversationSpecialItemView> specialViews) argument
H A DAbstractActivityController.java1541 /** This is NOT a batch action. */
2127 // Batch selections are cleared in the end of the action, so not done for batch actions.
2963 * @param isBatch whether the conversations are in the currently selected batch set.
3091 Collection<Conversation> target, boolean batch, boolean showUndo,
3141 batch, showUndo, isMoveTo, actionFolder, undoCallback);
3142 delete(0, target, folderChange, batch);
3145 batch, showUndo, false /* isMoveTo */, mFolder, undoCallback);
3807 boolean batch, UndoCallback callback) {
3808 ConversationAction cAction = new ConversationAction(action, target, batch);
3090 assignFolder(Collection<FolderOperation> folderOps, Collection<Conversation> target, boolean batch, boolean showUndo, final boolean isMoveTo) argument
3806 getDeferredAction(int action, Collection<Conversation> target, boolean batch, UndoCallback callback) argument
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
H A DContactResolver.java85 // Start to process a new batch.
91 LogUtils.d(TAG, "ContactResolver << batch skip");
96 LogUtils.d(TAG, "ContactResolver >> batch start");
98 // Make a copy of the batch.
99 LinkedHashSet<ContactRequestHolder> batch = new LinkedHashSet<ContactRequestHolder>(mBatch);
105 mTask = getContactResolverTask(batch);
111 LinkedHashSet<ContactRequestHolder> batch) {
112 return new ContactResolverTask(batch, mResolver, mCache, this);
130 * means that every ContactDrawable on the screen will add its ContactRequest to the batch in
135 * the event queue. Every time something is added to the batch a
110 getContactResolverTask( LinkedHashSet<ContactRequestHolder> batch) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppTransfer.java130 Log.v(TAG, "ACTION_ACL_DISCONNECTED to be processed for batch: "
178 BluetoothOppBatch batch, BluetoothOppObexSession session) {
181 mBatch = batch;
189 public BluetoothOppTransfer(Context context, PowerManager powerManager, BluetoothOppBatch batch) { argument
190 this(context, powerManager, batch, null);
216 * RFCOMM connect fail is for outbound share only! Mark batch
217 * failed, and all shares in batch failed
252 " from batch " + mBatch.mId);
263 * Handle session completed status Set batch status to
268 if (V) Log.v(TAG, "receive MSG_SESSION_COMPLETE for batch "
177 BluetoothOppTransfer(Context context, PowerManager powerManager, BluetoothOppBatch batch, BluetoothOppObexSession session) argument
[all...]
H A DBluetoothOppService.java652 * Add info into a batch. The logic is
654 * 2) If there is no batch, create a batch and insert this transfer into batch,
655 * then run the batch
656 * 3) If there is existing batch and timestamp match, insert transfer into batch
657 * 4) If there is existing batch and timestamp does not match, create a new batch and
703 if (V) Log.v(TAG, "Service add info " + info.mId + " to existing batch "
885 removeBatch(BluetoothOppBatch batch) argument
[all...]

Completed in 685 milliseconds