Searched refs:serviceIntent (Results 1 – 10 of 10) sorted by relevance
/packages/apps/Contacts/src/com/android/contacts/ |
D | ContactSaveService.java | 226 Intent serviceIntent = new Intent( in createNewRawContactIntent() local 228 serviceIntent.setAction(ContactSaveService.ACTION_NEW_RAW_CONTACT); in createNewRawContactIntent() 230 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name); in createNewRawContactIntent() 231 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type); in createNewRawContactIntent() 232 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet); in createNewRawContactIntent() 234 serviceIntent.putParcelableArrayListExtra( in createNewRawContactIntent() 242 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent); in createNewRawContactIntent() 243 return serviceIntent; in createNewRawContactIntent() 313 Intent serviceIntent = new Intent( in createSaveContactIntent() local 315 serviceIntent.setAction(ContactSaveService.ACTION_SAVE_CONTACT); in createSaveContactIntent() [all …]
|
/packages/apps/Contacts/src/com/android/contacts/calllog/ |
D | CallLogReceiver.java | 37 Intent serviceIntent = new Intent(context, CallLogNotificationsService.class); in onReceive() local 38 serviceIntent.setAction(CallLogNotificationsService.ACTION_UPDATE_NOTIFICATIONS); in onReceive() 39 serviceIntent.putExtra( in onReceive() 41 context.startService(serviceIntent); in onReceive() 43 Intent serviceIntent = new Intent(context, CallLogNotificationsService.class); in onReceive() local 44 serviceIntent.setAction(CallLogNotificationsService.ACTION_UPDATE_NOTIFICATIONS); in onReceive() 45 context.startService(serviceIntent); in onReceive()
|
D | CallLogFragment.java | 482 Intent serviceIntent = new Intent(getActivity(), CallLogNotificationsService.class); in updateVoicemailNotifications() local 483 serviceIntent.setAction(CallLogNotificationsService.ACTION_UPDATE_NOTIFICATIONS); in updateVoicemailNotifications() 484 getActivity().startService(serviceIntent); in updateVoicemailNotifications()
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
D | CellBroadcastReceiver.java | 161 Intent serviceIntent = new Intent(CellBroadcastConfigService.ACTION_ENABLE_CHANNELS, in startConfigService() local 163 context.startService(serviceIntent); in startConfigService()
|
/packages/apps/Email/src/com/android/email/service/ |
D | AttachmentDownloadService.java | 712 Intent serviceIntent = mAccountServiceMap.get(accountId); in getServiceIntentForAccount() local 713 if (serviceIntent == null) { in getServiceIntentForAccount() 716 serviceIntent = new Intent(mContext, ControllerService.class); in getServiceIntentForAccount() 718 serviceIntent = new Intent(EmailServiceProxy.EXCHANGE_INTENT); in getServiceIntentForAccount() 720 mAccountServiceMap.put(accountId, serviceIntent); in getServiceIntentForAccount() 722 return serviceIntent; in getServiceIntentForAccount()
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
D | ContactDetailActivity.java | 289 Intent serviceIntent = ContactSaveService.createNewRawContactIntent( 292 startService(serviceIntent);
|
D | PeopleActivity.java | 1218 Intent serviceIntent = ContactSaveService.createNewRawContactIntent( in onCreateRawContactRequested() local 1221 startService(serviceIntent); in onCreateRawContactRequested()
|
/packages/apps/Contacts/src/com/android/contacts/interactions/ |
D | PhoneNumberInteraction.java | 262 final Intent serviceIntent = ContactSaveService.createSetSuperPrimaryIntent( in onClick() local 264 activity.startService(serviceIntent); in onClick()
|
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
D | AlertReceiver.java | 96 Intent serviceIntent = new Intent(context, DismissAlarmsService.class); in onReceive() local 97 context.startService(serviceIntent); in onReceive()
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
D | PinyinIME.java | 905 Intent serviceIntent = new Intent(); in startPinyinDecoderService() local 906 serviceIntent.setClass(this, PinyinDecoderService.class); in startPinyinDecoderService() 913 if (bindService(serviceIntent, mPinyinDecoderServiceConnection, in startPinyinDecoderService()
|