Searched refs:versionInfoData (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/win/
H A DNetscapePluginModuleWin.cpp36 static String getVersionInfo(const LPVOID versionInfoData, const String& info) argument
41 if (!::VerQueryValueW(versionInfoData, const_cast<UChar*>(subInfo.charactersWithNullTermination()), &buffer, &bufferLength) || !bufferLength)
63 OwnArrayPtr<char> versionInfoData = adoptArrayPtr(new char[versionInfoSize]);
64 if (!::GetFileVersionInfoW(pathCopy.charactersWithNullTermination(), 0, versionInfoSize, versionInfoData.get()))
67 String name = getVersionInfo(versionInfoData.get(), "ProductName");
68 String description = getVersionInfo(versionInfoData.get(), "FileDescription");
74 if (!::VerQueryValueW(versionInfoData.get(), L"\\", reinterpret_cast<void**>(&info), &infoSize) || infoSize < sizeof(VS_FIXEDFILEINFO))
78 getVersionInfo(versionInfoData.get(), "MIMEType").split('|', types);
80 getVersionInfo(versionInfoData.get(), "FileExtents").split('|', extensionLists);
82 getVersionInfo(versionInfoData
[all...]
/external/webkit/Source/WebCore/plugins/win/
H A DPluginPackageWin.cpp44 static String getVersionInfo(const LPVOID versionInfoData, const String& info) argument
49 bool retval = VerQueryValueW(versionInfoData,
174 OwnArrayPtr<char> versionInfoData = adoptArrayPtr(new char[versionInfoSize]);
177 0, versionInfoSize, versionInfoData.get()))
180 m_name = getVersionInfo(versionInfoData.get(), "ProductName");
181 m_description = getVersionInfo(versionInfoData.get(), "FileDescription");
187 if (!VerQueryValueW(versionInfoData.get(), L"\\", (LPVOID*) &info, &infoSize) || infoSize < sizeof(VS_FIXEDFILEINFO))
196 getVersionInfo(versionInfoData.get(), "MIMEType").split('|', types);
198 getVersionInfo(versionInfoData.get(), "FileExtents").split('|', extensionLists);
200 getVersionInfo(versionInfoData
[all...]

Completed in 65 milliseconds