Searched refs:iDevice (Results 1 - 24 of 24) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/medium/
H A DUIMediumDefs.h55 UIMediumTarget(const QString &strName = QString(), LONG iPort = 0, LONG iDevice = 0,
58 : name(strName), port(iPort), device(iDevice)
/vbox/src/VBox/Devices/Bus/
H A DPCIInternal.h43 * @param iDevice The number of the device on the bus.
47 typedef DECLCALLBACK(uint32_t) FNPCIBRIDGECONFIGREAD(PPDMDEVINSR3 pDevIns, uint8_t iBus, uint8_t iDevice, uint32_t u32Address, unsigned cb);
58 * @param iDevice The number of the device on the bus.
64 typedef DECLCALLBACK(void) FNPCIBRIDGECONFIGWRITE(PPDMDEVINSR3 pDevIns, uint8_t iBus, uint8_t iDevice, uint32_t u32Address, uint32_t u32Value, unsigned cb);
H A DDevPCI.cpp485 uint8_t iBus, iDevice; local
497 iDevice = (pGlobals->uConfigReg >> 8) & 0xff;
508 pBridgeDevice->Int.s.pfnBridgeConfigWrite(pBridgeDevice->pDevIns, iBus, iDevice, config_addr, val, len);
517 R3PTRTYPE(PCIDevice *) pci_dev = pGlobals->PciBus.devices[iDevice];
533 uint8_t iBus, iDevice; local
543 iDevice = (pGlobals->uConfigReg >> 8) & 0xff;
554 *pu32 = pBridgeDevice->Int.s.pfnBridgeConfigRead(pBridgeDevice->pDevIns, iBus, iDevice, config_addr, len);
564 R3PTRTYPE(PCIDevice *) pci_dev = pGlobals->PciBus.devices[iDevice];
2344 static void pcibridgeR3ConfigWrite(PPDMDEVINSR3 pDevIns, uint8_t iBus, uint8_t iDevice, uint32_t u32Address, uint32_t u32Value, unsigned cb) argument
2348 LogFlowFunc(("pDevIns=%p iBus=%d iDevice
2376 pcibridgeR3ConfigRead(PPDMDEVINSR3 pDevIns, uint8_t iBus, uint8_t iDevice, uint32_t u32Address, unsigned cb) argument
[all...]
H A DDevPciIch9.cpp1151 static void ich9pcibridgeConfigWrite(PPDMDEVINSR3 pDevIns, uint8_t iBus, uint8_t iDevice, uint32_t u32Address, uint32_t u32Value, unsigned cb)
1155 LogFlowFunc((": pDevIns=%p iBus=%d iDevice=%d u32Address=%u u32Value=%u cb=%d\n", pDevIns, iBus, iDevice, u32Address, u32Value, cb));
1164 pBridgeDevice->Int.s.pfnBridgeConfigWrite(pBridgeDevice->pDevIns, iBus, iDevice, u32Address, u32Value, cb);
1170 PPCIDEVICE pPciDev = pBus->apDevices[iDevice];
1179 static uint32_t ich9pcibridgeConfigRead(PPDMDEVINSR3 pDevIns, uint8_t iBus, uint8_t iDevice, uint32_t u32Address, unsigned cb)
1184 LogFlowFunc((": pDevIns=%p iBus=%d iDevice=%d u32Address=%u cb=%d\n", pDevIns, iBus, iDevice, u32Address, cb));
1193 u32Value = pBridgeDevice->Int.s.pfnBridgeConfigRead(pBridgeDevice->pDevIns, iBus, iDevice, u32Address, cb);
1201 PPCIDEVICE pPciDev = pBus->apDevices[iDevice];
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Video/common/xpdm/
H A DVBoxVideoIOCTL.h73 typedef DECLCALLBACK(int) FNVBOXVIDEOHGSMICOMMANDS(HVBOXVIDEOHGSMI hHGSMI, uint8_t u8Channel, uint32_t iDevice, struct VBVAHOSTCMD ** ppCmd);
120 ULONG iDevice; member in struct:_QUERYHGSMIRESULT
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/common/
H A DVBoxMPVidModes.cpp55 if (pExt->iDevice != 0) /* Secondary monitors do not support 8 bit */
749 cStandartModes = VBoxMPFillModesTable(pExt, pExt->iDevice, pExt->aVideoModes, VBOXMP_MAX_VIDEO_MODES, NULL);
762 memcpy(&pExt->aVideoModes[iSpecialMode], &g_CustomVideoModes[pExt->iDevice], sizeof(VIDEO_MODE_INFORMATION));
774 pExt->iDevice));
778 bHaveSpecial = bPending && (pExt->iDevice == specialMode.ModeIndex);
779 LOG(("bPending %d, pExt->iDevice %d, specialMode.ModeIndex %d",
780 bPending, pExt->iDevice, specialMode.ModeIndex));
783 if (!bHaveSpecial && VBoxMPIsStartingUp(pExt, pExt->iDevice))
786 LOG(("Startup for screen %d", pExt->iDevice));
788 if (VBoxMPValidateVideoModeParams(pExt, pExt->iDevice, xre
[all...]
H A DVBoxMPDevExt.h79 ULONG iDevice; /* Device index: 0 for primary, otherwise a secondary device. */ member in struct:_VBOXMP_DEVEXT
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DUIDefs.h123 StorageSlot(KStorageBus otherBus, LONG iPort, LONG iDevice) : bus(otherBus), port(iPort), device(iDevice) {} argument
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm/
H A DVBoxMPIOCTL.cpp45 if (pExt->iDevice>0)
47 LOG(("skipping non-primary display %d", pExt->iDevice));
203 pExt->iDevice, pModeInfo->ModeIndex, pModeInfo->VisScreenWidth, pModeInfo->VisScreenHeight, pModeInfo->BitsPerPlane));
211 if (pExt->iDevice>0)
213 LOG(("skipping non-primary display %d", pExt->iDevice));
548 pResult->iDevice = pExt->iDevice;
577 int rc = VBoxVbvaChannelDisplayEnable(VBoxCommonFromDeviceExt(pExt), pExt->iDevice, pChannel->u8Channel);
H A DVBoxMPDriver.cpp138 pExt->iDevice = 0;
406 LOGF(("IOCTL_VIDEO_SWITCH_DUALVIEW: [%d] attach = %d", pExt->iDevice, *pAttach));
408 if (pExt->iDevice>0)
421 VBoxHGSMIProcessDisplayInfo(&pCommon->guestCtx, pExt->iDevice,
440 LOGF(("IOCTL_VIDEO_GET_CHILD_STATE: [%d] idx = %d", pExt->iDevice, *pChildIndex));
646 if (pExt->iDevice==0) /* Primary device */
666 LOG(("ignoring non primary device %d", pExt->iDevice));
H A DVBoxMPInternal.cpp75 LOG(("[%d] ulFrameBufferOffset 0x%08X", pExt->iDevice, ulFrameBufferOffset));
90 p[i].u32ViewIndex = pExt->iDevice;
147 pSExt->iDevice = iDisplay;
229 if (pExt->iDevice>0)
232 LOGF(("skipping non-primary display %d", pExt->iDevice));
/vbox/src/VBox/Frontends/VirtualBox/src/
H A DUIVMInfoDialog.h109 QString formatStorageElement(const QString &strCtrName, LONG iPort, LONG iDevice, const QString &strBelongsTo);
H A DUIVMInfoDialog.cpp715 const LONG iDevice = attachment.GetDevice();
721 strStorageStat += formatStorageElement(strName, iPort, iDevice,
723 .arg(iIDECount).arg(iPort).arg(iDevice));
729 strStorageStat += formatStorageElement(strName, iPort, iDevice,
737 strStorageStat += formatStorageElement(strName, iPort, iDevice,
830 LONG iPort, LONG iDevice,
838 QString strName = gpConverter->toString(StorageSlot(ctr.GetBus(), iPort, iDevice));
829 formatStorageElement(const QString &strControllerName, LONG iPort, LONG iDevice, const QString &strBelongsTo) argument
/vbox/src/VBox/Frontends/VirtualBox/src/converter/
H A DUIConverterBackendGlobal.cpp264 LONG iDevice = index % iMaxPort; local
270 if (iDevice < 0 || iDevice > iMaxDevice)
277 result.device = iDevice;
285 LONG iDevice = 0; local
293 result.device = iDevice;
301 LONG iDevice = 0; local
309 result.device = iDevice;
317 LONG iDevice = 0; local
325 result.device = iDevice;
333 LONG iDevice = regExp.cap(1).toInt(); local
349 LONG iDevice = 0; local
[all...]
/vbox/src/VBox/ValidationKit/testdriver/
H A Dvboxwrappers.py1589 def attachDvd(self, sImage = None, sController = "IDE Controller", iPort = 1, iDevice = 0):
1637 self.o.machine.attachDevice(sController, iPort, iDevice, vboxcon.DeviceType_DVD, oImage);
1639 self.o.machine.attachDevice(sController, iPort, iDevice, vboxcon.DeviceType_DVD, sImageUuid);
1642 % (sController, iPort, iDevice, sImageUuid, self.sName) );
1649 def attachHd(self, sHd, sController = "IDE Controller", iPort = 0, iDevice = 0, fImmutable = True, fForceResource = True):
1696 self.o.machine.attachDevice(sController, iPort, iDevice, vboxcon.DeviceType_HardDisk, oHd);
1698 self.o.machine.attachDevice(sController, iPort, iDevice, vboxcon.DeviceType_HardDisk, oHd.id);
1701 % (sController, iPort, iDevice, oHd.id, self.sName) );
1749 iPort = 0, iDevice = 0, fImmutable = True):
1778 self.o.machine.attachDevice(sController, iPort, iDevice, vboxco
[all...]
/vbox/src/VBox/Additions/common/VBoxControl/
H A DVBoxControl.cpp682 ULONG iDevice; local
713 for (iDevice = 0; iDevice < numDevices; iDevice++)
715 adwObjectNumberList[iDevice] = iDevice;
728 for (iDevice = 0; iDevice < numDevices; iDevice++)
731 RTStrPrintf(szValueName, sizeof(szValueName), "\\Device\\Video%u", adwObjectNumberList[iDevice]);
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/
H A DVBoxDispDriver.cpp626 LogRel(("VBoxDisp[%d]: VBVA %senabled\n", pDev->iDevice, pDev->hgsmi.bSupported? "":"not "));
633 VBoxHGSMIProcessDisplayInfo(&pDev->hgsmi.ctx, pDev->iDevice, pDev->orgDev.x, pDev->orgDev.y,
839 LogRel(("VBoxDisp[%d]: VBVA %senabled\n", pDev->iDevice, pDev->hgsmi.bSupported? "":"not "));
846 VBoxHGSMIProcessDisplayInfo(&pDev->hgsmi.ctx, pDev->iDevice, pDev->orgDev.x, pDev->orgDev.y,
1074 pso, pDev->iDevice, pDev, pDev->orgDev.x, pDev->orgDev.y, pOrg->x, pOrg->y));
1080 VBoxHGSMIProcessDisplayInfo(&pDev->hgsmi.ctx, pDev->iDevice, pDev->orgDev.x, pDev->orgDev.y,
1096 LOG(("DN_DRAWING_BEGIN (pso=%p, pDev[%d]=%p)", pso, pDev->iDevice, pDev));
H A DVBoxDispVBVA.cpp375 pDev->iDevice = info.iDevice;
449 pDev->iDevice = 0;
H A DVBoxDisp.h106 ULONG iDevice; /* Miniport's device index */ member in struct:_VBOXDISPDEV
H A DVBoxDispVHWA.cpp138 pHdr->iDisplay = pDev->iDevice;
185 int rc = pDev->hgsmi.mp.pfnRequestCommandsHandler(pDev->hgsmi.mp.hContext, HGSMI_CH_VBVA, pDev->iDevice, &pCmd);
/vbox/src/VBox/Main/src-client/
H A DBusAssignmentManager.cpp38 int iDevice; member in struct:DeviceAssignmentRule
379 Address.miDevice = rule->iDevice;
/vbox/include/VBox/
H A Dpci.h1074 PCIBusAddress(int iBus, int iDevice, int iFn) argument
1076 init(iBus, iDevice, iFn);
1091 void init(int iBus, int iDevice, int iFn) argument
1094 miDevice = iDevice;
/vbox/src/VBox/ValidationKit/tests/installation/
H A DtdGuestOsInstTest1.py104 (fRc, oHd) = oSession.detachHd(self.sHddControllerType, iPort = 0, iDevice = 0);
/vbox/src/VBox/Devices/Storage/
H A DDevLsiLogicSCSI.cpp3220 for (unsigned iDevice = 0; iDevice < RT_ELEMENTS(pPages->aPortPages[i].SCSISPIPortPage2.u.fields.aDeviceSettings); iDevice++)
3222 pPages->aPortPages[i].SCSISPIPortPage2.u.fields.aDeviceSettings[iDevice].fBootChoice = true;

Completed in 1043 milliseconds