Home
last modified time | relevance | path

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

/external/dbus/bus/
Ddir-watch-inotify.c45 static int wds[MAX_DIRS_TO_WATCH]; variable
127 new_wds[i] = wds[j]; in _set_watched_dirs_internal()
129 wds[j] = -1; in _set_watched_dirs_internal()
141 if (wds[j] != -1) in _set_watched_dirs_internal()
143 inotify_rm_watch (inotify_fd, wds[j]); in _set_watched_dirs_internal()
145 wds[j] = -1; in _set_watched_dirs_internal()
189 wds[i] = new_wds[i]; in _set_watched_dirs_internal()
/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/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/webkit/Source/WebKit/
DAndroid.mk107 android/wds/Command.cpp \
108 android/wds/Connection.cpp \
109 android/wds/DebugServer.cpp
/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/wpa_supplicant_8/wpa_supplicant/
Dap.h45 void ap_rx_from_unknown_sta(void *ctx, const u8 *addr, int wds);
Dap.c645 void ap_rx_from_unknown_sta(void *ctx, const u8 *addr, int wds) in ap_rx_from_unknown_sta() argument
649 ieee802_11_rx_from_unknown(wpa_s->ap_iface->bss[0], addr, wds); in ap_rx_from_unknown_sta()
Devents.c2659 data->rx_from_unknown.wds);
/external/wpa_supplicant_8/src/ap/
Dieee802_11.h66 int wds);
Ddrv_callbacks.c542 int wds) in hostapd_rx_from_unknown_sta() argument
548 ieee802_11_rx_from_unknown(hapd, addr, wds); in hostapd_rx_from_unknown_sta()
756 data->rx_from_unknown.wds); in wpa_supplicant_event()
Dieee802_11.c1828 int wds) in ieee802_11_rx_from_unknown() argument
1837 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/webkit/
DAndroid.mk399 include $(WEBKIT_PATH)/android/wds/client/Android.mk
/external/wpa_supplicant_8/src/drivers/
Ddriver_nl80211.c2086 int wds) in nl80211_spurious_frame() argument
2097 event.rx_from_unknown.wds = wds; in nl80211_spurious_frame()
5792 const u8 *addr, int wds) in nl80211_create_iface_once() argument
5825 } else if (wds) { in nl80211_create_iface_once()
5826 NLA_PUT_U8(msg, NL80211_ATTR_4ADDR, wds); in nl80211_create_iface_once()
5861 const u8 *addr, int wds) in nl80211_create_iface() argument
5865 ret = nl80211_create_iface_once(drv, ifname, iftype, addr, wds); in nl80211_create_iface()
5876 wds); in nl80211_create_iface()
5921 event.rx_from_unknown.wds = (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) == in from_unknown_sta()
Ddriver.h3387 int wds; member
/external/webkit/Source/JavaScriptCore/wtf/
Ddtoa.cpp211 int wds = b.size(); in multadd() local
227 } while (++i < wds); in multadd()