Home
last modified time | relevance | path

Searched refs:otherRequest (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/util/
DTetheringUtils.java163 final TetheringRequestParcel otherRequest) { in isTetheringRequestEquals() argument
164 if (request == otherRequest) return true; in isTetheringRequestEquals()
166 return request != null && otherRequest != null in isTetheringRequestEquals()
167 && request.tetheringType == otherRequest.tetheringType in isTetheringRequestEquals()
168 && Objects.equals(request.localIPv4Address, otherRequest.localIPv4Address) in isTetheringRequestEquals()
169 && Objects.equals(request.staticClientAddress, otherRequest.staticClientAddress) in isTetheringRequestEquals()
170 && request.exemptFromEntitlementCheck == otherRequest.exemptFromEntitlementCheck in isTetheringRequestEquals()
171 && request.showProvisioningUi == otherRequest.showProvisioningUi in isTetheringRequestEquals()
172 && request.connectivityScope == otherRequest.connectivityScope; in isTetheringRequestEquals()
/packages/modules/Connectivity/framework-t/src/android/net/nsd/
DAdvertisingRequest.java142 final AdvertisingRequest otherRequest = (AdvertisingRequest) other; in equals() local
143 return mServiceInfo.equals(otherRequest.mServiceInfo) in equals()
144 && mProtocolType == otherRequest.mProtocolType in equals()
145 && mAdvertisingConfig == otherRequest.mAdvertisingConfig in equals()
146 && Objects.equals(mTtl, otherRequest.mTtl); in equals()
DDiscoveryRequest.java131 DiscoveryRequest otherRequest = (DiscoveryRequest) other; in equals() local
132 return mProtocolType == otherRequest.mProtocolType in equals()
133 && Objects.equals(mServiceType, otherRequest.mServiceType) in equals()
134 && Objects.equals(mSubtype, otherRequest.mSubtype) in equals()
135 && Objects.equals(mNetwork, otherRequest.mNetwork); in equals()
/packages/modules/Connectivity/nearby/framework/java/android/nearby/
DScanRequest.java249 ScanRequest otherRequest = (ScanRequest) other; in equals() local
250 return mScanType == otherRequest.mScanType in equals()
251 && (mScanMode == otherRequest.mScanMode) in equals()
252 && (mBleEnabled == otherRequest.mBleEnabled) in equals()
253 && (mOffloadOnly == otherRequest.mOffloadOnly) in equals()
254 && (Objects.equals(mWorkSource, otherRequest.mWorkSource)); in equals()
/packages/services/Car/tests/BugReportApp/libs/
Dgoogle-api-client-1.30.2.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...
/packages/apps/Car/DebuggingRestrictionController/libs/
Dgoogle-api-client-1.30.10.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...
/packages/modules/Connectivity/service/src/com/android/server/
DConnectivityService.java6052 NetworkRequest otherRequest = nai.requestAt(i);
6053 if (otherRequest.legacyType == requestLegacyType
6054 && otherRequest.isRequest()) {