HomeSort by relevance Sort by last modified time
    Searched defs:Voicemail (Results 1 - 4 of 4) sorted by null

  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
Voicemail.java 17 package com.example.android.voicemail.common.core;
22 * Represents a single voicemail stored in the voicemail content provider.
26 public interface Voicemail {
28 * The identifier of the voicemail in the content provider.
30 * This may be missing in the case of a new {@link Voicemail} that we plan to insert into the
38 /** The number of the person leaving the voicemail, empty string if unknown, null if not set. */
43 /** The timestamp the voicemail was received, in millis since the epoch, zero if not set. */
48 /** Gets the duration of the voicemail in millis, or zero if the field is not set. */
54 * Returns the package name of the source that added this voicemail, or null if this field i
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/databasepopulator/
VoicemailPopulator.java 37 /** Populates the device database with voicemail entries. */
41 private static final Voicemail.Builder[] SIMPLE_VOICEMAILS = {
43 Voicemail.builder()
46 "Hi, this is a very long voicemail. Please call me back at 650 253 0000. "
48 + "Hi, this is a very long voicemail. "
54 Voicemail.builder()
61 Voicemail.builder()
68 Voicemail.builder()
80 List<Voicemail.Builder> voicemails = new ArrayList<>();
86 // Do this 4 times to make the voicemail database 4 times bigger
90 Voicemail voicemail = builder.setTimeMillis(timeMillis).build(); local
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
Voicemail.java 24 * Represents a single voicemail stored in the voicemail content provider.
28 public class Voicemail implements Parcelable {
41 private Voicemail(Long timestamp, String number, PhoneAccountHandle phoneAccountHandle, Long id,
58 * Create a {@link Builder} for a new {@link Voicemail} to be inserted.
67 * Create a {@link Builder} for a {@link Voicemail} to be updated (or deleted).
77 * Builder pattern for creating a {@link Voicemail}. The builder must be created with the
154 public Voicemail build() {
159 return new Voicemail(mBuilderTimestamp, mBuilderNumber, mBuilderPhoneAccount,
166 * The identifier of the voicemail in the content provider
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/
Voicemail.java 17 package com.android.voicemail.impl;
25 /** Represents a single voicemail stored in the voicemail content provider. */
26 public class Voicemail implements Parcelable {
40 private Voicemail(
66 * Create a {@link Builder} for a new {@link Voicemail} to be inserted.
75 * Create a {@link Builder} for a {@link Voicemail} to be updated (or deleted).
85 * Builder pattern for creating a {@link Voicemail}. The builder must be created with the {@link
162 public Voicemail build() {
167 return new Voicemail(
    [all...]

Completed in 285 milliseconds