Home
last modified time | relevance | path

Searched refs:decoder_handle (Results 1 – 6 of 6) sorted by relevance

/external/OpenCSD/decoder/include/opencsd/c_api/
Docsd_c_api_custom.h62 typedef ocsd_datapath_resp_t (* fnTraceDataIn)( const void *decoder_handle,
79 typedef void (* fnUpdatePktMonFlags)(const void *decoder_handle, const int flags);
96 …void *decoder_handle; /**< Instance handle for the decoder - used by library to call the decode… member
212 typedef ocsd_err_t (* fnDestroyCustomDecoder)(const void *decoder_handle);
Docsd_c_api_cust_fact.h46 ocsd_err_t DestroyCustomDecoder(const void *decoder_handle);
/external/OpenCSD/decoder/tests/ext_dcd_test_eg/c_api_echo_test/
Dext_dcd_echo_test_fact.c54 static ocsd_err_t ext_echo_destroy(const void *decoder_handle);
88 ocsd_err_t ext_echo_destroy(const void *decoder_handle) in ext_echo_destroy() argument
90 free((echo_decoder_t *)decoder_handle); in ext_echo_destroy()
Dext_dcd_echo_test.c51 static ocsd_datapath_resp_t echo_dcd_trace_data_in(const void *decoder_handle,
59 static void echo_dcd_update_mon_flags(const void *decoder_handle, const int flags);
131 p_decoder_inst->decoder_handle = decoder; in echo_dcd_init()
147 ocsd_datapath_resp_t echo_dcd_trace_data_in(const void *decoder_handle, in echo_dcd_trace_data_in() argument
155 echo_decoder_t *decoder = (echo_decoder_t *)decoder_handle; in echo_dcd_trace_data_in()
195 void echo_dcd_update_mon_flags(const void *decoder_handle, const int flags) in echo_dcd_update_mon_flags() argument
197 lib_cb_updatePktCBFlags(&((echo_decoder_t *)decoder_handle)->lib_fns, flags); in echo_dcd_update_mon_flags()
/external/OpenCSD/decoder/source/c_api/
Docsd_c_api_custom_obj.cpp148 (pDecodeInst->decoder_handle == 0) || in createDecoder()
167 m_dcd_fact.destroyDecoder(pCustWrap->getDecoderInstInfo()->decoder_handle); in destroyDecoder()
387 return m_decoder_inst.fn_data_in( m_decoder_inst.decoder_handle, in TraceDataIn()
400 m_decoder_inst.fn_update_pkt_mon(m_decoder_inst.decoder_handle, flags); in attachPtkMonI()
407 m_decoder_inst.fn_update_pkt_mon(m_decoder_inst.decoder_handle, flags); in attachPtkSinkI()
/external/OpenCSD/decoder/docs/
Dexternal_custom.md46 - `fnDestroyCustomDecoder` : Destroys the decoder. Takes the `decoder_handle` attribute of the inst…
84 …ow the library to correctly call back into the custom decoder using the `decoder_handle` parameter.