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

/packages/services/Telephony/src/com/android/phone/
H A DCallerInfoCache.java76 public final boolean sendToVoicemail; field in class:CallerInfoCache.CacheEntry
79 this.sendToVoicemail = shouldSendToVoicemail;
84 return "ringtone: " + customRingtone + ", " + sendToVoicemail;
206 final boolean sendToVoicemail = cursor.getInt(INDEX_SEND_TO_VOICEMAIL) == 1;
211 newNumberToEntry, number, customRingtone, sendToVoicemail);
226 newNumberToEntry, key, customRingtone, sendToVoicemail);
260 String numberOrSipAddress, String customRingtone, boolean sendToVoicemail) {
265 if (!entry.sendToVoicemail && sendToVoicemail) {
267 new CacheEntry(customRingtone, sendToVoicemail));
259 putNewEntryWhenAppropriate(HashMap<String, CacheEntry> newNumberToEntry, String numberOrSipAddress, String customRingtone, boolean sendToVoicemail) argument
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DMetadataEntryParser.java135 int sendToVoicemail, int starred, int pinned,
139 this.mSendToVoicemail = sendToVoicemail;
159 // Parse contactPrefs to get sendToVoicemail, starred, pinned.
161 final boolean sendToVoicemail = contactPrefs.has(SEND_TO_VOICEMAIL)
234 sendToVoicemail ? 1 : 0, starred ? 1 : 0, pinned,
134 MetadataEntry(RawContactInfo rawContactInfo, int sendToVoicemail, int starred, int pinned, ArrayList<FieldData> fieldDatas, ArrayList<AggregationData> aggregationDatas) argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DContact.java146 boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone,
168 mSendToVoicemail = sendToVoicemail;
143 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.java5222 int sendToVoicemail = c.getInt(c.getColumnIndex(Contacts.SEND_TO_VOICEMAIL));
5223 assertEquals(0, sendToVoicemail);
6181 private void updateSendToVoicemailAndRingtone(long contactId, boolean sendToVoicemail, argument
6184 values.put(Contacts.SEND_TO_VOICEMAIL, sendToVoicemail);
6195 boolean sendToVoicemail, String ringtone) {
6197 values.put(Contacts.SEND_TO_VOICEMAIL, sendToVoicemail);
6211 int sendToVoicemail = c.getInt(c.getColumnIndex(Contacts.SEND_TO_VOICEMAIL));
6212 assertEquals(expectedSendToVoicemail ? 1 : 0, sendToVoicemail);
6194 updateSendToVoicemailAndRingtoneWithSelection(long contactId, boolean sendToVoicemail, String ringtone) argument

Completed in 218 milliseconds