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

/packages/services/Telephony/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.java141 boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone,
163 mSendToVoicemail = sendToVoicemail;
138 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.java3971 int sendToVoicemail = c.getInt(c.getColumnIndex(Contacts.SEND_TO_VOICEMAIL));
3972 assertEquals(0, sendToVoicemail);
5087 private void updateSendToVoicemailAndRingtone(long contactId, boolean sendToVoicemail, argument
5090 values.put(Contacts.SEND_TO_VOICEMAIL, sendToVoicemail);
5101 boolean sendToVoicemail, String ringtone) {
5103 values.put(Contacts.SEND_TO_VOICEMAIL, sendToVoicemail);
5117 int sendToVoicemail = c.getInt(c.getColumnIndex(Contacts.SEND_TO_VOICEMAIL));
5118 assertEquals(expectedSendToVoicemail ? 1 : 0, sendToVoicemail);
5100 updateSendToVoicemailAndRingtoneWithSelection(long contactId, boolean sendToVoicemail, String ringtone) argument

Completed in 98 milliseconds