HomeSort by relevance Sort by last modified time
    Searched defs:RegKey (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/base/
win32regkey.h 52 class RegKey {
55 RegKey();
58 ~RegKey();
287 // Peek inside (use a RegKey as a smart wrapper around a registry handle)
349 DISALLOW_EVIL_CONSTRUCTORS(RegKey);
win32regkey.cc 47 RegKey::RegKey() {
51 RegKey::~RegKey() {
55 HRESULT RegKey::Create(HKEY parent_key, const wchar_t* key_name) {
65 HRESULT RegKey::Open(HKEY parent_key, const wchar_t* key_name) {
69 bool RegKey::HasValue(const TCHAR* value_name) const {
74 HRESULT RegKey::SetValue(const wchar_t* full_key_name,
82 HRESULT RegKey::SetValue(const wchar_t* full_key_name,
90 HRESULT RegKey::SetValue(const wchar_t* full_key_name
    [all...]
  /external/chromium/base/win/
registry.h 25 class BASE_API RegKey {
27 RegKey();
28 RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access);
29 ~RegKey();
95 DISALLOW_COPY_AND_ASSIGN(RegKey);
registry.cc 17 // RegKey ----------------------------------------------------------------------
19 RegKey::RegKey()
24 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access)
38 RegKey::~RegKey() {
42 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
47 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
59 LONG RegKey::Open(HKEY rootkey, const wchar_t* subkey, REGSAM access)
    [all...]
  /external/chromium_org/base/win/
registry.h 26 class BASE_EXPORT RegKey {
28 RegKey();
29 explicit RegKey(HKEY key);
30 RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access);
31 ~RegKey();
138 DISALLOW_COPY_AND_ASSIGN(RegKey);
registry.cc 35 // RegKey ----------------------------------------------------------------------
37 RegKey::RegKey()
42 RegKey::RegKey(HKEY key)
47 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access)
60 RegKey::~RegKey() {
64 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access)
    [all...]
  /external/chromium_org/chrome/installer/mini_installer/
mini_installer.cc 52 class RegKey {
54 RegKey() : key_(NULL) { }
55 ~RegKey() { Close(); }
80 RegKey(const RegKey&);
81 RegKey& operator=(const RegKey&);
84 }; // class RegKey
86 LONG RegKey::Open(HKEY key, const wchar_t* sub_key, REGSAM access) {
91 LONG RegKey::ReadValue(const wchar_t* value_name
    [all...]

Completed in 385 milliseconds