HomeSort by relevance Sort by last modified time
    Searched full:root_key (Results 1 - 10 of 10) sorted by null

  /external/chromium/base/win/
win_util.h 69 // |root_key| could be HKCU or HKLM or the root of any user hive.
70 BASE_API bool AddCommandToAutoRun(HKEY root_key, const string16& name,
72 // Removes the command specified by |name| from the AutoRun key. |root_key|
74 BASE_API bool RemoveCommandFromAutoRun(HKEY root_key, const string16& name);
76 // Reads the command specified by |name| from the AutoRun key. |root_key|
78 BASE_API bool ReadCommandFromAutoRun(HKEY root_key,
win_util.cc 128 bool AddCommandToAutoRun(HKEY root_key, const string16& name,
130 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_SET_VALUE);
135 bool RemoveCommandFromAutoRun(HKEY root_key, const string16& name) {
136 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_SET_VALUE);
140 bool ReadCommandFromAutoRun(HKEY root_key,
143 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_QUERY_VALUE);