Searched refs:net_tx_packet (Results 1 – 13 of 13) sorted by relevance
| /u-boot/net/ |
| A D | cdp.c | 119 pkt = net_tx_packet; in cdp_send_trigger() 208 len = (uchar *)s - ((uchar *)net_tx_packet + ETHER_HDR_SIZE); in cdp_send_trigger() 212 chksum = cdp_compute_csum((uchar *)net_tx_packet + len, in cdp_send_trigger() 213 (uchar *)s - (net_tx_packet + len)); in cdp_send_trigger() 218 net_send_packet(net_tx_packet, (uchar *)s - net_tx_packet); in cdp_send_trigger()
|
| A D | rarp.c | 77 pkt = net_tx_packet; in rarp_request() 96 net_send_packet(net_tx_packet, eth_hdr_size + ARP_HDR_SIZE); in rarp_request()
|
| A D | ping.c | 50 eth_hdr_size = net_set_ether(net_tx_packet, net_null_ethaddr, PROT_IP); in ping_send() 51 pkt = (uchar *)net_tx_packet + eth_hdr_size; in ping_send()
|
| A D | net.c | 197 uchar *net_tx_packet; variable 378 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1); in net_init() 379 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN; in net_init() 381 net_rx_packets[i] = net_tx_packet + in net_init() 809 return net_tx_packet; in net_get_async_tx_pkt_buf() 828 assert(net_tx_packet != NULL); in net_send_ip_packet() 829 if (net_tx_packet == NULL) in net_send_ip_packet() 840 pkt = (uchar *)net_tx_packet; in net_send_ip_packet() 873 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len); in net_send_ip_packet()
|
| A D | arp.c | 225 memcpy(((struct ethernet_hdr *)net_tx_packet)->et_dest, in arp_receive() 227 net_send_packet(net_tx_packet, arp_wait_tx_packet_size); in arp_receive()
|
| A D | sntp.c | 40 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE, in sntp_send()
|
| A D | fastboot.c | 67 packet = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE; in fastboot_udp_send_info() 138 packet = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE; in fastboot_send()
|
| A D | bootp.c | 762 pkt = net_tx_packet; in bootp_request() 835 net_send_packet(net_tx_packet, pktlen); in bootp_request() 992 pkt = net_tx_packet; in dhcp_send_request_packet() 1044 net_send_packet(net_tx_packet, pktlen); in dhcp_send_request_packet()
|
| A D | dns.c | 59 pkt = (uchar *)(net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE); in dns_send()
|
| A D | tftp.c | 354 pkt = net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE; in tftp_send()
|
| A D | nfs.c | 211 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE, in rpc_req()
|
| /u-boot/drivers/net/ |
| A D | netconsole.c | 128 pkt = (uchar *)net_tx_packet + net_eth_hdr_size() + in nc_start() 214 pkt = (uchar *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE; in nc_send_packet()
|
| /u-boot/include/ |
| A D | net.h | 547 extern uchar *net_tx_packet; /* THE transmit packet */
|
Completed in 26 milliseconds