HomeSort by relevance Sort by last modified time
    Searched full:regkey (Results 1 - 25 of 152) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/libjingle/source/talk/base/
win32regkey_unittest.cc 79 // friend function of RegKey
83 EXPECT_TRUE(RegKey::GetRootKeyInfo(&temp_key) == NULL);
87 EXPECT_TRUE(RegKey::GetRootKeyInfo(&temp_key) == NULL);
92 EXPECT_EQ(RegKey::GetRootKeyInfo(&temp_key), HKEY_LOCAL_MACHINE);
96 EXPECT_EQ(RegKey::GetRootKeyInfo(&temp_key), HKEY_LOCAL_MACHINE);
100 EXPECT_EQ(RegKey::GetRootKeyInfo(&temp_key), HKEY_CURRENT_USER);
104 EXPECT_EQ(RegKey::GetRootKeyInfo(&temp_key), HKEY_CURRENT_USER);
108 EXPECT_EQ(RegKey::GetRootKeyInfo(&temp_key), HKEY_USERS);
112 EXPECT_EQ(RegKey::GetRootKeyInfo(&temp_key), HKEY_USERS);
116 EXPECT_EQ(RegKey::GetRootKeyInfo(&temp_key), HKEY_CLASSES_ROOT)
    [all...]
win32regkey.cc 47 RegKey::RegKey() {
51 RegKey::~RegKey() {
55 HRESULT RegKey::Create(HKEY parent_key, const wchar_t* key_name) {
65 HRESULT RegKey::Open(HKEY parent_key, const wchar_t* key_name) {
69 bool RegKey::HasValue(const TCHAR* value_name) const {
74 HRESULT RegKey::SetValue(const wchar_t* full_key_name,
82 HRESULT RegKey::SetValue(const wchar_t* full_key_name,
90 HRESULT RegKey::SetValue(const wchar_t* full_key_name
    [all...]
  /external/chromium_org/rlz/win/lib/
registry_util.h 10 class RegKey;
16 bool RegKeyReadValue(base::win::RegKey& key,
21 bool RegKeyWriteValue(base::win::RegKey& key,
rlz_value_store_registry.cc 58 bool GetRegKey(const char* name, REGSAM access, base::win::RegKey* key) {
75 bool GetPingTimesRegKey(REGSAM access, base::win::RegKey* key) {
82 REGSAM access, base::win::RegKey* key) {
108 bool GetAccessPointRlzsRegKey(REGSAM access, base::win::RegKey* key) {
117 base::win::RegKey reg_key;
122 base::win::RegKey product_events(
138 } else { // Scope needed for RegKey
139 base::win::RegKey key(root_key, key_name, KEY_READ);
153 base::win::RegKey key(root_key, L"", KEY_WRITE);
169 base::win::RegKey key
    [all...]
  /external/chromium_org/chrome/installer/util/
install_util_unittest.cc 18 using base::win::RegKey;
85 RegKey(root, state_key_path.c_str(), KEY_SET_VALUE);
90 RegKey(root, state_key_path.c_str(), KEY_QUERY_VALUE)
99 RegKey(root, state_key_path.c_str(), KEY_SET_VALUE)
105 RegKey(root, state_key_path.c_str(), KEY_QUERY_VALUE)
114 RegKey(root, state_key_path.c_str(), KEY_SET_VALUE)
120 RegKey(root, state_key_path.c_str(), KEY_QUERY_VALUE)
135 RegKey(root, state_key_path.c_str(), KEY_SET_VALUE)
141 RegKey(root, state_key_path.c_str(), KEY_QUERY_VALUE)
150 RegKey(root, state_key_path.c_str(), KEY_SET_VALUE
    [all...]
registry_key_backup_unittest.cc 15 using base::win::RegKey;
37 EXPECT_FALSE(RegKey(test_data_.root_key(), destination_path_.c_str(),
50 EXPECT_FALSE(RegKey(test_data_.root_key(), destination_path_.c_str(),
79 RegKey(test_data_.root_key(), L"", KEY_QUERY_VALUE)
83 EXPECT_FALSE(RegKey(test_data_.root_key(), destination_path_.c_str(),
registry_test_data.cc 11 using base::win::RegKey;
25 result = RegKey(root_key, L"", KEY_QUERY_VALUE).DeleteKey(path);
62 RegKey key;
85 RegKey key;
101 RegKey key;
create_reg_key_work_item_unittest.cc 15 using base::win::RegKey;
25 RegKey key(HKEY_CURRENT_USER, L"", KEY_ALL_ACCESS);
34 RegKey key(HKEY_CURRENT_USER, L"", KEY_ALL_ACCESS);
42 RegKey key;
75 RegKey key;
100 RegKey key;
139 RegKey key;
174 RegKey key;
delete_reg_value_work_item_unittest.cc 15 using base::win::RegKey;
28 RegKey key(HKEY_CURRENT_USER, L"", KEY_ALL_ACCESS);
37 RegKey key(HKEY_CURRENT_USER, L"", KEY_ALL_ACCESS);
47 RegKey key;
104 RegKey key;
delete_reg_key_work_item_unittest.cc 15 using base::win::RegKey;
37 RegKey key;
54 RegKey key;
70 RegKey key;
87 RegKey key;
93 RegKey subkey;
94 RegKey subkey2;
app_commands.cc 12 using base::win::RegKey;
22 bool AppCommands::Initialize(const base::win::RegKey& key) {
33 RegKey cmd_key;
  /external/chromium/base/win/
registry.cc 17 // RegKey ----------------------------------------------------------------------
19 RegKey::RegKey()
24 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access)
38 RegKey::~RegKey() {
42 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
47 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
59 LONG RegKey::Open(HKEY rootkey, const wchar_t* subkey, REGSAM access)
    [all...]
registry_unittest.cc 22 RegKey key(HKEY_CURRENT_USER, L"", KEY_ALL_ACCESS);
30 RegKey key(HKEY_CURRENT_USER, L"", KEY_SET_VALUE);
39 RegKey key;
  /external/chromium/chrome/browser/rlz/
rlz_unittest.cc 11 using base::win::RegKey;
18 RegKey key;
36 RegKey key1;
45 RegKey key2;
58 RegKey key1;
  /external/chromium_org/base/win/
registry.cc 35 // RegKey ----------------------------------------------------------------------
37 RegKey::RegKey()
42 RegKey::RegKey(HKEY key)
47 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access)
60 RegKey::~RegKey() {
64 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access)
    [all...]
  /external/chromium_org/chrome/installer/gcapi/
gcapi_reactivation.cc 13 using base::win::RegKey;
29 RegKey reactivation_key(HKEY_CURRENT_USER,
48 RegKey client_state_key(HKEY_CURRENT_USER, path.c_str(), KEY_SET_VALUE);
58 RegKey reactivation_key(HKEY_CURRENT_USER,
gcapi_last_run_test.cc 22 using base::win::RegKey;
37 RegKey client_state(HKEY_CURRENT_USER,
47 RegKey client_key(HKEY_CURRENT_USER,
64 RegKey client_state(HKEY_CURRENT_USER, path.c_str(), KEY_SET_VALUE);
  /external/chromium_org/base/test/
test_reg_util_win_unittest.cc 30 base::win::RegKey key(HKEY_CURRENT_USER);
36 base::win::RegKey key(HKEY_CURRENT_USER);
41 base::win::RegKey key;
48 base::win::RegKey key;
55 base::win::RegKey key;
77 base::win::RegKey create_key;
87 base::win::RegKey read_key;
  /external/chromium/chrome/browser/autofill/
autofill_ie_toolbar_import_win_unittest.cc 16 using base::win::RegKey;
88 void EncryptAndWrite(RegKey* key, const ValueDescription* value) {
99 void CreateSubkey(RegKey* key, wchar_t const* subkey_name,
101 RegKey subkey;
119 RegKey temp_hkcu_hive_key_;
139 RegKey key(HKEY_CURRENT_USER, kUnitTestRegistrySubKey, KEY_ALL_ACCESS);
144 RegKey profile_key;
151 RegKey cc_key;
  /external/chromium/net/base/
platform_mime_util_win.cc 19 base::win::RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue(
31 if (base::win::RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue(
  /external/chromium_org/components/autofill/core/browser/
autofill_ie_toolbar_import_win_unittest.cc 16 using base::win::RegKey;
88 void EncryptAndWrite(RegKey* key, const ValueDescription* value) {
100 void CreateSubkey(RegKey* key, wchar_t const* subkey_name,
102 RegKey subkey;
120 RegKey temp_hkcu_hive_key_;
140 RegKey key(HKEY_CURRENT_USER, kUnitTestRegistrySubKey, KEY_ALL_ACCESS);
145 RegKey profile_key;
152 RegKey cc_key;
  /external/chromium/chrome/browser/
background_mode_manager_win.cc 39 base::win::RegKey read_key(kBackgroundModeRegistryRootKey,
41 base::win::RegKey write_key(kBackgroundModeRegistryRootKey,
51 // TODO(rickcam): Bug 53597: Make RegKey mockable.
54 base::win::RegKey read_key(kBackgroundModeRegistryRootKey,
56 base::win::RegKey write_key(kBackgroundModeRegistryRootKey,
  /external/chromium/chrome/browser/policy/
configuration_policy_provider_delegate_win.cc 12 using base::win::RegKey;
16 bool ReadRegistryStringValue(RegKey* key, const string16& name,
92 RegKey policy_key(HKEY_LOCAL_MACHINE, kRegistrySubKey, KEY_READ);
108 RegKey policy_key;
137 RegKey policy_key(HKEY_LOCAL_MACHINE, kRegistrySubKey, KEY_READ);
  /external/chromium_org/chrome_frame/test/
policy_settings_unittest.cc 18 using base::win::RegKey;
25 RegKey key;
39 bool InitializePolicyKey(HKEY policy_root, RegKey* policy_key) {
45 void WritePolicyList(RegKey* policy_key,
52 RegKey list_key;
65 RegKey policy_key;
86 RegKey policy_key;
99 RegKey policy_key;
112 RegKey policy_key;
  /external/chromium/chrome/browser/importer/
firefox_importer_utils_win.cc 31 base::win::RegKey reg_key(kFireFoxRegistryPaths[i],
48 base::win::RegKey reg_key(HKEY_LOCAL_MACHINE, registry_path.c_str(),
57 base::win::RegKey reg_key_directory(HKEY_LOCAL_MACHINE,

Completed in 1123 milliseconds

1 2 3 4 5 6 7