Searched defs:uriScheme (Results 1 - 2 of 2) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
H A DPhoneAccountRegistrar.java151 * Retrieves the default outgoing phone account supporting the specified uriScheme. Note that if
155 * @param uriScheme The URI scheme for the outgoing call.
158 public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) { argument
163 // specified uriScheme.
165 if (userSelectedAccount.supportsUriScheme(uriScheme)
171 List<PhoneAccountHandle> outgoing = getCallCapablePhoneAccounts(uriScheme);
450 * @param uriScheme The URI scheme.
453 public List<PhoneAccountHandle> getCallCapablePhoneAccounts(String uriScheme) { argument
454 return getPhoneAccountHandles(PhoneAccount.CAPABILITY_CALL_PROVIDER, uriScheme);
644 * @param uriScheme UR
647 getPhoneAccountHandles(int flags, String uriScheme) argument
[all...]
H A DTelecomService.java185 public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) { argument
190 mPhoneAccountRegistrar.getDefaultOutgoingPhoneAccount(uriScheme);
251 public List<PhoneAccountHandle> getPhoneAccountsSupportingScheme(String uriScheme) { argument
256 mPhoneAccountRegistrar.getCallCapablePhoneAccounts(uriScheme));
258 Log.e(this, e, "getPhoneAccountsSupportingScheme %s", uriScheme);

Completed in 170 milliseconds