Lines Matching refs:ntf
444 void release_ntf(struct node_rx_pdu *ntf) in release_ntf() argument
446 if (ntf == rx_malloc_store) { in release_ntf()
447 free(ntf); in release_ntf()
451 ntf->hdr.next = NULL; in release_ntf()
452 ll_rx_mem_release((void **)&ntf); in release_ntf()
485 struct node_rx_pdu *ntf; in ut_rx_pdu_real() local
487 ntf = (struct node_rx_pdu *)sys_slist_get(&ut_rx_q); in ut_rx_pdu_real()
488 zassert_not_null(ntf, "Ntf Q empty.\nCalled at %s:%d\n", file, line); in ut_rx_pdu_real()
490 zassert_equal(ntf->hdr.type, NODE_RX_TYPE_DC_PDU, in ut_rx_pdu_real()
493 pdu = (struct pdu_data *)ntf->pdu; in ut_rx_pdu_real()
500 *ntf_ref = ntf; in ut_rx_pdu_real()
506 struct node_rx_pdu *ntf; in ut_rx_node_real() local
508 ntf = (struct node_rx_pdu *)sys_slist_get(&ut_rx_q); in ut_rx_node_real()
509 zassert_not_null(ntf, "Ntf Q empty.\nCalled at %s:%d\n", file, line); in ut_rx_node_real()
511 zassert_not_equal(ntf->hdr.type, NODE_RX_TYPE_DC_PDU, in ut_rx_node_real()
515 helper_node_verify[opcode](file, line, ntf, param); in ut_rx_node_real()
518 *ntf_ref = ntf; in ut_rx_node_real()
523 struct node_rx_pdu *ntf; in ut_rx_q_is_empty_real() local
525 ntf = (struct node_rx_pdu *)sys_slist_get(&ut_rx_q); in ut_rx_q_is_empty_real()
526 zassert_is_null(ntf, "Ntf Q not empty.\nCalled at %s:%d\n", file, line); in ut_rx_q_is_empty_real()