HomeSort by relevance Sort by last modified time
    Searched refs:ether (Results 1 - 25 of 35) sorted by null

1 2

  /external/iptables/etc/
ethertypes 14 ARP 0806 ether-arp #
25 TEB 6558 # Trans Ether Bridging [RFC1701]
  /external/u-boot/board/renesas/sh7757lcr/
sh7757lcr.c 134 struct ether_mac_regs *ether; local
141 ether = ETHER0_MAC_BASE;
143 ether = ETHER1_MAC_BASE;
146 writel(val, &ether->mahr);
148 writel(val, &ether->malr);
153 struct ether_mac_regs *ether; local
160 ether = GETHER0_MAC_BASE;
162 ether = GETHER1_MAC_BASE;
165 writel(val, &ether->mahr);
167 writel(val, &ether->malr)
    [all...]
  /external/scapy/scapy/contrib/
pnio_rtc.py 30 from scapy.all import Packet, bind_layers, Ether, UDP, Field, conf
141 # {(Ether.src, Ether.dst): [(start, type, config), ...]}
149 ether = pkt
150 while ether is not None and not isinstance(ether, Ether):
151 ether = ether.underlayer
152 return ether
    [all...]
  /external/iproute2/ip/
iplink_xstats.c 16 #include <netinet/ether.h>
iplink_bridge.c 16 #include <netinet/ether.h>
  /external/u-boot/board/renesas/sh7752evb/
sh7752evb.c 92 struct ether_mac_regs *ether; local
99 ether = GETHER0_MAC_BASE;
101 ether = GETHER1_MAC_BASE;
104 writel(val, &ether->mahr);
106 writel(val, &ether->malr);
  /bionic/tests/
netinet_ether_test.cpp 19 #include <netinet/ether.h>
  /external/u-boot/board/renesas/sh7753evb/
sh7753evb.c 99 struct ether_mac_regs *ether; local
106 ether = GETHER0_MAC_BASE;
108 ether = GETHER1_MAC_BASE;
111 writel(val, &ether->mahr);
113 writel(val, &ether->malr);
  /external/u-boot/arch/arm/dts/
r8a77990-ebisu.dts 54 renesas,no-ether-link;
  /external/u-boot/drivers/usb/gadget/
Makefile 35 obj-y += ether.o
  /external/u-boot/drivers/net/
netconsole.c 180 uchar *ether; local
214 ether = nc_ether;
216 net_send_udp_packet(ether, ip, nc_out_port, nc_in_port, len);
  /external/iptables/iptables/
getethertype.c 43 #include <netinet/ether.h>
nft-bridge.c 13 #include <netinet/ether.h>
  /external/ltp/testcases/network/iproute/
ip_tests.sh 51 link/ether
53 link/ether
  /external/iproute2/lib/
ll_types.c 37 __PF(ETHER,ether)
  /external/iproute2/testsuite/tools/
generate_nlmsg.c 12 #include <netinet/ether.h>
  /external/u-boot/net/
net.c 802 int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
818 /* if broadcast, make the ether address a broadcast and don't do ARP */
820 ether = (uchar *)net_bcast_ethaddr;
824 eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
830 if (memcmp(ether, net_null_ethaddr, 6) == 0) {
835 arp_wait_packet_ethaddr = ether;
847 &dest, ether);
    [all...]
  /external/iptables/extensions/
libarpt_mangle.c 12 #include <netinet/ether.h>
libxt_mangle.c 19 #include <netinet/ether.h>
  /external/tcpdump/win32/prj/
GNUmakefile 72 ../../print-ether.o \
  /external/toybox/toys/pending/
arping.c 32 #include <netinet/ether.h>
  /external/libpcap/
nametoaddr.c 78 * OK, just include <netinet/ether.h>
80 #include <netinet/ether.h>
545 * Static data base of ether protocol types.
  /external/scapy/scapy/layers/
lltd.py 21 from scapy.layers.l2 import Ether
94 isinstance(self.underlayer, Ether):
105 if isinstance(self.underlayer, Ether):
769 bind_layers(Ether, LLTD, type=0x88d9)
798 >>> sniff(filter="ether proto 0x88d9", prn=p.parse)
l2.py 78 res = srp1(Ether(dst=ETHER_BROADCAST)/ARP(op="who-has", pdst=ip),
148 class Ether(Packet):
157 if isinstance(other,Ether):
189 return Ether
201 conf.neighbor.register_l3(Ether, LLC, l2_register_l3)
231 aliastypes = [ Ether ]
253 if isinstance(self.underlayer, Ether):
254 return self.underlayer.sprintf("802.1q %Ether.src% > %Ether.dst% (%Dot1Q.type%) vlan %Dot1Q.vlan%")
259 conf.neighbor.register_l3(Ether, Dot1Q, l2_register_l3
    [all...]
  /external/u-boot/include/
net.h 347 #define PROT_WOL 0x0842 /* ether-wake WoL protocol */
665 * (ether will be populated)
667 * @param ether Raw packet buffer
673 int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport,

Completed in 727 milliseconds

1 2