Searched refs:store_name (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Modules/clinic/ |
H A D | _ssl.c.h | 1253 "enum_certificates($module, /, store_name)\n" 1258 "store_name may be one of \'CA\', \'ROOT\' or \'MY\'. The system may provide\n" 1268 _ssl_enum_certificates_impl(PyObject *module, const char *store_name); 1274 static const char * const _keywords[] = {"store_name", NULL}; in _ssl_enum_certificates() 1277 const char *store_name; in _ssl_enum_certificates() local 1284 _PyArg_BadArgument("enum_certificates", "argument 'store_name'", "str", args[0]); in _ssl_enum_certificates() 1288 store_name = PyUnicode_AsUTF8AndSize(args[0], &store_name_length); in _ssl_enum_certificates() 1289 if (store_name == NULL) { in _ssl_enum_certificates() 1292 if (strlen(store_name) != (size_t)store_name_length) { in _ssl_enum_certificates() 1296 return_value = _ssl_enum_certificates_impl(module, store_name); in _ssl_enum_certificates() 1330 const char *store_name; _ssl_enum_crls() local [all...] |
/third_party/curl/lib/vtls/ |
H A D | schannel.c | 388 get_cert_location(TCHAR *path, DWORD *store_name, TCHAR **store_path, in get_cert_location() argument 402 *store_name = CERT_SYSTEM_STORE_CURRENT_USER; in get_cert_location() 404 *store_name = CERT_SYSTEM_STORE_LOCAL_MACHINE; in get_cert_location() 406 *store_name = CERT_SYSTEM_STORE_CURRENT_SERVICE; in get_cert_location() 408 *store_name = CERT_SYSTEM_STORE_SERVICES; in get_cert_location() 410 *store_name = CERT_SYSTEM_STORE_USERS; in get_cert_location() 413 *store_name = CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY; in get_cert_location() 416 *store_name = CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY; in get_cert_location() 419 *store_name = CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE; in get_cert_location()
|
/third_party/python/Python/ |
H A D | symtable.c | 1941 /* Compute store_name, the name actually bound by the import in symtable_visit_alias() 1945 PyObject *store_name; in symtable_visit_alias() local 1950 store_name = PyUnicode_Substring(name, 0, dot); in symtable_visit_alias() 1951 if (!store_name) in symtable_visit_alias() 1955 store_name = name; in symtable_visit_alias() 1956 Py_INCREF(store_name); in symtable_visit_alias() 1959 int r = symtable_add_def(st, store_name, DEF_IMPORT, LOCATION(a)); in symtable_visit_alias() 1960 Py_DECREF(store_name); in symtable_visit_alias() 1973 Py_DECREF(store_name); in symtable_visit_alias() 1976 Py_DECREF(store_name); in symtable_visit_alias() [all...] |
H A D | compile.c | 3996 identifier store_name; in compiler_from_import() local 4005 store_name = alias->name; in compiler_from_import() 4007 store_name = alias->asname; in compiler_from_import() 4009 if (!compiler_nameop(c, store_name, Store)) { in compiler_from_import()
|
/third_party/python/Modules/ |
H A D | _ssl.c | 5487 ssl_collect_certificates(const char *store_name) in ssl_collect_certificates() argument 5517 system_stores[i], store_name); in ssl_collect_certificates() 5537 store_name: str 5541 store_name may be one of 'CA', 'ROOT' or 'MY'. The system may provide 5549 _ssl_enum_certificates_impl(PyObject *module, const char *store_name) in _ssl_enum_certificates_impl() argument 5561 hCollectionStore = ssl_collect_certificates(store_name); in _ssl_enum_certificates_impl() 5636 store_name: str 5640 store_name may be one of 'CA', 'ROOT' or 'MY'. The system may provide 5647 _ssl_enum_crls_impl(PyObject *module, const char *store_name) in _ssl_enum_crls_impl() argument 5659 hCollectionStore = ssl_collect_certificates(store_name); in _ssl_enum_crls_impl() [all...] |
Completed in 27 milliseconds