Lines Matching defs:tempPath
854 OwnArrayPtr<WCHAR> tempPath = adoptArrayPtr(new WCHAR[bufferSize]);
855 DWORD tempLength = ::GetTempPathW(bufferSize, tempPath.get());
858 tempPath = adoptArrayPtr(new WCHAR[bufferSize]);
859 tempLength = GetTempPathW(bufferSize, tempPath.get());
862 string resultPath(WebString(tempPath.get(), tempLength).utf8());