Lines Matching refs:pComponent

58     virtual ocsd_err_t attachErrorLogger(TraceComponent *pComponent, ITraceErrorLog *pIErrorLog);
61 virtual ocsd_err_t attachInstrDecoder(TraceComponent *pComponent, IInstrDecode *pIInstrDec);
62 … virtual ocsd_err_t attachMemAccessor(TraceComponent *pComponent, ITargetMemAccess *pMemAccessor);
63 virtual ocsd_err_t attachOutputSink(TraceComponent *pComponent, ITrcGenElemIn *pOutSink);
66 virtual ocsd_err_t attachPktMonitor(TraceComponent *pComponent, ITrcTypedBase *pPktRawDataMon);
67 virtual ocsd_err_t attachPktIndexer(TraceComponent *pComponent, ITrcTypedBase *pPktIndexer);
68 virtual ocsd_err_t attachPktSink(TraceComponent *pComponent, ITrcTypedBase *pPktDataInSink);
71 virtual ocsd_err_t getDataInputI(TraceComponent *pComponent, ITrcDataIn **ppDataIn);
164 ocsd_err_t DecoderMngrBase<P,Pt,Pc>::destroyDecoder(TraceComponent *pComponent) in destroyDecoder() argument
166 if(pComponent->getAssocComponent() != 0) in destroyDecoder()
167 delete pComponent->getAssocComponent(); in destroyDecoder()
168 delete pComponent; in destroyDecoder() local
173 ocsd_err_t DecoderMngrBase<P,Pt,Pc>::attachErrorLogger(TraceComponent *pComponent, ITraceErrorLog *… in attachErrorLogger() argument
175 return pComponent->getErrorLogAttachPt()->replace_first(pIErrorLog); in attachErrorLogger()
179 ocsd_err_t DecoderMngrBase<P,Pt,Pc>::attachInstrDecoder(TraceComponent *pComponent, IInstrDecode *p… in attachInstrDecoder() argument
183 …if(pComponent->getAssocComponent() == 0) // no associated component - so this is a packet proce… in attachInstrDecoder()
186 TrcPktDecodeI *pDcdI = dynamic_cast< TrcPktDecodeI * >(pComponent); in attachInstrDecoder()
197 ocsd_err_t DecoderMngrBase<P,Pt,Pc>::attachMemAccessor(TraceComponent *pComponent, ITargetMemAccess… in attachMemAccessor() argument
201 …if(pComponent->getAssocComponent() == 0) // no associated component - so this is a packet proce… in attachMemAccessor()
204 TrcPktDecodeI *pDcdI = dynamic_cast< TrcPktDecodeI * >(pComponent); in attachMemAccessor()
215 ocsd_err_t DecoderMngrBase<P,Pt,Pc>::attachOutputSink(TraceComponent *pComponent, ITrcGenElemIn *pO… in attachOutputSink() argument
219 …if(pComponent->getAssocComponent() == 0) // no associated component - so this is a packet proce… in attachOutputSink()
222 TrcPktDecodeI *pDcdI = dynamic_cast< TrcPktDecodeI * >(pComponent); in attachOutputSink()
232 ocsd_err_t DecoderMngrBase<P,Pt,Pc>::getDataInputI(TraceComponent *pComponent, ITrcDataIn **ppDataI… in getDataInputI() argument
235 TraceComponent *pPktProc = pComponent; in getDataInputI()
236 if(pComponent->getAssocComponent() != 0) in getDataInputI()
237 pPktProc = pComponent->getAssocComponent(); in getDataInputI()
249 ocsd_err_t DecoderMngrBase<P,Pt,Pc>::attachPktMonitor(TraceComponent *pComponent, ITrcTypedBase *pP… in attachPktMonitor() argument
252 TraceComponent *pPktProc = pComponent; in attachPktMonitor()
253 if(pComponent->getAssocComponent() != 0) in attachPktMonitor()
254 pPktProc = pComponent->getAssocComponent(); in attachPktMonitor()
270 ocsd_err_t DecoderMngrBase<P,Pt,Pc>::attachPktIndexer(TraceComponent *pComponent, ITrcTypedBase *pP… in attachPktIndexer() argument
273 TraceComponent *pPktProc = pComponent; in attachPktIndexer()
274 if(pComponent->getAssocComponent() != 0) in attachPktIndexer()
275 pPktProc = pComponent->getAssocComponent(); in attachPktIndexer()
291 ocsd_err_t DecoderMngrBase<P,Pt,Pc>::attachPktSink(TraceComponent *pComponent, ITrcTypedBase *pPktD… in attachPktSink() argument
294 if(pComponent->getAssocComponent() != 0) in attachPktSink()
303 TrcPktProcBase<P,Pt,Pc> *pPktProcBase = dynamic_cast< TrcPktProcBase<P,Pt,Pc> * >(pComponent); in attachPktSink()