OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:batchOperation
(Results
1 - 2
of
2
) sorted by null
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java
119
final
BatchOperation
batchOperation
= new
BatchOperation
(context, resolver);
152
true, true, true, rawContactId,
batchOperation
);
154
deleteContact(context, rawContactId,
batchOperation
);
160
addContact(context, account, rawContact, groupId, true,
batchOperation
);
166
if (
batchOperation
.size() >= 50) {
167
batchOperation
.execute();
170
batchOperation
.execute();
239
final
BatchOperation
batchOperation = new BatchOperation(context, resolver)
[
all
...]
ContactOperations.java
41
private final
BatchOperation
mBatchOperation;
73
String accountName, boolean isSyncOperation,
BatchOperation
batchOperation
) {
74
return new ContactOperations(context, userId, accountName, isSyncOperation,
batchOperation
);
87
boolean isSyncOperation,
BatchOperation
batchOperation
) {
88
return new ContactOperations(context, rawContactId, isSyncOperation,
batchOperation
);
92
BatchOperation
batchOperation
) {
97
mBatchOperation =
batchOperation
;
[
all
...]
Completed in 113 milliseconds