Home
last modified time | relevance | path

Searched refs:pProfiler (Results 1 – 3 of 3) sorted by relevance

/trunk/main/automation/source/server/ !
H A Dsta_list.cxx57 TTProfiler *StatementList::pProfiler = NULL; member in StatementList
148 if ( pProfiler ) in InitProfile()
150 if ( pProfiler->IsProfilingPerCommand() || pProfiler->IsPartitioning() ) in InitProfile()
151 pProfiler->StartProfileInterval( pCurrentProfileStatement != this ); in InitProfile()
163 if ( pProfiler ) in SendProfile()
167 if ( pProfiler->IsProfilingPerCommand() || pProfiler->IsPartitioning() ) in SendProfile()
168 pProfiler->EndProfileInterval(); in SendProfile()
170 if ( pProfiler->IsProfilingPerCommand() ) in SendProfile()
171 pRet->GenReturn( RET_ProfileInfo, 0, pProfiler->GetProfileLine( aText ) ); in SendProfile()
173 if ( pProfiler->IsPartitioning() ) in SendProfile()
[all …]
H A Dstatemnt.cxx2646 if ( !pProfiler ) in Execute()
2648 pProfiler = new TTProfiler; in Execute()
2654 if ( pProfiler->IsProfilingPerCommand() ) in Execute()
2656 pProfiler->StopProfilingPerCommand(); in Execute()
2658 pProfiler->StartAutoProfiling( nNr1 ); in Execute()
2661 pRet->GenReturn( RET_ProfileInfo, 0, pProfiler->GetProfileHeader() ); in Execute()
2682 pProfiler->StartPartitioning(); in Execute()
2691 if ( pProfiler->IsAutoProfiling() ) in Execute()
2693 pRet->GenReturn( RET_ProfileInfo, 0, pProfiler->GetAutoProfiling() ); in Execute()
2694 pProfiler->StopAutoProfiling(); in Execute()
[all …]
H A Dstatemnt.hxx167 static TTProfiler *pProfiler; member in StatementList