Searched defs:pUniStr (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPHardenedVerifyProcess-win.cpp1131 * @param pUniStr The path to fix up. MaximumLength is the max buffer
1134 DECLHIDDEN(void) supHardNtVpFix8dot3Path(PUNICODE_STRING pUniStr, bool fPathOnly) argument
1148 PRTUTF16 pwszFix = pUniStr->Buffer;
1173 NtDir.Buffer = pUniStr->Buffer;
1174 NtDir.Length = NtDir.MaximumLength = (USHORT)((pwszFix - pUniStr->Buffer) * sizeof(WCHAR));
1227 else if ( pUniStr->Length + cwcNameNew * sizeof(WCHAR) - cwcNameOld * sizeof(WCHAR) + sizeof(WCHAR)
1228 <= pUniStr->MaximumLength)
1230 size_t cwcLeft = pUniStr->Length - (pwszFixEnd - pUniStr->Buffer) * sizeof(WCHAR) + sizeof(WCHAR);
1232 pUniStr
2370 PUNICODE_STRING pUniStr = (PUNICODE_STRING)RTMemAllocZ(cbUniStr); local
[all...]
H A DSUPHardenedVerifyImage-win.cpp1371 PUNICODE_STRING pUniStr = (PUNICODE_STRING)pvBuf; local
1372 if (pUniStr->Length > 0)
1375 pUniStr->Buffer[pUniStr->Length / sizeof(WCHAR)] = '\0';
H A DSUPR3HardenedMain-win.cpp512 * @param pUniStr String to hash.
514 static uint32_t supR3HardenedWinVerifyCacheHashPath(PCUNICODE_STRING pUniStr) argument
517 unsigned cwcLeft = pUniStr->Length / sizeof(WCHAR);
518 PRTUTF16 pwc = pUniStr->Buffer;
601 * @param pUniStr The full path of the image.
608 static void supR3HardenedWinVerifyCacheInsert(PCUNICODE_STRING pUniStr, HANDLE hFile, int rc, argument
614 PVERIFIERCACHEENTRY pEntry = (PVERIFIERCACHEENTRY)RTMemAllocZ(sizeof(VERIFIERCACHEENTRY) + pUniStr->Length);
620 pEntry->uHash = supR3HardenedWinVerifyCacheHashPath(pUniStr);
625 pEntry->cbPath = pUniStr->Length;
626 memcpy(pEntry->wszPath, pUniStr
672 supR3HardenedWinVerifyCacheLookup(PCUNICODE_STRING pUniStr, HANDLE hFile) argument
3631 supR3HardNtIsNamedSystem32Dll(PUNICODE_STRING pUniStr, const char *pszName) argument
[all...]

Completed in 114 milliseconds