Lines Matching defs:a_pConsole

864  * @param   a_pConsole          The Console interface.
867 bool ExtPack::i_callConsoleReadyHook(IConsole *a_pConsole, AutoWriteLock *a_pLock)
878 m->pReg->pfnConsoleReady(m->pReg, a_pConsole);
915 * @param a_pConsole The console interface.
922 bool ExtPack::i_callVmConfigureVmmHook(IConsole *a_pConsole, PVM a_pVM, AutoWriteLock *a_pLock, int *a_pvrc)
932 int vrc = m->pReg->pfnVMConfigureVMM(m->pReg, a_pConsole, a_pVM);
947 * @param a_pConsole The console interface.
954 bool ExtPack::i_callVmPowerOnHook(IConsole *a_pConsole, PVM a_pVM, AutoWriteLock *a_pLock, int *a_pvrc)
964 int vrc = m->pReg->pfnVMPowerOn(m->pReg, a_pConsole, a_pVM);
979 * @param a_pConsole The console interface.
983 bool ExtPack::i_callVmPowerOffHook(IConsole *a_pConsole, PVM a_pVM, AutoWriteLock *a_pLock)
992 m->pReg->pfnVMPowerOff(m->pReg, a_pConsole, a_pVM);
2800 * @param a_pConsole The console interface.
2803 void ExtPackManager::i_callAllConsoleReadyHooks(IConsole *a_pConsole)
2816 if ((*it)->i_callConsoleReadyHook(a_pConsole, &autoLock))
2849 * @param a_pConsole The console interface for the VM.
2852 int ExtPackManager::i_callAllVmConfigureVmmHooks(IConsole *a_pConsole, PVM a_pVM)
2865 (*it)->i_callVmConfigureVmmHook(a_pConsole, a_pVM, &autoLock, &vrc);
2878 * @param a_pConsole The console interface for the VM.
2881 int ExtPackManager::i_callAllVmPowerOnHooks(IConsole *a_pConsole, PVM a_pVM)
2894 (*it)->i_callVmPowerOnHook(a_pConsole, a_pVM, &autoLock, &vrc);
2905 * @param a_pConsole The console interface for the VM.
2908 void ExtPackManager::i_callAllVmPowerOffHooks(IConsole *a_pConsole, PVM a_pVM)
2919 (*it)->i_callVmPowerOffHook(a_pConsole, a_pVM, &autoLock);