Home
last modified time | relevance | path

Searched refs:wds (Results 1 – 20 of 20) sorted by relevance

/external/chromium_org/chrome/browser/sync/test/integration/
Dautofill_helper.cc84 scoped_refptr<AutofillWebDataService> wds = in RemoveKeyDontBlockForSync() local
90 RunOnDBThreadAndBlock(Bind(add_observer_func, wds, &mock_observer)); in RemoveKeyDontBlockForSync()
92 wds->RemoveFormValueForElementName(key.name(), key.value()); in RemoveKeyDontBlockForSync()
98 RunOnDBThreadAndBlock(Bind(remove_observer_func, wds, &mock_observer)); in RemoveKeyDontBlockForSync()
101 void GetAllAutofillEntriesOnDBThread(AutofillWebDataService* wds, in GetAllAutofillEntriesOnDBThread() argument
105 wds->GetDatabase())->GetAllAutofillEntries(entries); in GetAllAutofillEntriesOnDBThread()
108 std::vector<AutofillEntry> GetAllAutofillEntries(AutofillWebDataService* wds) { in GetAllAutofillEntries() argument
112 Unretained(wds), in GetAllAutofillEntries()
193 scoped_refptr<AutofillWebDataService> wds = GetWebDataService(profile); in AddKeys() local
198 RunOnDBThreadAndBlock(Bind(add_observer_func, wds, &mock_observer)); in AddKeys()
[all …]
/external/chromium/base/third_party/dmg_fp/
Ddtoa.cc526 int k, maxwds, sign, wds; member
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 = wds;
676 b->wds = 1;
[all …]
/external/chromium_org/base/third_party/dmg_fp/
Ddtoa.cc532 int k, maxwds, sign, wds; member
577 rv->sign = rv->wds = 0;
606 y->wds*sizeof(Long) + 2*sizeof(int))
616 int i, wds; variable
628 wds = b->wds;
651 while(++i < wds);
653 if (wds >= b->maxwds) {
659 b->x[wds++] = carry;
660 b->wds = wds;
682 b->wds = 1;
[all …]
/external/chromium/chrome/browser/autofill/
Dpersonal_data_manager.cc369 WebDataService* wds = profile_->GetWebDataService(Profile::EXPLICIT_ACCESS); in SetProfiles() local
370 if (!wds) in SetProfiles()
379 wds->RemoveAutofillProfile((*iter)->guid()); in SetProfiles()
386 wds->UpdateAutofillProfile(*iter); in SetProfiles()
394 wds->AddAutofillProfile(*iter); in SetProfiles()
425 WebDataService* wds = profile_->GetWebDataService(Profile::EXPLICIT_ACCESS); in SetCreditCards() local
426 if (!wds) in SetCreditCards()
434 wds->RemoveCreditCard((*iter)->guid()); in SetCreditCards()
441 wds->UpdateCreditCard(*iter); in SetCreditCards()
449 wds->AddCreditCard(*iter); in SetCreditCards()
[all …]
Dpersonal_data_manager_unittest.cc476 WebDataService* wds = profile_->GetWebDataService(Profile::EXPLICIT_ACCESS); in TEST_F() local
477 ASSERT_TRUE(wds); in TEST_F()
478 wds->AddAutofillProfile(profile2); in TEST_F()
494 wds->RemoveAutofillProfile(profile1.guid()); in TEST_F()
495 wds->RemoveAutofillProfile(profile2.guid()); in TEST_F()
/external/chromium/chrome/browser/
Dautocomplete_history_manager.cc197 WebDataService* wds) in AutocompleteHistoryManager() argument
200 web_data_service_(wds), in AutocompleteHistoryManager()
Dautocomplete_history_manager.h56 WebDataService* wds);
/external/chromium/chrome/browser/sync/glue/
Dautofill_profile_change_processor.cc108 WebDataService* wds = Source<WebDataService>(source).ptr(); in Observe() local
110 if (!wds || wds->GetDatabase() != web_database_) in Observe()
Dautofill_change_processor.cc61 WebDataService* wds = Source<WebDataService>(source).ptr(); in Observe() local
62 if (!wds || wds->GetDatabase() != web_database_) in Observe()
/external/chromium_org/chrome/browser/sync/
Dprofile_sync_service_autofill_unittest.cc344 ACTION_P(MakeAutocompleteSyncComponents, wds) { in ACTION_P() argument
348 return AutocompleteSyncableService::FromWebDataService(wds)->AsWeakPtr(); in ACTION_P()
374 ACTION_P(MakeAutofillProfileSyncComponents, wds) { in ACTION_P() argument
378 return AutofillProfileSyncableService::FromWebDataService(wds)->AsWeakPtr(); in ACTION_P()
389 AutofillWebDataService* wds,
405 AutofillWebDataService* wds, in SetExpectation() argument
412 WillOnce(MakeAutocompleteSyncComponents(wds)); in SetExpectation()
427 AutofillWebDataService* wds, in SetExpectation() argument
435 WillOnce(MakeAutofillProfileSyncComponents(wds)); in SetExpectation()
/external/wpa_supplicant_8/wpa_supplicant/
Dap.h46 void ap_rx_from_unknown_sta(void *ctx, const u8 *addr, int wds);
Dap.c665 void ap_rx_from_unknown_sta(void *ctx, const u8 *addr, int wds) in ap_rx_from_unknown_sta() argument
669 ieee802_11_rx_from_unknown(wpa_s->ap_iface->bss[0], addr, wds); in ap_rx_from_unknown_sta()
Devents.c2830 data->rx_from_unknown.wds);
/external/wpa_supplicant_8/src/ap/
Dieee802_11.h69 int wds);
Ddrv_callbacks.c573 int wds) in hostapd_rx_from_unknown_sta() argument
579 ieee802_11_rx_from_unknown(hapd, addr, wds); in hostapd_rx_from_unknown_sta()
859 data->rx_from_unknown.wds); in wpa_supplicant_event()
Dieee802_11.c2191 int wds) in ieee802_11_rx_from_unknown() argument
2200 if (wds && !(sta->flags & WLAN_STA_WDS)) { in ieee802_11_rx_from_unknown()
/external/chromium/chrome/browser/profiles/
Dprofile_impl.cc1034 scoped_refptr<WebDataService> wds(new WebDataService()); in CreateWebDataService() local
1035 if (!wds->Init(GetPath())) in CreateWebDataService()
1037 web_data_service_.swap(wds); in CreateWebDataService()
/external/chromium_org/third_party/WebKit/Source/wtf/
Ddtoa.cpp176 int wds = b.size(); in multadd() local
192 } while (++i < wds); in multadd()
/external/wpa_supplicant_8/src/drivers/
Ddriver_nl80211.c2545 int wds) in nl80211_spurious_frame() argument
2556 event.rx_from_unknown.wds = wds; in nl80211_spurious_frame()
6787 const u8 *addr, int wds, in nl80211_create_iface_once() argument
6818 } else if (wds) { in nl80211_create_iface_once()
6819 NLA_PUT_U8(msg, NL80211_ATTR_4ADDR, wds); in nl80211_create_iface_once()
6857 const u8 *addr, int wds, in nl80211_create_iface() argument
6863 ret = nl80211_create_iface_once(drv, ifname, iftype, addr, wds, handler, in nl80211_create_iface()
6875 wds, handler, arg); in nl80211_create_iface()
6920 event.rx_from_unknown.wds = (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) == in from_unknown_sta()
Ddriver.h3643 int wds; member