Home
last modified time | relevance | path

Searched refs:tail (Results 1 – 11 of 11) sorted by relevance

/lib/liblwip/src/api/
Dnetbuf.c174 netbuf_chain(struct netbuf *head, struct netbuf *tail) in netbuf_chain() argument
177 LWIP_ERROR("netbuf_chain: invalid tail", (tail != NULL), return;); in netbuf_chain()
178 pbuf_cat(head->p, tail->p); in netbuf_chain()
180 memp_free(MEMP_NETBUF, tail); in netbuf_chain()
/lib/liblwip/src/core/snmp/
Dasn1_enc.c491 u8_t shift, tail; in snmp_asn1_enc_oid() local
495 tail = 0; in snmp_asn1_enc_oid()
502 if ((code != 0) || (tail != 0)) in snmp_asn1_enc_oid()
504 tail = 1; in snmp_asn1_enc_oid()
Dmsg_in.c125 msg_ps->invb.tail = NULL; in snmp_error_response()
783 msg_ps->invb.tail = NULL; in snmp_msg_set_event()
1131 m_stat->invb.tail = NULL; in snmp_pdu_dec_varbindlist()
1401 vb = root->tail; in snmp_varbind_list_free()
1410 root->tail = NULL; in snmp_varbind_list_free()
1420 root->tail = vb; in snmp_varbind_tail_add()
1425 root->tail->next = vb; in snmp_varbind_tail_add()
1426 vb->prev = root->tail; in snmp_varbind_tail_add()
1427 root->tail = vb; in snmp_varbind_tail_add()
1440 vb = root->tail; in snmp_varbind_tail_remove()
[all …]
Dmib_structs.c192 lrn->tail = NULL; in snmp_mib_lrn_alloc()
233 rn->tail = nn; in snmp_mib_node_insert()
268 rn->tail = nn; in snmp_mib_node_insert()
415 else if (n == rn->tail) in snmp_mib_node_delete()
417 rn->tail = n->prev; in snmp_mib_node_delete()
435 rn->tail = NULL; in snmp_mib_node_delete()
Dmsg_out.c284 trap_msg.outvb.tail = NULL; in snmp_coldstart_trap()
297 trap_msg.outvb.tail = NULL; in snmp_authfail_trap()
422 vb = root->tail; in snmp_varbind_list_sum()
Dmib2.c1080 snmp_mib_node_delete(&iflist_root, iflist_root.tail); in snmp_dec_iflist()
/lib/liblwip/src/include/lwip/
Dpbuf.h157 void pbuf_cat(struct pbuf *head, struct pbuf *tail);
158 void pbuf_chain(struct pbuf *head, struct pbuf *tail);
Dnetbuf.h71 struct netbuf *tail);
Dsnmp_msg.h115 struct snmp_varbind *tail; member
Dsnmp_structs.h185 struct mib_list_node *tail; member
/lib/liblwip/
DCHANGELOG3094 * pbuf_dechain() did not update the ->tot_len field of the tail.