Home
last modified time | relevance | path

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

/freebsd/crypto/krb5/src/lib/gssapi/mechglue/
H A Dg_initialize.c76 static time_t getRegKeyModTime(HKEY hBaseKey, const char *keyPath);
77 static time_t getRegConfigModTime(const char *keyPath);
78 static void getRegKeyValue(HKEY key, const char *keyPath, const char *valueName, void **data, DWORD…
79 static void loadConfigFromRegistry(HKEY keyBase, const char *keyPath);
1338 getRegConfigModTime(const char *keyPath) in getRegConfigModTime() argument
1341 keyPath); in getRegConfigModTime()
1343 keyPath); in getRegConfigModTime()
1350 getRegKeyModTime(HKEY hBaseKey, const char *keyPath) in getRegKeyModTime() argument
1359 if ((rc = RegOpenKeyEx(hBaseKey, keyPath, 0, KEY_ENUMERATE_SUB_KEYS, in getRegKeyModTime()
1381 getRegKeyValue(HKEY hKey, const char *keyPath, const char *valueName, in getRegKeyValue() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/WindowsDriver/
H A DMSVCPaths.cpp175 static bool getSystemRegistryString(const char *keyPath, const char *valueName, in getSystemRegistryString() argument
185 const char *placeHolder = strstr(keyPath, "$VERSION"); in getSystemRegistryString()
192 while ((keyEnd > keyPath) && (*keyEnd != '\\')) in getSystemRegistryString()
197 size_t partialKeyLength = keyEnd - keyPath; in getSystemRegistryString()
201 strncpy(partialKey, keyPath, partialKeyLength); in getSystemRegistryString()
249 RegOpenKeyExA(hRootKey, keyPath, 0, KEY_READ | KEY_WOW64_32KEY, &hKey); in getSystemRegistryString()