Searched defs:sendToVoicemail (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Phone/src/com/android/phone/
H A DCallerInfoCache.java82 public final boolean sendToVoicemail; field in class:CallerInfoCache.CacheEntry
85 this.sendToVoicemail = shouldSendToVoicemail;
90 return "ringtone: " + customRingtone + ", " + sendToVoicemail;
230 final boolean sendToVoicemail = cursor.getInt(INDEX_SEND_TO_VOICEMAIL) == 1;
235 newNumberToEntry, number, customRingtone, sendToVoicemail);
250 newNumberToEntry, key, customRingtone, sendToVoicemail);
284 String numberOrSipAddress, String customRingtone, boolean sendToVoicemail) {
289 if (!entry.sendToVoicemail && sendToVoicemail) {
291 new CacheEntry(customRingtone, sendToVoicemail));
283 putNewEntryWhenAppropriate(HashMap<String, CacheEntry> newNumberToEntry, String numberOrSipAddress, String customRingtone, boolean sendToVoicemail) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/model/
H A DContact.java143 boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone,
166 mSendToVoicemail = sendToVoicemail;
140 Contact(Uri requestedUri, Uri uri, Uri lookupUri, long directoryId, String lookupKey, long id, long nameRawContactId, int displayNameSource, long photoId, String photoUri, String displayName, String altDisplayName, String phoneticName, boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone, boolean isUserProfile) argument
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsProvider2Test.java3582 int sendToVoicemail = c.getInt(c.getColumnIndex(Contacts.SEND_TO_VOICEMAIL));
3583 assertEquals(0, sendToVoicemail);
4699 private void updateSendToVoicemailAndRingtone(long contactId, boolean sendToVoicemail, argument
4702 values.put(Contacts.SEND_TO_VOICEMAIL, sendToVoicemail);
4713 boolean sendToVoicemail, String ringtone) {
4715 values.put(Contacts.SEND_TO_VOICEMAIL, sendToVoicemail);
4729 int sendToVoicemail = c.getInt(c.getColumnIndex(Contacts.SEND_TO_VOICEMAIL));
4730 assertEquals(expectedSendToVoicemail ? 1 : 0, sendToVoicemail);
4712 updateSendToVoicemailAndRingtoneWithSelection(long contactId, boolean sendToVoicemail, String ringtone) argument

Completed in 147 milliseconds