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

1 2

  /external/wpa_supplicant_6/wpa_supplicant/
blacklist.c 2 * wpa_supplicant - Temporary BSSID blacklist
19 #include "blacklist.h"
22 * wpa_blacklist_get - Get the blacklist entry for a BSSID
25 * Returns: Matching blacklist entry for the BSSID or %NULL if not found
32 e = wpa_s->blacklist;
44 * wpa_blacklist_add - Add an BSSID to the blacklist
46 * @bssid: BSSID to be added to the blacklist
49 * This function adds the specified BSSID to the blacklist or increases the
50 * blacklist count if the BSSID was already listed. It should be called when
54 * This blacklist is used to force %wpa_supplicant to go through all availabl
    [all...]
wpa_supplicant_i.h 342 struct wpa_blacklist *blacklist; member in struct:wpa_supplicant
ctrl_iface.c 23 #include "blacklist.h"
435 /* cmd: "BLACKLIST [<BSSID>]" */
440 e = wpa_s->blacklist;
458 wpa_printf(MSG_DEBUG, "CTRL_IFACE: BLACKLIST bssid='%s'", cmd);
    [all...]
events.c 32 #include "blacklist.h"
670 if (selected == NULL && wpa_s->blacklist) {
671 wpa_printf(MSG_DEBUG, "No APs found - clear blacklist "
  /external/webkit/WebCore/page/
UserScript.h 40 PassOwnPtr<Vector<String> > whitelist, PassOwnPtr<Vector<String> > blacklist,
45 , m_blacklist(blacklist)
53 const Vector<String>* blacklist() const { return m_blacklist.get(); } function in class:WebCore::UserScript
UserStyleSheet.h 40 PassOwnPtr<Vector<String> > whitelist, PassOwnPtr<Vector<String> > blacklist)
44 , m_blacklist(blacklist)
51 const Vector<String>* blacklist() const { return m_blacklist.get(); } function in class:WebCore::UserStyleSheet
UserContentURLPattern.cpp 33 bool UserContentURLPattern::matchesPatterns(const KURL& url, const Vector<String>* whitelist, const Vector<String>* blacklist)
35 // In order for a URL to be a match it has to be present in the whitelist and not present in the blacklist.
49 if (blacklist) {
50 for (unsigned i = 0; i < blacklist->size(); ++i) {
51 UserContentURLPattern contentPattern(blacklist->at(i));
UserContentURLPattern.h 52 static bool matchesPatterns(const KURL&, const Vector<String>* whitelist, const Vector<String>* blacklist);
PageGroup.h 78 PassOwnPtr<Vector<String> > whitelist, PassOwnPtr<Vector<String> > blacklist,
81 PassOwnPtr<Vector<String> > whitelist, PassOwnPtr<Vector<String> > blacklist);
PageGroup.cpp 295 PassOwnPtr<Vector<String> > blacklist, UserScriptInjectionTime injectionTime)
299 OwnPtr<UserScript> userScript(new UserScript(source, url, whitelist, blacklist, injectionTime));
309 PassOwnPtr<Vector<String> > blacklist)
313 OwnPtr<UserStyleSheet> userStyleSheet(new UserStyleSheet(source, url, whitelist, blacklist));
  /system/bluetooth/data/
Android.mk 25 blacklist.conf \
  /external/dhcpcd/
dhcpcd.h 93 in_addr_t *blacklist; member in struct:options
dhcpcd.c 101 {"blacklist", required_argument, NULL, 'X'},
570 options->blacklist = xrealloc(options->blacklist,
572 options->blacklist[options->blacklist_len] = addr.s_addr;
1049 free(options->blacklist);
  /external/webkit/WebKit/mac/WebView/
WebViewPrivate.h 490 + (void)_addUserScriptToGroup:(NSString *)groupName world:(WebScriptWorld *)world source:(NSString *)source url:(NSURL *)url whitelist:(NSArray *)whitelist blacklist:(NSArray *)blacklist injectionTime:(WebUserScriptInjectionTime)injectionTime;
491 + (void)_addUserStyleSheetToGroup:(NSString *)groupName world:(WebScriptWorld *)world source:(NSString *)source url:(NSURL *)url whitelist:(NSArray *)whitelist blacklist:(NSArray *)blacklist;
WebView.mm     [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebViewPrivate.idl 189 [in] unsigned blacklistCount, [in, size_is(blacklistCount)] BSTR* blacklist,
193 [in] unsigned blacklistCount, [in, size_is(blacklistCount)] BSTR* blacklist);
  /frameworks/base/core/jni/
android_bluetooth_ScoSocket.cpp 45 * Defines the module strings used in the blacklist file.
46 * These are used by consumers of the blacklist file to see if the line is
52 /* Define the type strings used in the blacklist file. */
97 /* Blacklist data */
107 static scoBlacklist_t *blacklist = NULL; member in namespace:android
164 const char *filename = "/etc/bluetooth/blacklist.conf";
174 LOGE("Error(%s)opening blacklist file", strerror(errno));
230 LOGE("Unknown SCO type entry in Blacklist file");
237 blacklist = list = newelem;
248 scoBlacklist_t *list = blacklist;
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 554 [WebView _addUserScriptToGroup:@"org.webkit.DumpRenderTree" world:[WebScriptWorld world] source:sourceNS url:nil whitelist:nil blacklist:nil injectionTime:(runAtStart ? WebInjectAtDocumentStart : WebInjectAtDocumentEnd)];
561 [WebView _addUserStyleSheetToGroup:@"org.webkit.DumpRenderTree" world:[WebScriptWorld world] source:sourceNS url:nil whitelist:nil blacklist:nil];
  /external/wpa_supplicant/
wpa_supplicant.c 376 * wpa_blacklist_get - Get the blacklist entry for a BSSID
379 * Returns: Matching blacklist entry for the BSSID or %NULL if not found
386 e = wpa_s->blacklist;
398 * wpa_blacklist_add - Add an BSSID to the blacklist
400 * @bssid: BSSID to be added to the blacklist
403 * This function adds the specified BSSID to the blacklist or increases the
404 * blacklist count if the BSSID was already listed. It should be called when
408 * This blacklist is used to force %wpa_supplicant to go through all available
420 wpa_printf(MSG_DEBUG, "BSSID " MACSTR " blacklist count "
431 e->next = wpa_s->blacklist;
    [all...]
wpa_supplicant_i.h 334 struct wpa_blacklist *blacklist; member in struct:wpa_supplicant
events.c 535 if (selected == NULL && wpa_s->blacklist) {
536 wpa_printf(MSG_DEBUG, "No APs found - clear blacklist "
ctrl_iface.c 327 /* cmd: "BLACKLIST [<BSSID>]" */
332 e = wpa_s->blacklist;
1245 } else if (os_strncmp(buf, "BLACKLIST", 9) == 0) {
1249 struct wpa_blacklist *bl = wpa_s->blacklist;
    [all...]
  /external/webkit/WebKit/win/
WebView.h 748 unsigned blacklistCount, BSTR* blacklist,
752 unsigned blacklistCount, BSTR* blacklist);
    [all...]
WebView.cpp     [all...]
  /external/kernel-headers/original/linux/
input.h 990 * @blacklist: prointer to a table of input_device_ids this driver should
1009 struct input_device_id *blacklist; member in struct:input_handler

Completed in 215 milliseconds

1 2