HomeSort by relevance Sort by last modified time
    Searched full:voicemail (Results 26 - 50 of 268) sorted by null

12 3 4 5 6 7 8 91011

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
VoicemailProviderTest.java 51 /** Fields specific to call_log provider that should not be exposed by voicemail provider. */
60 /** Total number of columns exposed by voicemail provider. */
69 /** Returns the appropriate /voicemail URI. */
134 // Item uri of an inserted voicemail.
208 // the own voicemail.
214 // However, attempting to update or delete another-package's voicemail should fail.
336 // Test to ensure that all operations fail when no voicemail permission is granted.
366 // insertable through voicemail provider.
382 // exposed through voicemail provider query.
396 // updatable through voicemail provider
    [all...]
  /external/chromium/third_party/libjingle/source/talk/examples/call/
voicemailjidrequester.cc 45 // Start first query to node='voicemail'
97 // Send a query to your own jid to get the voicemail jid
121 if (node_name != "voicemail" &&
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallTypeIconsView.java 87 return mResources.voicemail;
114 public final Drawable voicemail; field in class:CallTypeIconsView.Resources
122 voicemail = r.getDrawable(R.drawable.ic_call_voicemail_holo_dark);
CallLogNotificationsService.java 33 * voicemail that has triggered this update (if any).</li>
52 * Extra to included with {@link #ACTION_UPDATE_NOTIFICATIONS} to identify the new voicemail
CallTypeHelper.java 34 /** Name used to identify voicemail calls. */
38 /** Color used to identify new voicemail calls. */
PhoneNumberHelper.java 71 return mResources.getString(R.string.voicemail);
81 * Returns true if the given number is the number of the configured voicemail.
CallLogFragment.java 24 import com.android.contacts.voicemail.VoicemailStatusHelper;
25 import com.android.contacts.voicemail.VoicemailStatusHelper.StatusMessage;
26 import com.android.contacts.voicemail.VoicemailStatusHelperImpl;
76 /** Whether there is at least one voicemail source installed. */
78 /** Whether we are currently filtering over voicemail. */
163 * Called by {@link CallLogQueryHandler} after a successful query to voicemail status provider.
186 /** Sets whether there are any voicemail sources available in the platform. */
235 // and the voicemail status are fetched.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailPermissions.java 23 * Provides method related to check various voicemail permissions under the
48 * @throws SecurityException if the caller does not have the voicemail source permission.
60 * @throws SecurityException if the caller does not have the voicemail source permission.
DbModifierWithNotification.java 53 * An implementation of {@link DatabaseModifier} for voicemail related tables which additionally
55 * The class generates notifications for both voicemail as well as call log URI depending on which
169 * implies (indirectly) that this does not affect any voicemail entry, as a voicemail entry is
187 * not affect any voicemail entry, as a voicemail entry is always expected to have the source
VoicemailContentTable.java 46 * Implementation of {@link VoicemailTable.Delegate} for the voicemail content table.
52 /** The private directory in which to store the data associated with the voicemail. */
53 private static final String DATA_DIRECTORY = "voicemail-data";
113 // call type is always voicemail.
143 File voicemailFile = File.createTempFile("voicemail", "", dataDirectory);
247 /** Creates a clause to restrict the selection to only voicemail call type.*/
VoicemailContentProvider.java 45 * An implementation of the Voicemail content provider. This class in the entry point for both
46 * voicemail content ('calls') table and 'voicemail_status' table. This class performs all common
182 /** Tells us if our URI has an individual voicemail id. */
187 /** Gets the ID for the voicemail. */
202 /** Gets the Voicemail URI type. */
281 * Performs necessary voicemail permission checks common to all operations and returns
295 * Performs necessary voicemail permission checks common to all operations and returns
335 * /voicemail/?source_package=[source-package] where [source-package] is the same as the calling
  /packages/apps/Contacts/src/com/android/contacts/voicemail/
VoicemailStatusHelperImpl.java 17 package com.android.contacts.voicemail;
95 /** Invite user to set up voicemail. */
103 /** Visual voicemail not yet set up. No local action needed. */
242 // Voicemail is configured. Let's see how is the data channel.
263 // Voicemail not configured. data/notification channel states are irrelevant.
266 // Voicemail not configured. data/notification channel states are irrelevant.
VoicemailPlaybackPresenter.java 17 package com.android.contacts.voicemail;
51 * Contains the controlling logic for a voicemail playback ui.
54 * {@link com.android.contacts.voicemail.VoicemailPlaybackFragment}.
63 /** The stream used to playback voicemail. */
158 /** Voicemail uri to play. */
193 * Checks to see if we have content available for this voicemail.
196 * voicemail we've been asked to play has any content available.
223 * Makes a broadcast request to ask that a voicemail source fetch this content.
227 * This method will be called when we realise that we don't have content for this voicemail. It
296 * Prepares the voicemail content for playback
    [all...]
VoicemailPlaybackFragment.java 17 package com.android.contacts.voicemail;
59 * Displays and plays back a single voicemail.
61 * When the Activity containing this Fragment is created, voicemail playback
63 * containing a suitable voicemail uri to playback.
144 * that the voicemail duration exceeds 99 minutes, the display is capped at 99 minutes.
353 Log.e(TAG, "Could not play voicemail", e);
422 * the countdown of duration remaining during voicemail playback. The second is used to
423 * temporarily replace this countdown with a message, in our case faster voicemail speed or
424 * slower voicemail speed, before returning to the countdown display.
  /packages/apps/Contacts/tests/src/com/android/contacts/
CallDetailActivityTest.java 20 import static com.android.contacts.voicemail.VoicemailPlaybackPresenter.Tasks.CHECK_FOR_CONTENT;
21 import static com.android.contacts.voicemail.VoicemailPlaybackPresenter.Tasks.PREPARE_MEDIA_PLAYER;
99 // When the activity first starts, we will show "Fetching voicemail" on the screen.
101 assertHasOneTextViewContaining("Fetching voicemail");
113 assertZeroTextViewsContaining("Fetching voicemail");
124 assertHasOneTextViewContaining("Couldn't play voicemail");
147 * Test for bug where increase rate button with invalid voicemail causes a crash.
149 * The repro steps for this crash were to open a voicemail that does not have an attachment,
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/inject/
InjectView.java 17 package com.example.android.voicemail.common.inject;
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/
DialogHelper.java 17 package com.example.android.voicemail.common.ui;
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/utils/
CloseUtils.java 17 package com.example.android.voicemail.common.utils;
  /packages/apps/Contacts/tests/src/com/android/contacts/calllog/
TestPhoneNumberHelper.java 23 * voicemail number.
  /packages/providers/ContactsProvider/res/values/
strings.xml 55 <!-- The prefix string before the number used for the display name for the voicemail table.
60 <string name="voicemail_from_column">"Voicemail from "</string>
  /frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
MediaPlayerProxy.java 28 * <p>This subset is arbitrarily defined - at the moment it is the subset that the voicemail
  /packages/apps/Contacts/src/com/android/contacts/
CallDetailActivity.java 30 import com.android.contacts.voicemail.VoicemailPlaybackFragment;
31 import com.android.contacts.voicemail.VoicemailStatusHelper;
32 import com.android.contacts.voicemail.VoicemailStatusHelper.StatusMessage;
33 import com.android.contacts.voicemail.VoicemailStatusHelperImpl;
96 /** If we are started with a voicemail, we'll find the uri to play with this extra. */
98 /** If we should immediately start playback of the voicemail, this extra will be set to true. */
123 /** Helper to get voicemail status messages. */
125 // Views related to voicemail status message.
290 * Handle voicemail playback or hide voicemail ui
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
CallerInfoCacheUtils.java 27 * (e.g. custom ringtone settings, send-to-voicemail).
  /packages/providers/ContactsProvider/res/values-en-rGB/
strings.xml 30 <string name="voicemail_from_column" msgid="435732568832121444">"Voicemail from "</string>
  /packages/providers/ContactsProvider/res/values-nl/
strings.xml 30 <string name="voicemail_from_column" msgid="435732568832121444">"Voicemail van "</string>

Completed in 4006 milliseconds

12 3 4 5 6 7 8 91011