Searched refs:SMEMCPY (Results 1 – 13 of 13) sorted by relevance
| /lib/liblwip/src/core/ipv4/ |
| D | ip_frag.c | 179 SMEMCPY(p->payload, &ipr->iphdr, IP_HLEN); in ip_reass_free_complete_datagram() 295 SMEMCPY(&(ipr->iphdr), fraghdr, IP_HLEN); in ip_reass_enqueue_new_datagram() 547 SMEMCPY(&ipr->iphdr, fraghdr, IP_HLEN); in ip_reass() 577 SMEMCPY(fraghdr, &ipr->iphdr, IP_HLEN); in ip_reass() 707 SMEMCPY(iphdr, p->payload, IP_HLEN); in ip_frag() 751 SMEMCPY(rambuf->payload, original_iphdr, IP_HLEN); in ip_frag() 765 SMEMCPY(rambuf->payload, original_iphdr, IP_HLEN); in ip_frag()
|
| D | icmp.c | 323 SMEMCPY((u8_t *)q->payload + sizeof(struct icmp_echo_hdr), (u8_t *)p->payload, in icmp_send_response()
|
| /lib/liblwip/src/include/netif/ |
| D | etharp.h | 146 #define ETHADDR32_COPY(src, dst) SMEMCPY(src, dst, ETHARP_HWADDR_LEN) 152 #define ETHADDR16_COPY(src, dst) SMEMCPY(src, dst, ETHARP_HWADDR_LEN)
|
| /lib/liblwip/src/core/ipv6/ |
| D | icmp6.c | 129 SMEMCPY((u8_t *)q->payload + 8, p->payload, IP_HLEN + 8); in icmp_dest_unreach() 168 SMEMCPY((u8_t *)q->payload + 8, (u8_t *)p->payload, IP_HLEN + 8); in icmp_time_exceeded()
|
| D | ip6_addr.c | 60 SMEMCPY(dest, src, sizeof(struct ip_addr)); in ip_addr_set()
|
| /lib/liblwip/test/unit/etharp/ |
| D | test_etharp.c | 97 SMEMCPY(ðarphdr->sipaddr, adr, sizeof(ip_addr_t)); in create_arp_response() 98 SMEMCPY(ðarphdr->dipaddr, &test_ipaddr, sizeof(ip_addr_t)); in create_arp_response()
|
| /lib/liblwip/src/netif/ppp/ |
| D | ppp.c | 1176 SMEMCPY(pppControl[unit].outACCM, accm, sizeof(ext_accm)); in ppp_set_xaccm() 1427 SMEMCPY(&pc->addrs.our_ipaddr, &o, sizeof(o)); in sifaddr() 1428 SMEMCPY(&pc->addrs.his_ipaddr, &h, sizeof(h)); in sifaddr() 1429 SMEMCPY(&pc->addrs.netmask, &m, sizeof(m)); in sifaddr() 1430 SMEMCPY(&pc->addrs.dns1, &ns1, sizeof(ns1)); in sifaddr() 1431 SMEMCPY(&pc->addrs.dns2, &ns2, sizeof(ns2)); in sifaddr() 1709 SMEMCPY(nb->payload, &protocol, sizeof(protocol)); in pppInput()
|
| D | md5.c | 214 SMEMCPY(hash, mdContext->digest, 16); in MD5Final()
|
| /lib/liblwip/src/include/lwip/ |
| D | opt.h | 91 #ifndef SMEMCPY 92 #define SMEMCPY(dst,src,len) memcpy(dst,src,len) macro
|
| /lib/liblwip/src/core/ |
| D | dns.c | 607 SMEMCPY(query, &qry, SIZEOF_DNS_QUERY); in dns_send() 802 SMEMCPY(&ans, pHostname, SIZEOF_DNS_ANSWER); in dns_recv() 811 SMEMCPY(&(pEntry->ipaddr), (pHostname+SIZEOF_DNS_ANSWER), sizeof(ip_addr_t)); in dns_recv()
|
| D | tcp.c | 1185 SMEMCPY((u8_t *)cseg, (const u8_t *)seg, sizeof(struct tcp_seg)); in tcp_seg_copy()
|
| /lib/liblwip/src/include/ipv4/lwip/ |
| D | ip_addr.h | 158 #define IPADDR2_COPY(dest, src) SMEMCPY(dest, src, sizeof(ip_addr_t))
|
| /lib/liblwip/ |
| D | CHANGELOG | 1352 * sockets.c, ppp.c: bug #25763: corrected 4 occurrences of SMEMCPY to MEMCPY 1964 memcpy. 2 Defines are created: MEMCPY() for normal memcpy, SMEMCPY() for
|