Lines Matching refs:opcode
407 void lt_tx_real(const char *file, uint32_t line, enum helper_pdu_opcode opcode, in lt_tx_real() argument
420 if (helper_node_encode[opcode]) { in lt_tx_real()
421 helper_node_encode[opcode](rx, param); in lt_tx_real()
425 zassert_not_null(helper_pdu_encode[opcode], "PDU encode function cannot be NULL\n"); in lt_tx_real()
426 helper_pdu_encode[opcode](pdu, param); in lt_tx_real()
457 void lt_rx_real(const char *file, uint32_t line, enum helper_pdu_opcode opcode, in lt_rx_real() argument
468 if (helper_pdu_verify[opcode]) { in lt_rx_real()
469 helper_pdu_verify[opcode](file, line, pdu, param); in lt_rx_real()
483 void ut_rx_pdu_real(const char *file, uint32_t line, enum helper_pdu_opcode opcode, in ut_rx_pdu_real() argument
496 if (helper_pdu_ntf_verify[opcode]) { in ut_rx_pdu_real()
497 helper_pdu_ntf_verify[opcode](file, line, pdu, param); in ut_rx_pdu_real()
498 } else if (helper_pdu_verify[opcode]) { in ut_rx_pdu_real()
499 helper_pdu_verify[opcode](file, line, pdu, param); in ut_rx_pdu_real()
505 void ut_rx_node_real(const char *file, uint32_t line, enum helper_node_opcode opcode, in ut_rx_node_real() argument
516 if (helper_node_verify[opcode]) { in ut_rx_node_real()
517 helper_node_verify[opcode](file, line, ntf, param); in ut_rx_node_real()
531 void encode_pdu(enum helper_pdu_opcode opcode, struct pdu_data *pdu, void *param) in encode_pdu() argument
533 zassert_not_null(helper_pdu_encode[opcode], "PDU encode function cannot be NULL\n"); in encode_pdu()
534 helper_pdu_encode[opcode](pdu, param); in encode_pdu()