Home
last modified time | relevance | path

Searched refs:cadata (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython2/Lib/
Dssl.py404 self.load_verify_locations(cadata=certs)
417 capath=None, cadata=None): argument
455 if cafile or capath or cadata:
456 context.load_verify_locations(cafile, capath, cadata)
467 cafile=None, capath=None, cadata=None): argument
495 if cafile or capath or cadata:
496 context.load_verify_locations(cafile, capath, cadata)
/external/python/cpython3/Lib/
Dssl.py471 self.load_verify_locations(cadata=certs)
552 capath=None, cadata=None): argument
572 if cafile or capath or cadata:
573 context.load_verify_locations(cafile, capath, cadata)
584 cafile=None, capath=None, cadata=None): argument
613 if cafile or capath or cadata:
614 context.load_verify_locations(cafile, capath, cadata)
/external/python/cpython3/Modules/clinic/
D_ssl.c.h541 PyObject *cadata);
551 PyObject *cadata = NULL; in _ssl__SSLContext_load_verify_locations() local
554 &cafile, &capath, &cadata)) { in _ssl__SSLContext_load_verify_locations()
557 return_value = _ssl__SSLContext_load_verify_locations_impl(self, cafile, capath, cadata); in _ssl__SSLContext_load_verify_locations()
/external/python/cpython2/Lib/test/
Dtest_ssl.py945 ctx.load_verify_locations(cadata=cacert_pem)
947 ctx.load_verify_locations(cadata=neuronio_pem)
950 ctx.load_verify_locations(cadata=neuronio_pem)
956 ctx.load_verify_locations(cadata=combined)
963 ctx.load_verify_locations(cadata="\n".join(combined))
968 ctx.load_verify_locations(cadata=cacert_der)
969 ctx.load_verify_locations(cadata=neuronio_der)
972 ctx.load_verify_locations(cadata=cacert_der)
978 ctx.load_verify_locations(cadata=combined)
983 self.assertRaises(TypeError, ctx.load_verify_locations, cadata=object)
[all …]
/external/python/cpython3/Lib/test/
Dtest_ssl.py1324 ctx.load_verify_locations(cadata=cacert_pem)
1326 ctx.load_verify_locations(cadata=neuronio_pem)
1329 ctx.load_verify_locations(cadata=neuronio_pem)
1335 ctx.load_verify_locations(cadata=combined)
1342 ctx.load_verify_locations(cadata="\n".join(combined))
1347 ctx.load_verify_locations(cadata=cacert_der)
1348 ctx.load_verify_locations(cadata=neuronio_der)
1351 ctx.load_verify_locations(cadata=cacert_der)
1357 ctx.load_verify_locations(cadata=combined)
1362 self.assertRaises(TypeError, ctx.load_verify_locations, cadata=object)
[all …]
/external/python/cpython2/Modules/
D_ssl.c2917 PyObject *cadata = NULL, *cafile = NULL, *capath = NULL; in load_verify_locations() local
2925 &cafile, &capath, &cadata)) in load_verify_locations()
2932 if (cadata == Py_None) in load_verify_locations()
2933 cadata = NULL; in load_verify_locations()
2935 if (cafile == NULL && capath == NULL && cadata == NULL) { in load_verify_locations()
2973 if (cadata) { in load_verify_locations()
2977 if (!PyUnicode_Check(cadata) && PyObject_GetBuffer(cadata, &buf, PyBUF_SIMPLE) == 0) { in load_verify_locations()
2992 cadata_ascii = PyUnicode_AsASCIIString(cadata); in load_verify_locations()
/external/llvm/test/CodeGen/X86/
D2009-07-16-CoalescerBug.ll5 …%struct.cadata = type <{ i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i32, i32, %struct.…
13 define i32 @addmatches(%struct.cadata* %dat, i8** nocapture %argv) nounwind ssp {
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
D2009-07-16-CoalescerBug.ll5 …%struct.cadata = type <{ i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i32, i32, %struct.…
13 define i32 @addmatches(%struct.cadata* %dat, i8** nocapture %argv) nounwind ssp {
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
D2009-07-16-CoalescerBug.ll5 …%struct.cadata = type <{ i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i32, i32, %struct.…
13 define i32 @addmatches(%struct.cadata* %dat, i8** nocapture %argv) nounwind ssp {
/external/python/cpython3/Modules/
D_ssl.c3968 PyObject *cadata) in _ssl__SSLContext_load_verify_locations_impl() argument
3980 if (cadata == Py_None) in _ssl__SSLContext_load_verify_locations_impl()
3981 cadata = NULL; in _ssl__SSLContext_load_verify_locations_impl()
3983 if (cafile == NULL && capath == NULL && cadata == NULL) { in _ssl__SSLContext_load_verify_locations_impl()
4000 if (cadata) { in _ssl__SSLContext_load_verify_locations_impl()
4004 if (PyObject_GetBuffer(cadata, &buf, PyBUF_SIMPLE) == 0) { in _ssl__SSLContext_load_verify_locations_impl()
4019 cadata_ascii = PyUnicode_AsASCIIString(cadata); in _ssl__SSLContext_load_verify_locations_impl()
/external/python/cpython2/Doc/library/
Dssl.rst243 .. function:: create_default_context(purpose=Purpose.SERVER_AUTH, cafile=None, capath=None, cadata=…
250 *cafile*, *capath*, *cadata* represent optional CA certificates to
261 *cadata* is given) or uses :meth:`SSLContext.load_default_certs` to load
1122 .. method:: SSLContext.load_verify_locations(cafile=None, capath=None, cadata=None)
1142 The *cadata* object, if present, is either an ASCII string of one or more
/external/python/cpython3/Doc/library/
Dssl.rst121 .. function:: create_default_context(purpose=Purpose.SERVER_AUTH, cafile=None, capath=None, cadata=…
128 *cafile*, *capath*, *cadata* represent optional CA certificates to
139 *cadata* is given) or uses :meth:`SSLContext.load_default_certs` to load
1517 .. method:: SSLContext.load_verify_locations(cafile=None, capath=None, cadata=None)
1537 The *cadata* object, if present, is either an ASCII string of one or more
1543 New optional argument *cadata*
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_events.py709 cadata=None): argument
/external/python/cpython3/Doc/whatsnew/
D3.4.rst1442 accepts a new optional argument *cadata*, which can be used to provide PEM or
/external/python/cpython3/Misc/
DHISTORY3355 - Issue #18138: Implement cadata argument of SSLContext.load_verify_location()