Searched refs:wds (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/chrome/browser/sync/test/integration/
H A Dautofill_helper.cc83 scoped_refptr<AutofillWebDataService> wds = local
89 RunOnDBThreadAndBlock(Bind(add_observer_func, wds, &mock_observer));
91 wds->RemoveFormValueForElementName(key.name(), key.value());
97 RunOnDBThreadAndBlock(Bind(remove_observer_func, wds, &mock_observer));
100 void GetAllAutofillEntriesOnDBThread(AutofillWebDataService* wds, argument
104 wds->GetDatabase())->GetAllAutofillEntries(entries);
107 std::vector<AutofillEntry> GetAllAutofillEntries(AutofillWebDataService* wds) { argument
111 Unretained(wds),
191 scoped_refptr<AutofillWebDataService> wds = GetWebDataService(profile); local
196 RunOnDBThreadAndBlock(Bind(add_observer_func, wds,
223 scoped_refptr<AutofillWebDataService> wds = GetWebDataService(profile); local
[all...]
/external/chromium/base/third_party/dmg_fp/
H A Ddtoa.cc526 int k, maxwds, sign, wds; member in struct:dmg_fp::Bigint
571 rv->sign = rv->wds = 0;
600 y->wds*sizeof(Long) + 2*sizeof(int))
610 int i, wds; variable
622 wds = b->wds;
645 while(++i < wds);
647 if (wds >= b->maxwds) {
653 b->x[wds++] = carry;
654 b->wds
[all...]
/external/chromium/chrome/browser/
H A Dautocomplete_history_manager.h56 WebDataService* wds);
H A Dautocomplete_history_manager.cc197 WebDataService* wds)
200 web_data_service_(wds),
194 AutocompleteHistoryManager( TabContents* tab_contents, Profile* profile, WebDataService* wds) argument
/external/chromium/chrome/browser/autofill/
H A Dpersonal_data_manager.cc369 WebDataService* wds = profile_->GetWebDataService(Profile::EXPLICIT_ACCESS); local
370 if (!wds)
379 wds->RemoveAutofillProfile((*iter)->guid());
386 wds->UpdateAutofillProfile(*iter);
394 wds->AddAutofillProfile(*iter);
425 WebDataService* wds = profile_->GetWebDataService(Profile::EXPLICIT_ACCESS); local
426 if (!wds)
434 wds->RemoveCreditCard((*iter)->guid());
441 wds->UpdateCreditCard(*iter);
449 wds
484 WebDataService* wds = profile_->GetWebDataService(Profile::EXPLICIT_ACCESS); local
545 WebDataService* wds = profile_->GetWebDataService(Profile::EXPLICIT_ACCESS); local
[all...]
H A Dpersonal_data_manager_unittest.cc476 WebDataService* wds = profile_->GetWebDataService(Profile::EXPLICIT_ACCESS); local
477 ASSERT_TRUE(wds);
478 wds->AddAutofillProfile(profile2);
494 wds->RemoveAutofillProfile(profile1.guid());
495 wds->RemoveAutofillProfile(profile2.guid());
/external/chromium_org/base/third_party/dmg_fp/
H A Ddtoa.cc526 int k, maxwds, sign, wds; member in struct:dmg_fp::Bigint
571 rv->sign = rv->wds = 0;
600 y->wds*sizeof(Long) + 2*sizeof(int))
610 int i, wds; variable
622 wds = b->wds;
645 while(++i < wds);
647 if (wds >= b->maxwds) {
653 b->x[wds++] = carry;
654 b->wds
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dap.h46 void ap_rx_from_unknown_sta(void *ctx, const u8 *addr, int wds);
H A Dap.c665 void ap_rx_from_unknown_sta(void *ctx, const u8 *addr, int wds) argument
669 ieee802_11_rx_from_unknown(wpa_s->ap_iface->bss[0], addr, wds);
/external/chromium/chrome/browser/sync/glue/
H A Dautofill_profile_change_processor.cc108 WebDataService* wds = Source<WebDataService>(source).ptr(); local
110 if (!wds || wds->GetDatabase() != web_database_)
H A Dautofill_change_processor.cc61 WebDataService* wds = Source<WebDataService>(source).ptr(); local
62 if (!wds || wds->GetDatabase() != web_database_)
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_11.h69 int wds);
H A Ddrv_callbacks.c573 int wds)
579 ieee802_11_rx_from_unknown(hapd, addr, wds);
859 data->rx_from_unknown.wds);
571 hostapd_rx_from_unknown_sta(struct hostapd_data *hapd, const u8 *bssid, const u8 *addr, int wds) argument
/external/wpa_supplicant_8/src/ap/
H A Dieee802_11.h69 int wds);
H A Ddrv_callbacks.c573 int wds)
579 ieee802_11_rx_from_unknown(hapd, addr, wds);
859 data->rx_from_unknown.wds);
571 hostapd_rx_from_unknown_sta(struct hostapd_data *hapd, const u8 *bssid, const u8 *addr, int wds) argument
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dieee802_11.h69 int wds);
H A Ddrv_callbacks.c573 int wds)
579 ieee802_11_rx_from_unknown(hapd, addr, wds);
859 data->rx_from_unknown.wds);
571 hostapd_rx_from_unknown_sta(struct hostapd_data *hapd, const u8 *bssid, const u8 *addr, int wds) argument
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_service_autofill_unittest.cc339 ACTION_P(MakeAutocompleteSyncComponents, wds) {
343 return AutocompleteSyncableService::FromWebDataService(wds)->AsWeakPtr();
369 ACTION_P(MakeAutofillProfileSyncComponents, wds) {
373 return AutofillProfileSyncableService::FromWebDataService(wds)->AsWeakPtr();
384 AutofillWebDataService* wds,
400 AutofillWebDataService* wds,
407 WillOnce(MakeAutocompleteSyncComponents(wds));
422 AutofillWebDataService* wds,
430 WillOnce(MakeAutofillProfileSyncComponents(wds));
/external/chromium/chrome/browser/profiles/
H A Dprofile_impl.cc1034 scoped_refptr<WebDataService> wds(new WebDataService());
1035 if (!wds->Init(GetPath()))
1037 web_data_service_.swap(wds);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A Ddtoa.cpp168 int wds = b.size(); local
184 } while (++i < wds);
/external/chromium_org/components/autofill/core/browser/
H A Dpersonal_data_manager_unittest.cc534 scoped_refptr<AutofillWebDataService> wds = local
536 ASSERT_TRUE(wds.get());
537 wds->AddAutofillProfile(profile2);
552 wds->RemoveAutofillProfile(profile1.guid());
553 wds->RemoveAutofillProfile(profile2.guid());
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver.h3643 int wds; member in struct:wpa_event_data::rx_from_unknown
H A Ddriver_nl80211.c2545 int wds)
2556 event.rx_from_unknown.wds = wds;
6787 const u8 *addr, int wds,
6818 } else if (wds) {
6819 NLA_PUT_U8(msg, NL80211_ATTR_4ADDR, wds);
6857 const u8 *addr, int wds,
6863 ret = nl80211_create_iface_once(drv, ifname, iftype, addr, wds, handler,
6875 wds, handler, arg);
6920 event.rx_from_unknown.wds
2544 nl80211_spurious_frame(struct i802_bss *bss, struct nlattr **tb, int wds) argument
6784 nl80211_create_iface_once(struct wpa_driver_nl80211_data *drv, const char *ifname, enum nl80211_iftype iftype, const u8 *addr, int wds, int (*handler)(struct nl_msg *, void *), void *arg) argument
6855 nl80211_create_iface(struct wpa_driver_nl80211_data *drv, const char *ifname, enum nl80211_iftype iftype, const u8 *addr, int wds, int (*handler)(struct nl_msg *, void *), void *arg) argument
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver.h3643 int wds; member in struct:wpa_event_data::rx_from_unknown
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver.h3643 int wds; member in struct:wpa_event_data::rx_from_unknown

Completed in 444 milliseconds

12