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

/packages/apps/Email/tests/src/com/android/email/activity/setup/
H A DAccountSetupAccountTypeTests.java89 private Account createTestAccount(String scheme) throws URISyntaxException { argument
92 HostAuth.setHostAuthFromString(auth, scheme + "://user:pass@server.com:123");
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DHostAuth.java105 * Returns the scheme for the specified flags.
112 * Builds a URI scheme name given the parameters for a {@code HostAuth}.
147 * Returns the flags for the specified scheme.
149 public static int getSchemeFlags(String scheme) { argument
150 String[] schemeParts = scheme.split("\\+");
257 // Set protocol, security, and additional flags based on uri scheme
416 String scheme = uri.getScheme();
417 auth.setConnection(scheme, uri.getHost(), uri.getPort());
421 * Legacy code for setting connection values from a "scheme" (see above)
423 public void setConnection(String scheme, Strin argument
[all...]
/packages/apps/Phone/src/com/android/phone/
H A DPhoneUtils.java643 // if the uri does not have a "content" scheme, then we treat
673 // contact's URI scheme was not content:// or if is was but
1200 String scheme = uri.getScheme();
1202 // The sip: scheme is simple: just treat the rest of the URI as a
1204 if (Constants.SCHEME_SIP.equals(scheme)) {
1215 if (Constants.SCHEME_VOICEMAIL.equals(scheme) &&
2301 * Return a formatted version of the uri's scheme specific
2305 * for user display. null if uri was null or its scheme was not 'tel:'.
2386 * @param scheme the scheme fro
2389 pickPhoneBasedOnNumber(CallManager cm, String scheme, String number, String primarySipUri) argument
[all...]

Completed in 84 milliseconds