Home | History | Annotate | Download | only in find_java

Lines Matching full:sysinfo

305     // Get the app sysinfo state (the one hidden by WOW64)

306 SYSTEM_INFO sysInfo;
307 GetSystemInfo(&sysInfo);
308 WORD programArch = sysInfo.wProcessorArchitecture;
309 // Check the real sysinfo state (not the one hidden by WOW64) for x86
310 GetNativeSystemInfo(&sysInfo);
311 WORD actualArch = sysInfo.wProcessorArchitecture;
388 // Check the real sysinfo state (not the one hidden by WOW64) for x86
389 SYSTEM_INFO sysInfo;
390 GetNativeSystemInfo(&sysInfo);
392 if (sysInfo.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) {