Searched refs:ppGui (Results 1 - 2 of 2) sorted by relevance

/vbox/include/VBox/
H A Ddbggui.h87 * @param ppGui Where to store the pointer to the debugger instance.
91 DBGDECL(int) DBGGuiCreate(ISession *pSession, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT);
93 typedef DECLCALLBACK(int) FNDBGGUICREATE(ISession *pSession, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT);
102 * @param ppGui Where to store the pointer to the debugger instance.
106 DBGDECL(int) DBGGuiCreateForVM(PUVM pUVM, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT);
108 typedef DECLCALLBACK(int) FNDBGGUICREATEFORVM(PUVM pUVM, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT);
/vbox/src/VBox/Debugger/
H A DVBoxDbg.cpp80 * @param ppGui See DBGGuiCreate.
83 static int dbgGuiCreate(ISession *pSession, PUVM pUVM, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT) argument
104 *ppGui = pGui;
115 *ppGui = NULL;
127 * @param ppGui Where to store the pointer to the debugger instance.
131 DBGDECL(int) DBGGuiCreate(ISession *pSession, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT) argument
134 return dbgGuiCreate(pSession, NULL, ppGui, ppGuiVT);
143 * @param ppGui Where to store the pointer to the debugger instance.
147 DBGDECL(int) DBGGuiCreateForVM(PUVM pUVM, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT) argument
152 int rc = dbgGuiCreate(NULL, pUVM, ppGui, ppGuiV
[all...]

Completed in 758 milliseconds