Home
last modified time | relevance | path

Searched refs:sendToVoicemail (Results 1 – 5 of 5) sorted by relevance

/packages/services/Telephony/src/com/android/phone/
DCallerInfoCache.java76 public final boolean sendToVoicemail; field in CallerInfoCache.CacheEntry
79 this.sendToVoicemail = shouldSendToVoicemail; in CacheEntry()
84 return "ringtone: " + customRingtone + ", " + sendToVoicemail; in toString()
206 final boolean sendToVoicemail = cursor.getInt(INDEX_SEND_TO_VOICEMAIL) == 1; in refreshCacheEntry()
211 newNumberToEntry, number, customRingtone, sendToVoicemail); in refreshCacheEntry()
226 newNumberToEntry, key, customRingtone, sendToVoicemail); in refreshCacheEntry()
260 String numberOrSipAddress, String customRingtone, boolean sendToVoicemail) { in putNewEntryWhenAppropriate() argument
265 if (!entry.sendToVoicemail && sendToVoicemail) { in putNewEntryWhenAppropriate()
267 new CacheEntry(customRingtone, sendToVoicemail)); in putNewEntryWhenAppropriate()
271 new CacheEntry(customRingtone, sendToVoicemail)); in putNewEntryWhenAppropriate()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DContact.java146 boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone, in Contact() argument
168 mSendToVoicemail = sendToVoicemail; in Contact()
DContactLoader.java639 final boolean sendToVoicemail = cursor.getInt(ContactQuery.SEND_TO_VOICEMAIL) == 1; in loadContactHeaderData()
653 altDisplayName, phoneticName, starred, presence, sendToVoicemail, in loadContactHeaderData()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java4484 int sendToVoicemail = c.getInt(c.getColumnIndex(Contacts.SEND_TO_VOICEMAIL)); in testSendToVoicemailDefault() local
4485 assertEquals(0, sendToVoicemail); in testSendToVoicemailDefault()
5600 private void updateSendToVoicemailAndRingtone(long contactId, boolean sendToVoicemail, in updateSendToVoicemailAndRingtone() argument
5603 values.put(Contacts.SEND_TO_VOICEMAIL, sendToVoicemail); in updateSendToVoicemailAndRingtone()
5614 boolean sendToVoicemail, String ringtone) { in updateSendToVoicemailAndRingtoneWithSelection() argument
5616 values.put(Contacts.SEND_TO_VOICEMAIL, sendToVoicemail); in updateSendToVoicemailAndRingtoneWithSelection()
5630 int sendToVoicemail = c.getInt(c.getColumnIndex(Contacts.SEND_TO_VOICEMAIL)); in assertSendToVoicemailAndRingtone() local
5631 assertEquals(expectedSendToVoicemail ? 1 : 0, sendToVoicemail); in assertSendToVoicemailAndRingtone()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java2157 boolean sendToVoicemail = in computeAggregateData()
2159 if (sendToVoicemail) { in computeAggregateData()