Home
last modified time | relevance | path

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

/trueos/sys/contrib/ngatm/netnatm/msg/
HDuni_ietab.h12 static struct iedecl decl_itu_cause = {
26 static struct iedecl decl_net_cause = {
40 static struct iedecl decl_itu_callstate = {
54 static struct iedecl decl_itu_facility = {
68 static struct iedecl decl_itu_notify = {
82 static struct iedecl decl_itu_eetd = {
96 static struct iedecl decl_net_eetd = {
110 static struct iedecl decl_itu_conned = {
124 static struct iedecl decl_itu_connedsub = {
138 static struct iedecl decl_itu_epref = {
[all …]
HDprivmsg.c118 const struct iedecl *iedecl; in uni_decode_body_internal() local
138 if ((iedecl = GET_IEDECL(ietype, hdr.coding)) == NULL || in uni_decode_body_internal()
155 if (ielen > iedecl->maxlen - 4 || ielen > uni_msg_len(msg)) { in uni_decode_body_internal()
166 if (ielen > iedecl->maxlen - 4) in uni_decode_body_internal()
167 ielen = iedecl->maxlen - 4; in uni_decode_body_internal()
208 if (iedecl->flags & UNIFL_ACCESS) in uni_decode_body_internal()
HDpriv.h67 struct iedecl { struct
90 extern const struct iedecl *uni_ietable[256][4]; argument
99 const struct iedecl *_decl = NULL; \
HDuni_ie.c498 const struct iedecl *iedecl; in uni_print_ie_internal() local
500 if((iedecl = GET_IEDECL(code, ie->h.coding)) != NULL) in uni_print_ie_internal()
501 (*iedecl->print)(ie, cx); in uni_print_ie_internal()
515 const struct iedecl *iedecl = GET_IEDECL(code, ie->h.coding); in uni_check_ie() local
517 if (iedecl != NULL) in uni_check_ie()
518 return (iedecl->check(ie, cx)); in uni_check_ie()
599 const struct iedecl *iedecl; in uni_decode_ie_body() local
613 if ((iedecl = GET_IEDECL(ietype, ie->h.coding)) == NULL) { in uni_decode_ie_body()
623 if (ielen > iedecl->maxlen) { in uni_decode_ie_body()
628 msg->b_rptr += iedecl->maxlen; in uni_decode_ie_body()
[all …]