Searched refs:Compound (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Frontends/VBoxAutostart/
H A DVBoxAutostartCfg.cpp600 pCfgAst = (PCFGAST)RTMemAllocZ(RT_OFFSETOF(CFGAST, u.Compound.apAstNodes[cAstNodesMax]));
605 pCfgAst->u.Compound.cAstNodes = 0;
655 if (pCfgAst->u.Compound.cAstNodes >= cAstNodesMax)
659 PCFGAST pCfgAstNew = (PCFGAST)RTMemRealloc(pCfgAst, RT_OFFSETOF(CFGAST, u.Compound.apAstNodes[cAstNodesMax]));
668 pCfgAst->u.Compound.apAstNodes[pCfgAst->u.Compound.cAstNodes] = pAstNode;
669 pCfgAst->u.Compound.cAstNodes++;
724 for (unsigned i = 0; i < pCfgAst->u.Compound.cAstNodes; i++)
725 autostartConfigAstDestroy(pCfgAst->u.Compound.apAstNodes[i]);
742 for (unsigned i = 0; i < pCfgAst->u.Compound
[all...]
H A DVBoxAutostart.h46 /** Compound type. */
78 /** Compound type. */
85 } Compound; member in union:CFGAST::__anon16034
/vbox/src/VBox/Storage/testcase/
H A DVDScriptAst.cpp155 while (!RTListIsEmpty(&pStmt->Compound.ListDecls))
157 PVDSCRIPTASTCORE pNode = RTListGetFirst(&pStmt->Compound.ListDecls, VDSCRIPTASTCORE, ListNode);
163 while (!RTListIsEmpty(&pStmt->Compound.ListStmts))
165 PVDSCRIPTASTCORE pNode = RTListGetFirst(&pStmt->Compound.ListStmts, VDSCRIPTASTCORE, ListNode);
H A DVDScriptInterp.cpp107 /** Compound statement. */
138 /** Compound statement. */
145 } Compound; member in struct:VDSCRIPTINTERPCTRL::__anon16820::__anon16821
268 pCtrl->Ctrl.Compound.pStmtCompound = pStmt;
269 pCtrl->Ctrl.Compound.pStmtCurr = RTListGetFirst(&pStmt->Compound.ListStmts, VDSCRIPTASTSTMT, Core.ListNode);
875 if (!pCtrl->Ctrl.Compound.pStmtCurr)
884 rc = vdScriptInterpreterPushAstEntry(pThis, &pCtrl->Ctrl.Compound.pStmtCurr->Core);
887 pCtrl->Ctrl.Compound.pStmtCurr = RTListGetNext(&pCtrl->Ctrl.Compound
[all...]
H A DVDScriptAst.h447 /** Compound statement. */
487 /** Compound statement. */
494 } Compound; member in union:VDSCRIPTASTSTMT::__anon16814
548 /** Compound statement node. */
H A DVDScript.cpp2665 RTListInit(&pAstNodeCompound->Compound.ListDecls);
2666 RTListInit(&pAstNodeCompound->Compound.ListStmts);
2681 RTListAppend(&pAstNodeCompound->Compound.ListDecls, &pAstNodeDecl->Core.ListNode);
2688 RTListAppend(&pAstNodeCompound->Compound.ListStmts, &pAstNodeStmt->Core.ListNode);

Completed in 59 milliseconds