Home
last modified time | relevance | path

Searched refs:autorun_key (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/base/win/
Dwin_util.cc187 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_SET_VALUE); in AddCommandToAutoRun() local
188 return (autorun_key.WriteValue(name.c_str(), command.c_str()) == in AddCommandToAutoRun()
193 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_SET_VALUE); in RemoveCommandFromAutoRun() local
194 return (autorun_key.DeleteValue(name.c_str()) == ERROR_SUCCESS); in RemoveCommandFromAutoRun()
200 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_QUERY_VALUE); in ReadCommandFromAutoRun() local
201 return (autorun_key.ReadValue(name.c_str(), command) == ERROR_SUCCESS); in ReadCommandFromAutoRun()