HomeSort by relevance Sort by last modified time
    Searched defs:ethernet (Results 1 - 7 of 7) sorted by null

  /frameworks/opt/net/ethernet/java/com/android/server/ethernet/
EthernetService.java 17 package com.android.server.ethernet;
EthernetConfigStore.java 17 package com.android.server.ethernet;
28 * This class provides an API to store and manage Ethernet network configuration.
32 "/misc/ethernet/ipconfig.txt";
49 // Ethernet interface.
EthernetServiceImpl.java 17 package com.android.server.ethernet;
38 * EthernetServiceImpl handles remote Ethernet operation requests by implementing
79 Log.i(TAG, "Starting Ethernet service");
97 * Get Ethernet configuration
98 * @return the Ethernet Configuration, contained in {@link IpConfiguration}.
112 * Set Ethernet configuration
117 Log.w(TAG, "System isn't ready enough to change ethernet configuration");
180 pw.println("Current Ethernet state: ");
EthernetNetworkFactory.java 17 package com.android.server.ethernet;
46 * {@link NetworkFactory} that represents Ethernet networks.
56 private static final String NETWORK_TYPE = "Ethernet";
EthernetTracker.java 17 package com.android.server.ethernet;
49 * Tracks Ethernet interfaces and manages interface configurations.
55 * Ethernet Interfaces may be present at boot time or appear after boot (e.g., for Ethernet adapters
97 // Read default Ethernet interface configuration from resources
409 pw.println("Ethernet interface name filter: " + mIfaceMatch);
  /frameworks/opt/net/ethernet/tests/java/com/android/server/ethernet/
EthernetTrackerTest.java 17 package com.android.server.ethernet;
  /external/autotest/client/bin/net/
net_utils.py 534 less than the minimum ethernet packet size (60+crc).
552 packet = self._socket.recv(ethernet.ETH_PACKET_MAX_SIZE)
553 if len(packet) >= (ethernet.ETH_PACKET_MIN_SIZE-4):
567 """Send an ethernet packet."""
575 """Send an ethernet frame.
577 Send an ethernet frame, formating the header.
588 packet = ethernet.pack(dst_mac, src_mac, protocol, payload)
595 """Receive an ethernet frame that matches the dst, src and proto.
609 ethernet frame: { 'dst' : byte string,
621 frame = ethernet.unpack(packet
640 class ethernet(object): class in inherits:object
    [all...]

Completed in 749 milliseconds