/external/python/cpython2/Lib/idlelib/ |
D | FileList.py | 79 newkey = os.path.normcase(filename) 80 if newkey == key: 82 if newkey in self.dict: 83 conflict = self.dict[newkey] 89 self.dict[newkey] = edit 90 self.inversedict[edit] = newkey
|
/external/python/cpython3/Lib/idlelib/ |
D | filelist.py | 85 newkey = os.path.normcase(filename) 86 if newkey == key: 88 if newkey in self.dict: 89 conflict = self.dict[newkey] 95 self.dict[newkey] = edit 96 self.inversedict[edit] = newkey
|
/external/wpa_supplicant_8/hs20/server/ca/ |
D | setup.sh | 105 …$OPENSSL req -config openssl.cnf.tmp -batch -new -newkey rsa:4096 -keyout rootCA/private/cakey.pem… 126 …$OPENSSL req -config openssl.cnf.tmp -batch -new -newkey rsa:2048 -keyout demoCA/private/cakey.pem… 143 $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -new -newkey rsa:2048 -nodes -out ocsp.csr -keyout… 151 $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -new -newkey rsa:2048 -nodes -out server-revoked.c… 161 $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -new -newkey rsa:2048 -nodes -out server-client.cs… 169 $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -new -newkey rsa:2048 -nodes -out user.csr -keyout… 186 echo $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -sha256 -new -newkey rsa:2048 -nodes -out ser… 187 $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -sha256 -new -newkey rsa:2048 -nodes -out server.c…
|
/external/python/cpython2/Lib/test/ |
D | test_mutants.py | 63 newkey = Horrid(random.randrange(100)) 64 if newkey not in target: 66 target[newkey] = Horrid(random.randrange(100)) 67 keys.append(newkey)
|
/external/selinux/libsepol/src/ |
D | expand.c | 3305 avtab_key_t newkey; in expand_avtab_node() local 3308 newkey.target_class = k->target_class; in expand_avtab_node() 3309 newkey.specified = k->specified; in expand_avtab_node() 3318 newkey.source_type = k->source_type; in expand_avtab_node() 3322 newkey.target_type = j + 1; in expand_avtab_node() 3323 rc = expand_avtab_insert(expa, &newkey, d); in expand_avtab_node() 3332 newkey.target_type = k->target_type; in expand_avtab_node() 3336 newkey.source_type = i + 1; in expand_avtab_node() 3337 rc = expand_avtab_insert(expa, &newkey, d); in expand_avtab_node() 3351 newkey.source_type = i + 1; in expand_avtab_node() [all …]
|
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_dictionary.cpp | 208 const ByteString& newkey) { in ReplaceKey() argument 213 auto new_it = m_Map.find(newkey); in ReplaceKey() 217 m_Map[MaybeIntern(newkey)] = std::move(old_it->second); in ReplaceKey()
|
D | cpdf_dictionary.h | 95 void ReplaceKey(const ByteString& oldkey, const ByteString& newkey);
|
/external/grpc-grpc/src/core/tsi/test_creds/ |
D | README | 9 $ openssl req -x509 -newkey rsa:1024 -keyout badserver.key -out badserver.pem \ 22 $ openssl req -x509 -new -newkey rsa:1024 -nodes -out ca.pem -config ca-openssl.cnf -days 3650 -ext…
|
/external/grpc-grpc-java/testing/src/main/resources/certs/ |
D | README | 9 $ openssl req -x509 -newkey rsa:1024 -keyout badserver.key -out badserver.pem \ 22 $ openssl req -x509 -new -newkey rsa:1024 -nodes -out ca.pem -config ca-openssl.cnf -days 3650 -ext…
|
/external/python/google-api-python-client/tests/data/ |
D | create-private-keys.sh | 3 openssl req -new -newkey rsa:2048 -days 3650 -nodes -x509 \
|
/external/openssh/ |
D | packet.c | 2517 struct newkeys *newkey; in newkeys_to_blob() local 2520 if ((newkey = ssh->state->newkeys[mode]) == NULL) in newkeys_to_blob() 2522 enc = &newkey->enc; in newkeys_to_blob() 2523 mac = &newkey->mac; in newkeys_to_blob() 2524 comp = &newkey->comp; in newkeys_to_blob() 2621 struct newkeys *newkey = NULL; in newkeys_from_blob() local 2625 if ((newkey = calloc(1, sizeof(*newkey))) == NULL) { in newkeys_from_blob() 2634 enc = &newkey->enc; in newkeys_from_blob() 2635 mac = &newkey->mac; in newkeys_from_blob() 2636 comp = &newkey->comp; in newkeys_from_blob() [all …]
|
/external/selinux/libsepol/cil/src/ |
D | cil_binary.c | 1152 filename_trans_t *newkey = NULL; in __cil_typetransition_to_avtab() local 1202 newkey = cil_calloc(1, sizeof(*newkey)); in __cil_typetransition_to_avtab() 1204 newkey->stype = sepol_src->s.value; in __cil_typetransition_to_avtab() 1205 newkey->ttype = sepol_tgt->s.value; in __cil_typetransition_to_avtab() 1206 newkey->tclass = sepol_obj->s.value; in __cil_typetransition_to_avtab() 1207 newkey->name = cil_strdup(name); in __cil_typetransition_to_avtab() 1210 rc = hashtab_insert(filename_trans_table, (hashtab_key_t)newkey, newdatum); in __cil_typetransition_to_avtab() 1214 otype = hashtab_search(filename_trans_table, (hashtab_key_t)newkey); in __cil_typetransition_to_avtab() 1227 (hashtab_key_t)newkey, in __cil_typetransition_to_avtab() 1234 free(newkey->name); in __cil_typetransition_to_avtab() [all …]
|
/external/curl/tests/certs/scripts/ |
D | genserv.sh | 73 …$OPENSSL req -config $PREFIX-sv.prm -newkey rsa:$KEYSIZE -keyout $PREFIX-sv.key -out $PREFIX-sv.cs…
|
/external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_import/ |
D | tpmtoken_import_tests.sh | 79 -newkey rsa:2048 -keyout $TPM_KEYFILE \
|
/external/doclava/src/com/google/doclava/ |
D | SampleCode.java | 181 Data hdf, String newkey) { in writeProjectDirectory() argument 187 String key = newkey; in writeProjectDirectory()
|
/external/python/cpython2/Modules/ |
D | itertoolsmodule.c | 77 PyObject *newvalue, *newkey, *oldvalue; in groupby_step() local 84 newkey = newvalue; in groupby_step() 87 newkey = PyObject_CallFunctionObjArgs(gbo->keyfunc, newvalue, NULL); in groupby_step() 88 if (newkey == NULL) { in groupby_step() 96 Py_XSETREF(gbo->currkey, newkey); in groupby_step()
|
/external/fsverity-utils/ |
D | README.md | 76 openssl req -newkey rsa:4096 -nodes -keyout key.pem -x509 -out cert.pem
|
/external/python/cpython3/Modules/ |
D | itertoolsmodule.c | 79 PyObject *newvalue, *newkey, *oldvalue; in groupby_step() local 86 newkey = newvalue; in groupby_step() 89 newkey = PyObject_CallFunctionObjArgs(gbo->keyfunc, newvalue, NULL); in groupby_step() 90 if (newkey == NULL) { in groupby_step() 98 Py_XSETREF(gbo->currkey, newkey); in groupby_step()
|
/external/python/cpython3/Doc/library/ |
D | unittest.mock.rst | 125 >>> with patch.dict(foo, {'newkey': 'newvalue'}, clear=True): 126 ... assert foo == {'newkey': 'newvalue'} 1319 >>> with patch.dict(foo, {'newkey': 'newvalue'}): 1320 ... assert foo == {'newkey': 'newvalue'} 1325 >>> with patch.dict('os.environ', {'newkey': 'newvalue'}): 1326 ... print(os.environ['newkey']) 1329 >>> assert 'newkey' not in os.environ
|
D | unittest.mock-examples.rst | 414 >>> with patch.dict(foo, {'newkey': 'newvalue'}, clear=True): 415 ... assert foo == {'newkey': 'newvalue'}
|
/external/python/cpython3/Objects/ |
D | unicodeobject.c | 13229 PyObject *newkey; in unicode_maketrans_impl() local 13237 newkey = PyLong_FromLong(PyUnicode_READ(kind, data, 0)); in unicode_maketrans_impl() 13238 if (!newkey) in unicode_maketrans_impl() 13240 res = PyDict_SetItem(new, newkey, value); in unicode_maketrans_impl() 13241 Py_DECREF(newkey); in unicode_maketrans_impl()
|
/external/guice/lib/build/ |
D | bnd-0.0.384.jar | META-INF/MANIFEST.MF
LICENSE
OSGI-OPT/
OSGI-OPT/bnd.bnd
... |