HomeSort by relevance Sort by last modified time
    Searched refs:signon_realm (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/chromium_org/chrome/browser/password_manager/
psl_matching_helper_unittest.cc 29 form1.signon_realm = pairs[i].url1;
31 form2.signon_realm = pairs[i].url2;
33 PSLMatchingHelper::IsPublicSuffixDomainMatch(form1.signon_realm,
34 form2.signon_realm))
test_password_store.cc 32 lhs.signon_realm == rhs.signon_realm;
45 stored_passwords_[form.signon_realm].push_back(form);
50 stored_passwords_[form.signon_realm];
61 stored_passwords_[form.signon_realm];
77 stored_passwords_[form.signon_realm];
psl_matching_helper.cc 45 const GURL& signon_realm) {
47 signon_realm,
psl_matching_helper.h 56 static std::string GetRegistryControlledDomain(const GURL& signon_realm);
native_backend_kwallet_x.cc 55 a.signon_realm == b.signon_realm &&
272 GetLoginsList(&forms, form.signon_realm, wallet_handle);
289 bool ok = SetLoginsList(forms, form.signon_realm, wallet_handle);
301 GetLoginsList(&forms, form.signon_realm, wallet_handle);
308 bool ok = SetLoginsList(forms, form.signon_realm, wallet_handle);
320 GetLoginsList(&all_forms, form.signon_realm, wallet_handle);
332 bool ok = SetLoginsList(kept_forms, form.signon_realm, wallet_handle);
380 const std::string& signon_realm = realm_list[i]; local
385 builder.AppendString(signon_realm); // ke
598 const std::string& signon_realm = realm_list[i]; local
747 << "(" << count << "; realm: " << signon_realm << ")"; local
    [all...]
native_backend_kwallet_x.h 65 static void DeserializeValue(const std::string& signon_realm,
83 // Reads PasswordForms from the wallet that match the given signon_realm.
85 const std::string& signon_realm,
102 // Writes a list of PasswordForms to the wallet with the given signon_realm.
103 // Overwrites any existing list for this signon_realm. Removes the entry if
106 const std::string& signon_realm,
122 static bool DeserializeValueSize(const std::string& signon_realm,
login_database_unittest.cc 71 form.signon_realm = "http://www.google.com/";
109 // signon_realm is the same, should match.
117 form4.signon_realm = "https://www.google.com/";
213 form.signon_realm = "https://foo.com/";
235 form2.signon_realm = "https://mobile.foo.com/";
240 EXPECT_EQ("https://mobile.foo.com/", result[0]->signon_realm);
263 form.signon_realm = "https://accounts.google.com/";
285 form2.signon_realm = "https://some.other.google.com/";
313 form.signon_realm = "https://foo.com/";
335 form2.signon_realm = "https://mobile.foo.com/"
    [all...]
password_store_change.h 30 form().signon_realm == other.form().signon_realm &&
password_syncable_service.cc 86 password_specifics->set_signon_realm(password_form.signon_realm);
113 const std::string& signon_realm) {
118 net::EscapePath(signon_realm);
128 password.signon_realm);
138 password.signon_realm());
login_database.cc 154 "signon_realm VARCHAR NOT NULL,"
167 "submit_element, signon_realm))")) {
172 "logins (signon_realm)")) {
183 "SELECT signon_realm, blacklisted_by_user, COUNT(username_value) "
184 "FROM logins GROUP BY signon_realm, blacklisted_by_user"));
241 " signon_realm, ssl_valid, preferred, date_created, blacklisted_by_user, "
253 s.BindString(COLUMN_SIGNON_REALM, form.signon_realm);
292 "signon_realm = ?"));
305 s.BindString(10, form.signon_realm);
325 "signon_realm = ? "))
    [all...]
password_form_data.cc 18 if (form_data.signon_realm)
19 form->signon_realm = std::string(form_data.signon_realm);
password_form_data.h 19 const char* signon_realm; member in struct:PasswordFormData
  /ndk/tests/device/test-gnustl-copy_vector_into_a_set/jni/
copy_vector_into_a_set.cpp 7 const char* signon_realm; member in struct:PasswordFormData
11 std::string signon_realm; member in struct:PasswordForm
26 if (form_data.signon_realm) {
27 form->signon_realm = "http://foo.example.com";
53 cout << "************************************************ vector value " << value->signon_realm << std::endl;
59 cout << "************************************************ set value " << value->signon_realm << std::endl;
  /ndk/tests/device/test-stlport-copy_vector_into_a_set/jni/
copy_vector_into_a_set.cpp 7 const char* signon_realm; member in struct:PasswordFormData
11 std::string signon_realm; member in struct:PasswordForm
26 if (form_data.signon_realm) {
27 form->signon_realm = "http://foo.example.com";
53 cout << "************************************************ vector value " << value->signon_realm.c_str() << std::endl;
59 cout << "************************************************ set value " << value->signon_realm.c_str() << std::endl;
  /external/chromium/chrome/browser/password_manager/
native_backend_kwallet_x.cc 128 GetLoginsList(&forms, form.signon_realm, wallet_handle);
131 bool ok = SetLoginsList(forms, form.signon_realm, wallet_handle);
143 GetLoginsList(&forms, form.signon_realm, wallet_handle);
150 bool ok = SetLoginsList(forms, form.signon_realm, wallet_handle);
162 GetLoginsList(&all_forms, form.signon_realm, wallet_handle);
174 bool ok = SetLoginsList(kept_forms, form.signon_realm, wallet_handle);
216 string signon_realm(*realm);
219 DeserializeValue(signon_realm, pickle, &all_forms);
233 if (!SetLoginsList(kept_forms, signon_realm, wallet_handle))
246 return GetLoginsList(forms, form.signon_realm, wallet_handle)
    [all...]
password_form_data.cc 18 if (form_data.signon_realm)
19 form->signon_realm = std::string(form_data.signon_realm);
42 lhs.signon_realm == rhs.signon_realm &&
58 << "signon_realm: " << form.signon_realm << std::endl
native_backend_kwallet_x.h 49 // Reads PasswordForms from the wallet that match the given signon_realm.
51 const std::string& signon_realm,
68 // Writes a list of PasswordForms to the wallet with the given signon_realm.
69 // Overwrites any existing list for this signon_realm. Removes the entry if
72 const std::string& signon_realm,
100 static void DeserializeValue(const std::string& signon_realm,
password_store_change.h 31 form().signon_realm == other.form().signon_realm &&
password_form_manager_unittest.cc 27 observed_form_.signon_realm = "http://www.google.com";
91 EXPECT_EQ(observed_form()->signon_realm,
92 GetPendingCredentials(manager)->signon_realm);
115 EXPECT_EQ(observed_form()->signon_realm,
116 GetPendingCredentials(manager)->signon_realm);
155 EXPECT_EQ(GetPendingCredentials(manager)->signon_realm,
156 saved_match()->signon_realm);
password_form_data.h 16 const char* signon_realm; member in struct:PasswordFormData
  /external/chromium_org/components/autofill/core/common/
password_form_fill_data_unittest.cc 26 form_on_page.signon_realm = "https://foo.com/";
40 preferred_match.signon_realm = "https://foo.com/";
89 form_on_page.signon_realm = "https://foo.com/";
103 preferred_match.signon_realm = "https://mobile.foo.com/";
118 exact_match.signon_realm = "https://foo.com/";
134 public_suffix_match.signon_realm = "https://foo.com/";
password_form.cc 31 return signon_realm == form.signon_realm &&
58 << " signon_realm: " << form.signon_realm
  /external/chromium/webkit/glue/
password_form.cc 18 signon_realm(web_password_form.signonRealm.utf8()),
password_form.h 52 // The signon_realm is effectively the primary key used for retrieving
54 std::string signon_realm; member in struct:webkit_glue::PasswordForm
  /external/chromium_org/components/autofill/content/common/
autofill_param_traits_macros.h 26 IPC_STRUCT_TRAITS_MEMBER(signon_realm)

Completed in 81 milliseconds

1 2 3 4 5