OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Shutdown
(Results
1 - 25
of
957
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium/chrome/browser/profiles/
profile_keyed_service.h
11
// Many services that hang off Profile have a two-pass
shutdown
. Many
12
// subsystems need a first pass
shutdown
phase where they drop references. Not
18
// The first pass is to call
Shutdown
on a ProfileKeyedService.
19
virtual void
Shutdown
() {}
/external/chromium_org/components/browser_context_keyed_service/
browser_context_keyed_service.h
15
// Many services that hang off BrowserContext have a two-pass
shutdown
. Many
16
// subsystems need a first pass
shutdown
phase where they drop references. Not
22
// The first pass is to call
Shutdown
on a BrowserContextKeyedService.
23
virtual void
Shutdown
() {}
/external/chromium_org/chrome_frame/
chrome_frame_reporting.h
17
static void
Shutdown
();
scoped_initialization_manager_unittest.cc
17
virtual void
Shutdown
() = 0;
29
static void
Shutdown
() {
31
delegate_->
Shutdown
();
45
MOCK_METHOD0(
Shutdown
, void());
65
// Test that Initialize and
Shutdown
are called in order for the simple case.
70
EXPECT_CALL(mock_traits_delegate_,
Shutdown
());
75
// Test that Initialize and
Shutdown
are called in order only once despite
81
EXPECT_CALL(mock_traits_delegate_,
Shutdown
());
/external/chromium/base/test/
perf_test_suite.h
18
virtual void
Shutdown
();
perf_test_suite.cc
41
void PerfTestSuite::
Shutdown
() {
42
TestSuite::
Shutdown
();
/external/chromium_org/base/test/
perf_test_suite.h
17
virtual void
Shutdown
() OVERRIDE;
perf_test_suite.cc
40
void PerfTestSuite::
Shutdown
() {
41
TestSuite::
Shutdown
();
/external/chromium_org/content/browser/service_worker/
service_worker_registration.cc
26
void ServiceWorkerRegistration::
Shutdown
() {
29
active_version_->
Shutdown
();
32
pending_version_->
Shutdown
();
38
active_version_->
Shutdown
();
/external/webrtc/test/
test_suite.h
32
// Override these for custom initialization and
shutdown
handling. Use these
35
virtual void
Shutdown
();
test_suite.cc
28
Shutdown
();
36
void TestSuite::
Shutdown
() {
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
file_browser_private_api.cc
29
void FileBrowserPrivateAPI::
Shutdown
() {
30
event_router_->
Shutdown
();
/external/chromium_org/ui/aura/test/
test_suite.cc
32
void AuraTestSuite::
Shutdown
() {
35
base::TestSuite::
Shutdown
();
test_suite.h
22
virtual void
Shutdown
() OVERRIDE;
/external/chromium_org/chrome/browser/chromeos/input_method/
input_method_configuration.h
17
// rather than making it a Singleton, to ensure clean startup and
shutdown
.
25
// by
Shutdown
().
30
void
Shutdown
();
input_method_configuration.cc
59
void
Shutdown
() {
64
InputMethodManager::
Shutdown
();
66
IBusBridge::
Shutdown
();
68
DVLOG(1) << "InputMethodManager
shutdown
";
95
void
Shutdown
() {
99
g_input_method_configuration->
Shutdown
();
input_method_configuration_unittest.cc
24
Shutdown
();
34
Shutdown
();
/external/chromium_org/chrome/browser/policy/
schema_registry_service.h
30
virtual void
Shutdown
() OVERRIDE;
/external/chromium_org/content/public/browser/
browser_main_runner.h
15
// This class is responsible for browser initialization, running and
shutdown
.
31
virtual void
Shutdown
() = 0;
/external/chromium_org/content/test/plugin/
plugin_client.h
34
static NPError
Shutdown
();
/external/chromium_org/ui/test/
test_suite.h
22
virtual void
Shutdown
() OVERRIDE;
/external/chromium_org/cc/test/
cc_test_suite.cc
33
void CCTestSuite::
Shutdown
() {
36
base::TestSuite::
Shutdown
();
/external/chromium_org/chrome_frame/test/reliability/
reliability_test_suite.h
25
virtual void
Shutdown
() OVERRIDE {
26
UITestSuite::
Shutdown
();
/external/chromium/net/base/
net_test_suite.cc
23
void NetTestSuite::
Shutdown
() {
32
TestSuite::
Shutdown
();
/external/chromium_org/chrome/browser/policy/cloud/
user_cloud_policy_invalidator.cc
37
void UserCloudPolicyInvalidator::
Shutdown
() {
38
CloudPolicyInvalidator::
Shutdown
();
Completed in 666 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>