Lines Matching refs:info
104 struct utsname info; in getSystemInfoXml() local
106 uname(&info); in getSystemInfoXml()
110 + xmlAttrEncode(OString(info.sysname)) + "\" version=\"" in getSystemInfoXml()
111 + xmlAttrEncode(OString(info.version)) + "\" build=\"" in getSystemInfoXml()
112 + xmlAttrEncode(OString(info.release)) + "\" locale=\"" in getSystemInfoXml()
115 + xmlAttrEncode(OString(info.machine)) + "\"/>\n" in getSystemInfoXml()
122 OSVERSIONINFO info; in getSystemInfoXml() local
123 ZeroMemory(&info, sizeof(OSVERSIONINFO)); in getSystemInfoXml()
124 info.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); in getSystemInfoXml()
125 GetVersionEx(&info); in getSystemInfoXml()
129 if(VER_PLATFORM_WIN32_NT == info.dwPlatformId) in getSystemInfoXml()
133 result.append("\" version=\"").append(static_cast<long>(info.dwMajorVersion)); in getSystemInfoXml()
134 result.append(".").append(static_cast<long>(info.dwMinorVersion)); in getSystemInfoXml()
135 result.append("\" build=\"").append(static_cast<long>(info.dwBuildNumber)); in getSystemInfoXml()