/vbox/include/VBox/ |
H A D | vd-image-backend.h | 507 DECLR3CALLBACKMEMBER(int, pfnComposeLocation, (PVDINTERFACE pConfig, char **pszLocation)); 514 DECLR3CALLBACKMEMBER(int, pfnComposeName, (PVDINTERFACE pConfig, char **pszName)); 595 DECLINLINE(int) genericFileComposeLocation(PVDINTERFACE pConfig, char **pszLocation) argument 601 DECLINLINE(int) genericFileComposeName(PVDINTERFACE pConfig, char **pszName) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/EfiSocketLib/ |
H A D | Ip4.c | 87 EFI_IP4_CONFIG_DATA * pConfig; local 113 pConfig = &pPort->Context.Ip4.ModeData.ConfigData; 114 pConfig->StationAddress.Addr[0] = pIpv4Address[0]; 115 pConfig->StationAddress.Addr[1] = pIpv4Address[1]; 116 pConfig->StationAddress.Addr[2] = pIpv4Address[2]; 117 pConfig->StationAddress.Addr[3] = pIpv4Address[3]; 122 pConfig->UseDefaultAddress = (BOOLEAN)( 0 == pIpAddress->sin_addr.s_addr ); 130 pConfig->StationAddress.Addr[0], 131 pConfig->StationAddress.Addr[1], 132 pConfig 367 EFI_IP4_CONFIG_DATA * pConfig; local [all...] |
H A D | Udp4.c | 88 EFI_UDP4_CONFIG_DATA * pConfig; local 112 pConfig = &pPort->Context.Udp4.ConfigData; 113 pConfig->StationAddress.Addr[0] = pIpv4Address[0]; 114 pConfig->StationAddress.Addr[1] = pIpv4Address[1]; 115 pConfig->StationAddress.Addr[2] = pIpv4Address[2]; 116 pConfig->StationAddress.Addr[3] = pIpv4Address[3]; 121 pConfig->UseDefaultAddress = (BOOLEAN)( 0 == pIpAddress->sin_addr.s_addr ); 126 if ( pConfig->UseDefaultAddress ) { 127 pConfig->SubnetMask.Addr[0] = 0; 128 pConfig 237 EFI_UDP4_CONFIG_DATA * pConfig; local [all...] |
/vbox/src/VBox/Main/src-client/ |
H A D | EmulatedUSBImpl.cpp | 109 static int emulatedWebcamInsertSettings(PCFGMNODE pConfig, EUSBSettingsMap *pSettings) argument 124 rc = CFGMR3InsertInteger(pConfig, it->first.c_str(), u32); 136 rc = CFGMR3InsertString(pConfig, it->first.c_str(), it->second.c_str()); 151 PCFGMNODE pConfig; local 152 CFGMR3InsertNode(pInstance, "Config", &pConfig); 153 int rc = emulatedWebcamInsertSettings(pConfig, &pThis->mDevSettings); 157 CFGMR3InsertNode(pConfig, "EmulatedUSB", &pEUSB); 165 CFGMR3InsertNode(pLunL0, "Config", &pConfig); 166 CFGMR3InsertString(pConfig, "DevicePath", pThis->mPath.c_str()); 167 CFGMR3InsertInteger(pConfig, "Objec [all...] |
/vbox/src/VBox/Main/include/ |
H A D | ApplianceImplPrivate.h | 236 *pConfig; // machine config created from <vbox:Machine> element if found (import only) member in struct:VirtualSystemDescription::Data
|
/vbox/src/VBox/Main/src-server/ |
H A D | ApplianceImpl.cpp | 1345 m->pConfig = NULL; 1358 if (m->pConfig) 1359 delete m->pConfig; 1655 settings::MachineConfigFile *pConfig = NULL; local 1657 Assert(m->pConfig == NULL); 1661 pConfig = new settings::MachineConfigFile(NULL); 1662 pConfig->importMachineXML(elmMachine); 1664 m->pConfig = pConfig; 1668 if (pConfig) [all...] |
H A D | ApplianceImplExport.cpp | 1859 settings::MachineConfigFile *pConfig = new settings::MachineConfigFile(NULL); local 1866 vsdescThis->m->pMachine->i_copyMachineDataToSettings(*pConfig); 1873 for (settings::NetworkAdaptersList::iterator it = pConfig->hardwareMachine.llNetworkAdapters.begin(); 1874 it != pConfig->hardwareMachine.llNetworkAdapters.end(); 1884 pConfig->buildMachineXML(*pelmVBoxMachine, 1890 delete pConfig; 1895 delete pConfig;
|
/vbox/src/VBox/HostDrivers/VBoxUSB/solaris/ |
H A D | VBoxUSB-solaris.c | 2463 usb_cfg_data_t *pConfig = &pState->pDevDesc->dev_cfg[uCfgIndex]; local 2464 uchar_t uCfgValue = pConfig->cfg_descr.bConfigurationValue; 2466 for (uchar_t uInterface = 0; uInterface < pConfig->cfg_n_if; uInterface++) 2468 usb_if_data_t *pInterface = &pConfig->cfg_if[uInterface]; 2514 usb_cfg_data_t *pConfig = &pState->pDevDesc->dev_cfg[uCfgIndex]; local 2515 uchar_t uCfgValue = pConfig->cfg_descr.bConfigurationValue; 2516 usb_if_data_t *pInterface = &pConfig->cfg_if[uInterface]; 2806 usb_cfg_data_t *pConfig = &pState->pDevDesc->dev_cfg[CfgIndex]; local 2807 if (pConfig->cfg_descr.bConfigurationValue == uCfgValue)
|
/vbox/src/VBox/VMM/VMMR3/ |
H A D | PDMUsb.cpp | 553 PCFGMNODE pConfig = CFGMR3GetChild(pInstanceNode, "Config"); local 554 if (!pConfig) 556 rc = CFGMR3InsertNode(pInstanceNode, "Config", &pConfig); 559 Assert(CFGMR3GetChild(pInstanceNode, "Config") == pConfig); 610 pUsbIns->pCfg = pConfig; 1035 PCFGMNODE pConfig; local 1036 rc = CFGMR3InsertNode(pInstance, "Config", &pConfig); AssertRCBreak(rc); 1037 rc = CFGMR3InsertString(pConfig, "Address", pszAddress); AssertRCBreak(rc); 1040 rc = CFGMR3InsertString(pConfig, "UUID", szUuid); AssertRCBreak(rc); 1041 rc = CFGMR3InsertInteger(pConfig, "Remot [all...] |
H A D | CPUMR3CpuId.cpp | 2151 * @param pConfig The CPUID configuration we've read from CFGM. 2153 static int cpumR3CpuIdPlantHypervisorLeaves(PCPUM pCpum, PCPUMCPUIDCONFIG pConfig) argument 2186 * @param pConfig The CPUID configuration we've read from CFGM. 2188 static void cpumR3CpuIdLimitIntelFamModStep(PCPUM pCpum, PCPUMCPUIDCONFIG pConfig) argument 2197 uint32_t uMaxIntelFamilyModelStep = pConfig->uMaxIntelFamilyModelStep; 2198 if (pConfig->uMaxIntelFamilyModelStep < uCurIntelFamilyModelStep) 2224 * @param pConfig The CPUID configuration we've read from CFGM. 2226 static void cpumR3CpuIdLimitLeaves(PCPUM pCpum, PCPUMCPUIDCONFIG pConfig) argument 2238 if (uLimit > pConfig->uMaxStdLeaf) 2240 pCurLeaf->uEax = uLimit = pConfig 2353 cpumR3CpuIdSanitize(PVM pVM, PCPUM pCpum, PCPUMCPUIDCONFIG pConfig) argument 3509 cpumR3CpuIdReadConfig(PVM pVM, PCPUMCPUIDCONFIG pConfig, PCFGMNODE pCpumCfg, bool fNestedPagingAndFullGuestExec) argument [all...] |