Home
last modified time | relevance | path

Searched refs:IntentNames (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/calllog/
DRefreshAnnotatedCallLogReceiver.java25 import com.android.dialer.calllog.constants.IntentNames;
62 intentFilter.addAction(IntentNames.ACTION_REFRESH_ANNOTATED_CALL_LOG); in getIntentFilter()
63 intentFilter.addAction(IntentNames.ACTION_CANCEL_REFRESHING_ANNOTATED_CALL_LOG); in getIntentFilter()
80 if (IntentNames.ACTION_REFRESH_ANNOTATED_CALL_LOG.equals(action)) { in onReceive()
81 boolean checkDirty = intent.getBooleanExtra(IntentNames.EXTRA_CHECK_DIRTY, false); in onReceive()
83 } else if (IntentNames.ACTION_CANCEL_REFRESHING_ANNOTATED_CALL_LOG.equals(action)) { in onReceive()
/packages/apps/Dialer/java/com/android/dialer/calllog/notifier/
DRefreshAnnotatedCallLogNotifier.java23 import com.android.dialer.calllog.constants.IntentNames;
78 intent.setAction(IntentNames.ACTION_REFRESH_ANNOTATED_CALL_LOG); in notify()
79 intent.putExtra(IntentNames.EXTRA_CHECK_DIRTY, checkDirty); in notify()
95 intent.setAction(IntentNames.ACTION_CANCEL_REFRESHING_ANNOTATED_CALL_LOG); in cancel()
/packages/apps/Dialer/java/com/android/dialer/calllog/constants/
DIntentNames.java20 public final class IntentNames { class
29 private IntentNames() {} in IntentNames() method in IntentNames