Searched refs:sendToVoicemail (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Phone/src/com/android/phone/ |
D | CallerInfoCache.java | 82 public final boolean sendToVoicemail; field in CallerInfoCache.CacheEntry 85 this.sendToVoicemail = shouldSendToVoicemail; in CacheEntry() 90 return "ringtone: " + customRingtone + ", " + sendToVoicemail; in toString() 230 final boolean sendToVoicemail = cursor.getInt(INDEX_SEND_TO_VOICEMAIL) == 1; in refreshCacheEntry() 235 newNumberToEntry, number, customRingtone, sendToVoicemail); in refreshCacheEntry() 250 newNumberToEntry, key, customRingtone, sendToVoicemail); in refreshCacheEntry() 284 String numberOrSipAddress, String customRingtone, boolean sendToVoicemail) { in putNewEntryWhenAppropriate() argument 289 if (!entry.sendToVoicemail && sendToVoicemail) { in putNewEntryWhenAppropriate() 291 new CacheEntry(customRingtone, sendToVoicemail)); in putNewEntryWhenAppropriate() 295 new CacheEntry(customRingtone, sendToVoicemail)); in putNewEntryWhenAppropriate()
|
D | CallNotifier.java | 997 if (entry.sendToVoicemail) { in onCustomRingtoneQueryTimeout()
|
/packages/apps/Contacts/src/com/android/contacts/ |
D | ContactLoader.java | 204 boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone, in Result() argument 227 mSendToVoicemail = sendToVoicemail; in Result() 934 final boolean sendToVoicemail = cursor.getInt(ContactQuery.SEND_TO_VOICEMAIL) == 1; in loadContactHeaderData() 948 altDisplayName, phoneticName, starred, presence, sendToVoicemail, in loadContactHeaderData()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactsProvider2Test.java | 3421 int sendToVoicemail = c.getInt(c.getColumnIndex(Contacts.SEND_TO_VOICEMAIL)); in testSendToVoicemailDefault() local 3422 assertEquals(0, sendToVoicemail); in testSendToVoicemailDefault() 4538 private void updateSendToVoicemailAndRingtone(long contactId, boolean sendToVoicemail, in updateSendToVoicemailAndRingtone() argument 4541 values.put(Contacts.SEND_TO_VOICEMAIL, sendToVoicemail); in updateSendToVoicemailAndRingtone() 4552 boolean sendToVoicemail, String ringtone) { in updateSendToVoicemailAndRingtoneWithSelection() argument 4554 values.put(Contacts.SEND_TO_VOICEMAIL, sendToVoicemail); in updateSendToVoicemailAndRingtoneWithSelection() 4568 int sendToVoicemail = c.getInt(c.getColumnIndex(Contacts.SEND_TO_VOICEMAIL)); in assertSendToVoicemailAndRingtone() local 4569 assertEquals(expectedSendToVoicemail ? 1 : 0, sendToVoicemail); in assertSendToVoicemailAndRingtone()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | ContactAggregator.java | 1858 boolean sendToVoicemail = in computeAggregateData() 1860 if (sendToVoicemail) { in computeAggregateData()
|