Searched refs:matched_forms (Results 1 - 8 of 8) sorted by last modified time

/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_store.cc228 const std::vector<PasswordForm*>& matched_forms) {
229 // Copy the contents of |matched_forms| into the request. The request takes
231 *(request->result()) = matched_forms;
226 CopyAndForwardLoginsResult( PasswordStore::GetLoginsRequest* request, const std::vector<PasswordForm*>& matched_forms) argument
H A Dpassword_store.h281 // Copies |matched_forms| into the request's result vector, then calls
287 const std::vector<autofill::PasswordForm*>& matched_forms);
H A Dpassword_store_default.cc97 std::vector<PasswordForm*> matched_forms; local
98 login_db_->GetLogins(form, &matched_forms);
99 callback_runner.Run(matched_forms);
H A Dtest_password_store.cc98 std::vector<autofill::PasswordForm*> matched_forms; local
103 matched_forms.push_back(new autofill::PasswordForm(*it));
105 runner.Run(matched_forms);
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_store_mac.cc1039 std::vector<PasswordForm*> matched_forms; local
1042 &matched_forms);
1049 matched_forms.insert(matched_forms.end(),
1059 callback_runner.Run(matched_forms);
H A Dpassword_store_win.cc163 std::vector<autofill::PasswordForm*> matched_forms = local
166 callback_runner.Run(matched_forms);
198 const std::vector<autofill::PasswordForm*>& matched_forms) {
200 if (matched_forms.empty() && db_handler_.get()) {
204 callback_runner.Run(matched_forms);
195 GetIE7LoginIfNecessary( const PasswordForm& form, const ConsumerCallbackRunner& callback_runner, const std::vector<autofill::PasswordForm*>& matched_forms) argument
H A Dpassword_store_win.h51 const std::vector<autofill::PasswordForm*>& matched_forms);
H A Dpassword_store_x.cc139 std::vector<autofill::PasswordForm*> matched_forms; local
140 if (use_native_backend() && backend_->GetLogins(form, &matched_forms)) {
141 SortLoginsByOrigin(&matched_forms);
145 if (matched_forms.size() > 0)
148 DCHECK(matched_forms.empty());
153 callback_runner.Run(matched_forms);

Completed in 200 milliseconds