Home
last modified time | relevance | path

Searched refs:store_name (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Modules/clinic/
D_ssl.c.h1108 _ssl_enum_certificates_impl(PyObject *module, const char *store_name);
1116 const char *store_name; in _ssl_enum_certificates() local
1119 &store_name)) { in _ssl_enum_certificates()
1122 return_value = _ssl_enum_certificates_impl(module, store_name); in _ssl_enum_certificates()
1147 _ssl_enum_crls_impl(PyObject *module, const char *store_name);
1155 const char *store_name; in _ssl_enum_crls() local
1158 &store_name)) { in _ssl_enum_crls()
1161 return_value = _ssl_enum_crls_impl(module, store_name); in _ssl_enum_crls()
/external/python/cpython2/Python/
Dsymtable.c1410 PyObject *store_name; in symtable_visit_alias() local
1415 store_name = PyString_FromStringAndSize(base, dot - base); in symtable_visit_alias()
1416 if (!store_name) in symtable_visit_alias()
1420 store_name = name; in symtable_visit_alias()
1421 Py_INCREF(store_name); in symtable_visit_alias()
1424 int r = symtable_add_def(st, store_name, DEF_IMPORT); in symtable_visit_alias()
1425 Py_DECREF(store_name); in symtable_visit_alias()
1432 Py_DECREF(store_name); in symtable_visit_alias()
1436 Py_DECREF(store_name); in symtable_visit_alias()
Dcompile.c2016 identifier store_name; in compiler_from_import() local
2025 store_name = alias->name; in compiler_from_import()
2027 store_name = alias->asname; in compiler_from_import()
2029 if (!compiler_nameop(c, store_name, Store)) { in compiler_from_import()
/external/curl/lib/vtls/
Dschannel.c358 get_cert_location(TCHAR *path, DWORD *store_name, TCHAR **store_path, in get_cert_location() argument
372 *store_name = CERT_SYSTEM_STORE_CURRENT_USER; in get_cert_location()
374 *store_name = CERT_SYSTEM_STORE_LOCAL_MACHINE; in get_cert_location()
376 *store_name = CERT_SYSTEM_STORE_CURRENT_SERVICE; in get_cert_location()
378 *store_name = CERT_SYSTEM_STORE_SERVICES; in get_cert_location()
380 *store_name = CERT_SYSTEM_STORE_USERS; in get_cert_location()
383 *store_name = CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY; in get_cert_location()
386 *store_name = CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY; in get_cert_location()
389 *store_name = CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE; in get_cert_location()
/external/python/cpython3/Python/
Dsymtable.c1629 PyObject *store_name; in symtable_visit_alias() local
1634 store_name = PyUnicode_Substring(name, 0, dot); in symtable_visit_alias()
1635 if (!store_name) in symtable_visit_alias()
1639 store_name = name; in symtable_visit_alias()
1640 Py_INCREF(store_name); in symtable_visit_alias()
1643 int r = symtable_add_def(st, store_name, DEF_IMPORT); in symtable_visit_alias()
1644 Py_DECREF(store_name); in symtable_visit_alias()
1653 Py_DECREF(store_name); in symtable_visit_alias()
1656 Py_DECREF(store_name); in symtable_visit_alias()
Dcompile.c2885 identifier store_name; in compiler_from_import() local
2894 store_name = alias->name; in compiler_from_import()
2896 store_name = alias->asname; in compiler_from_import()
2898 if (!compiler_nameop(c, store_name, Store)) { in compiler_from_import()
/external/python/cpython2/Modules/
D_ssl.c3849 char *store_name; in PySSL_enum_certificates() local
3856 kwlist, &store_name)) { in PySSL_enum_certificates()
3865 store_name); in PySSL_enum_certificates()
3939 char *store_name; in PySSL_enum_crls() local
3946 kwlist, &store_name)) { in PySSL_enum_crls()
3955 store_name); in PySSL_enum_crls()
/external/python/cpython3/Modules/
D_ssl.c5418 _ssl_enum_certificates_impl(PyObject *module, const char *store_name) in _ssl_enum_certificates_impl() argument
5432 store_name); in _ssl_enum_certificates_impl()
5506 _ssl_enum_crls_impl(PyObject *module, const char *store_name) in _ssl_enum_crls_impl() argument
5520 store_name); in _ssl_enum_crls_impl()
/external/python/cpython2/Doc/library/
Dssl.rst477 .. function:: enum_certificates(store_name)
479 Retrieve certificates from Windows' system cert store. *store_name* may be
500 .. function:: enum_crls(store_name)
502 Retrieve CRLs from Windows' system cert store. *store_name* may be
/external/mesa3d/src/amd/common/
Dac_nir_to_llvm.c2489 const char *store_name; in visit_store_ssbo() local
2534 store_name = "llvm.amdgcn.buffer.store.v4f32"; in visit_store_ssbo()
2536 store_name = "llvm.amdgcn.buffer.store.v2f32"; in visit_store_ssbo()
2540 store_name = "llvm.amdgcn.buffer.store.f32"; in visit_store_ssbo()
2550 ac_build_intrinsic(&ctx->ac, store_name, in visit_store_ssbo()
/external/python/cpython3/Doc/library/
Dssl.rst468 .. function:: enum_certificates(store_name)
470 Retrieve certificates from Windows' system cert store. *store_name* may be
491 .. function:: enum_crls(store_name)
493 Retrieve CRLs from Windows' system cert store. *store_name* may be