/external/clang/test/VFS/ |
D | parse-errors.c | 1 // RUN: not %clang_cc1 -ivfsoverlay %S/Inputs/invalid-yaml.yaml -fsyntax-only %s 2>&1 | FileCheck %s 4 // RUN: not %clang_cc1 -ivfsoverlay %S/Inputs/missing-key.yaml -fsyntax-only %s 2>&1 | FileCheck -c… 5 // CHECK-MISSING-TYPE: missing key 'type' 6 // CHECK-MISSING-TYPE: invalid virtual filesystem overlay file 8 // RUN: not %clang_cc1 -ivfsoverlay %S/Inputs/unknown-key.yaml -fsyntax-only %s 2>&1 | FileCheck -c… 9 // CHECK-UNKNOWN-KEY: unknown key 10 // CHECK-UNKNOWN-KEY: invalid virtual filesystem overlay file 12 // RUN: not %clang_cc1 -ivfsoverlay %S/Inputs/unknown-value.yaml -fsyntax-only %s 2>&1 | FileCheck … 13 // CHECK-UNKNOWN-VALUE: expected boolean value 14 // CHECK-UNKNOWN-VALUE: invalid virtual filesystem overlay file
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
D | CertPathReviewerMessages.properties | 94 CertPathReviewer.totalPathLength.text = The total path length without self-signed certificates is {… 95 CertPathReviewer.totalPathLength.summary = The total path length without self-signed certificates i… 96 CertPathReviewer.totalPathLength.details = The total path length without self-signed certificates, … 101 # one unknown critical extension 103 CertPathReviewer.unknownCriticalExt.title = Unknown critical extension 104 CertPathReviewer.unknownCriticalExt.text = The certificate contains the unknown critical extension … 105 CertPathReviewer.unknownCriticalExt.summary = Unknown critical extension: {0}. 106 CertPathReviewer.unknownCriticalExt.details = The certificate contains the unknown critical extensi… 108 # more unknown critical extensions 110 CertPathReviewer.unknownCriticalExts.title = Unknown critical extensions [all …]
|
/external/vulkan-validation-layers/layers/ |
D | vk_layer_table.cpp | 1 /* Copyright (c) 2015-2016 The Khronos Group Inc. 2 * Copyright (c) 2015-2016 Valve Corporation 3 * Copyright (c) 2015-2016 LunarG, Inc. 4 * Copyright (c) 2015-2016 Google, Inc. 39 dispatch_key key = get_dispatch_key(object); in device_dispatch_table() local 40 device_table_map::const_iterator it = tableMap.find((void *)key); in device_dispatch_table() 42 return it->second; in device_dispatch_table() 46 dispatch_key key = get_dispatch_key(object); in instance_dispatch_table() local 47 instance_table_map::const_iterator it = tableInstanceMap.find((void *)key); in instance_dispatch_table() 50 …r, "instance_dispatch_table: map: %p, object: %p, key: %p, table: %p\n", &tableInstanceMap, object… in instance_dispatch_table() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
D | BaseCipherSpi.java | 5 import java.security.Key; 21 // BEGIN android-removed 24 // END android-removed 44 // BEGIN android-removed 47 // END android-removed 74 Key key) in engineGetKeySize() argument 76 return key.getEncoded().length; in engineGetKeySize() 82 return -1; in engineGetOutputSize() 107 throw new NoSuchPaddingException("Padding " + padding + " unknown."); in engineSetPadding() 111 Key key) in engineWrap() argument [all …]
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/util/ |
D | StringSwitcher.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 26 * This class implements a simple String->int mapping for a fixed set of keys. 45 * @param ints the array of integer results; must be the same length as the key array 46 …* @param fixedInput if false, an unknown key will be returned from {@link #intValue} as <code>-1</… 61 * Return the integer associated with the given key. 62 * @param s the key 63 * @return the associated integer value, or <code>-1</code> if the key is unknown (unless 65 * in which case the return value for an unknown key is undefined) 91 * @param ints the array of integer results; must be the same length as the key array 99 * Configure how unknown String keys will be handled. [all …]
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLKey.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 82 public static OpenSSLKey fromPrivateKey(PrivateKey key) throws InvalidKeyException { in fromPrivateKey() argument 83 if (key instanceof OpenSSLKeyHolder) { in fromPrivateKey() 84 return ((OpenSSLKeyHolder) key).getOpenSSLKey(); in fromPrivateKey() 87 final String keyFormat = key.getFormat(); in fromPrivateKey() 89 return wrapPrivateKey(key); in fromPrivateKey() 90 } else if (!"PKCS#8".equals(key.getFormat())) { in fromPrivateKey() 91 throw new InvalidKeyException("Unknown key format " + keyFormat); in fromPrivateKey() 94 final byte[] encoded = key.getEncoded(); in fromPrivateKey() 96 throw new InvalidKeyException("Key encoding is null"); in fromPrivateKey() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/ |
D | BaseWrapCipher.java | 6 import java.security.Key; 25 // BEGIN android-removed 28 // END android-removed 54 // BEGIN android-removed 57 // END android-removed 103 Key key) in engineGetKeySize() argument 105 return key.getEncoded().length; in engineGetKeySize() 111 return -1; in engineGetOutputSize() 136 throw new NoSuchPaddingException("Padding " + padding + " unknown."); in engineSetPadding() 141 Key key, in engineInit() argument [all …]
|
D | BaseStreamCipher.java | 7 import java.security.Key; 17 // BEGIN android-removed 20 // END android-removed 39 // BEGIN android-removed 42 // END android-removed 61 this(engine, ivLength, -1, -1); in BaseStreamCipher() 87 Key key) in engineGetKeySize() argument 89 return key.getEncoded().length * 8; in engineGetKeySize() 142 throw new NoSuchPaddingException("Padding " + padding + " unknown."); in engineSetPadding() 148 Key key, in engineInit() argument [all …]
|
/external/chromium-trace/catapult/perf_insights/perf_insights/mappers/ |
D | v8_map_function.html | 2 <!-- 4 Use of this source code is governed by a BSD-style license that can be 6 --> 33 var last_known_framework = ['Unknown/Uncategorized']; 48 data['js'] = 'Unknown'; 55 data['js'] = 'Unknown'; 58 if (scriptName.indexOf('http') != -1) { 95 'Google - Search': ['google.com/search?', 'www.google.'], 96 'Google - Adsense': ['pagead2.googlesyndication.com/pagead/'], 97 'Google - Analytics': ['google-analytics.com'], [all …]
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | R600GenRegisterInfo.pl | 1 #===-- R600GenRegisterInfo.pl - Script for generating register info files --===# 8 #===------------------------------------------------------------------------===# 14 #===------------------------------------------------------------------------===# 22 my $CREG_MAX = CONST_REG_COUNT - 1; 23 my $TREG_MAX = TEMP_REG_COUNT - 1; 68 def NEG_HALF : R600Reg<"-0.5">; 69 def NEG_ONE : R600Reg<"-1.0">; 101 let CopyCost = -1; 131 default: assert(!"Unknown register"); return 0; 133 foreach my $key (keys(%index_map)) { [all …]
|
/external/libchrome/base/posix/ |
D | global_descriptors.cc | 2 // Use of this source code is governed by a BSD-style license that can be 14 GlobalDescriptors::Descriptor::Descriptor(Key key, int fd) in Descriptor() argument 15 : key(key), fd(fd), region(base::MemoryMappedFile::Region::kWholeFile) { in Descriptor() 18 GlobalDescriptors::Descriptor::Descriptor(Key key, in Descriptor() argument 21 : key(key), fd(fd), region(region) { in Descriptor() 32 int GlobalDescriptors::Get(Key key) const { in Get() 33 const int ret = MaybeGet(key); in Get() 35 if (ret == -1) in Get() 36 DLOG(FATAL) << "Unknown global descriptor: " << key; in Get() 40 int GlobalDescriptors::MaybeGet(Key key) const { in MaybeGet() [all …]
|
/external/selinux/checkpolicy/test/ |
D | dispol.c | 45 int render_access_mask(uint32_t mask, avtab_key_t * key, policydb_t * p, in render_access_mask() argument 50 perm = sepol_av_to_string(p, key->target_class, mask); in render_access_mask() 59 fprintf(fp, "%s", p->p_type_val_to_name[type - 1]); in render_type() 63 int render_key(avtab_key_t * key, policydb_t * p, FILE * fp) in render_key() argument 66 stype = p->p_type_val_to_name[key->source_type - 1]; in render_key() 67 ttype = p->p_type_val_to_name[key->target_type - 1]; in render_key() 68 tclass = p->p_class_val_to_name[key->target_class - 1]; in render_key() 72 fprintf(fp, "%s %u : %s ", stype, key->target_type, tclass); in render_key() 74 fprintf(fp, "%u %s : %s ", key->source_type, ttype, tclass); in render_key() 76 fprintf(fp, "%u %u : %s ", key->source_type, key->target_type, in render_key() [all …]
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
D | FieldProviderTransformer.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 140 public void processCase(int key, Label end) throws Exception { in setByIndex() 141 Type type = (Type)fields.get(names[key]); in setByIndex() 143 e.putfield(names[key]); in setByIndex() 147 e.throw_exception(ILLEGAL_ARGUMENT_EXCEPTION, "Unknown field index"); in setByIndex() 158 public void processCase(int key, Label end) throws Exception { in getByIndex() 159 Type type = (Type)fields.get(names[key]); in getByIndex() 160 e.getfield(names[key]); in getByIndex() 165 e.throw_exception(ILLEGAL_ARGUMENT_EXCEPTION, "Unknown field index"); in getByIndex() 178 public void processCase(Object key, Label end) { in getField() [all …]
|
/external/boringssl/src/ssl/ |
D | ssl_stat.c | 1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 8 * This library is free for commercial and non-commercial use as long as 35 * being used are not cryptographic related :-). 65 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites 90 switch (ssl->state) { in SSL_state_string_long() 123 return "SSLv3 read server key exchange A"; in SSL_state_string_long() 126 return "SSLv3 read server key exchange B"; in SSL_state_string_long() 159 return "SSLv3 write client key exchange A"; in SSL_state_string_long() 162 return "SSLv3 write client key exchange B"; in SSL_state_string_long() 236 return "SSLv3 write key exchange A"; in SSL_state_string_long() [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/ |
D | encoding.py | 39 # TODO(craigcitro): Make these non-global. 118 """Return a repr-style string for a protorpc message. 145 # TODO(user): craigcitro suggests a pretty-printer from apitools/gen. 217 for field in field_path[:-1]: 220 dictblob[field_path[-1]] = value 355 """Rewrite unknown fields in message into message.destination.""" 380 """Process unknown fields in encoded_message of a message type.""" 390 new_pair = pair_type(key=name, value=value) 411 new_pair = pair_type(key=str(unknown_field), value=decoded_value) 417 """Remap unknown fields in message out of message.source.""" [all …]
|
/external/clang/test/Analysis/ |
D | objc-for.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,osx.cocoa.Loops,debug.ExprInspection -verify %s 9 - (int)countByEnumeratingWithState:(void *)state objects:(id *)objects count:(unsigned)count; 10 - (void)protocolMethod; 21 - (NSUInteger)count; 22 - (NSEnumerator *)objectEnumerator; 26 - (NSUInteger)count; 27 - (id)objectForKey:(id)key; 31 - (void)categoryMethodOnNSDictionary; 35 - (void)setObject:(id)obj forKey:(id)key; 39 - (void)addObject:(id)obj; [all …]
|
/external/curl/lib/ |
D | curl_ntlm_msgs.h | 10 * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. 48 /* unknown (1<<3) */ 61 /* Indicates that the LAN Manager session key should be used for signing and 65 /* unknown purpose */ 70 /* unknown (1<<10) */ 86 machine. Implies that the client may use a pre-established local security 103 authentication realm is a share. Presumably, this is for share-level 111 /* unknown purpose */ 114 /* unknown purpose */ 117 /* unknown purpose */ [all …]
|
/external/boringssl/src/crypto/cipher/test/ |
D | make_legacy_aead_tests.go | 22 var implicitIV *bool = flag.Bool("implicit-iv", false, "If true, generate tests for a cipher using … 76 func newBlockCipher(name string, key []byte) (cipher.Block, error) { 79 return aes.NewCipher(key) 81 return aes.NewCipher(key) 83 return des.NewTripleDESCipher(key) 85 return nil, fmt.Errorf("unknown cipher '%s'", name) 93 func ssl30MAC(hash crypto.Hash, key, input, ad []byte) []byte { argument 100 h.Write(key) 107 h.Write(key) 115 key []byte member [all …]
|
/external/autotest/client/tests/kvm/steps/ |
D | Win2008-32-setuptelnet.steps | 3 # uname -a: Linux dhcp-1-188.tlv.redhat.com 2.6.18-92.1.17.el5 #1 SMP Wed Oct 22 04:19:38 EDT 2008 … 4 # -------------------------------- 8 # Sending keys: ctrl-alt-delete 9 key ctrl-alt-delete 10 # -------------------------------- 14 # Sending keys: 1 q 2 w 3 e shift-p ret 15 key 1 16 key q 17 key 2 18 key w [all …]
|
/external/ipsec-tools/src/racoon/ |
D | algorithm.c | 139 { "des-iv64", algtype_des_iv64, IPSECDOI_ESP_DES_IV64, 8, 159 { "des-iv32", algtype_des_iv32, IPSECDOI_ESP_DES_IV32, 8, 330 int i, res = -1; 347 if (f == NULL || f->hashlen == NULL) 350 return (f->hashlen)(); 361 return "*UNKNOWN*"; 363 return f->name; 374 if (f == NULL || f->hashlen == NULL) 377 return (f->one)(buf); 400 int i, res = -1; [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
D | CipherSpi.java | 8 import java.security.Key; 29 // BEGIN android-removed 31 // END android-removed 112 Key key) in engineGetKeySize() argument 114 if (key instanceof RSAPrivateKey) in engineGetKeySize() 116 RSAPrivateKey k = (RSAPrivateKey)key; in engineGetKeySize() 120 else if (key instanceof RSAPublicKey) in engineGetKeySize() 122 RSAPublicKey k = (RSAPublicKey)key; in engineGetKeySize() 127 throw new IllegalArgumentException("not an RSA key!"); in engineGetKeySize() 205 // BEGIN android-removed in engineSetPadding() [all …]
|
D | KeyFactorySpi.java | 5 import java.security.Key; 32 Key key, in engineGetKeySpec() argument 36 if (spec.isAssignableFrom(RSAPublicKeySpec.class) && key instanceof RSAPublicKey) in engineGetKeySpec() 38 RSAPublicKey k = (RSAPublicKey)key; in engineGetKeySpec() 42 …else if (spec.isAssignableFrom(RSAPrivateKeySpec.class) && key instanceof java.security.interfaces… in engineGetKeySpec() 44 java.security.interfaces.RSAPrivateKey k = (java.security.interfaces.RSAPrivateKey)key; in engineGetKeySpec() 48 … else if (spec.isAssignableFrom(RSAPrivateCrtKeySpec.class) && key instanceof RSAPrivateCrtKey) in engineGetKeySpec() 50 RSAPrivateCrtKey k = (RSAPrivateCrtKey)key; in engineGetKeySpec() 60 return super.engineGetKeySpec(key, spec); in engineGetKeySpec() 63 protected Key engineTranslateKey( in engineTranslateKey() [all …]
|
/external/guice/core/src/com/google/inject/internal/ |
D | MoreTypes.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 26 import com.google.inject.Key; 68 * Returns a key that doesn't hold any references to parent classes. 72 public static <T> Key<T> canonicalizeKey(Key<T> key) { in canonicalizeKey() argument 73 // If we know this isn't a subclass, return as-is. in canonicalizeKey() 74 // Otherwise, recreate the key to avoid the subclass in canonicalizeKey() 75 if (key.getClass() == Key.class) { in canonicalizeKey() 76 return key; in canonicalizeKey() 77 } else if (key.getAnnotation() != null) { in canonicalizeKey() 78 return Key.get(key.getTypeLiteral(), key.getAnnotation()); in canonicalizeKey() [all …]
|
/external/toybox/toys/other/ |
D | sysctl.c | 1 /* sysctl.c - A utility to read and manipulate the sysctl parameters. 14 usage: sysctl [-aAeNnqw] [-p [FILE] | KEY[=VALUE]...] 18 -a,A Show all values 19 -e Don't warn about unknown keys 20 -N Don't print key values 21 -n Don't print key names 22 -p Read values from FILE (default /etc/sysctl.conf) 23 -q Don't show value after write 24 -w Only write values (object to reading) 30 static char *split_key(char *key) in split_key() argument [all …]
|
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
D | rijndael-api-fst.h | 1 /* $NetBSD: rijndael-api-fst.h,v 1.4 2006/09/09 16:22:36 manu Exp $ */ 3 /* $KAME: rijndael-api-fst.h,v 1.1.1.1 2001/08/08 09:56:27 sakane Exp $ */ 6 * rijndael-api-fst.h v2.3 April '2000 16 #include <crypto/rijndael/rijndael-alg-fst.h> 26 #define MODE_CFB1 3 /* Are we ciphering in 1-bit CFB mode? */ 31 /* Error Codes - CHANGE POSSIBLE: inclusion of additional error codes */ 32 #define BAD_KEY_DIR -1 /* Key direction is invalid, e.g., unknown value */ 33 #define BAD_KEY_MAT -2 /* Key material not of correct length */ 34 #define BAD_KEY_INSTANCE -3 /* Key passed is not valid */ 35 #define BAD_CIPHER_MODE -4 /* Params struct passed to cipherInit invalid */ [all …]
|