Home
last modified time | relevance | path

Searched refs:ethSrcMac (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
H A DTether6Value.java36 public final MacAddress ethSrcMac; // The source mac address. field in Tether6Value
44 @NonNull final MacAddress ethSrcMac, final int ethProto, final int pmtu) { in Tether6Value() argument
45 Objects.requireNonNull(ethSrcMac); in Tether6Value()
50 this.ethSrcMac = ethSrcMac; in Tether6Value()
58 ethDstMac, ethSrcMac, ethProto, pmtu); in toString()
H A DTether4Value.java40 public final MacAddress ethSrcMac; field in Tether4Value
64 @NonNull final MacAddress ethSrcMac, final int ethProto, final int pmtu, in Tether4Value() argument
68 Objects.requireNonNull(ethSrcMac); in Tether4Value()
72 this.ethSrcMac = ethSrcMac; in Tether4Value()
89 oif, ethDstMac, ethSrcMac, ethProto, pmtu, in toString()
H A DBpfCoordinator.java1041 value.ethProto, value.ethSrcMac, value.ethDstMac); in ipv6UpstreamRuletoString()
/aosp12/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
H A DBpfCoordinatorTest.java809 assertEquals(value.ethSrcMac, DOWNSTREAM_MAC); in testRuleMakeTether6Value()