Home | History | Annotate | Download | only in base

Lines Matching defs:root_key

890   std::wstring root_key;
893 root_key = *full_key_name;
896 root_key = full_key_name->substr(0, index);
901 for (std::wstring::iterator iter = root_key.begin();
902 iter != root_key.end(); ++iter) {
906 if (!root_key.compare(L"HKLM") ||
907 !root_key.compare(L"HKEY_LOCAL_MACHINE")) {
909 } else if (!root_key.compare(L"HKCU") ||
910 !root_key.compare(L"HKEY_CURRENT_USER")) {
912 } else if (!root_key.compare(L"HKU") ||
913 !root_key.compare(L"HKEY_USERS")) {
915 } else if (!root_key.compare(L"HKCR") ||
916 !root_key.compare(L"HKEY_CLASSES_ROOT")) {
930 HKEY root_key = GetRootKeyInfo(&key);
932 if (!root_key) {
947 return (root_key == HKEY_USERS) ? found_subkey : true;