Home | History | Annotate | Download | only in webkit

Lines Matching refs:realm

96     private static final String HTTPAUTH_REALM_COL = "realm";
410 * @param realm The realm for the password
415 void setHttpAuthUsernamePassword(String host, String realm, String username,
417 if (host == null || realm == null || !checkInitialized()) {
424 c.put(HTTPAUTH_REALM_COL, realm);
434 * host+realm pair
437 * @param realm The realm the password applies to
441 String[] getHttpAuthUsernamePassword(String host, String realm) {
442 if (host == null || realm == null || !checkInitialized()){
456 columns, selection, new String[] { host, realm }, null,