Searched refs:cMonitors (Results 1 - 18 of 18) sorted by relevance

/vbox/src/VBox/Main/src-all/
H A DDisplayUtils.cpp170 uint32_t cMonitors; local
171 SSMR3GetU32(pSSM, &cMonitors);
172 if (u32ScreenId > cMonitors)
/vbox/src/VBox/Main/src-client/
H A DDisplayImplLegacy.cpp85 unsigned cMonitors; member in struct:_VBVADIRTYREGION
94 static void vbvaRgnInit(VBVADIRTYREGION *prgn, DISPLAYFBINFO *paFramebuffers, unsigned cMonitors, argument
98 prgn->cMonitors = cMonitors;
H A DDisplayImpl.cpp531 uint32_t cMonitors; local
532 int rc = SSMR3GetU32(pSSM, &cMonitors);
533 if (cMonitors != that->mcMonitors)
534 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("Number of monitors changed (%d->%d)!"), cMonitors, that->mcMonitors);
536 for (uint32_t i = 0; i < cMonitors; i++)
1763 ULONG cMonitors; local
1764 mParent->i_machine()->COMGETTER(MonitorCount)(&cMonitors);
1765 if (cMonitors == 0 && aDisplay > 0)
1767 if (aDisplay >= cMonitors)
H A DConsoleVRDPServer.cpp616 ULONG cMonitors = 1; local
618 server->mConsole->i_machine()->COMGETTER(MonitorCount)(&cMonitors);
622 *(uint32_t *)pvBuffer = (uint32_t)cMonitors;
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DVBoxGlobal.h333 static quint64 requiredVideoMemory(const QString &strGuestOSTypeId, int cMonitors = 1);
382 static quint64 required3DWddmOffscreenVideoMemory(const QString &strGuestOSTypeId, int cMonitors = 1);
H A DVBoxGlobal.cpp2889 quint64 VBoxGlobal::requiredVideoMemory(const QString &strGuestOSTypeId, int cMonitors /* = 1 */)
2898 QVector<int> screenSize(qMax(cMonitors, pDW->numScreens()), 0);
2914 for (int i = 0; i < cMonitors; ++i)
3555 quint64 VBoxGlobal::required3DWddmOffscreenVideoMemory(const QString &strGuestOSTypeId, int cMonitors /* = 1 */)
3557 cMonitors = RT_MAX(cMonitors, 1);
3558 quint64 cbSize = VBoxGlobal::requiredVideoMemory(strGuestOSTypeId, 1); /* why not cMonitors? */
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageControlVM.cpp1428 ULONG cMonitors = 64; local
1429 CHECK_ERROR_BREAK(machine, COMGETTER(MonitorCount)(&cMonitors));
1430 com::SafeArray<BOOL> saScreens(cMonitors);
1435 for (unsigned i = 0; i < cMonitors; i++)
1442 for (unsigned i = 0; i < cMonitors; i++)
1450 for (unsigned i = 0; i < cMonitors; i++)
1462 if (iScreen >= cMonitors)
H A DVBoxManageModifyVM.cpp2698 ULONG cMonitors = 64; local
2699 CHECK_ERROR(sessionMachine, COMGETTER(MonitorCount)(&cMonitors));
2700 com::SafeArray<BOOL> screens(cMonitors);
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA_VBVA.cpp1117 if (iDisplay >= pVGAState->cMonitors)
1157 if (iDisplay >= pVGAState->cMonitors)
1212 if (iDisplay >= pVGAState->cMonitors)
1669 for (uint32_t i = 0; i < pVGAState->cMonitors; ++i)
1900 for (uint32_t i = 0; i < pVGAState->cMonitors; ++i)
2053 if (u32ViewIndex >= pVGAState->cMonitors)
2633 if (iDisplay >= RT_MIN(pThis->cMonitors, RT_ELEMENTS(pCtx->aModeHints)))
2718 pCtx->cViews = pVGAState->cMonitors;
H A DDevVGA_VDMA.cpp1409 for (uint32_t i = 0; i < pVGAState->cMonitors; ++i)
1449 ASMBitClearRange(aTargetMap, pVGAState->cMonitors, VBOX_VIDEO_MAX_SCREENS);
1459 if (u32ViewIndex > pVGAState->cMonitors)
1486 for (int i = ASMBitFirstSet(aTargetMap, pVGAState->cMonitors);
1488 i = ASMBitNextSet(aTargetMap, pVGAState->cMonitors, i))
2933 for (uint32_t i = 0; i < pVGAState->cMonitors; i++)
2952 for (uint32_t i = 0; i < pVGAState->cMonitors; i++)
H A DDevVGA.h434 uint32_t cMonitors;
H A DDevVGA.cpp5407 SSMR3PutU32(pSSM, pThis->cMonitors);
5512 uint32_t cMonitors;
5513 rc = SSMR3GetU32(pSSM, &cMonitors);
5515 if (pThis->cMonitors != cMonitors)
5516 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("Monitor count changed: config=%u state=%u"), pThis->cMonitors, cMonitors);
5994 rc = CFGMR3QueryU32Def(pCfg, "MonitorCount", &pThis->cMonitors, 1);
/vbox/src/VBox/Main/xml/
H A DSettings.cpp1976 cMonitors(1),
2053 && (cMonitors == h.cMonitors)
2993 if (!pelmHwChild->getAttributeValue("monitorCount", hw.cMonitors))
2994 pelmHwChild->getAttributeValue("MonitorCount", hw.cMonitors); // pre-v1.5 variant
4281 pelmDisplay->setAttribute("monitorCount", hw.cMonitors);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dddrawi.h814 DWORD cMonitors; member in struct:_DDRAWI_DIRECTDRAW_GBL
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dddrawi.h814 DWORD cMonitors; member in struct:_DDRAWI_DIRECTDRAW_GBL
/vbox/include/VBox/
H A Dsettings.h932 uint32_t cMonitors; member in struct:settings::Hardware
/vbox/src/VBox/Devices/testcase/
H A DtstDeviceStructSizeRC.cpp348 GEN_CHECK_OFF(VGASTATE, cMonitors);
/vbox/src/VBox/Main/src-server/
H A DMachineImpl.cpp8880 mHWData->mMonitorCount = data.cMonitors;
10194 data.cMonitors = mHWData->mMonitorCount;

Completed in 644 milliseconds