Searched refs:pGuest (Results 1 - 20 of 20) sorted by relevance

/vbox/src/VBox/Main/include/
H A DGuestDnDPrivate.h37 GuestDnDResponse(const ComObjPtr<Guest>& pGuest);
72 Utf8Str errorToString(const ComObjPtr<Guest>& pGuest, int guestRc);
107 static GuestDnD *createInstance(const ComObjPtr<Guest>& pGuest) argument
110 GuestDnD::s_pInstance = new GuestDnD(pGuest);
131 GuestDnD(const ComObjPtr<Guest>& pGuest);
H A DGuestDnDSourceImpl.h33 int init(const ComObjPtr<Guest>& pGuest);
H A DGuestDnDTargetImpl.h33 int init(const ComObjPtr<Guest>& pGuest);
H A DPerformanceImpl.h178 void registerGuest(pm::CollectorGuest* pGuest);
179 void unregisterGuest(pm::CollectorGuest* pGuest);
H A DGuestCtrlImplPrivate.h383 ComObjPtr<Progress> pProgress, ComObjPtr<Guest> pGuest);
386 ComObjPtr<Guest> pGuest; member in class:GuestTask
H A DGuestSessionImpl.h53 int getGuestProperty(const ComObjPtr<Guest> &pGuest,
252 int init(Guest *pGuest, const GuestSessionStartupInfo &ssInfo, const GuestCredentials &guestCreds);
H A DPerformance.h340 void registerGuest(CollectorGuest* pGuest);
341 void unregisterGuest(CollectorGuest* pGuest);
/vbox/src/VBox/Main/src-client/
H A DGuestDnDPrivate.cpp161 GuestDnDResponse::GuestDnDResponse(const ComObjPtr<Guest>& pGuest) argument
170 , m_parent(pGuest)
211 Utf8Str GuestDnDResponse::errorToString(const ComObjPtr<Guest>& pGuest, int guestRc) argument
218 strError += Utf8StrFmt(pGuest->tr("For one or more guest files or directories selected for transferring to the host your guest "
225 strError += Utf8StrFmt(pGuest->tr("One or more guest files or directories selected for transferring to the host were not"
231 strError += Utf8StrFmt(pGuest->tr("One or more guest files or directories selected for transferring to the host were locked. "
444 GuestDnD::GuestDnD(const ComObjPtr<Guest> &pGuest) argument
445 : m_pGuest(pGuest)
449 m_pResponse = new GuestDnDResponse(pGuest);
H A DVMMDevInterface.cpp184 Guest* pGuest = pConsole->i_getGuest(); local
185 AssertPtrReturnVoid(pGuest);
187 pGuest->i_onUserStateChange(Bstr(pszUser), Bstr(pszDomain), (VBoxGuestUserState)uState,
256 Guest *pGuest = pDrv->pVMMDev->getParent()->i_getGuest(); local
257 AssertPtrReturnVoid(pGuest);
260 pGuest->i_setAdditionsInfo2(uFullVersion, pszName, uRevision, fFeatures);
285 Guest* pGuest = pConsole->i_getGuest(); local
286 AssertPtrReturnVoid(pGuest);
291 pGuest->i_setSupportedFeatures(newCapabilities);
H A DGuestDnDSourceImpl.cpp64 int GuestDnDSource::init(const ComObjPtr<Guest>& pGuest) argument
72 unconst(m_pGuest) = pGuest;
H A DGuestSessionImplTasks.cpp74 int GuestSessionTask::getGuestProperty(const ComObjPtr<Guest> &pGuest, argument
77 ComObjPtr<Console> pConsole = pGuest->i_getConsole();
1085 ComObjPtr<Guest> pGuest(mSession->i_getParent());
1092 while ( SUCCEEDED(hr = pGuest->COMGETTER(AdditionsRunLevel)(&addsRunLevel))
1115 if ( FAILED(hr = pGuest->COMGETTER(AdditionsRunLevel)(&addsRunLevel))
1136 rc = getGuestProperty(pGuest, "/VirtualBox/GuestAdd/Version", strAddsVer);
1155 rc = getGuestProperty(pGuest, "/VirtualBox/GuestInfo/OS/Product", strOSType);
1166 rc = getGuestProperty(pGuest, "/VirtualBox/GuestInfo/OS/Release", strOSVer);
1258 rc = getGuestProperty(pGuest, "/VirtualBox/GuestAdd/Version", strAddsVer);
1268 rc = getGuestProperty(pGuest, "/VirtualBo
[all...]
H A DGuestCtrlImpl.cpp79 ComObjPtr<Guest> pGuest = reinterpret_cast<Guest *>(pvExtension); local
80 Assert(!pGuest.isNull());
109 rc = pGuest->i_dispatchToSession(&ctxCb, pSvcCb);
H A DGuestDnDTargetImpl.cpp63 int GuestDnDTarget::init(const ComObjPtr<Guest>& pGuest) argument
71 unconst(m_pGuest) = pGuest;
H A DGuestImpl.cpp122 GuestDnD::createInstance(this /* pGuest */);
125 hr = mDnDSource->init(this /* pGuest */);
130 hr = mDnDTarget->init(this /* pGuest */);
242 Guest *pGuest = (Guest *)pvUser; local
250 pGuest->mNetStatRx += cb;
252 pGuest->mNetStatTx += cb;
H A DGuestSessionImpl.cpp169 int GuestSession::init(Guest *pGuest, const GuestSessionStartupInfo &ssInfo, argument
172 LogFlowThisFunc(("pGuest=%p, ssInfo=%p, guestCreds=%p\n",
173 pGuest, &ssInfo, &guestCreds));
183 AssertPtrReturn(pGuest, VERR_INVALID_POINTER);
185 mParent = pGuest;
2130 ComObjPtr<Guest> pGuest = mParent; local
2131 Assert(!pGuest.isNull());
2133 uint32_t uVerAdditions = pGuest->i_getAdditionsVersion();
H A DDisplayImpl.cpp1079 Guest* pGuest = mParent->i_getGuest(); local
1080 AssertPtrReturnVoid(pGuest);
1090 pGuest->i_setAdditionsStatus(VBoxGuestFacilityType_Graphics,
1094 pGuest->i_setAdditionsStatus(VBoxGuestFacilityType_Graphics,
/vbox/src/VBox/Main/src-server/
H A DPerformanceImpl.cpp314 pm::CollectorGuest *pGuest = m.gm->getBlockedGuest(); local
315 if (pGuest)
316 return pGuest->getVMName();
648 void PerformanceCollector::registerGuest(pm::CollectorGuest* pGuest) argument
654 m.gm->registerGuest(pGuest);
657 void PerformanceCollector::unregisterGuest(pm::CollectorGuest* pGuest) argument
663 m.gm->unregisterGuest(pGuest);
H A DPerformance.cpp432 void CollectorGuestManager::registerGuest(CollectorGuest* pGuest) argument
434 pGuest->setManager(this);
435 mGuests.push_back(pGuest);
441 mVMMStatsProvider = pGuest;
443 this, __PRETTY_FUNCTION__, pGuest, mVMMStatsProvider));
446 void CollectorGuestManager::unregisterGuest(CollectorGuest* pGuest) argument
451 this, __PRETTY_FUNCTION__, pGuest, mVMMStatsProvider));
452 //mGuests.remove(pGuest); => destroyUnregistered()
453 pGuest->unregister();
454 if (pGuest
[all...]
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageControlVM.cpp1115 ComPtr<IGuest> pGuest; local
1116 CHECK_ERROR_BREAK(console, COMGETTER(Guest)(pGuest.asOutParam()));
1117 if (!pGuest)
1123 CHECK_ERROR_BREAK(pGuest, SetCredentials(Bstr(a->argv[2]).raw(),
1268 ComPtr<IGuest> pGuest; local
1269 rc = console->COMGETTER(Guest)(pGuest.asOutParam());
1272 if (!pGuest)
1278 CHECK_ERROR(pGuest, COMSETTER(MemoryBalloonSize)(uVal));
H A DVBoxManageGuestCtrl.cpp113 ComPtr<IGuest> pGuest; member in struct:GCTLCMDCTX
973 CHECK_ERROR_BREAK(console, COMGETTER(Guest)(pCtx->pGuest.asOutParam()));
980 Assert(!pCtx->pGuest.isNull());
981 CHECK_ERROR_BREAK(pCtx->pGuest, CreateSession(Bstr(pCtx->strUsername).raw(),
3328 CHECK_ERROR(pCtx->pGuest, UpdateGuestAdditions(Bstr(strSource).raw(),
3334 vrc = ctrlPrintError(pCtx->pGuest, COM_IIDOF(IGuest));
3396 CHECK_ERROR_BREAK(pCtx->pGuest, COMGETTER(Sessions)(ComSafeArrayAsOutParam(collSessions)));
3585 CHECK_ERROR_BREAK(pCtx->pGuest, COMGETTER(Sessions)(ComSafeArrayAsOutParam(collSessions)));
3761 CHECK_ERROR_BREAK(pCtx->pGuest, COMGETTER(Sessions)(ComSafeArrayAsOutParam(collSessions)));
3878 CHECK_ERROR_BREAK(pCtx->pGuest, COMGETTE
[all...]

Completed in 137 milliseconds