Home | History | Annotate | Download | only in phone

Lines Matching refs:Calls

22 import android.provider.CallLog.Calls;
25 * Handles the intent to clear the missed calls that is triggered when a notification is dismissed.
28 /** This action is used to clear missed calls. */
47 // Clear the list of new missed calls.
49 values.put(Calls.NEW, 0);
50 values.put(Calls.IS_READ, 1);
52 where.append(Calls.NEW);
54 where.append(Calls.TYPE);
56 getContentResolver().update(Calls.CONTENT_URI, values, where.toString(),
57 new String[]{ Integer.toString(Calls.MISSED_TYPE) });