Searched refs:UnderlyingNetworkRecord (Results 1 – 11 of 11) sorted by relevance
/frameworks/base/services/core/java/com/android/server/vcn/routeselection/ |
D | UnderlyingNetworkRecord.java | 37 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()
|
D | NetworkPriorityClassifier.java | 93 UnderlyingNetworkRecord networkRecord, in calculatePriorityClass() 138 UnderlyingNetworkRecord networkRecord, in checkMatchesPriorityRule() 211 UnderlyingNetworkRecord networkRecord, in checkMatchesWifiPriorityRule() 234 UnderlyingNetworkRecord networkRecord, in isWifiRssiAcceptable() 254 UnderlyingNetworkRecord networkRecord, in checkMatchesCellPriorityRule()
|
D | UnderlyingNetworkController.java | 102 @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()
|
D | UnderlyingNetworkEvaluator.java | 62 @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/ |
D | UnderlyingNetworkControllerTest.java | 516 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 …]
|
D | NetworkPriorityClassifierTest.java | 56 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()
|
D | UnderlyingNetworkEvaluatorTest.java | 155 final UnderlyingNetworkRecord expectedRecord = in testValidEvaluator() 156 new UnderlyingNetworkRecord( in testValidEvaluator()
|
/frameworks/base/tests/vcn/java/com/android/server/vcn/ |
D | VcnGatewayConnectionTestBase.java | 74 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 =
|
D | VcnGatewayConnectionTest.java | 72 import com.android.server.vcn.routeselection.UnderlyingNetworkRecord; 151 UnderlyingNetworkRecord record = in verifyBuildNetworkCapabilitiesCommon() 218 UnderlyingNetworkRecord record = in testBuildLinkProperties()
|
D | VcnGatewayConnectionConnectedStateTest.java | 81 import com.android.server.vcn.routeselection.UnderlyingNetworkRecord; 188 UnderlyingNetworkRecord networkRecord, in verifyDataStallTriggersMigration()
|
/frameworks/base/services/core/java/com/android/server/vcn/ |
D | VcnGatewayConnection.java | 105 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 …]
|