OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SSLConfigService
(Results
1 - 25
of
95
) sorted by null
1
2
3
4
/external/chromium/net/base/
ssl_config_service.cc
35
SSLConfigService
::
SSLConfigService
()
40
SSLConfigService
*
SSLConfigService
::CreateSystemSSLConfigService() {
47
bool
SSLConfigService
::IsKnownFalseStartIncompatibleServer(
61
void
SSLConfigService
::EnableDNSSEC() {
66
bool
SSLConfigService
::dnssec_enabled() {
71
void
SSLConfigService
::DisableFalseStart() {
76
bool
SSLConfigService
::false_start_enabled() {
81
void
SSLConfigService
::EnableDNSCertProvenanceChecking()
[
all
...]
ssl_config_service_defaults.h
13
// This
SSLConfigService
always returns the default SSLConfig settings. It is
15
// implementation of
SSLConfigService
yet.
16
class SSLConfigServiceDefaults : public
SSLConfigService
{
ssl_config_service.h
99
//
SSLConfigService
objects may not have direct access to the configuration, or
101
class NET_EXPORT
SSLConfigService
: public base::RefCountedThreadSafe<
SSLConfigService
> {
118
SSLConfigService
();
120
// Create an instance of
SSLConfigService
which retrieves the configuration
123
// configuration. Note: this does not handle
SSLConfigService
implementations
125
static
SSLConfigService
* CreateSystemSSLConfigService();
155
friend class base::RefCountedThreadSafe<
SSLConfigService
>;
157
virtual ~
SSLConfigService
();
ssl_config_service_unittest.cc
11
return net::
SSLConfigService
::IsKnownFalseStartIncompatibleServer(
/external/chromium/chrome/browser/net/
ssl_config_service_manager.h
10
class
SSLConfigService
;
15
// An interface for creating
SSLConfigService
objects for the current platform.
30
// Get an
SSLConfigService
instance. It may be a new instance or the manager
34
virtual net::
SSLConfigService
* Get() = 0;
ssl_config_service_manager_system.cc
11
// The manager for holding a system
SSLConfigService
instance. System
12
//
SSLConfigService
objects do not depend on the profile.
18
net::
SSLConfigService
::CreateSystemSSLConfigService()) {
22
virtual net::
SSLConfigService
* Get() {
27
scoped_refptr<net::
SSLConfigService
> ssl_config_service_;
ssl_config_service_manager_pref.cc
21
// An
SSLConfigService
which stores a cached version of the current SSLConfig
24
class SSLConfigServicePref : public net::
SSLConfigService
{
69
virtual net::
SSLConfigService
* Get();
169
net::
SSLConfigService
* SSLConfigServiceManagerPref::Get() {
/external/chromium_org/chrome/browser/net/
ssl_config_service_manager.h
9
class
SSLConfigService
;
15
// An interface for creating
SSLConfigService
objects.
28
// Get an
SSLConfigService
instance. It may be a new instance or the manager
32
virtual net::
SSLConfigService
* Get() = 0;
ssl_config_service_manager_pref_unittest.cc
28
using net::
SSLConfigService
;
37
bool IsChannelIdEnabled(
SSLConfigService
* config_service) {
61
scoped_refptr<
SSLConfigService
> config_service(config_manager->Get());
86
scoped_refptr<
SSLConfigService
> config_service(config_manager->Get());
121
scoped_refptr<
SSLConfigService
> config_service(config_manager->Get());
166
scoped_refptr<
SSLConfigService
> config_service(config_manager->Get());
174
EXPECT_EQ(net::
SSLConfigService
::default_version_max(),
218
scoped_refptr<
SSLConfigService
> config_service(config_manager->Get());
ssl_config_service_manager_pref.cc
104
// An
SSLConfigService
which stores a cached version of the current SSLConfig
107
class SSLConfigServicePref : public net::
SSLConfigService
{
154
virtual net::
SSLConfigService
* Get() OVERRIDE;
252
net::
SSLConfigService
* SSLConfigServiceManagerPref::Get() {
285
config->version_min = net::
SSLConfigService
::default_version_min();
286
config->version_max = net::
SSLConfigService
::default_version_max();
/external/chromium_org/net/ssl/
ssl_config_service.cc
78
SSLConfigService
::
SSLConfigService
()
107
void
SSLConfigService
::SetCRLSet(scoped_refptr<CRLSet> crl_set) {
113
scoped_refptr<CRLSet>
SSLConfigService
::GetCRLSet() {
117
void
SSLConfigService
::EnableCachedInfo() {
122
bool
SSLConfigService
::cached_info_enabled() {
127
uint16
SSLConfigService
::default_version_min() {
132
uint16
SSLConfigService
::default_version_max() {
136
void
SSLConfigService
::AddObserver(Observer* observer) {
140
void
SSLConfigService
::RemoveObserver(Observer* observer)
[
all
...]
ssl_config_service_defaults.h
13
// This
SSLConfigService
always returns the default SSLConfig settings. It is
15
// implementation of
SSLConfigService
yet.
16
class NET_EXPORT SSLConfigServiceDefaults : public
SSLConfigService
{
ssl_config_service.h
164
//
SSLConfigService
objects may not have direct access to the configuration, or
166
class NET_EXPORT
SSLConfigService
167
: public base::RefCountedThreadSafe<
SSLConfigService
> {
188
SSLConfigService
();
209
static bool IsSNIAvailable(
SSLConfigService
* service);
222
friend class base::RefCountedThreadSafe<
SSLConfigService
>;
224
virtual ~
SSLConfigService
();
/external/chromium/net/url_request/
url_request_context_storage.h
27
class
SSLConfigService
;
52
void set_ssl_config_service(
SSLConfigService
* ssl_config_service);
78
scoped_refptr<
SSLConfigService
> ssl_config_service_;
url_request_context.h
35
class
SSLConfigService
;
97
SSLConfigService
* ssl_config_service() const { return ssl_config_service_; }
98
void set_ssl_config_service(
SSLConfigService
* service) {
220
scoped_refptr<
SSLConfigService
> ssl_config_service_;
/external/chromium/net/spdy/
spdy_session_pool.h
39
public
SSLConfigService
::Observer,
43
SSLConfigService
* ssl_config_service);
107
//
SSLConfigService
::Observer methods:
171
const scoped_refptr<
SSLConfigService
> ssl_config_service_;
/external/chromium_org/net/url_request/
url_request_context_storage.h
28
class
SSLConfigService
;
57
void set_ssl_config_service(
SSLConfigService
* ssl_config_service);
87
scoped_refptr<
SSLConfigService
> ssl_config_service_;
/external/chromium/net/http/
http_network_layer.h
30
class
SSLConfigService
;
http_network_session.h
38
class
SSLConfigService
;
66
SSLConfigService
* ssl_config_service;
115
SSLConfigService
* ssl_config_service() { return ssl_config_service_; }
166
const scoped_refptr<
SSLConfigService
> ssl_config_service_;
/external/chromium_org/net/socket_stream/
socket_stream_job.h
18
class
SSLConfigService
;
42
SSLConfigService
* ssl);
socket_stream_job.cc
27
SSLConfigService
* ssl) {
31
url.host(),
SSLConfigService
::IsSNIAvailable(ssl), &domain_state) &&
/external/chromium_org/net/http/
http_network_transaction_ssl_unittest.cc
27
class TLS10SSLConfigService : public
SSLConfigService
{
44
class TLS11SSLConfigService : public
SSLConfigService
{
94
scoped_refptr<
SSLConfigService
> ssl_config_service_;
http_network_session.h
47
class
SSLConfigService
;
68
SSLConfigService
* ssl_config_service;
130
SSLConfigService
* ssl_config_service() { return ssl_config_service_.get(); }
193
const scoped_refptr<
SSLConfigService
> ssl_config_service_;
/external/chromium_org/net/socket/
client_socket_pool_manager_impl.h
34
class
SSLConfigService
;
69
SSLConfigService
* ssl_config_service,
116
const scoped_refptr<
SSLConfigService
> ssl_config_service_;
/external/chromium_org/net/spdy/
spdy_session_pool.h
41
public
SSLConfigService
::Observer,
51
SSLConfigService
* ssl_config_service,
138
//
SSLConfigService
::Observer methods:
211
const scoped_refptr<
SSLConfigService
> ssl_config_service_;
Completed in 275 milliseconds
1
2
3
4