vbox的更動 62468 路徑 trunk/src/VBox/Main
- 時間撮記:
- 2016-7-22 下午06:01:39 (8 年 以前)
- 位置:
- trunk/src/VBox/Main
- 檔案:
-
- 修改 10 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Main/src-all/ExtPackManagerImpl.cpp
r60760 r62468 2579 2579 { 2580 2580 Assert(m->pVirtualBox != NULL); /* Only called from VBoxSVC. */ 2581 2581 2582 2582 /* 2583 2583 * Get list of machines and their states. -
trunk/src/VBox/Main/src-all/Global.cpp
r61747 r62468 186 186 187 187 { "Linux", "Linux", "Linux26_64", "Linux 2.6 / 3.x / 4.x (64-bit)", 188 VBOXOSTYPE_Linux26_x64, VBOXOSHINT_64BIT | VBOXOSHINT_HWVIRTEX | VBOXOSHINT_IOAPIC | VBOXOSHINT_RTCUTC 188 VBOXOSTYPE_Linux26_x64, VBOXOSHINT_64BIT | VBOXOSHINT_HWVIRTEX | VBOXOSHINT_IOAPIC | VBOXOSHINT_RTCUTC 189 189 | VBOXOSHINT_USBTABLET | VBOXOSHINT_X2APIC, 190 190 1024, 16, 8 * _1G64, NetworkAdapterType_I82540EM, 0, StorageControllerType_PIIX4, StorageBus_IDE, -
trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
r59578 r62468 759 759 { 760 760 delete task; 761 throw rc = setError(VBOX_E_OBJECT_NOT_FOUND, 761 throw rc = setError(VBOX_E_OBJECT_NOT_FOUND, 762 762 tr("Could not create TaskOVF object for for writing out the OVF to disk")); 763 763 } -
trunk/src/VBox/Main/src-server/HostImpl.cpp
r61686 r62468 1791 1791 data.llUSBDeviceFilters.push_back(f); 1792 1792 } 1793 1793 1794 1794 return m->pUSBProxyService->i_saveSettings(data.llUSBDeviceSources); 1795 1795 #else -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r61190 r62468 2459 2459 initialized = true; 2460 2460 2461 2461 return initialized; 2462 2462 } 2463 2463 -
trunk/src/VBox/Main/src-server/darwin/iokit.cpp
r60160 r62468 1027 1027 * instances for the current device. Fortunately the IOUSBHostDevice instance contains a 1028 1028 * "AppleUSBAlternateServiceRegistryID" which points to the legacy class instance for the same device. 1029 * So just iterate over the list of IOUSBHostDevice instances and check whether the 1029 * So just iterate over the list of IOUSBHostDevice instances and check whether the 1030 1030 * AppleUSBAlternateServiceRegistryID property matches with the legacy instance. 1031 1031 * -
trunk/src/VBox/Main/src-server/linux/HostHardwareLinux.cpp
r60373 r62468 642 642 if (RT_SUCCESS(rc)) 643 643 { 644 rc = RTLinuxSysFsReadStrFile(szModel, sizeof(szModel), NULL, 644 rc = RTLinuxSysFsReadStrFile(szModel, sizeof(szModel), NULL, 645 645 "block/%s/device/model", mpcszName); 646 646 if (RT_SUCCESS(rc)) -
trunk/src/VBox/Main/src-server/win/HostPowerWin.cpp
r61908 r62468 214 214 PostQuitMessage(0); 215 215 return 0; 216 } 216 } 217 217 218 218 default: -
trunk/src/VBox/Main/src-server/win/VBoxComEvents.cpp
r60764 r62468 64 64 hr = ptinfo->GetDocumentation(pfd->memid, &fName, NULL, &hContext, NULL); 65 65 if (FAILED(hr)) 66 66 { 67 67 ptinfo->ReleaseFuncDesc(pfd); 68 68 break; 69 69 } 70 70 71 71 /* We only allow firing event callbacks */ -
trunk/src/VBox/Main/testcase/tstVBoxMultipleVM.cpp
r61205 r62468 44 44 45 45 /********************************************************************************************************************************* 46 * Global Variables & defs 46 * Global Variables & defs * 47 47 *********************************************************************************************************************************/ 48 48 typedef std::vector<Bstr> TMachinesList; … … 200 200 return rc; 201 201 } 202 202 203 203 204 204 /** … … 212 212 size_t machinesCount = 0; 213 213 com::SafeIfaceArray<IMachine> machines; 214 214 215 215 TST_COM_EXPR(pVBox->COMGETTER(Machines)(ComSafeArrayAsOutParam(machines))); 216 216 … … 251 251 uint64_t percN = 0; 252 252 253 // choose and fill pack of machines for test 253 // choose and fill pack of machines for test 254 254 tstGetMachinesList(pVBox, maxPackSize, machinesList); 255 255 … … 263 263 264 264 // start all machines in pack 265 for (TMachinesList::iterator it = machinesList.begin(); 265 for (TMachinesList::iterator it = machinesList.begin(); 266 266 it != machinesList.end() && g_RunTest; 267 267 ++it) … … 277 277 } 278 278 // stop all machines in the pack 279 for (TMachinesList::iterator it = machinesList.begin(); 279 for (TMachinesList::iterator it = machinesList.begin(); 280 280 it != machinesList.end() && g_RunTest; 281 281 ++it) … … 431 431 AssertRCReturn(rc, rc); 432 432 AssertPtr(pArgs); 433 433 434 434 while ((rc = RTGetOpt(&GetState, &ValueUnion)) != 0) 435 435 {
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器