Searched refs:baseAddress (Results 1 – 6 of 6) sorted by relevance
47 String baseAddress = dispatcher.getBaseAddressWithPrefix().toString(); in testScenarioDispatcher_happyPath_httpGetSuccess() local48 URL url = new URL(baseAddress + "/bidding"); in testScenarioDispatcher_happyPath_httpGetSuccess()74 String baseAddress = dispatcher.getBaseAddressWithPrefix().toString(); in testScenarioDispatcher_withVerifyCalled_success() local75 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() local90 makeSimpleGetRequest(new URL(baseAddress + "/bidding")); // Call something else. in testScenarioDispatcher_withVerifyNotCalled_success()103 String baseAddress = dispatcher.getBaseAddressWithPrefix().toString(); in testScenarioDispatcher_withTwoSecondDelay_success() local105 makeSimpleGetRequest(new URL(baseAddress + "/bidding")); // Call something else. in testScenarioDispatcher_withTwoSecondDelay_success()133 String baseAddress = dispatcher.getBaseAddressWithPrefix().toString(); in testScenarioDispatcher_withDuplicatePathCalls_doesNotReturnEarly() local[all …]
80 URL baseAddress = dispatcher.getBaseAddressWithPrefix(); in testSelectAds_withAdSelectionFromOutcomes_happyPath_helper() local84 makeAdSelectionFromOutcomesConfig(baseAddress) in testSelectAds_withAdSelectionFromOutcomes_happyPath_helper()87 doSelectAds(makeAdSelectionConfig(baseAddress)) in testSelectAds_withAdSelectionFromOutcomes_happyPath_helper()
262 @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);
366 public boolean matches(@NonNull MacAddress baseAddress, @NonNull MacAddress mask) { in matches() argument367 Objects.requireNonNull(baseAddress); in matches()369 return (mAddr & mask.mAddr) == (baseAddress.mAddr & mask.mAddr); in matches()
965 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()
310 final int baseAddress = getPrefixBaseAddress(prefixRange); in chooseDownstreamAddress() local316 final int randomAddress = baseAddress | randomSuffix; in chooseDownstreamAddress()