HomeSort by relevance Sort by last modified time
    Searched refs:blacklist (Results 26 - 50 of 123) sorted by null

12 3 4 5

  /external/skia/gn/
find_headers.py 12 # then write them to skia.h with a small blacklist.
20 blacklist = { variable
29 if f.endswith('.h') and f not in blacklist:
  /external/chromium-trace/catapult/devil/devil/android/tools/
flash_device.py 33 parser.add_argument('--blacklist-file', help='Device blacklist file.')
38 blacklist = device_blacklist.Blacklist(args.blacklist_file).Read()
39 if blacklist:
40 logger.critical('Device(s) in blacklist, not flashing devices:')
41 for key in blacklist:
device_monitor.py 164 def get_all_status(blacklist):
170 healthy_devices = device_utils.DeviceUtils.HealthyDevices(blacklist)
178 if blacklist:
179 for device, reason in blacklist.Read().iteritems():
191 blacklist file every 60 seconds and dumps the data to DEVICE_FILE.
197 parser.add_argument('--blacklist-file', help='Path to device blacklist file.')
217 blacklist = (device_blacklist.Blacklist(args.blacklist_file)
220 logging.info('Device monitor running with pid %d, adb: %s, blacklist: %s'
    [all...]
provision_devices.py 90 blacklist = (device_blacklist.Blacklist(blacklist_file)
96 devices = script_common.GetDevices(devices, blacklist)
99 if blacklist:
100 logging.error('Local device blacklist: %s', blacklist.Read())
139 parallel_devices.pMap(ProvisionDevice, steps, blacklist, reboot_timeout)
141 blacklisted_devices = blacklist.Read() if blacklist else []
150 def ProvisionDevice(device, steps, blacklist, reboot_timeout=None)
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/android/tools/
flash_device.py 31 parser.add_argument('--blacklist-file', help='Device blacklist file.')
36 blacklist = device_blacklist.Blacklist(args.blacklist_file).Read()
37 if blacklist:
38 logging.critical('Device(s) in blacklist, not flashing devices:')
39 for key in blacklist:
adb_run_shell_cmd.py 25 parser.add_argument('--blacklist-file', help='Device blacklist file.')
32 args.blacklist_file = device_blacklist.Blacklist(
35 blacklist=args.blacklist_file, device_arg=args.devices)
  /frameworks/base/services/core/java/com/android/server/
CertBlacklister.java 80 String blacklist = getValue(); local
81 if (blacklist != null) {
82 Slog.i(TAG, "Certificate blacklist changed, updating...");
91 out.write(blacklist.getBytes());
96 Slog.i(TAG, "Certificate blacklist updated");
98 Slog.e(TAG, "Failed to write blacklist", e);
128 // set up the public key blacklist observer
135 // set up the serial number blacklist observer
  /external/autotest/server/cros/dynamic_suite/
frontend_wrappers.py 80 # blacklist: Exceptions that we raise immediately if caught.
82 blacklist = (ImportError, error.RPCException, proxy.JSONRPCException,
100 is_blacklisted = isinstance(exc, blacklist)
108 blacklist=[ImportError, error.RPCException,
159 blacklist=[ImportError, error.RPCException,
  /external/autotest/client/site_tests/video_ChromeRTCHWDecodeUsed/
video_ChromeRTCHWDecodeUsed.py 30 blacklist = [
41 for black_entry in blacklist:
  /external/autotest/client/site_tests/video_VideoSanity/
video_VideoSanity.py 33 blacklist = [
43 for (blacklist_board, blacklist_arc_mode) in blacklist:
  /external/autotest/client/site_tests/video_VideoSeek/
video_VideoSeek.py 26 blacklist = [
38 for entry in blacklist:
  /external/autotest/tko/
status_lib.py 24 def clean_raw_line(raw_line, blacklist=DEFAULT_BLACKLIST):
26 return re.sub('|'.join(blacklist), '', raw_line)
status_lib_unittest.py 18 blacklist = ('\r\x00', 'FOOBAR', 'BLAh')
20 raw_line = raw_line_temp % blacklist
21 cleaned = status_lib.clean_raw_line(raw_line, blacklist)
23 cleaned, raw_line_temp % (('',) * len(blacklist)))
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
StatusBarSwitch.java 66 // If not enabled add to blacklist.
82 private void setList(Set<String> blacklist) {
85 TextUtils.join(",", blacklist), ActivityManager.getCurrentUser());
  /build/make/tools/fs_config/
fs_config_generate.c 63 "minus blacklist. Partitions are identified as path references to\n"
189 bool blacklist = false; local
191 blacklist = true;
208 if (!blacklist) submit = true;
  /external/autotest/client/common_lib/cros/
retry.py 142 def retry(ExceptionToCheck, timeout_min=1.0, delay_sec=3, blacklist=None,
148 magically become good. Will raise exceptions in blacklist as well.
163 @param blacklist: a list of exceptions that will be raised without retrying.
193 exception_tuple = () if blacklist is None else tuple(blacklist)
  /frameworks/rs/tests/lldb/
config.py 85 def blacklist(self): member in class:Config
86 '''Provide a test blacklist for skipping specific tests.
88 To specify the blacklist from the command line the following can be
89 used: --blacklist test1.py test2.py ...'''
  /system/bt/service/test/
advertise_data_unittest.cc 89 uint8_t blacklist[] = {HCI_EIR_FLAGS_TYPE, HCI_EIR_OOB_BD_ADDR_TYPE, local
92 for (size_t i = 0; i < sizeof(blacklist); i++) {
93 const std::vector<uint8_t> data{0x02, blacklist[i], 0x00};
  /external/curl/lib/
pipeline.c 169 struct curl_llist *blacklist = local
172 if(blacklist) {
175 curr = blacklist->head;
251 /* This might be NULL if sites == NULL, i.e the blacklist is cleared */
261 struct curl_llist *blacklist = local
264 if(blacklist) {
267 curr = blacklist->head;
322 /* This might be NULL if sites == NULL, i.e the blacklist is cleared */
  /external/autotest/client/site_tests/video_ChromeHWDecodeUsed/
video_ChromeHWDecodeUsed.py 28 blacklist = [
36 for black_entry in blacklist:
  /external/conscrypt/platform/src/test/java/org/conscrypt/
CertBlacklistTest.java 41 CertBlacklist blacklist = CertBlacklist.getDefault(); local
42 assertTrue(blacklist.isPublicKeyBlackListed(blacklistedCa.getPublicKey()));
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
Icu4jTransform.java 740 List<BodyDeclarationLocator> blacklist = local
747 List<BodyDeclarationLocator> blacklist = local
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/android/perf/
perf_control_devicetest.py 22 devices = device_utils.DeviceUtils.HealthyDevices(blacklist=None)
  /external/skia/infra/bots/
zip_utils_test.py 54 zip_utils.zip('input', 'test.zip', blacklist=['.git', '.DS*', '*.pyc'])
  /frameworks/base/services/core/java/com/android/server/policy/
PolicyControl.java 190 private Filter(ArraySet<String> whitelist, ArraySet<String> blacklist) {
192 mBlacklist = blacklist;
220 dump("blacklist", mBlacklist, pw); pw.print(']');
245 ArraySet<String> blacklist = new ArraySet<String>(); local
250 blacklist.add(token);
255 return new Filter(whitelist, blacklist);

Completed in 2734 milliseconds

12 3 4 5