OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CallLogNotificationsService
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/calllog/
CallLogReceiver.java
37
Intent serviceIntent = new Intent(context,
CallLogNotificationsService
.class);
38
serviceIntent.setAction(
CallLogNotificationsService
.ACTION_UPDATE_NOTIFICATIONS);
40
CallLogNotificationsService
.EXTRA_NEW_VOICEMAIL_URI, intent.getData());
43
Intent serviceIntent = new Intent(context,
CallLogNotificationsService
.class);
44
serviceIntent.setAction(
CallLogNotificationsService
.ACTION_UPDATE_NOTIFICATIONS);
CallLogNotificationsService.java
36
public class
CallLogNotificationsService
extends IntentService {
37
private static final String TAG = "
CallLogNotificationsService
";
61
public
CallLogNotificationsService
() {
62
super("
CallLogNotificationsService
");
DefaultVoicemailNotifier.java
198
Intent intent = new Intent(mContext,
CallLogNotificationsService
.class);
199
intent.setAction(
CallLogNotificationsService
.ACTION_MARK_NEW_VOICEMAILS_AS_OLD);
CallLogFragment.java
482
Intent serviceIntent = new Intent(getActivity(),
CallLogNotificationsService
.class);
483
serviceIntent.setAction(
CallLogNotificationsService
.ACTION_UPDATE_NOTIFICATIONS);
Completed in 73 milliseconds