Lines Matching refs:capath
2917 PyObject *cadata = NULL, *cafile = NULL, *capath = NULL; in load_verify_locations() local
2925 &cafile, &capath, &cadata)) in load_verify_locations()
2930 if (capath == Py_None) in load_verify_locations()
2931 capath = NULL; in load_verify_locations()
2935 if (cafile == NULL && capath == NULL && cadata == NULL) { in load_verify_locations()
2956 if (capath) { in load_verify_locations()
2957 if (PyString_Check(capath)) { in load_verify_locations()
2958 Py_INCREF(capath); in load_verify_locations()
2959 capath_bytes = capath; in load_verify_locations()
2961 PyObject *u = PyUnicode_FromObject(capath); in load_verify_locations()
3014 if (capath) in load_verify_locations()