Home
last modified time | relevance | path

Searched refs:tetheringRequest (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DRequestTracker.java209 @NonNull final TetheringRequest tetheringRequest) { in promoteRequestToServing() argument
210 removePendingRequest(tetheringRequest); in promoteRequestToServing()
212 mServingRequests.put(ipServer, tetheringRequest); in promoteRequestToServing()
253 @NonNull final TetheringRequest tetheringRequest, boolean matchUid) { in findFuzzyMatchedRequest()
258 if (!request.fuzzyMatches(tetheringRequest)) continue; in findFuzzyMatchedRequest()
259 if (matchUid && tetheringRequest.getUid() != request.getUid()) continue; in findFuzzyMatchedRequest()
/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
DTetheringTest.java2647 final TetheringRequest tetheringRequest = new TetheringRequest.Builder(TETHERING_WIFI) in testSoftApConfigInTetheringEventCallback() local
2649 tetheringRequest.setUid(TEST_CALLER_UID); in testSoftApConfigInTetheringEventCallback()
2689 mTethering.startTethering(tetheringRequest, TEST_CALLER_PKG, null); in testSoftApConfigInTetheringEventCallback()
2695 sendStartTetheringSoftApCallback(WIFI_AP_STATE_ENABLED, tetheringRequest, in testSoftApConfigInTetheringEventCallback()
2716 sendStartTetheringSoftApCallback(WIFI_AP_STATE_DISABLED, tetheringRequest, in testSoftApConfigInTetheringEventCallback()
2756 final TetheringRequest tetheringRequest = new TetheringRequest.Builder(TETHERING_WIFI) in testFuzzyMatchedWifiCannotBeAdded() local
2758 tetheringRequest.setUid(TEST_CALLER_UID); in testFuzzyMatchedWifiCannotBeAdded()
2760 mTethering.startTethering(tetheringRequest, TEST_CALLER_PKG, successListener); in testFuzzyMatchedWifiCannotBeAdded()
2793 sendStartTetheringSoftApCallback(WIFI_AP_STATE_ENABLED, tetheringRequest, TEST_WLAN_IFNAME); in testFuzzyMatchedWifiCannotBeAdded()
2820 final TetheringRequest tetheringRequest = new TetheringRequest.Builder(TETHERING_WIFI) in testFuzzyMatchedWifiCanBeAddedAfterIpServerStopped() local
[all …]
/packages/modules/Wifi/framework/java/android/net/wifi/
DSoftApState.java64 @Nullable TetheringManager.TetheringRequest tetheringRequest, in SoftApState() argument
68 mTetheringRequest = tetheringRequest; in SoftApState()