Searched refs:CSID (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/opencsd/decoder/source/ |
H A D | ocsd_dcd_tree.cpp | 410 uint8_t CSID = 0; // default for single stream decoder (no deformatter) - we ignore the ID in createDecoder() local 413 CSID = pConfig->getTraceID(); in createDecoder() 418 if((err = createDecodeElement(CSID)) != OCSD_OK) in createDecoder() 431 if((err = pDecoderMngr->createDecoder(crtFlags,(int)CSID,pConfig,&pTraceComp)) != OCSD_OK) in createDecoder() 434 m_decode_elements[CSID]->SetDecoderElement(decoderName, pDecoderMngr, pTraceComp, true); in createDecoder() 467 err = m_frame_deformatter_root->getIDStreamAttachPt(CSID)->attach(pDataIn); in createDecoder() 475 destroyDecodeElement(CSID); // will destroy decoder as well. in createDecoder() 480 ocsd_err_t DecodeTree::removeDecoder(const uint8_t CSID) in removeDecoder() argument 483 uint8_t localID = CSID; in removeDecoder() 487 if(usingFormatter() && !OCSD_IS_VALID_CS_SRC_ID(CSID)) in removeDecoder() [all …]
|
/freebsd/contrib/opencsd/decoder/include/common/ |
H A D | ocsd_dcd_tree.h | 101 ocsd_err_t addPacketPrinter(uint8_t CSID, bool bMonitor, ItemPrinter **ppPrinter); 169 ocsd_err_t removeDecoder(const uint8_t CSID); 182 ocsd_err_t getDecoderStats(const uint8_t CSID, ocsd_decode_stats_t **p_stats_block); 194 ocsd_err_t resetDecoderStats(const uint8_t CSID); 201 DecodeTreeElement *getDecoderElement(const uint8_t CSID) const; 409 ocsd_err_t createDecodeElement(const uint8_t CSID); 410 void destroyDecodeElement(const uint8_t CSID); 414 TrcPktProcI *getPktProcI(const uint8_t CSID);
|
H A D | ocsd_gen_elem_stack.h | 51 void initCSID(const uint8_t CSID) { m_CSID = CSID; }; in initCSID() argument
|
H A D | ocsd_gen_elem_list.h | 63 void initCSID(const uint8_t CSID) { m_CSID = CSID; }; in initCSID() argument
|
/freebsd/contrib/opencsd/decoder/source/pkt_printers/ |
H A D | trc_print_fact.cpp | 54 …tor<ItemPrinter *> &printer_list, ocsd_trace_protocol_t protocol, uint8_t CSID, ocsdMsgLogger *pMs… in createProtocolPrinter() argument 61 pPrinter = new (std::nothrow) PacketPrinter<EtmV4ITrcPacket>(CSID); in createProtocolPrinter() 64 pPrinter = new (std::nothrow) PacketPrinter<EtmV3TrcPacket>(CSID); in createProtocolPrinter() 67 pPrinter = new (std::nothrow) PacketPrinter<PtmTrcPacket>(CSID); in createProtocolPrinter() 70 pPrinter = new (std::nothrow) PacketPrinter<StmTrcPacket>(CSID); in createProtocolPrinter()
|
/freebsd/contrib/opencsd/decoder/include/opencsd/c_api/ |
H A D | opencsd_c_api.h | 189 const unsigned char CSID); 207 const unsigned char CSID, 226 const unsigned char CSID, 241 const unsigned char CSID);
|
/freebsd/contrib/opencsd/decoder/source/c_api/ |
H A D | ocsd_c_api.cpp | 185 const unsigned char CSID) in ocsd_dt_remove_decoder() argument 187 return ((DecodeTree *)handle)->removeDecoder(CSID); in ocsd_dt_remove_decoder() 191 const unsigned char CSID, in ocsd_dt_attach_packet_callback() argument 198 DecodeTreeElement *pElem = pDT->getDecoderElement(CSID); in ocsd_dt_attach_packet_callback() 238 … const unsigned char CSID, in ocsd_dt_get_decode_stats() argument 243 return pDT->getDecoderStats(CSID, p_stats_block); in ocsd_dt_get_decode_stats() 247 const unsigned char CSID) in ocsd_dt_reset_decode_stats() argument 251 return pDT->resetDecoderStats(CSID); in ocsd_dt_reset_decode_stats()
|
H A D | ocsd_c_api_custom_obj.h | 180 void setCSID(const uint8_t CSID) { m_CSID = CSID; }; in setCSID() argument
|