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

  /packages/apps/Dialer/src/com/android/dialer/calllog/
MissedCallNotificationReceiver.java 24 import com.android.dialer.calllog.CallLogNotificationsService;
49 CallLogNotificationsService.UNKNOWN_MISSED_CALL_COUNT);
51 CallLogNotificationsService.updateMissedCallNotifications(context, count, number);
CallLogReceiver.java 37 CallLogNotificationsService.updateVoicemailNotifications(context, intent.getData());
39 CallLogNotificationsService.updateVoicemailNotifications(context, null);
CallLogNotificationsService.java 41 public class CallLogNotificationsService extends IntentService {
42 private static final String TAG = "CallLogNotificationsService";
107 public CallLogNotificationsService() {
108 super("CallLogNotificationsService");
166 Intent serviceIntent = new Intent(context, CallLogNotificationsService.class);
168 CallLogNotificationsService.ACTION_UPDATE_VOICEMAIL_NOTIFICATIONS);
172 CallLogNotificationsService.EXTRA_NEW_VOICEMAIL_URI, voicemailUri);
187 Intent serviceIntent = new Intent(context, CallLogNotificationsService.class);
189 CallLogNotificationsService.ACTION_UPDATE_MISSED_CALL_NOTIFICATIONS);
VoicemailQueryHandler.java 61 Intent serviceIntent = new Intent(mContext, CallLogNotificationsService.class);
63 CallLogNotificationsService.ACTION_UPDATE_VOICEMAIL_NOTIFICATIONS);
MissedCallNotifier.java 80 if (count == CallLogNotificationsService.UNKNOWN_MISSED_CALL_COUNT) {
247 Intent intent = new Intent(mContext, CallLogNotificationsService.class);
248 intent.setAction(CallLogNotificationsService.ACTION_MARK_NEW_MISSED_CALLS_AS_OLD);
253 Intent intent = new Intent(mContext, CallLogNotificationsService.class);
255 CallLogNotificationsService.ACTION_CALL_BACK_FROM_MISSED_CALL_NOTIFICATION);
256 intent.putExtra(CallLogNotificationsService.EXTRA_MISSED_CALL_NUMBER, number);
263 Intent intent = new Intent(mContext, CallLogNotificationsService.class);
265 CallLogNotificationsService.ACTION_SEND_SMS_FROM_MISSED_CALL_NOTIFICATION);
266 intent.putExtra(CallLogNotificationsService.EXTRA_MISSED_CALL_NUMBER, number);
DefaultVoicemailNotifier.java 256 Intent intent = new Intent(mContext, CallLogNotificationsService.class);
257 intent.setAction(CallLogNotificationsService.ACTION_MARK_NEW_VOICEMAILS_AS_OLD);
CallLogAsyncTaskUtil.java 360 Intent intent = new Intent(context, CallLogNotificationsService.class);
361 intent.setAction(CallLogNotificationsService.ACTION_MARK_NEW_VOICEMAILS_AS_OLD);
CallLogNotificationsHelper.java 167 CallLogNotificationsService.updateVoicemailNotifications(context, null);

Completed in 297 milliseconds