Searched refs:sendToVoicemail (Results 1 – 7 of 7) sorted by relevance
/packages/services/Telephony/src/com/android/phone/ |
D | CallerInfoCache.java | 72 public final boolean sendToVoicemail; field in CallerInfoCache.CacheEntry 75 this.sendToVoicemail = shouldSendToVoicemail; in CacheEntry() 80 return "ringtone: " + customRingtone + ", " + sendToVoicemail; in toString() 202 final boolean sendToVoicemail = cursor.getInt(INDEX_SEND_TO_VOICEMAIL) == 1; in refreshCacheEntry() 207 newNumberToEntry, number, customRingtone, sendToVoicemail); in refreshCacheEntry() 222 newNumberToEntry, key, customRingtone, sendToVoicemail); in refreshCacheEntry() 256 String numberOrSipAddress, String customRingtone, boolean sendToVoicemail) { in putNewEntryWhenAppropriate() argument 261 if (!entry.sendToVoicemail && sendToVoicemail) { in putNewEntryWhenAppropriate() 263 new CacheEntry(customRingtone, sendToVoicemail)); in putNewEntryWhenAppropriate() 267 new CacheEntry(customRingtone, sendToVoicemail)); in putNewEntryWhenAppropriate()
|
/packages/apps/Dialer/java/com/android/contacts/common/model/ |
D | Contact.java | 126 boolean sendToVoicemail, in Contact() argument 148 mSendToVoicemail = sendToVoicemail; in Contact()
|
D | ContactLoader.java | 434 final boolean sendToVoicemail = cursor.getInt(ContactQuery.SEND_TO_VOICEMAIL) == 1; in loadContactHeaderData() 463 sendToVoicemail, in loadContactHeaderData()
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
D | Contact.java | 144 boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone, in Contact() argument 165 mSendToVoicemail = sendToVoicemail; in Contact()
|
D | ContactLoader.java | 598 final boolean sendToVoicemail = cursor.getInt(ContactQuery.SEND_TO_VOICEMAIL) == 1; in loadContactHeaderData() 612 altDisplayName, phoneticName, starred, presence, sendToVoicemail, in loadContactHeaderData()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | AbstractContactAggregator.java | 1442 boolean sendToVoicemail = in computeAggregateData() 1444 if (sendToVoicemail) { in computeAggregateData()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactsProvider2Test.java | 4860 int sendToVoicemail = c.getInt(c.getColumnIndex(Contacts.SEND_TO_VOICEMAIL)); in testSendToVoicemailDefault() local 4861 assertEquals(0, sendToVoicemail); in testSendToVoicemailDefault() 5832 private void updateSendToVoicemailAndRingtone(long contactId, boolean sendToVoicemail, in updateSendToVoicemailAndRingtone() argument 5835 values.put(Contacts.SEND_TO_VOICEMAIL, sendToVoicemail); in updateSendToVoicemailAndRingtone() 5846 boolean sendToVoicemail, String ringtone) { in updateSendToVoicemailAndRingtoneWithSelection() argument 5848 values.put(Contacts.SEND_TO_VOICEMAIL, sendToVoicemail); in updateSendToVoicemailAndRingtoneWithSelection() 5862 int sendToVoicemail = c.getInt(c.getColumnIndex(Contacts.SEND_TO_VOICEMAIL)); in assertSendToVoicemailAndRingtone() local 5863 assertEquals(expectedSendToVoicemail ? 1 : 0, sendToVoicemail); in assertSendToVoicemailAndRingtone()
|