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
44
) sorted by null
1
2
/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
98
//
SSLConfigService
objects may not have direct access to the configuration, or
100
class
SSLConfigService
: public base::RefCountedThreadSafe<
SSLConfigService
> {
117
SSLConfigService
();
119
// Create an instance of
SSLConfigService
which retrieves the configuration
122
// configuration. Note: this does not handle
SSLConfigService
implementations
124
static
SSLConfigService
* CreateSystemSSLConfigService();
154
friend class base::RefCountedThreadSafe<
SSLConfigService
>;
156
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() {
connection_tester_unittest.cc
109
scoped_refptr<net::
SSLConfigService
> ssl_config_service_;
123
ssl_config_service_ = net::
SSLConfigService
::CreateSystemSSLConfigService();
/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
34
class
SSLConfigService
;
96
SSLConfigService
* ssl_config_service() const { return ssl_config_service_; }
97
void set_ssl_config_service(
SSLConfigService
* service) {
219
scoped_refptr<
SSLConfigService
> ssl_config_service_;
url_request_context_storage.cc
69
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/net/http/
http_network_layer.h
29
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_;
http_network_layer_unittest.cc
41
const scoped_refptr<
SSLConfigService
> ssl_config_service_;
http_cache.h
56
class
SSLConfigService
;
125
SSLConfigService
* ssl_config_service,
/external/chromium/net/socket/
client_socket_pool_manager.h
44
class
SSLConfigService
;
80
SSLConfigService
* ssl_config_service);
176
const scoped_refptr<
SSLConfigService
> ssl_config_service_;
ssl_client_socket_pool.h
179
public
SSLConfigService
::Observer {
196
SSLConfigService
* ssl_config_service,
243
//
SSLConfigService
::Observer methods:
293
const scoped_refptr<
SSLConfigService
> ssl_config_service_;
/external/chromium/chrome/browser/
io_thread.h
43
class
SSLConfigService
;
60
scoped_refptr<net::
SSLConfigService
> ssl_config_service;
73
//
SSLConfigService
is provided that doesn't rely on
/external/chromium/chrome/browser/profiles/
profile_io_data.h
37
class
SSLConfigService
;
107
scoped_refptr<net::
SSLConfigService
> ssl_config_service;
profile.h
36
class
SSLConfigService
;
392
// Returns the
SSLConfigService
for this profile.
393
virtual net::
SSLConfigService
* GetSSLConfigService() = 0;
/external/chromium/android/autofill/
profile_android.h
56
class
SSLConfigService
;
186
virtual net::
SSLConfigService
* GetSSLConfigService() { NOTREACHED(); return NULL; }
/external/chromium/net/socket_stream/
socket_stream.h
37
class
SSLConfigService
;
267
SSLConfigService
* ssl_config_service() const;
/external/chromium/net/tools/fetch/
fetch_client.cc
147
scoped_refptr<net::
SSLConfigService
> ssl_config_service(
148
net::
SSLConfigService
::CreateSystemSSLConfigService());
/external/webkit/Source/WebKit/android/WebCoreSupport/
WebCache.cpp
123
net::
SSLConfigService
::CreateSystemSSLConfigService(),
Completed in 742 milliseconds
1
2