Searched refs:full_key_name (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/webrtc/base/ |
D | win32regkey.h | 147 static HRESULT FlushKey(const wchar_t* full_key_name); 150 static bool HasKey(const wchar_t* full_key_name); 153 static bool HasValue(const wchar_t* full_key_name, const wchar_t* value_name); 158 static HRESULT SetValue(const wchar_t* full_key_name, 163 static HRESULT SetValue(const wchar_t* full_key_name, 168 static HRESULT SetValue(const wchar_t* full_key_name, 173 static HRESULT SetValue(const wchar_t* full_key_name, 178 static HRESULT SetValue(const wchar_t* full_key_name, 183 static HRESULT SetValue(const wchar_t* full_key_name, 189 static HRESULT SetValueMultiSZ(const wchar_t* full_key_name, [all …]
|
D | win32regkey.cc | 57 HRESULT RegKey::SetValue(const wchar_t* full_key_name, in SetValue() argument 60 ASSERT(full_key_name != NULL); in SetValue() 62 return SetValueStaticHelper(full_key_name, value_name, REG_DWORD, &value); in SetValue() 65 HRESULT RegKey::SetValue(const wchar_t* full_key_name, in SetValue() argument 68 ASSERT(full_key_name != NULL); in SetValue() 70 return SetValueStaticHelper(full_key_name, value_name, REG_QWORD, &value); in SetValue() 73 HRESULT RegKey::SetValue(const wchar_t* full_key_name, in SetValue() argument 76 ASSERT(full_key_name != NULL); in SetValue() 78 return SetValueStaticHelper(full_key_name, value_name, in SetValue() 82 HRESULT RegKey::SetValue(const wchar_t* full_key_name, in SetValue() argument [all …]
|