Home
last modified time | relevance | path

Searched refs:mykey (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Lib/test/crashers/
Dloosing_mro_ref.py25 mykey = 'from Base' variable in Base
28 mykey = 'from Base2' variable in Base2
34 print X.mykey
/external/scapy/scapy/layers/tls/
Dautomaton.py52 def parse_args(self, mycert=None, mykey=None, **kargs): argument
69 if mykey:
70 self.mykey = PrivKey(mykey)
72 self.mykey = None
Dautomaton_srv.py61 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):
Dautomaton_cli.py62 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/
Dusercertinmem.c96 const char *mykey = in sslctx_function() local
141 kbio = BIO_new_mem_buf((char *)mykey, -1); in sslctx_function()
/external/scapy/test/tls/
Dexample_server.py29 mykey=basedir+'/test/tls/pki/srv_key.pem',
Dexample_client.py32 mykey=basedir+"/test/tls/pki/cli_key.pem")
Dtravis_test_server.py60 mykey=os.path.join(crt_basedir, 'srv_key.pem'))
/external/cldr/tools/c/genldml/
Dgenldml.cpp633 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/
Dlogging.config.rst538 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/
Dlogging.config.rst585 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/
Dtest_descr.py4823 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')