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

  /packages/apps/ContactsCommon/src/com/android/contacts/common/
CallUtil.java 45 public static Intent getCallIntent(String number) {
46 return getCallIntent(getCallUri(number));
53 public static Intent getCallIntent(Uri uri) {
58 * A variant of {@link #getCallIntent} for starting a video call.
  /packages/apps/Dialer/src/com/android/dialer/util/
IntentUtil.java 43 public static Intent getCallIntent(String number) {
44 return getCallIntent(number, null, null);
51 public static Intent getCallIntent(Uri uri) {
52 return getCallIntent(uri, null, null);
56 * A variant of {@link #getCallIntent(String)} but also accept a call origin.
59 public static Intent getCallIntent(String number, String callOrigin) {
60 return getCallIntent(CallUtil.getCallUri(number), callOrigin, null);
64 * A variant of {@link #getCallIntent(String)} but also include {@code Account}.
66 public static Intent getCallIntent(String number, PhoneAccountHandle accountHandle) {
67 return getCallIntent(number, null, accountHandle)
    [all...]

Completed in 447 milliseconds