Searched refs:autorun_key (Results 1 – 2 of 2) sorted by relevance
/external/chromium/base/win/ |
D | win_util.cc | 130 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_SET_VALUE); in AddCommandToAutoRun() local 131 return (autorun_key.WriteValue(name.c_str(), command.c_str()) == in AddCommandToAutoRun() 136 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_SET_VALUE); in RemoveCommandFromAutoRun() local 137 return (autorun_key.DeleteValue(name.c_str()) == ERROR_SUCCESS); in RemoveCommandFromAutoRun() 143 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_QUERY_VALUE); in ReadCommandFromAutoRun() local 144 return (autorun_key.ReadValue(name.c_str(), command) == ERROR_SUCCESS); in ReadCommandFromAutoRun()
|
/external/chromium_org/base/win/ |
D | win_util.cc | 186 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_SET_VALUE); in AddCommandToAutoRun() local 187 return (autorun_key.WriteValue(name.c_str(), command.c_str()) == in AddCommandToAutoRun() 192 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_SET_VALUE); in RemoveCommandFromAutoRun() local 193 return (autorun_key.DeleteValue(name.c_str()) == ERROR_SUCCESS); in RemoveCommandFromAutoRun() 199 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_QUERY_VALUE); in ReadCommandFromAutoRun() local 200 return (autorun_key.ReadValue(name.c_str(), command) == ERROR_SUCCESS); in ReadCommandFromAutoRun()
|