Home
last modified time | relevance | path

Searched refs:baseAddress (Results 1 – 6 of 6) sorted by relevance

/packages/modules/AdServices/adservices/tests/cts/src/android/adservices/debuggablects/
DScenarioDispatcherTest.java47 String baseAddress = dispatcher.getBaseAddressWithPrefix().toString(); in testScenarioDispatcher_happyPath_httpGetSuccess() local
48 URL url = new URL(baseAddress + "/bidding"); in testScenarioDispatcher_happyPath_httpGetSuccess()
74 String baseAddress = dispatcher.getBaseAddressWithPrefix().toString(); in testScenarioDispatcher_withVerifyCalled_success() local
75 makeSimpleGetRequest(new URL(baseAddress + "/bidding")); in testScenarioDispatcher_withVerifyCalled_success()
76 makeSimpleGetRequest(new URL(baseAddress + "/scoring")); in testScenarioDispatcher_withVerifyCalled_success()
89 String baseAddress = dispatcher.getBaseAddressWithPrefix().toString(); in testScenarioDispatcher_withVerifyNotCalled_success() local
90 makeSimpleGetRequest(new URL(baseAddress + "/bidding")); // Call something else. in testScenarioDispatcher_withVerifyNotCalled_success()
103 String baseAddress = dispatcher.getBaseAddressWithPrefix().toString(); in testScenarioDispatcher_withTwoSecondDelay_success() local
105 makeSimpleGetRequest(new URL(baseAddress + "/bidding")); // Call something else. in testScenarioDispatcher_withTwoSecondDelay_success()
133 String baseAddress = dispatcher.getBaseAddressWithPrefix().toString(); in testScenarioDispatcher_withDuplicatePathCalls_doesNotReturnEarly() local
[all …]
DAdSelectionMediationTest.java80 URL baseAddress = dispatcher.getBaseAddressWithPrefix(); in testSelectAds_withAdSelectionFromOutcomes_happyPath_helper() local
84 makeAdSelectionFromOutcomesConfig(baseAddress) in testSelectAds_withAdSelectionFromOutcomes_happyPath_helper()
87 doSelectAds(makeAdSelectionConfig(baseAddress)) in testSelectAds_withAdSelectionFromOutcomes_happyPath_helper()
/packages/modules/Wifi/framework/java/android/net/wifi/
DWifiNetworkSpecifier.java262 @NonNull MacAddress baseAddress, @NonNull MacAddress mask) { in setBssidPattern()
263 checkNotNull(baseAddress); in setBssidPattern()
265 mBssidPatternMatcher = Pair.create(baseAddress, mask); in setBssidPattern()
792 MacAddress baseAddress = in.readParcelable(null);
795 Pair.create(baseAddress, mask);
/packages/modules/Connectivity/framework/src/android/net/
DMacAddress.java366 public boolean matches(@NonNull MacAddress baseAddress, @NonNull MacAddress mask) { in matches() argument
367 Objects.requireNonNull(baseAddress); in matches()
369 return (mAddr & mask.mAddr) == (baseAddress.mAddr & mask.mAddr); in matches()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiConfigurationUtil.java965 MacAddress baseAddress = bssidPatternMatcher.first; in validateBssidPattern()
967 if (baseAddress.getAddressType() != MacAddress.TYPE_UNICAST) { in validateBssidPattern()
968 Log.e(TAG, "validateBssidPatternMatcher failed : invalid base address: " + baseAddress); in validateBssidPattern()
972 && !baseAddress.equals(ALL_ZEROS_MAC_ADDRESS)) { in validateBssidPattern()
974 + baseAddress); in validateBssidPattern()
/packages/modules/Connectivity/staticlibs/device/com/android/net/module/util/
DPrivateAddressCoordinator.java310 final int baseAddress = getPrefixBaseAddress(prefixRange); in chooseDownstreamAddress() local
316 final int randomAddress = baseAddress | randomSuffix; in chooseDownstreamAddress()