Lines Matching refs:pRt
1143 SbiRuntime* pRt = new SbiRuntime( this, pMeth, pMeth->nStart ); in Run() local
1149 pRt->pNext = pINST->pRun; in Run()
1150 if( pRt->pNext ) in Run()
1151 pRt->pNext->block(); in Run()
1152 pINST->pRun = pRt; in Run()
1157 while( pRt->Step() ) {} in Run()
1158 if( pRt->pNext ) in Run()
1159 pRt->pNext->unblock(); in Run()
1181 pINST->pRun = pRt->pNext; in Run()
1186 SbiRuntime* pRtNext = pRt->pNext; in Run()
1187 if( pRtNext && (pRt->GetDebugFlags() & SbDEBUG_BREAK) ) in Run()
1190 delete pRt; in Run()
1278 SbiRuntime* pRt = new SbiRuntime( this, NULL, 0 ); in RunInit() local
1284 pRt->pNext = pINST->pRun; in RunInit()
1285 pINST->pRun = pRt; in RunInit()
1286 while( pRt->Step() ) {} in RunInit()
1293 pINST->pRun = pRt->pNext; in RunInit()
1294 delete pRt; in RunInit()