/external/python/cpython2/Lib/test/crashers/ |
D | loosing_mro_ref.py | 25 mykey = 'from Base' variable in Base 28 mykey = 'from Base2' variable in Base2 34 print X.mykey
|
/external/scapy/scapy/layers/tls/ |
D | automaton.py | 52 def parse_args(self, mycert=None, mykey=None, **kargs): argument 69 if mykey: 70 self.mykey = PrivKey(mykey) 72 self.mykey = None
|
D | automaton_srv.py | 61 mycert=None, mykey=None, argument 69 mykey=mykey, 175 self.cur_session.server_key = self.mykey 176 if isinstance(self.mykey, PrivKeyRSA): 177 self.cur_session.server_rsa_key = self.mykey 207 if isinstance(self.mykey, PrivKeyRSA): 209 elif isinstance(self.mykey, PrivKeyECDSA): 241 if isinstance(self.mykey, PrivKeyRSA): 243 elif isinstance(self.mykey, PrivKeyECDSA):
|
D | automaton_cli.py | 62 mycert=None, mykey=None, argument 68 mykey=mykey, 137 self.cur_session.client_key = self.mykey 241 if not self.mykey or not self.mycert: 358 self.mykey is None): 684 if not self.mykey or not self.mycert:
|
/external/curl/docs/examples/ |
D | usercertinmem.c | 96 const char *mykey = in sslctx_function() local 141 kbio = BIO_new_mem_buf((char *)mykey, -1); in sslctx_function()
|
/external/scapy/test/tls/ |
D | example_server.py | 29 mykey=basedir+'/test/tls/pki/srv_key.pem',
|
D | example_client.py | 32 mykey=basedir+"/test/tls/pki/cli_key.pem")
|
D | travis_test_server.py | 60 mykey=os.path.join(crt_basedir, 'srv_key.pem'))
|
/external/cldr/tools/c/genldml/ |
D | genldml.cpp | 633 const char* mykey = delta1.getKey(); in writeTable() local 634 UnicodeString string = dBundle.getStringEx(mykey, mError); in writeTable() 635 if(strcmp(mykey, "Fallback") == 0){ in writeTable() 642 string = fallbackDelta.getStringEx(mykey, mError); in writeTable() 644 string = rootDelta.getStringEx(mykey, mError); in writeTable() 646 Formattable args1[]={indentOffset,mykey,string}; in writeTable() 660 const char* mykey=dBundle1.getKey(); in writeTable() local 661 if(strcmp(mykey, "Fallback")==0){ in writeTable() 664 UnicodeString string = dBundle.getStringEx(mykey,mError); in writeTable() 666 Formattable args1[]={indentOffset,mykey,string}; in writeTable() [all …]
|
/external/python/cpython2/Doc/library/ |
D | logging.config.rst | 538 Given a string ``cfg://handlers.myhandler.mykey.123``, this will 539 resolve to ``config_dict['handlers']['myhandler']['mykey']['123']``. 540 If the string is specified as ``cfg://handlers.myhandler.mykey[123]``, 542 ``config_dict['handlers']['myhandler']['mykey'][123]``, and fall back 543 to ``config_dict['handlers']['myhandler']['mykey']['123']`` if that
|
/external/python/cpython3/Doc/library/ |
D | logging.config.rst | 585 Given a string ``cfg://handlers.myhandler.mykey.123``, this will 586 resolve to ``config_dict['handlers']['myhandler']['mykey']['123']``. 587 If the string is specified as ``cfg://handlers.myhandler.mykey[123]``, 589 ``config_dict['handlers']['myhandler']['mykey'][123]``, and fall back 590 to ``config_dict['handlers']['myhandler']['mykey']['123']`` if that
|
/external/python/cpython3/Lib/test/ |
D | test_descr.py | 4823 mykey = 'from Base' variable in MiscTests.test_type_lookup_mro_reference.Base 4827 mykey = 'from Base2' variable in MiscTests.test_type_lookup_mro_reference.Base2 4832 self.assertEqual(X.mykey, 'from Base')
|