Searched refs:pbuf_take_at (Results 1 – 9 of 9) sorted by relevance
/third_party/lwip/test/unit/core/ |
D | test_pbuf.c | 193 res = pbuf_take_at(p, &testdata, sizeof(testdata), 0); in START_TEST() 203 res = pbuf_take_at(p, &testdata, sizeof(testdata), p->len - 1); in START_TEST() 216 res = pbuf_take_at(p, &testdata, sizeof(testdata), p->len); in START_TEST()
|
/third_party/lwip/src/apps/snmp/ |
D | snmp_pbuf_stream.c | 86 if (pbuf_take_at(pbuf_stream->pbuf, buf, buf_len, pbuf_stream->offset) != ERR_OK) { in snmp_pbuf_stream_writebuf()
|
/third_party/lwip/src/netif/ |
D | lowpan6.c | 454 pbuf_take_at(p_frag, &crc, 2, p_frag->len - 2); in lowpan6_frag() 485 pbuf_take_at(p_frag, &crc, 2, p_frag->len - 2); in lowpan6_frag() 506 pbuf_take_at(p_frag, &crc, 2, p_frag->len - 2); in lowpan6_frag()
|
/third_party/lwip/src/apps/mdns/ |
D | mdns.c | 860 res = pbuf_take_at(outpkt->pbuf, domain->name, writelen, outpkt->write_offset); in mdns_write_domain() 878 res = pbuf_take_at(outpkt->pbuf, &jump, DOMAIN_JUMP_SIZE, outpkt->write_offset); in mdns_write_domain() 930 res = pbuf_take_at(outpkt->pbuf, &field16, sizeof(field16), outpkt->write_offset); in mdns_add_question() 941 res = pbuf_take_at(outpkt->pbuf, &field16, sizeof(field16), outpkt->write_offset); in mdns_add_question() 1005 res = pbuf_take_at(reply->pbuf, &field32, sizeof(field32), reply->write_offset); in mdns_add_answer() 1018 res = pbuf_take_at(reply->pbuf, buf, (u16_t)buf_length, reply->write_offset); in mdns_add_answer() 1035 res = pbuf_take_at(reply->pbuf, &field16, sizeof(field16), rdlen_offset); in mdns_add_answer()
|
/third_party/lwip/src/include/lwip/ |
D | pbuf.h | 303 err_t pbuf_take_at(struct pbuf *buf, const void *dataptr, u16_t len, u16_t offset);
|
/third_party/lwip/src/core/ipv6/ |
D | icmp6.c | 417 err_t res = pbuf_take_at(q, p->payload, len, offset); in icmp6_send_response_with_addrs_and_netif()
|
/third_party/lwip/src/core/ |
D | dns.c | 846 pbuf_take_at(p, &hdr, SIZEOF_DNS_HDR, sizeof(udp_data_hdr)); in dns_send() 878 pbuf_take_at(p, hostname_part, copy_len, (u16_t)(query_idx + 1)); in dns_send() 891 pbuf_take_at(p, &qry, SIZEOF_DNS_QUERY, query_idx); in dns_send()
|
D | pbuf.c | 1274 pbuf_take_at(struct pbuf *buf, const void *dataptr, u16_t len, u16_t offset) in pbuf_take_at() function
|
/third_party/lwip/ |
D | CHANGELOG | 632 * pbuf.h/.c: added pbuf_take_at() and pbuf_put_at() 858 * puf.c: fixed bug #45454 (pbuf_take_at() skips write and returns OK if offset
|