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

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DHostAuth.java159 * Builds a URI scheme name given the parameters for a {@code HostAuth}. If
199 * Returns the flags for the specified scheme.
201 public static int getSchemeFlags(String scheme) { argument
202 String[] schemeParts = scheme.split("\\+");
370 // Set protocol, security, and additional flags based on uri scheme
540 String scheme = uri.getScheme();
541 setConnection(scheme, uri.getHost(), uri.getPort());
545 * Legacy code for setting connection values from a "scheme" (see above)
547 public void setConnection(String scheme, String host, int port) { argument
548 String[] schemeParts = scheme
[all...]
/packages/services/Telephony/src/com/android/phone/
H A DPhoneUtils.java648 // if the uri does not have a "content" scheme, then we treat
1222 String scheme = uri.getScheme();
1224 // The sip: scheme is simple: just treat the rest of the URI as a
1226 if (PhoneAccount.SCHEME_SIP.equals(scheme)) {
1237 if (PhoneAccount.SCHEME_VOICEMAIL.equals(scheme) &&
2252 * @param scheme the scheme from the data URI that the number originally came from.
2255 public static Phone pickPhoneBasedOnNumber(CallManager cm, String scheme, String number, argument
2258 log("pickPhoneBasedOnNumber: scheme " + scheme
[all...]

Completed in 75 milliseconds