Searched defs:cadata (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython3/Modules/clinic/
H A D_ssl.c.h499 "load_verify_locations($self, /, cafile=None, capath=None, cadata=None)\n"
510 PyObject *cadata);
516 static const char * const _keywords[] = {"cafile", "capath", "cadata", NULL};
520 PyObject *cadata = NULL; local
523 &cafile, &capath, &cadata)) {
526 return_value = _ssl__SSLContext_load_verify_locations_impl(self, cafile, capath, cadata);
/external/python/cpython2/Modules/
H A D_ssl.c2834 char *kwlist[] = {"cafile", "capath", "cadata", NULL};
2835 PyObject *cadata = NULL, *cafile = NULL, *capath = NULL; local
2843 &cafile, &capath, &cadata))
2850 if (cadata == Py_None)
2851 cadata = NULL;
2853 if (cafile == NULL && capath == NULL && cadata == NULL) {
2855 "cafile, capath and cadata cannot be all omitted");
2890 /* validata cadata type and load cadata */
2891 if (cadata) {
[all...]
/external/python/cpython3/Modules/
H A D_ssl.c3424 cadata: object = NULL
3432 PyObject *cadata)
3444 if (cadata == Py_None)
3445 cadata = NULL;
3447 if (cafile == NULL && capath == NULL && cadata == NULL) {
3449 "cafile, capath and cadata cannot be all omitted");
3463 /* validata cadata type and load cadata */
3464 if (cadata) {
3468 if (PyObject_GetBuffer(cadata,
3429 _ssl__SSLContext_load_verify_locations_impl(PySSLContext *self, PyObject *cafile, PyObject *capath, PyObject *cadata) argument
[all...]

Completed in 324 milliseconds