Lines Matching refs:opcode
405 void lt_tx_real(const char *file, uint32_t line, enum helper_pdu_opcode opcode, in lt_tx_real() argument
418 if (helper_node_encode[opcode]) { in lt_tx_real()
419 helper_node_encode[opcode](rx, param); in lt_tx_real()
423 zassert_not_null(helper_pdu_encode[opcode], "PDU encode function cannot be NULL\n"); in lt_tx_real()
424 helper_pdu_encode[opcode](pdu, param); in lt_tx_real()
455 void lt_rx_real(const char *file, uint32_t line, enum helper_pdu_opcode opcode, in lt_rx_real() argument
466 if (helper_pdu_verify[opcode]) { in lt_rx_real()
467 helper_pdu_verify[opcode](file, line, pdu, param); in lt_rx_real()
481 void ut_rx_pdu_real(const char *file, uint32_t line, enum helper_pdu_opcode opcode, in ut_rx_pdu_real() argument
494 if (helper_pdu_ntf_verify[opcode]) { in ut_rx_pdu_real()
495 helper_pdu_ntf_verify[opcode](file, line, pdu, param); in ut_rx_pdu_real()
496 } else if (helper_pdu_verify[opcode]) { in ut_rx_pdu_real()
497 helper_pdu_verify[opcode](file, line, pdu, param); in ut_rx_pdu_real()
503 void ut_rx_node_real(const char *file, uint32_t line, enum helper_node_opcode opcode, in ut_rx_node_real() argument
514 if (helper_node_verify[opcode]) { in ut_rx_node_real()
515 helper_node_verify[opcode](file, line, ntf, param); in ut_rx_node_real()
529 void encode_pdu(enum helper_pdu_opcode opcode, struct pdu_data *pdu, void *param) in encode_pdu() argument
531 zassert_not_null(helper_pdu_encode[opcode], "PDU encode function cannot be NULL\n"); in encode_pdu()
532 helper_pdu_encode[opcode](pdu, param); in encode_pdu()