| /components/net/lwip/lwip-2.0.3/src/apps/snmp/ |
| A D | snmpv3.c | 117 SMEMCPY(&priv_param[0], &priv1, sizeof(priv1)); in snmpv3_build_priv_param() 118 SMEMCPY(&priv_param[4], &priv2, sizeof(priv2)); in snmpv3_build_priv_param() 128 SMEMCPY(&priv_param[0], &boots, 4); in snmpv3_build_priv_param() 129 SMEMCPY(&priv_param[4], &ctr, 4); in snmpv3_build_priv_param()
|
| A D | snmpv3_mbedtls.c | 195 SMEMCPY(iv_local + 8, priv_param, 8); in snmpv3_crypt() 266 SMEMCPY(password_buf, key, 16); in snmpv3_password_to_key_md5() 268 SMEMCPY(password_buf + 16 + engineLength, key, 16); in snmpv3_password_to_key_md5() 319 SMEMCPY(password_buf, key, 20); in snmpv3_password_to_key_sha() 321 SMEMCPY(password_buf + 20 + engineLength, key, 20); in snmpv3_password_to_key_sha()
|
| /components/net/lwip/lwip-2.1.2/src/apps/snmp/ |
| A D | snmpv3.c | 117 SMEMCPY(&priv_param[0], &priv1, sizeof(priv1)); in snmpv3_build_priv_param() 118 SMEMCPY(&priv_param[4], &priv2, sizeof(priv2)); in snmpv3_build_priv_param() 128 SMEMCPY(&priv_param[0], &boots, 4); in snmpv3_build_priv_param() 129 SMEMCPY(&priv_param[4], &ctr, 4); in snmpv3_build_priv_param()
|
| A D | snmpv3_mbedtls.c | 202 SMEMCPY(iv_local + 8, priv_param, 8); in snmpv3_crypt() 277 SMEMCPY(password_buf, key, 16); in snmpv3_password_to_key_md5() 279 SMEMCPY(password_buf + 16 + engineLength, key, 16); in snmpv3_password_to_key_md5() 330 SMEMCPY(password_buf, key, 20); in snmpv3_password_to_key_sha() 332 SMEMCPY(password_buf + 20 + engineLength, key, 20); in snmpv3_password_to_key_sha()
|
| /components/net/lwip-dhcpd/ |
| A D | dhcp_server_raw.c | 269 SMEMCPY(node->chaddr, msg->chaddr, msg->hlen); in dhcp_client_alloc() 384 SMEMCPY(&msg->siaddr, &(dhcp_server->netif->ip_addr), 4); in dhcp_server_recv() 388 SMEMCPY(&msg->yiaddr, &node->ipaddr, 4); in dhcp_server_recv() 399 SMEMCPY(opt_buf, &(dhcp_server->netif->ip_addr), 4); in dhcp_server_recv() 406 SMEMCPY(opt_buf, &tmp, 4); in dhcp_server_recv() 421 SMEMCPY(opt_buf, &ip_2_ip4(&dns_addr)->addr, 4); in dhcp_server_recv() 425 SMEMCPY(opt_buf, &(dhcp_server->netif->ip_addr), 4); in dhcp_server_recv() 465 SMEMCPY(&msg->yiaddr, &node->ipaddr, 4); in dhcp_server_recv() 476 SMEMCPY(opt_buf, &(dhcp_server->netif->ip_addr), 4); in dhcp_server_recv() 483 SMEMCPY(opt_buf, &tmp, 4); in dhcp_server_recv() [all …]
|
| A D | dhcp_server.c | 92 #define ETHADDR32_COPY(dst, src) SMEMCPY(dst, src, ETH_HWADDR_LEN) 96 #define ETHADDR16_COPY(dst, src) SMEMCPY(dst, src, ETH_HWADDR_LEN)
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/prot/ |
| A D | etharp.h | 71 #define IPADDR_WORDALIGNED_COPY_TO_IP4_ADDR_T(dest, src) SMEMCPY(dest, src, sizeof(ip4_addr_t)) 78 #define IPADDR_WORDALIGNED_COPY_FROM_IP4_ADDR_T(dest, src) SMEMCPY(dest, src, sizeof(ip4_addr_t))
|
| /components/net/lwip/lwip-2.1.2/src/apps/smtp/ |
| A D | smtp.c | 1042 SMEMCPY(s->tx_buf, SMTP_CMD_EHLO_1, SMTP_CMD_EHLO_1_LEN); in smtp_prepare_helo() 1117 SMEMCPY(&s->tx_buf[base64_len], SMTP_CRLF, SMTP_CRLF_LEN); in smtp_prepare_auth_login_uname() 1133 SMEMCPY(&s->tx_buf[base64_len], SMTP_CRLF, SMTP_CRLF_LEN); in smtp_prepare_auth_login_pass() 1148 SMEMCPY(target, SMTP_CMD_MAIL_1, SMTP_CMD_MAIL_1_LEN); in smtp_prepare_mail() 1152 SMEMCPY(target, SMTP_CMD_MAIL_2, SMTP_CMD_MAIL_2_LEN); in smtp_prepare_mail() 1165 SMEMCPY(target, SMTP_CMD_RCPT_1, SMTP_CMD_RCPT_1_LEN); in smtp_prepare_rcpt() 1169 SMEMCPY(target, SMTP_CMD_RCPT_2, SMTP_CMD_RCPT_2_LEN); in smtp_prepare_rcpt() 1185 SMEMCPY(target, SMTP_CMD_HEADER_1, SMTP_CMD_HEADER_1_LEN); in smtp_prepare_header() 1189 SMEMCPY(target, SMTP_CMD_HEADER_2, SMTP_CMD_HEADER_2_LEN); in smtp_prepare_header() 1208 SMEMCPY(s->tx_buf, SMTP_CMD_QUIT, SMTP_CMD_QUIT_LEN); in smtp_prepare_quit() [all …]
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/prot/ |
| A D | ethernet.h | 157 #define ETHADDR32_COPY(dst, src) SMEMCPY(dst, src, ETH_HWADDR_LEN) 163 #define ETHADDR16_COPY(dst, src) SMEMCPY(dst, src, ETH_HWADDR_LEN)
|
| /components/net/lwip/lwip-1.4.1/src/core/ipv4/ |
| A 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()
|
| /components/net/lwip/lwip-1.4.1/src/include/netif/ |
| A D | etharp.h | 147 #define ETHADDR32_COPY(src, dst) SMEMCPY(src, dst, ETHARP_HWADDR_LEN) 153 #define ETHADDR16_COPY(src, dst) SMEMCPY(src, dst, ETHARP_HWADDR_LEN)
|
| /components/net/lwip/lwip-2.0.3/src/core/ipv4/ |
| A D | ip4_frag.c | 185 SMEMCPY(p->payload, &ipr->iphdr, IP_HLEN); in ip_reass_free_complete_datagram() 308 SMEMCPY(&(ipr->iphdr), fraghdr, IP_HLEN); in ip_reass_enqueue_new_datagram() 568 SMEMCPY(&ipr->iphdr, fraghdr, IP_HLEN); in ip4_reass() 616 SMEMCPY(fraghdr, &ipr->iphdr, IP_HLEN); in ip4_reass() 764 SMEMCPY(rambuf->payload, original_iphdr, IP_HLEN); in ip4_frag() 778 SMEMCPY(rambuf->payload, original_iphdr, IP_HLEN); in ip4_frag()
|
| /components/net/lwip/lwip-2.1.2/src/core/ipv4/ |
| A D | ip4_frag.c | 185 SMEMCPY(p->payload, &ipr->iphdr, IP_HLEN); in ip_reass_free_complete_datagram() 308 SMEMCPY(&(ipr->iphdr), fraghdr, IP_HLEN); in ip_reass_enqueue_new_datagram() 580 SMEMCPY(&ipr->iphdr, fraghdr, IP_HLEN); in ip4_reass() 628 SMEMCPY(fraghdr, &ipr->iphdr, IP_HLEN); in ip4_reass() 792 SMEMCPY(rambuf->payload, original_iphdr, IP_HLEN); in ip4_frag() 806 SMEMCPY(rambuf->payload, original_iphdr, IP_HLEN); in ip4_frag()
|
| /components/net/lwip/lwip-1.4.1/src/core/ipv6/ |
| A 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()
|
| A D | ip6_addr.c | 60 SMEMCPY(dest, src, sizeof(struct ip_addr)); in ip_addr_set()
|
| /components/net/lwip/lwip-2.0.3/src/core/ipv6/ |
| A D | ethip6.c | 114 SMEMCPY(dest.addr, hwaddr, 6); in ethip6_output()
|
| /components/net/lwip/lwip-2.1.2/src/core/ipv6/ |
| A D | ethip6.c | 119 SMEMCPY(dest.addr, hwaddr, 6); in ethip6_output()
|
| /components/net/lwip/lwip-2.1.2/src/netif/ |
| A D | ethernet.c | 303 SMEMCPY(ðhdr->dest, dst, ETH_HWADDR_LEN); 304 SMEMCPY(ðhdr->src, src, ETH_HWADDR_LEN);
|
| A D | lowpan6.c | 540 SMEMCPY(addr->addr, netif->hwaddr, 8); in lowpan6_hwaddr_to_addr() 543 SMEMCPY(addr->addr, netif->hwaddr, 3); in lowpan6_hwaddr_to_addr() 545 SMEMCPY(&addr->addr[5], &netif->hwaddr[3], 3); in lowpan6_hwaddr_to_addr() 637 SMEMCPY(dest.addr, hwaddr, netif->hwaddr_len); in lowpan6_output()
|
| /components/net/lwip/lwip-1.4.1/test/unit/etharp/ |
| A 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()
|
| /components/net/lwip/lwip-2.0.3/test/unit/etharp/ |
| A D | test_etharp.c | 98 SMEMCPY(ðarphdr->sipaddr, adr, sizeof(ip4_addr_t)); in create_arp_response() 99 SMEMCPY(ðarphdr->dipaddr, &test_ipaddr, sizeof(ip4_addr_t)); in create_arp_response()
|
| /components/net/lwip/lwip-2.0.3/doc/ |
| A D | NO_SYS_SampleCode.c | 59 SMEMCPY(netif->hwaddr, your_mac_address_goes_here, sizeof(netif->hwaddr)); in netif_init()
|
| /components/net/lwip/lwip-2.1.2/doc/ |
| A D | NO_SYS_SampleCode.c | 59 SMEMCPY(netif->hwaddr, your_mac_address_goes_here, ETH_HWADDR_LEN); in netif_init()
|
| /components/net/lwip/lwip-2.1.2/test/unit/etharp/ |
| A D | test_etharp.c | 99 SMEMCPY(ðarphdr->sipaddr, adr, sizeof(ip4_addr_t)); in create_arp_response() 100 SMEMCPY(ðarphdr->dipaddr, &test_ipaddr, sizeof(ip4_addr_t)); in create_arp_response()
|
| /components/net/lwip/lwip-1.4.1/src/netif/ppp/ |
| A 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()
|