Home | History | Annotate | Download | only in statementservice

Lines Matching refs:scheme

87                 String scheme = inputExtras.getString(
113 sourceAssets.add(createWebAssetString(scheme, host));
136 logValidationParametersForCTS(verificationId, scheme, finalHosts, packageName);
148 "Verifying IntentFilter. verificationId:%d scheme:\"%s\" hosts:\"%s\" package:\"%s\".";
149 private void logValidationParametersForCTS(int verificationId, String scheme,
152 Log.i(TAG, String.format(CTS_LOG_FORMAT, verificationId, scheme, hostString, packageName));
168 private String createWebAssetString(String scheme, String host) throws MalformedURLException {
172 if (!scheme.equals("http") && !scheme.equals("https")) {
173 throw new MalformedURLException("Input scheme is not valid.");
176 return String.format(WEB_ASSET_FORMAT, new URL(scheme, host, "").toString());