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

1 2 3 4 5 6 7 8

  /external/kmod/testsuite/rootfs-pristine/test-blacklist/etc/modprobe.d/
modprobe.conf 0 blacklist floppy
2 blacklist pcspkr
  /external/adhd/cras/src/server/config/
cras_device_blacklist.c 26 struct cras_device_blacklist *blacklist; local
29 blacklist = calloc(1, sizeof(*blacklist));
30 if (!blacklist)
36 blacklist->ini = iniparser_load(ini_name);
38 return blacklist;
41 void cras_device_blacklist_destroy(struct cras_device_blacklist *blacklist)
43 if (blacklist && blacklist->ini)
44 iniparser_freedict(blacklist->ini)
    [all...]
cras_device_blacklist.h 20 /* Creates a blacklist of devices that should never be added to the system.
24 * A pointer to the created blacklist on success, NULL on failure.
29 /* Destroys a blacklist returned by cras_device_blacklist_create().
31 * blacklist - Blacklist returned by cras_device_blacklist_create()
33 void cras_device_blacklist_destroy(struct cras_device_blacklist *blacklist);
37 * blacklist - Blacklist returned by cras_device_blacklist_create()
44 int cras_device_blacklist_check(struct cras_device_blacklist *blacklist,
  /external/adhd/cras/src/tests/
device_blacklist_unittest.cc 31 TEST(Blacklist, EmptyBlacklist) {
33 struct cras_device_blacklist *blacklist; local
37 blacklist = cras_device_blacklist_create(CONFIG_PATH);
38 ASSERT_NE(static_cast<cras_device_blacklist*>(NULL), blacklist); local
39 EXPECT_EQ(0, cras_device_blacklist_check(blacklist, 0x0d8c, 0x0008, 0, 0));
41 cras_device_blacklist_destroy(blacklist);
44 TEST(Blacklist, BlackListOneUsbOutput) {
48 struct cras_device_blacklist *blacklist; local
52 blacklist = cras_device_blacklist_create(CONFIG_PATH);
53 ASSERT_NE(static_cast<cras_device_blacklist*>(NULL), blacklist); local
69 struct cras_device_blacklist *blacklist; local
74 ASSERT_NE(static_cast<cras_device_blacklist*>(NULL), blacklist); local
    [all...]
  /frameworks/base/config/
generate-preloaded-classes.sh 17 echo "Usage $0 <input classes file> <blacklist file> [extra classes files]"
34 blacklist=$2
39 LC_ALL=C sort "$input" "${extra_classes_files[@]}" | uniq | grep -f "$blacklist" -v -F -x
  /external/skia/infra/bots/recipes/
test.py 32 def blacklist(quad): function in function:dm_flags
170 blacklist('gltestthreading gm _ lcdblendmodes')
171 blacklist('gltestthreading gm _ lcdoverlap')
172 blacklist('gltestthreading gm _ textbloblooper')
174 blacklist('gltestthreading gm _ bleed_alpha_bmp')
175 blacklist('gltestthreading gm _ bleed_alpha_bmp_shader')
176 blacklist('gltestthreading gm _ bleed_alpha_image')
177 blacklist('gltestthreading gm _ bleed_alpha_image_shader')
178 blacklist('gltestthreading gm _ savelayer_with_backdrop')
179 blacklist('gltestthreading gm _ persp_shaders_bw'
    [all...]
  /external/skqp/infra/bots/recipes/
test.py 32 def blacklist(quad): function in function:dm_flags
176 blacklist('gltestthreading gm _ lcdblendmodes')
177 blacklist('gltestthreading gm _ lcdoverlap')
178 blacklist('gltestthreading gm _ textbloblooper')
180 blacklist('gltestthreading gm _ bleed_alpha_bmp')
181 blacklist('gltestthreading gm _ bleed_alpha_bmp_shader')
182 blacklist('gltestthreading gm _ bleed_alpha_image')
183 blacklist('gltestthreading gm _ bleed_alpha_image_shader')
184 blacklist('gltestthreading gm _ savelayer_with_backdrop')
185 blacklist('gltestthreading gm _ persp_shaders_bw'
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
CertBlacklisterTest.java 53 // read the contents of the pubkey blacklist
54 String blacklist = IoUtils.readFileAsString(PUBKEY_PATH); local
56 assertEquals("", blacklist);
60 // build a new thing to blacklist
65 String blacklist = IoUtils.readFileAsString(PUBKEY_PATH); local
67 assertEquals(badPubkey, blacklist);
75 String blacklist = IoUtils.readFileAsString(PUBKEY_PATH); local
76 assertEquals(badPubkey, blacklist);
82 String blacklist = IoUtils.readFileAsString(PUBKEY_PATH); local
83 assertEquals(badPubkey, blacklist);
89 String blacklist = IoUtils.readFileAsString(PUBKEY_PATH); local
96 String blacklist = IoUtils.readFileAsString(PUBKEY_PATH); local
106 String blacklist = IoUtils.readFileAsString(PUBKEY_PATH); local
107 assertEquals(bl.toString(), blacklist); local
114 String blacklist = IoUtils.readFileAsString(SERIAL_PATH); local
125 String blacklist = IoUtils.readFileAsString(SERIAL_PATH); local
135 String blacklist = IoUtils.readFileAsString(SERIAL_PATH); local
142 String blacklist = IoUtils.readFileAsString(SERIAL_PATH); local
149 String blacklist = IoUtils.readFileAsString(SERIAL_PATH); local
156 String blacklist = IoUtils.readFileAsString(SERIAL_PATH); local
166 String blacklist = IoUtils.readFileAsString(SERIAL_PATH); local
167 assertEquals(bl.toString(), blacklist); local
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/android/
device_blacklist.py 12 class Blacklist(object):
19 """Reads the blacklist from the blacklist file.
29 blacklist = json.load(f)
30 if not isinstance(blacklist, dict):
32 self._path, blacklist)
33 blacklist = dict()
34 return blacklist
36 def Write(self, blacklist):
37 """Writes the provided blacklist to the blacklist file
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/
device_blacklist.py 14 class Blacklist(object):
21 """Reads the blacklist from the blacklist file.
27 blacklist = dict()
29 return blacklist
33 blacklist = json.load(f)
35 logger.warning('Unable to read blacklist: %s', str(e))
38 if not isinstance(blacklist, dict):
40 self._path, blacklist)
41 blacklist = dict(
    [all...]
  /art/tools/hiddenapi/
hiddenapi_test.cc 45 const ScratchFile& blacklist,
72 argv_str.push_back("--blacklist=" + blacklist.GetFilename());
224 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
227 OpenStream(blacklist) << "LMain;->ifield:LBadType3;" << std::endl;
228 auto dex_file = RunHiddenApi(light_greylist, dark_greylist, blacklist, {}, &dex);
233 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
236 OpenStream(blacklist) << "LMain;->ifield:LBadType3;" << std::endl;
237 auto dex_file = RunHiddenApi(light_greylist, dark_greylist, blacklist, {}, &dex);
242 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
251 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
260 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
269 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
278 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
287 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
296 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
305 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
314 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
323 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
332 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
341 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
350 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
359 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
368 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
377 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
386 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
395 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
404 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
413 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
422 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
431 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
440 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
449 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
458 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
467 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
476 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
485 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
494 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
503 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
512 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
521 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
530 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
539 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
548 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
557 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
566 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
575 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
584 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
593 ScratchFile dex, light_greylist, dark_greylist, blacklist; local
    [all...]
  /frameworks/base/services/robotests/src/com/android/server/location/
GnssSatelliteBlacklistHelperTest.java 61 String blacklist = "3,0,5,24"; local
62 updateBlacklistAndVerifyCallbackIsCalled(blacklist);
67 String blacklist = "3, 11"; local
68 updateBlacklistAndVerifyCallbackIsCalled(blacklist);
73 String blacklist = ""; local
74 updateBlacklistAndVerifyCallbackIsCalled(blacklist);
79 String blacklist = "3,0,5"; local
80 updateBlacklistAndNotifyContentObserver(blacklist);
86 String blacklist = "3,-11"; local
87 updateBlacklistAndNotifyContentObserver(blacklist);
93 String blacklist = "3,1a,5,11"; local
    [all...]
  /external/adhd/cras/src/server/
cras_alsa_card.h 27 * blacklist - List of devices that should be ignored.
36 struct cras_device_blacklist *blacklist,
  /frameworks/base/tools/preload2/src/com/android/preload/actions/
ComputeThresholdXAction.java 25 String blacklist) {
26 super(name, dataTableModel, 1, blacklist);
  /hardware/interfaces/gnss/1.1/
IGnssConfiguration.hal 35 * Or 0 to blacklist all svid's for the specified constellation
55 * This blacklist must be considered as an additional source of which satellites
59 * @param blacklist The BlacklistedSource(s) of satellites the HAL must not use.
61 * @return success Whether the HAL accepts and abides by the provided blacklist.
63 setBlacklist(vec<BlacklistedSource> blacklist) generates (bool success);
  /external/wpa_supplicant_8/wpa_supplicant/
blacklist.c 2 * wpa_supplicant - Temporary BSSID blacklist
13 #include "blacklist.h"
16 * wpa_blacklist_get - Get the blacklist entry for a BSSID
19 * Returns: Matching blacklist entry for the BSSID or %NULL if not found
29 e = wpa_s->blacklist;
41 * wpa_blacklist_add - Add an BSSID to the blacklist
43 * @bssid: BSSID to be added to the blacklist
44 * Returns: Current blacklist count on success, -1 on failure
46 * This function adds the specified BSSID to the blacklist or increases the
47 * blacklist count if the BSSID was already listed. It should be called whe
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/tools/
device_recovery.py 62 def RecoverDevice(device, blacklist, should_reboot=lambda device: True):
64 blacklist):
95 if blacklist:
96 blacklist.Extend([device.adb.GetDeviceSerial()],
100 if blacklist:
101 blacklist.Extend([device.adb.GetDeviceSerial()],
110 if blacklist:
111 blacklist.Extend([device.adb.GetDeviceSerial()],
115 if blacklist:
116 blacklist.Extend([device.adb.GetDeviceSerial()]
    [all...]
device_status.py 35 def IsBlacklisted(serial, blacklist):
36 return blacklist and serial in blacklist.Read()
39 def _BatteryStatus(device, blacklist):
51 if blacklist:
52 blacklist.Extend([device.adb.GetDeviceSerial()], reason='low_battery')
62 def DeviceStatus(devices, blacklist):
67 blacklist: The current device blacklist.
108 if not IsBlacklisted(serial, blacklist)
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/android/tools/
device_recovery.py 54 def RecoverDevice(device, blacklist, should_reboot=lambda device: True):
56 blacklist):
80 if blacklist:
81 blacklist.Extend([device.adb.GetDeviceSerial()],
85 if blacklist:
86 blacklist.Extend([device.adb.GetDeviceSerial()],
93 if blacklist:
94 blacklist.Extend([device.adb.GetDeviceSerial()],
98 if blacklist:
99 blacklist.Extend([device.adb.GetDeviceSerial()]
    [all...]
  /external/libcxx/utils/
sym_match.py 23 '--blacklist', dest='blacklist',
33 if not args.regexes and args.blacklist is None:
34 sys.stderr.write('Either a regex or a blacklist must be specified.\n')
36 if args.blacklist:
37 search_list = util.read_blacklist(args.blacklist)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/
sym_match.py 23 '--blacklist', dest='blacklist',
33 if not args.regexes and args.blacklist is None:
34 sys.stderr.write('Either a regex or a blacklist must be specified.\n')
36 if args.blacklist:
37 search_list = util.read_blacklist(args.blacklist)
  /art/tools/veridex/
appcompat.sh 48 --blacklist=${PACKAGING}/hiddenapi-blacklist.txt \
  /external/skia/infra/bots/
zip_utils.py 19 def filtered(names, blacklist):
22 for pattern in blacklist:
27 def zip(target_dir, zip_file, blacklist=None): # pylint: disable=W0622
31 blacklist = blacklist or []
34 d[:] = filtered(d, blacklist)
35 for filename in filtered(f, blacklist):
  /external/skqp/infra/bots/
zip_utils.py 19 def filtered(names, blacklist):
22 for pattern in blacklist:
27 def zip(target_dir, zip_file, blacklist=None): # pylint: disable=W0622
31 blacklist = blacklist or []
34 d[:] = filtered(d, blacklist)
35 for filename in filtered(f, blacklist):
  /frameworks/base/services/core/java/com/android/server/location/
GnssSatelliteBlacklistHelper.java 18 * Detects blacklist change and updates the blacklist.
52 String blacklist = Settings.Global.getString( local
55 if (blacklist == null) {
56 blacklist = "";
59 Log.d(TAG, String.format("Update GNSS satellite blacklist: %s", blacklist));
64 blacklistValues = parseSatelliteBlacklist(blacklist);
66 Log.e(TAG, "Exception thrown when parsing blacklist string.", e);
71 Log.e(TAG, "blacklist string has odd number of values.
    [all...]

Completed in 884 milliseconds

1 2 3 4 5 6 7 8