OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ContactOperations
(Results
1 - 2
of
2
) sorted by null
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactOperations.java
39
public class
ContactOperations
{
63
* Returns an instance of
ContactOperations
instance for adding new contact
70
* @return instance of
ContactOperations
72
public static
ContactOperations
createNewContact(Context context, long userId,
74
return new
ContactOperations
(context, userId, accountName, isSyncOperation, batchOperation);
78
* Returns an instance of
ContactOperations
for updating existing contact in
84
* @return instance of
ContactOperations
86
public static
ContactOperations
updateExistingContact(Context context, long rawContactId,
88
return new
ContactOperations
(context, rawContactId, isSyncOperation, batchOperation);
91
public
ContactOperations
(Context context, boolean isSyncOperation
[
all
...]
ContactManager.java
283
final
ContactOperations
contactOp =
ContactOperations
.createNewContact(
340
final
ContactOperations
contactOp =
341
ContactOperations
.updateExistingContact(context, rawContactId,
547
batchOperation.add(
ContactOperations
.newInsertCpo(StatusUpdates.CONTENT_URI,
561
final
ContactOperations
contactOp =
562
ContactOperations
.updateExistingContact(context, rawContactId, true,
582
batchOperation.add(
ContactOperations
.newDeleteCpo(
[
all
...]
Completed in 102 milliseconds