Searched defs:ll_dest (Results 1 - 8 of 8) sorted by relevance

/external/syslinux/gpxe/src/net/
H A Dethernet.c48 * @v ll_dest Link-layer destination address
54 struct io_buffer *iobuf, const void *ll_dest,
59 memcpy ( ethhdr->h_dest, ll_dest, ETH_ALEN );
71 * @ret ll_dest Link-layer destination address
77 struct io_buffer *iobuf, const void **ll_dest,
92 *ll_dest = ethhdr->h_dest;
53 eth_push( struct net_device *netdev __unused, struct io_buffer *iobuf, const void *ll_dest, const void *ll_source, uint16_t net_proto ) argument
76 eth_pull( struct net_device *netdev __unused, struct io_buffer *iobuf, const void **ll_dest, const void **ll_source, uint16_t *net_proto ) argument
H A Dipv6.c187 const uint8_t *ll_dest = ll_dest_buf; local
247 return net_tx ( iobuf, netdev, &ipv6_protocol, ll_dest );
H A Dipv4.c267 * @v ll_dest Link-layer destination address buffer
271 struct net_device *netdev, uint8_t *ll_dest ) {
276 memcpy ( ll_dest, netdev->ll_broadcast,
280 return ll_protocol->mc_hash ( AF_INET, &dest, ll_dest );
284 &src, ll_dest );
312 uint8_t ll_dest[MAX_LL_ADDR_LEN]; local
343 ll_dest ) ) != 0 ) {
361 if ( ( rc = net_tx ( iobuf, netdev, &ipv4_protocol, ll_dest ) ) != 0 ) {
H A Dnetdevice.c525 * @v ll_dest Destination link-layer address
533 struct net_protocol *net_protocol, const void *ll_dest ) {
545 if ( ( rc = ll_protocol->push ( netdev, iobuf, ll_dest, netdev->ll_addr,
592 const void *ll_dest; local
618 &ll_dest, &ll_source,
/external/syslinux/gpxe/src/arch/i386/interface/pxe/
H A Dpxe_undi.c230 const void *ll_dest; local
300 ll_dest = destaddr;
301 DBG2 ( " DEST %s", ll_protocol->ntoa ( ll_dest ) );
303 ll_dest = pxe_netdev->ll_broadcast;
308 if ( ( rc = ll_protocol->push ( pxe_netdev, iobuf, ll_dest,
646 const void *ll_dest; local
732 if ( ( rc = ll_protocol->pull ( pxe_netdev, iobuf, &ll_dest,
/external/syslinux/gpxe/src/drivers/net/
H A Dipoib.c190 * @v ll_dest Link-layer destination address
196 struct io_buffer *iobuf, const void *ll_dest,
200 const struct ipoib_mac *dest_mac = ll_dest;
222 * @ret ll_dest Link-layer destination address
228 struct io_buffer *iobuf, const void **ll_dest,
253 *ll_dest = ( dest ? &dest->mac : &ipoib->broadcast );
195 ipoib_push( struct net_device *netdev __unused, struct io_buffer *iobuf, const void *ll_dest, const void *ll_source __unused, uint16_t net_proto ) argument
227 ipoib_pull( struct net_device *netdev, struct io_buffer *iobuf, const void **ll_dest, const void **ll_source, uint16_t *net_proto ) argument
/external/syslinux/gpxe/src/interface/efi/
H A Defi_snp.c520 * @v ll_dest Link-layer destination address, if specified
527 EFI_MAC_ADDRESS *ll_src, EFI_MAC_ADDRESS *ll_dest,
543 if ( ll_dest ) {
545 ll_protocol->ntoa ( ll_dest ) );
568 if ( ! ll_dest ) {
598 iobuf, ll_dest, ll_src,
637 * @v ll_dest Link-layer destination address, if specified
644 EFI_MAC_ADDRESS *ll_src, EFI_MAC_ADDRESS *ll_dest,
689 if ( ll_dest )
690 memcpy ( ll_dest, iob_ll_des
525 efi_snp_transmit( EFI_SIMPLE_NETWORK_PROTOCOL *snp, UINTN ll_header_len, UINTN len, VOID *data, EFI_MAC_ADDRESS *ll_src, EFI_MAC_ADDRESS *ll_dest, UINT16 *net_proto ) argument
642 efi_snp_receive( EFI_SIMPLE_NETWORK_PROTOCOL *snp, UINTN *ll_header_len, UINTN *len, VOID *data, EFI_MAC_ADDRESS *ll_src, EFI_MAC_ADDRESS *ll_dest, UINT16 *net_proto ) argument
[all...]
/external/syslinux/gpxe/src/net/80211/
H A Dnet80211.c159 struct io_buffer *iobuf, const void *ll_dest,
162 struct io_buffer *iobuf, const void **ll_dest,
494 * @v ll_dest Link-layer destination address
507 struct io_buffer *iobuf, const void *ll_dest,
533 memcpy ( hdr->addr3, ll_dest, ETH_ALEN );
551 * @ret ll_dest Link-layer destination address
561 const void **ll_dest, const void **ll_source,
608 *ll_dest = hdr->addr1;
506 net80211_ll_push( struct net_device *netdev, struct io_buffer *iobuf, const void *ll_dest, const void *ll_source, uint16_t net_proto ) argument
559 net80211_ll_pull( struct net_device *netdev __unused, struct io_buffer *iobuf, const void **ll_dest, const void **ll_source, uint16_t * net_proto ) argument

Completed in 207 milliseconds