/external/autotest/client/common_lib/cros/ |
retry.py | 136 def retry(ExceptionToCheck, timeout_min=1.0, delay_sec=3, blacklist=None, 142 magically become good. Will raise exceptions in blacklist as well. 157 @param blacklist: a list of exceptions that will be raised without retrying. 186 exception_tuple = () if blacklist is None else tuple(blacklist)
|
/external/skia/infra/bots/recipe_modules/swarming/ |
api.py | 71 task_name, extra_variables, blacklist=None): 82 blacklist: list of regular expressions indicating which files/directories 92 if blacklist: # pragma: no cover 93 for b in blacklist: 94 isolate_args.extend(['--blacklist', b])
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
WifiConnectivityManager.java | 173 // BSSID blacklist [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
CertBlacklist.java | 82 logger.log(Level.WARNING, "Could not read blacklist", e); 156 logger.log(Level.WARNING, "Tried to blacklist invalid serial number " + value, e); 207 logger.log(Level.WARNING, "Tried to blacklist invalid pubkey " + value);
|
/external/clang/include/clang/AST/ |
CommentHTMLTags.td | 55 // Define a blacklist of attributes that are not safe to pass through to HTML
|
/external/clang/test/CodeGen/ |
sanitize-thread-attr.cpp | 4 // RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -o - %s -fsanitize=thread -fsanitize-blacklist=%t | FileCheck -check-prefix=BL %s
|
/external/curl/docs/libcurl/opts/ |
CURLOPT_SSL_OPTIONS.3 | 46 exception in the case of Windows' Untrusted Publishers blacklist which it seems
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/ |
StyleEscapeFunction.java | 28 * It does not extend SimpleEscapingFunction because SimpleEscapingFunction requires a blacklist of
|
/external/skia/infra/bots/ |
zip_utils_test.py | 54 zip_utils.zip('input', 'test.zip', blacklist=['.git', '.DS*', '*.pyc'])
|
/hardware/qcom/wlan/qcwcn/wifi_hal/ |
roam.cpp | 274 /* Set bssid blacklist */ 276 ALOGE("%s: Number of blacklist bssids(%d) provided is more than maximum blacklist bssids(%d)" 288 ALOGE("%s: Failed to configure blacklist bssids", __FUNCTION__);
|
/cts/hostsidetests/net/app/src/com/android/cts/net/hostside/ |
DataSaverModeTest.java | 181 // Check status after removing blacklist. 187 // ... remove blacklist - access's still rejected because Data Saver is on
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
video_recorder.py | 119 parser.add_argument('--blacklist-file', help='Device blacklist JSON file.')
|
/external/clang/docs/ |
ControlFlowIntegrity.rst | 109 of :ref:`blacklisted <cfi-blacklist>` types, must be compiled with 151 functions may be :ref:`blacklisted <cfi-blacklist>`. 155 of :ref:`blacklisted <cfi-blacklist>` types, must be compiled with 171 of :ref:`blacklisted <cfi-blacklist>` types, must be compiled with 200 than calls in :ref:`blacklisted <cfi-blacklist>` functions, must call a 239 .. _cfi-blacklist: 241 Blacklist 270 checks for all classes, except for those which appear in the CFI blacklist
|
/external/guice/core/src/com/google/inject/internal/ |
AbstractBindingProcessor.java | 42 // It's unfortunate that we have to maintain a blacklist of specific 101 injector.state.parent().blacklist(key, injector.state, binding.getSource());
|
InheritingState.java | 173 public void blacklist(Key<?> key, State state, Object source) { method in class:InheritingState 174 parent.blacklist(key, state, source);
|
/external/libmojo/third_party/catapult/devil/devil/android/tools/ |
video_recorder.py | 117 parser.add_argument('--blacklist-file', help='Device blacklist JSON file.')
|
/external/libyuv/files/tools/ubsan/ |
vptr_blacklist.txt | 2 # UBSan vptr blacklist. 11 # object size) and both have no virtual functions, we blacklist them as there
|
/external/openssh/ |
sftp-server.0 | 55 supported request types. If both a blacklist and a whitelist are 56 specified, then the blacklist is applied before the whitelist.
|
sftp-server.8 | 110 If both a blacklist and a whitelist are specified, then the blacklist is
|
/external/v8/tools/ |
generate-builtins-tests.py | 15 BLACKLIST = [ 120 if obj_name in BLACKLIST: continue
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
StatusBarIconController.java | 51 String[] blacklist = blackListStr.split(","); local 52 for (String slot : blacklist) {
|
/packages/services/Car/car-lib/src/android/car/content/pm/ |
AppBlockingPackageInfo.java | 30 * Parcelable to hold information on app blocking whitelist or blacklist for a package. 41 /** Blacklist or whitelist every Activities in the package. When this is set,
|
/external/conscrypt/platform/src/main/java/org/conscrypt/ |
TrustManagerImpl.java | 136 private final CertBlacklist blacklist; field in class:TrustManagerImpl 163 CertBlacklist blacklist) { 164 this(keyStore, manager, certStore, blacklist, null, null, null); 171 TrustedCertificateStore certStore, CertBlacklist blacklist, CTLogStore ctLogStore, 203 if (blacklist == null) { 204 blacklist = CertBlacklist.getDefault(); 223 this.blacklist = blacklist; 672 // Check whole chain against the blacklist 717 if (blacklist.isPublicKeyBlackListed(cert.getPublicKey())) [all...] |
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
WifiConnectivityManagerTest.java | [all...] |
/frameworks/wilhelm/src/android/ |
AudioRecorder_to_android.cpp | 517 // Check a blacklist of interfaces that are incompatible with fast tracks. 521 // In release builds, we only use the blacklist method. 525 static const unsigned blacklist[] = { local 530 // FIXME The problem with a blacklist is remembering to add new interfaces here 533 for (unsigned i = 0; i < sizeof(blacklist)/sizeof(blacklist[0]); ++i) { 534 if (IsInterfaceInitialized(&ar->mObject, blacklist[i])) { 541 if (blacklist[i] != MPH_ANDROIDEFFECT) { 542 switch (blacklist[i]) { [all...] |