Home
last modified time | relevance | path

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

/external/cronet/net/cert/
Dtest_root_certs_win.cc97 const void* store_name, in InterceptedOpenStoreW() argument
110 store_name, memory_store, in InterceptedOpenStoreW()
119 lstrcmpiW(reinterpret_cast<LPCWSTR>(store_name), L"root")) in InterceptedOpenStoreW()
/external/python/cpython3/Modules/clinic/
D_ssl.c.h1265 _ssl_enum_certificates_impl(PyObject *module, const char *store_name);
1274 const char *store_name; in _ssl_enum_certificates() local
1285 store_name = PyUnicode_AsUTF8AndSize(args[0], &store_name_length); in _ssl_enum_certificates()
1286 if (store_name == NULL) { in _ssl_enum_certificates()
1289 if (strlen(store_name) != (size_t)store_name_length) { in _ssl_enum_certificates()
1293 return_value = _ssl_enum_certificates_impl(module, store_name); in _ssl_enum_certificates()
1318 _ssl_enum_crls_impl(PyObject *module, const char *store_name);
1327 const char *store_name; in _ssl_enum_crls() local
1338 store_name = PyUnicode_AsUTF8AndSize(args[0], &store_name_length); in _ssl_enum_crls()
1339 if (store_name == NULL) { in _ssl_enum_crls()
[all …]
/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.c430 get_cert_location(TCHAR *path, DWORD *store_name, TCHAR **store_path, in get_cert_location() argument
444 *store_name = CERT_SYSTEM_STORE_CURRENT_USER; in get_cert_location()
446 *store_name = CERT_SYSTEM_STORE_LOCAL_MACHINE; in get_cert_location()
448 *store_name = CERT_SYSTEM_STORE_CURRENT_SERVICE; in get_cert_location()
450 *store_name = CERT_SYSTEM_STORE_SERVICES; in get_cert_location()
452 *store_name = CERT_SYSTEM_STORE_USERS; in get_cert_location()
455 *store_name = CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY; in get_cert_location()
458 *store_name = CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY; in get_cert_location()
461 *store_name = CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE; in get_cert_location()
/external/python/cpython3/Python/
Dsymtable.c1953 PyObject *store_name; in symtable_visit_alias() local
1958 store_name = PyUnicode_Substring(name, 0, dot); in symtable_visit_alias()
1959 if (!store_name) in symtable_visit_alias()
1963 store_name = name; in symtable_visit_alias()
1964 Py_INCREF(store_name); in symtable_visit_alias()
1967 int r = symtable_add_def(st, store_name, DEF_IMPORT, LOCATION(a)); in symtable_visit_alias()
1968 Py_DECREF(store_name); in symtable_visit_alias()
1981 Py_DECREF(store_name); in symtable_visit_alias()
1984 Py_DECREF(store_name); in symtable_visit_alias()
Dcompile.c3421 identifier store_name; in compiler_from_import() local
3430 store_name = alias->name; in compiler_from_import()
3432 store_name = alias->asname; in compiler_from_import()
3434 if (!compiler_nameop(c, store_name, Store)) { in compiler_from_import()
/external/cronet/net/extras/sqlite/
Dsqlite_persistent_cookie_store_unittest.cc597 base::FilePath store_name(temp_dir_.GetPath().Append(kCookieFilename)); in TEST_F() local
599 ASSERT_TRUE(db->Open(store_name)); in TEST_F()
660 ASSERT_TRUE(db->Open(store_name)); in TEST_F()
2503 base::FilePath store_name(temp_dir_.GetPath().Append(kCookieFilename)); in TEST_P() local
2505 ASSERT_TRUE(db->Open(store_name)); in TEST_P()
/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.c5396 ssl_collect_certificates(const char *store_name) in ssl_collect_certificates() argument
5426 system_stores[i], store_name); in ssl_collect_certificates()
5458 _ssl_enum_certificates_impl(PyObject *module, const char *store_name) in _ssl_enum_certificates_impl() argument
5470 hCollectionStore = ssl_collect_certificates(store_name); in _ssl_enum_certificates_impl()
5556 _ssl_enum_crls_impl(PyObject *module, const char *store_name) in _ssl_enum_crls_impl() argument
5568 hCollectionStore = ssl_collect_certificates(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/python/cpython3/Doc/library/
Dssl.rst482 .. function:: enum_certificates(store_name)
484 Retrieve certificates from Windows' system cert store. *store_name* may be
505 .. function:: enum_crls(store_name)
507 Retrieve CRLs from Windows' system cert store. *store_name* may be