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

  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 76 public class ContactSaveService extends IntentService {
77 private static final String TAG = "ContactSaveService";
161 public ContactSaveService() {
170 + " receive callback from " + ContactSaveService.class.getName());
180 * Returns true if the ContactSaveService was started successfully and false if an exception
286 context, ContactSaveService.class);
287 serviceIntent.setAction(ContactSaveService.ACTION_NEW_RAW_CONTACT);
289 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name);
290 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type);
291 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet)
    [all...]
ContactsActivity.java 35 implements ContactSaveService.Listener
79 ContactSaveService.registerListener(this);
85 ContactSaveService.unregisterListener(this);
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DirectoryContactUtil.java 19 import com.android.contacts.ContactSaveService;
53 Intent serviceIntent = ContactSaveService.createNewRawContactIntent(
InvisibleContactUtil.java 6 import com.android.contacts.ContactSaveService;
94 final Intent intent = ContactSaveService.createSaveContactIntent(
99 ContactSaveService.startService(context, intent);
QuickContactActivity.java 102 import com.android.contacts.ContactSaveService;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupCreationDialogFragment.java 24 import com.android.contacts.ContactSaveService;
95 activity.startService(ContactSaveService.createNewGroupIntent(activity,
GroupDeletionDialogFragment.java 25 import com.android.contacts.ContactSaveService;
72 getActivity().startService(ContactSaveService.createGroupDeletionIntent(
JoinContactsDialogFragment.java 20 import com.android.contacts.ContactSaveService;
94 final Intent intent = ContactSaveService.createJoinSeveralContactsIntent(getActivity(),
ContactDeletionInteraction.java 39 import com.android.contacts.ContactSaveService;
337 mContext.startService(ContactSaveService.createDeleteContactIntent(mContext, contactUri));
ContactMultiDeletionInteraction.java 21 import com.android.contacts.ContactSaveService;
232 // for the sake of ContactSaveService.
292 mContext.startService(ContactSaveService.createDeleteMultipleContactsIntent(mContext,
  /packages/apps/Contacts/src/com/android/contacts/activities/
AttachPhotoActivity.java 40 import com.android.contacts.ContactSaveService;
317 // the ContactSaveService would not create the new contact, and the
329 // Finally, invoke the ContactSaveService.
331 Intent intent = ContactSaveService.createSaveContactIntent(
340 ContactSaveService.startService(this, intent);
ContactEditorBaseActivity.java 19 import com.android.contacts.ContactSaveService;
260 intent.getBooleanExtra(ContactSaveService.EXTRA_SAVE_SUCCEEDED, false),
  /packages/apps/Contacts/src/com/android/contacts/editor/
CompactContactEditorFragment.java 19 import com.android.contacts.ContactSaveService;
162 final Intent intent = ContactSaveService.createSaveContactIntent(mContext, mState,
172 final Intent intent = ContactSaveService.createJoinContactsIntent(
ContactEditorFragment.java 36 import com.android.contacts.ContactSaveService;
425 final Intent intent = ContactSaveService.createSaveContactIntent(mContext, mState,
460 final Intent intent = ContactSaveService.createJoinContactsIntent(
ContactEditorBaseFragment.java 23 import com.android.contacts.ContactSaveService;
725 Intent intent = ContactSaveService.createSetRingtone(
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupEditorFragment.java 60 import com.android.contacts.ContactSaveService;
586 saveIntent = ContactSaveService.createNewGroupIntent(activity,
599 saveIntent = ContactSaveService.createGroupUpdateIntent(activity, mGroupId,
    [all...]

Completed in 225 milliseconds