Home
last modified time | relevance | path

Searched refs:childSessionConfig (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/tests/vcn/java/com/android/server/vcn/
H A DVcnGatewayConnectionTest.java208 final VcnChildSessionConfiguration childSessionConfig = in testBuildLinkProperties() local
210 doReturn(TEST_INTERNAL_ADDRESSES).when(childSessionConfig).getInternalAddresses(); in testBuildLinkProperties()
211 doReturn(TEST_DNS_ADDRESSES).when(childSessionConfig).getInternalDnsServers(); in testBuildLinkProperties()
224 childSessionConfig, in testBuildLinkProperties()
238 childSessionConfig, in testBuildLinkProperties()
/aosp14/frameworks/base/services/core/java/com/android/server/vcn/
H A DVcnGatewayConnection.java381 @NonNull public final VcnChildSessionConfiguration childSessionConfig; field in VcnGatewayConnection.EventSetupCompletedInfo
383 EventSetupCompletedInfo(@NonNull VcnChildSessionConfiguration childSessionConfig) { in EventSetupCompletedInfo() argument
384 this.childSessionConfig = Objects.requireNonNull(childSessionConfig); in EventSetupCompletedInfo()
389 return Objects.hash(childSessionConfig); in hashCode()
399 return Objects.equals(childSessionConfig, rhs.childSessionConfig); in equals()
1983 mChildConfig = ((EventSetupCompletedInfo) msg.obj).childSessionConfig; in processStateMsg()