/external/chromium_org/sandbox/win/src/ |
registry_dispatcher.cc | 95 CountedParameterSet<OpenKey> params; 96 params[OpenKey::NAME] = ParamPickerMake(regname); 97 params[OpenKey::ACCESS] = ParamPickerMake(desired_access); 140 CountedParameterSet<OpenKey> params; 141 params[OpenKey::NAME] = ParamPickerMake(regname); 142 params[OpenKey::ACCESS] = ParamPickerMake(desired_access);
|
policy_params.h | 52 POLPARAMS_BEGIN(OpenKey) 55 POLPARAMS_END(OpenKey)
|
registry_policy.cc | 141 open.AddNumberMatch(IF_NOT, OpenKey::ACCESS, restricted_flags, AND); 142 create.AddNumberMatch(IF_NOT, OpenKey::ACCESS, restricted_flags, AND); 154 if (!create.AddStringMatch(IF, OpenKey::NAME, name, CASE_INSENSITIVE) || 159 if (!open.AddStringMatch(IF, OpenKey::NAME, name, CASE_INSENSITIVE) ||
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_winreg.py | 67 hkey = OpenKey(root, subkey, KEY_ALL_ACCESS) 121 def _read_test_data(self, root_key, OpenKey=OpenKey): 127 key = OpenKey(root_key, test_key_name) 129 with OpenKey(key, "sub_key") as sub_key: 162 key = OpenKey(root_key, test_key_name, 0, KEY_ALL_ACCESS) 163 sub_key = OpenKey(key, "sub_key", 0, KEY_ALL_ACCESS) 186 key = OpenKey(root_key, test_key_name) 202 # Substitute the regular CreateKey and OpenKey calls with their 267 with OpenKey(HKEY_CURRENT_USER, test_key_name, 0, KEY_ALL_ACCESS) as key [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_winreg.py | 67 hkey = OpenKey(root, subkey, KEY_ALL_ACCESS) 121 def _read_test_data(self, root_key, OpenKey=OpenKey): 127 key = OpenKey(root_key, test_key_name) 129 with OpenKey(key, "sub_key") as sub_key: 162 key = OpenKey(root_key, test_key_name, 0, KEY_ALL_ACCESS) 163 sub_key = OpenKey(key, "sub_key", 0, KEY_ALL_ACCESS) 186 key = OpenKey(root_key, test_key_name) 202 # Substitute the regular CreateKey and OpenKey calls with their 267 with OpenKey(HKEY_CURRENT_USER, test_key_name, 0, KEY_ALL_ACCESS) as key [all...] |
/external/chromium_org/chrome/test/mini_installer/ |
uninstall_chrome.py | 41 key = _winreg.OpenKey(root_key, sub_key, 0, _winreg.KEY_QUERY_VALUE)
|
registry_verifier.py | 66 key_handle = _winreg.OpenKey(self._RootKeyConstant(root_key), sub_key, 0,
|
/external/chromium_org/chrome/installer/tools/ |
setup_timer.py | 37 key = _winreg.OpenKey(hive, state_key + product_guid, 0, _winreg.KEY_READ)
|
/external/chromium/base/win/ |
registry.h | 42 LONG OpenKey(const wchar_t* name, REGSAM access);
|
registry.cc | 81 LONG RegKey::OpenKey(const wchar_t* name, REGSAM access) {
|
/external/chromium_org/chrome/installer/util/ |
registry_test_data.cc | 91 EXPECT_EQ(ERROR_SUCCESS, key.OpenKey(L"Subkey", KEY_READ));
|
delete_reg_key_work_item_unittest.cc | 127 EXPECT_EQ(ERROR_SUCCESS, key.OpenKey(L"Subkey", KEY_READ | WRITE_DAC)); 136 EXPECT_EQ(ERROR_SUCCESS, key.OpenKey(L"Subkey2", KEY_QUERY_VALUE));
|
/external/chromium_org/gpu/config/ |
gpu_info_collector_win.cc | 179 if (key.OpenKey(L"DisplayLink", KEY_READ | KEY_WOW64_64KEY)) 182 if (key.OpenKey(L"Core", KEY_READ | KEY_WOW64_64KEY)) 199 if (key.OpenKey(L"Lenovo", KEY_READ | KEY_WOW64_64KEY)) 202 if (key.OpenKey(L"Lenovo dCute", KEY_READ | KEY_WOW64_64KEY))
|
/external/chromium_org/chrome/test/functional/rlz/ |
rlztest.py | 83 hkey = _winreg.OpenKey(_winreg.HKEY_CURRENT_USER, 113 hkey = _winreg.OpenKey(key, subkey)
|
/external/chromium_org/base/win/ |
registry.h | 45 LONG OpenKey(const wchar_t* relative_key_name, REGSAM access);
|
registry.cc | 99 LONG RegKey::OpenKey(const wchar_t* relative_key_name, REGSAM access) {
|
/external/chromium_org/chrome/browser/extensions/api/messaging/ |
native_process_launcher_win.cc | 37 key.OpenKey(native_host_name.c_str(),
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
mimetypes.py | 257 with _winreg.OpenKey(_winreg.HKEY_CLASSES_ROOT, 261 with _winreg.OpenKey(mimedb, ctype) as key:
|
urllib.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
mimetypes.py | 257 with _winreg.OpenKey(_winreg.HKEY_CLASSES_ROOT, 261 with _winreg.OpenKey(mimedb, ctype) as key:
|
urllib.py | [all...] |
/external/chromium_org/sandbox/win/tests/validation_tests/ |
commands.cc | 170 SBOX_TESTS_COMMAND int OpenKey(int argc, wchar_t **argv) {
|
/external/chromium_org/content/common/ |
plugin_list_win.cc | 188 java_key.OpenKey(java_version.c_str(), KEY_QUERY_VALUE);
|