HomeSort by relevance Sort by last modified time
    Searched defs:ContactSaveService (Results 1 - 7 of 7) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/
AppCompatContactsActivity.java 37 implements ContactSaveService.Listener {
80 ContactSaveService.registerListener(this);
86 ContactSaveService.unregisterListener(this);
ContactsActivity.java 35 implements ContactSaveService.Listener
79 ContactSaveService.registerListener(this);
85 ContactSaveService.unregisterListener(this);
ContactSaveService.java 85 public class ContactSaveService extends IntentService {
86 private static final String TAG = "ContactSaveService";
208 public ContactSaveService() {
224 + " receive callback from " + ContactSaveService.class.getName());
247 * Returns true if the ContactSaveService was started successfully and false if an exception
373 context, ContactSaveService.class);
374 serviceIntent.setAction(ContactSaveService.ACTION_NEW_RAW_CONTACT);
376 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name);
377 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type);
378 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
InvisibleContactUtil.java 8 import com.android.contacts.ContactSaveService;
77 final Intent intent = ContactSaveService.createSaveContactIntent(
82 ContactSaveService.startService(context, intent);
  /packages/apps/Contacts/src/com/android/contacts/activities/
AttachPhotoActivity.java 40 import com.android.contacts.ContactSaveService;
327 // the ContactSaveService would not create the new contact, and the
339 // Finally, invoke the ContactSaveService.
343 Intent intent = ContactSaveService.createSaveContactIntent(
352 ContactSaveService.startService(this, intent);
  /packages/apps/Contacts/src/com/android/contacts/interactions/
ContactDeletionInteraction.java 39 import com.android.contacts.ContactSaveService;
348 mContext.startService(ContactSaveService.createDeleteContactIntent(mContext, contactUri));
ContactMultiDeletionInteraction.java 35 import com.android.contacts.ContactSaveService;
252 // for the sake of ContactSaveService.
314 mContext.startService(ContactSaveService.createDeleteMultipleContactsIntent(mContext,

Completed in 878 milliseconds