Home
last modified time | relevance | path

Searched refs:UnderlyingNetworkRecord (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/services/core/java/com/android/server/vcn/routeselection/
DUnderlyingNetworkRecord.java37 public class UnderlyingNetworkRecord { class
44 public UnderlyingNetworkRecord( in UnderlyingNetworkRecord() method in UnderlyingNetworkRecord
58 if (!(o instanceof UnderlyingNetworkRecord)) return false; in equals()
59 final UnderlyingNetworkRecord that = (UnderlyingNetworkRecord) o; in equals()
74 @Nullable UnderlyingNetworkRecord leftRecord, in isSameNetwork()
75 @Nullable UnderlyingNetworkRecord rightRecord) { in isSameNetwork()
133 UnderlyingNetworkRecord build() { in build()
139 return new UnderlyingNetworkRecord( in build()
DNetworkPriorityClassifier.java93 UnderlyingNetworkRecord networkRecord, in calculatePriorityClass()
138 UnderlyingNetworkRecord networkRecord, in checkMatchesPriorityRule()
211 UnderlyingNetworkRecord networkRecord, in checkMatchesWifiPriorityRule()
234 UnderlyingNetworkRecord networkRecord, in isWifiRssiAcceptable()
254 UnderlyingNetworkRecord networkRecord, in checkMatchesCellPriorityRule()
DUnderlyingNetworkController.java102 @Nullable private UnderlyingNetworkRecord mCurrentRecord;
103 @Nullable private UnderlyingNetworkRecord.Builder mRecordInProgress;
446 @NonNull UnderlyingNetworkRecord currentNetwork, @NonNull IpSecTransform transform) { in updateInboundTransform()
501 UnderlyingNetworkRecord candidate = in reevaluateNetworks()
516 if (!UnderlyingNetworkRecord.isSameNetwork(mCurrentRecord, candidate)) { in reevaluateNetworks()
750 @Nullable UnderlyingNetworkRecord underlyingNetworkRecord); in onSelectedUnderlyingNetworkChanged()
DUnderlyingNetworkEvaluator.java62 @NonNull private final UnderlyingNetworkRecord.Builder mNetworkRecordBuilder;
97 new UnderlyingNetworkRecord.Builder( in UnderlyingNetworkEvaluator()
408 public UnderlyingNetworkRecord getNetworkRecord() {
/frameworks/base/tests/vcn/java/com/android/server/vcn/routeselection/
DUnderlyingNetworkControllerTest.java516 private static UnderlyingNetworkRecord getTestNetworkRecord( in getTestNetworkRecord()
521 return new UnderlyingNetworkRecord(network, networkCapabilities, linkProperties, isBlocked); in getTestNetworkRecord()
526 UnderlyingNetworkRecord recordA = in testUnderlyingNetworkRecordEquals()
532 UnderlyingNetworkRecord recordB = in testUnderlyingNetworkRecordEquals()
538 UnderlyingNetworkRecord recordC = in testUnderlyingNetworkRecordEquals()
539 new UnderlyingNetworkRecord( in testUnderlyingNetworkRecordEquals()
571 final UnderlyingNetworkRecord expectedRecord = in testUpdateIpSecTransform()
621 private void verifyOnSelectedUnderlyingNetworkChanged(UnderlyingNetworkRecord expectedRecord) { in verifyOnSelectedUnderlyingNetworkChanged()
642 UnderlyingNetworkRecord expectedRecord = in verifyRegistrationOnAvailableAndGetCallback()
661 UnderlyingNetworkRecord expectedRecord = in testRecordTrackerCallbackNotifiedForNetworkCapabilitiesChange()
[all …]
DNetworkPriorityClassifierTest.java56 private UnderlyingNetworkRecord mWifiNetworkRecord;
57 private UnderlyingNetworkRecord mCellNetworkRecord;
67 private UnderlyingNetworkRecord getTestNetworkRecord(NetworkCapabilities nc) { in getTestNetworkRecord()
68 return new UnderlyingNetworkRecord(mNetwork, nc, LINK_PROPERTIES, false /* isBlocked */); in getTestNetworkRecord()
467 final UnderlyingNetworkRecord nonDunNetworkRecord = getTestNetworkRecord(ncBuilder.build()); in checkCalculatePriorityClassFailToMatchAny()
DUnderlyingNetworkEvaluatorTest.java155 final UnderlyingNetworkRecord expectedRecord = in testValidEvaluator()
156 new UnderlyingNetworkRecord( in testValidEvaluator()
/frameworks/base/tests/vcn/java/com/android/server/vcn/
DVcnGatewayConnectionTestBase.java74 import com.android.server.vcn.routeselection.UnderlyingNetworkRecord;
118 protected static UnderlyingNetworkRecord getTestNetworkRecord( in getTestNetworkRecord()
123 return new UnderlyingNetworkRecord(network, networkCapabilities, linkProperties, isBlocked); in getTestNetworkRecord()
127 protected static final UnderlyingNetworkRecord TEST_UNDERLYING_NETWORK_RECORD_1 =
143 protected static final UnderlyingNetworkRecord TEST_UNDERLYING_NETWORK_RECORD_2 =
DVcnGatewayConnectionTest.java72 import com.android.server.vcn.routeselection.UnderlyingNetworkRecord;
151 UnderlyingNetworkRecord record = in verifyBuildNetworkCapabilitiesCommon()
218 UnderlyingNetworkRecord record = in testBuildLinkProperties()
DVcnGatewayConnectionConnectedStateTest.java81 import com.android.server.vcn.routeselection.UnderlyingNetworkRecord;
188 UnderlyingNetworkRecord networkRecord, in verifyDataStallTriggersMigration()
/frameworks/base/services/core/java/com/android/server/vcn/
DVcnGatewayConnection.java105 import com.android.server.vcn.routeselection.UnderlyingNetworkRecord;
242 @Nullable public final UnderlyingNetworkRecord newUnderlying;
244 EventUnderlyingNetworkChangedInfo(@Nullable UnderlyingNetworkRecord newUnderlying) { in EventUnderlyingNetworkChangedInfo()
709 private UnderlyingNetworkRecord mUnderlying;
914 @Nullable UnderlyingNetworkRecord underlying) { in onSelectedUnderlyingNetworkChanged()
918 if (!UnderlyingNetworkRecord.isSameNetwork(mUnderlying, underlying)) { in onSelectedUnderlyingNetworkChanged()
1722 final UnderlyingNetworkRecord oldUnderlying = mUnderlying; in processStateMsg()
2095 final UnderlyingNetworkRecord oldUnderlying = mUnderlying; in handleUnderlyingNetworkChanged()
2184 final UnderlyingNetworkRecord oldUnderlying = mUnderlying; in processStateMsg()
2235 @Nullable UnderlyingNetworkRecord underlying, in buildNetworkCapabilities()
[all …]