Home
last modified time | relevance | path

Searched refs:uni_msgtable (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/contrib/ngatm/netnatm/msg/
H A Dprivmsg.c185 ret = uni_msgtable[mtype]->decode(out, msg, ietype, in uni_decode_body_internal()
236 if (uni_msgtable[out->mtype] == NULL) in uni_decode_body()
261 if (uni_msgtable[in->mtype] == NULL) in uni_encode()
264 return ((uni_msgtable[in->mtype]->encode)(msg, &in->u, cx)); in uni_encode()
H A Dpriv.h91 extern const struct msgdecl *uni_msgtable[256];
H A Duni_ie.c730 if(msg->mtype >= 256 || uni_msgtable[msg->mtype] == NULL) { in uni_print_internal()
733 uni_printf(cx, "%s", uni_msgtable[msg->mtype]->name); in uni_print_internal()
737 (*uni_msgtable[msg->mtype]->print)(&msg->u, cx); in uni_print_internal()
758 if (mtype >= 256 || uni_msgtable[mtype] == NULL) { in uni_print_msg_internal()
761 uni_printf(cx, "%s", uni_msgtable[mtype]->name); in uni_print_msg_internal()
765 (*uni_msgtable[mtype]->print)(msg, cx); in uni_print_msg_internal()
H A Duni_msg.c4644 const struct msgdecl *uni_msgtable[256] = { variable