OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is_system_level
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/installer/mini_installer/
configuration.h
56
bool
is_system_level
() const { return is_system_level_; }
function in class:mini_installer::Configuration
configuration_test.cc
115
EXPECT_FALSE(TestConfiguration(L"spam.exe").
is_system_level
());
116
EXPECT_FALSE(TestConfiguration(L"spam.exe --chrome").
is_system_level
());
117
EXPECT_TRUE(TestConfiguration(L"spam.exe --system-level").
is_system_level
());
mini_installer.cc
161
configuration.
is_system_level
() ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER;
241
bool system_level = configuration.
is_system_level
();
Completed in 194 milliseconds