Lines Matching refs:pszPath
630 LPWSTR pszPath = (LPWSTR)CoTaskMemAlloc((2 + 38 + 1) * sizeof(WCHAR)); in GetDisplayNameOf() local
631 if (!pszPath) in GetDisplayNameOf()
634 pszPath[0] = ':'; in GetDisplayNameOf()
635 pszPath[1] = ':'; in GetDisplayNameOf()
636 SHELL32_GUIDToStringW(m_pInfo->clsid, &pszPath[2]); in GetDisplayNameOf()
638 strRet->pOleStr = pszPath; in GetDisplayNameOf()
696 LPWSTR pszPath = (LPWSTR)CoTaskMemAlloc(cchPath * sizeof(WCHAR)); in GetDisplayNameOf() local
697 if (!pszPath) in GetDisplayNameOf()
705 PWCHAR pItemName = pszPath; // GET_SHGDN_RELATION(dwFlags) == SHGDN_INFOLDER in GetDisplayNameOf()
708 hr = StringCchCopyW(pszPath, cchPath, GetParsingPath()); in GetDisplayNameOf()
711 pathlen = wcslen(pszPath); in GetDisplayNameOf()
712 pItemName = &pszPath[pathlen]; in GetDisplayNameOf()
738 if (!HCR_GetClassNameW(*clsid, pszPath, cchPath)) in GetDisplayNameOf()
745 strRet->pOleStr = pszPath; in GetDisplayNameOf()
749 CoTaskMemFree(pszPath); in GetDisplayNameOf()