HomeSort by relevance Sort by last modified time
    Searched refs:hive (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/sandbox/win/sandbox_poc/pocdll/
registry.cc 12 // "key" is the hive to convert to string.
13 // The return value is the string corresponding to the hive or "unknown"
30 // Tries to open the key hive\path and outputs the result.
32 void TryOpenKey(const HKEY hive, const wchar_t *path, FILE *output) {
34 LONG err_code = ::RegOpenKeyEx(hive,
41 HKEYToString(hive),
47 HKEYToString(hive),
  /external/chromium_org/chrome_frame/
registry_list_preferences_holder.h 24 // under the key |list_name| stored at |registry_path| under |hive|.
25 void Init(HKEY hive,
registry_watcher.h 17 RegistryWatcher(HKEY hive, const wchar_t* path, NotifyFunc callback);
registry_list_preferences_holder.cc 13 void RegistryListPreferencesHolder::Init(HKEY hive,
19 base::win::RegistryValueIterator string_list(hive, list_path.c_str());
registry_watcher.cc 17 RegistryWatcher::RegistryWatcher(HKEY hive,
26 LONG result = RegOpenKeyEx(hive, path, 0, KEY_NOTIFY, &registry_key_);
chrome_tab.cc 170 // Add the registry hive to use.
177 hr = registrar->AddReplacement(L"HIVE", L"HKLM");
179 hr = registrar->AddReplacement(L"HIVE", L"HKCU");
303 HKEY hive = HKEY_CURRENT_USER; local
307 hive = HKEY_LOCAL_MACHINE;
311 LONG ret = run_once.Create(hive, kRunOnce, KEY_READ | KEY_WRITE);
    [all...]
  /external/chromium_org/chrome/installer/gcapi/
gcapi_reactivation_test.cc 48 bool SetChromeInstallMarker(HKEY hive) {
53 RegKey client_state(hive,
61 bool SetLastRunTime(HKEY hive, int64 last_run_time) {
62 return SetLastRunTimeString(hive, base::Int64ToString16(last_run_time));
65 bool SetLastRunTimeString(HKEY hive, const string16& last_run_time_string) {
67 (hive == HKEY_LOCAL_MACHINE) ?
74 RegKey client_state(hive, path.c_str(), KEY_SET_VALUE);
81 bool HasExperimentLabels(HKEY hive) {
88 RegKey client_state_key(hive,
99 std::wstring GetReactivationString(HKEY hive) {
    [all...]
  /external/chromium/chrome/browser/policy/
configuration_policy_provider_win_unittest.cc 143 void WriteString(HKEY hive, const char* name, const wchar_t* value);
145 void WriteDWORD(HKEY hive, const char* name, DWORD value);
148 void WriteValue(HKEY hive, const char* name, const Value* value);
150 void WriteInvalidValue(HKEY hive, const char* name, const Value* value);
230 void ConfigurationPolicyProviderWinTest::WriteString(HKEY hive,
233 RegKey key(hive, policy::kRegistrySubKey, KEY_ALL_ACCESS);
237 void ConfigurationPolicyProviderWinTest::WriteDWORD(HKEY hive,
240 RegKey key(hive, policy::kRegistrySubKey, KEY_ALL_ACCESS);
244 void ConfigurationPolicyProviderWinTest::WriteValue(HKEY hive,
251 WriteDWORD(hive, name, v)
    [all...]
  /external/chromium_org/chrome/browser/policy/
registry_dict_win.h 69 void ReadRegistry(HKEY hive, const string16& root);
policy_path_parser_win.cc 20 // Checks if the registry key exists in the given hive and expands any
22 bool LoadUserDataDirPolicyFromRegistry(HKEY hive,
27 base::win::RegKey policy_key(hive,
153 // Policy from the HKLM hive has precedence over HKCU so if we have one here
registry_dict_win.cc 298 void RegistryDict::ReadRegistry(HKEY hive, const string16& root) {
303 for (RegistryValueIterator it(hive, root.c_str()); it.Valid(); ++it) {
336 LOG(WARNING) << "Failed to read hive " << hive << " at "
342 for (RegistryKeyIterator it(hive, root.c_str()); it.Valid(); ++it) {
345 subdict->ReadRegistry(hive, root + L"\\" + it.Name());
policy_loader_win_unittest.cc 56 // Installs |value| in the given registry |path| and |hive|, under the key
62 HKEY hive,
66 RegKey key(hive, path.c_str(), KEY_ALL_ACCESS);
107 if (!InstallValue(it.value(), hive, path + kPathSep + name,
123 if (!InstallValue(*item, hive, path + kPathSep + name,
190 // in the given |hive|. Returns false on failure.
192 HKEY hive,
201 RegKey key(hive, path.c_str(), KEY_ALL_ACCESS);
207 // at |path| in the given |hive|. Returns false on failure.
209 HKEY hive,
    [all...]
policy_loader_win.cc 258 // Policy scope and corresponding hive.
261 HKEY hive; member in struct:policy::__anon7916
296 gpo_dict.ReadRegistry(kScopes[i].hive, chrome_policy_key_);
  /external/wpa_supplicant_8/src/eap_peer/
tncc.c 927 static int tncc_read_config_reg(struct tncc_data *tncc, HKEY hive)
939 ret = RegOpenKeyEx(hive, TNC_WINREG_PATH, 0, KEY_ENUMERATE_SUB_KEYS,

Completed in 259 milliseconds