Home
last modified time | relevance | path

Searched refs:mFeatureId (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/services/core/java/com/android/server/location/
DLocationRequestStatistics.java114 public final String mFeatureId; field in LocationRequestStatistics.PackageProviderKey
122 this.mFeatureId = featureId; in PackageProviderKey()
130 + (mFeatureId == null ? "" : ": " + mFeatureId); in toString()
148 return Objects.compare(mFeatureId, other.mFeatureId, Comparator in compareTo()
161 && Objects.equals(mFeatureId, otherKey.mFeatureId); in equals()
167 if (mFeatureId != null) { in hashCode()
168 hash += mFeatureId.hashCode() + 31 * hash; in hashCode()
239 private final String mFeatureId; field in LocationRequestStatistics.RequestSummary
261 this.mFeatureId = featureId; in RequestSummary()
274 if (mFeatureId != null) { in dump()
[all …]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/rtt/
DRttServiceImplTest.java117 private final String mFeatureId = "some.feature.name.for.rtt.app"; field in RttServiceImplTest
210 when(mockPermissionUtil.checkCallersLocationPermission(eq(mPackageName), eq(mFeatureId), in setUp()
274 mDut.startRanging(mockIbinder, mPackageName, mFeatureId, null, requests[i], in testRangingFlow()
339 mDut.startRanging(mockIbinder, mPackageName, mFeatureId, null, request, mockCallback); in testRangingFlowUsingAwarePeerHandles()
403 mDut.startRanging(mockIbinder, mPackageName, mFeatureId, null, requests[0], mockCallback); in testRangingFlowNativeFailure()
409 mDut.startRanging(mockIbinder, mPackageName, mFeatureId, null, requests[i], in testRangingFlowNativeFailure()
463 mDut.startRanging(mockIbinder, mPackageName, mFeatureId, null, request, mockCallback); in testRangingRequestWithoutRuntimePermission()
471 when(mockPermissionUtil.checkCallersLocationPermission(eq(mPackageName), eq(mFeatureId), in testRangingRequestWithoutRuntimePermission()
508 mDut.startRanging(mockIbinder, mPackageName, mFeatureId, null, requests[i], in testBinderDeathOfRangingApp()
585 mDut.startRanging(mockIbinder, mPackageName, mFeatureId, ws, request, mockCallback); in testBinderDeathWithWorkSource()
[all …]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/aware/
DWifiAwareServiceImplTest.java83 private String mFeatureId = "some.feature"; field in WifiAwareServiceImplTest
265 mDut.publish(mPackageName, mFeatureId, clientId, publishConfig, mSessionCallbackMock); in testFailOnAccessClientIdFromWrongUid()
285 mDut.publish(mPackageName, mFeatureId, clientId, publishConfig, mockCallback); in testFailOnPublishRangingWithoutRttFeature()
302 mDut.subscribe(mPackageName, mFeatureId, clientId, subscribeConfig, mockCallback); in testFailOnSubscribeRangingWithoutRttFeature()
369 mDut.publish(mPackageName, mFeatureId, clientId, publishConfig, mockCallback); in testPublish()
464 mDut.subscribe(mPackageName, mFeatureId, clientId, subscribeConfig, mockCallback); in testSubscribe()
679 mDut.publish(mPackageName, mFeatureId, clientId, publishConfig, mockCallback); in doBadPublishConfiguration()
695 mDut.subscribe(mPackageName, mFeatureId, clientId, subscribeConfig, mockCallback); in doBadSubscribeConfiguration()
/frameworks/base/core/java/com/android/internal/policy/
DDecorView.java179 private final int mFeatureId; field in DecorView
289 mFeatureId = featureId; in DecorView()
390 final boolean handled = cb != null && mFeatureId < 0 ? cb.dispatchKeyEvent(event) in dispatchKeyEvent()
397 return isDown ? mWindow.onKeyDown(mFeatureId, event.getKeyCode(), event) in dispatchKeyEvent()
398 : mWindow.onKeyUp(mFeatureId, event.getKeyCode(), event); in dispatchKeyEvent()
418 handled = cb != null && !mWindow.isDestroyed() && mFeatureId < 0
445 return cb != null && !mWindow.isDestroyed() && mFeatureId < 0
452 return cb != null && !mWindow.isDestroyed() && mFeatureId < 0
459 return cb != null && !mWindow.isDestroyed() && mFeatureId < 0
534 if (mFeatureId >= 0) {
[all …]
/frameworks/base/core/java/android/bluetooth/le/
DBluetoothLeScanner.java87 private final String mFeatureId; field in BluetoothLeScanner
104 mFeatureId = featureId; in BluetoothLeScanner()
257 mFeatureId); in startScan()
458 mResultStorages, mOpPackageName, mFeatureId); in onScannerRegistered()
/frameworks/base/services/core/java/com/android/server/wm/
DDisplayArea.java66 final int mFeatureId; field in DisplayArea
81 mFeatureId = featureId; in DisplayArea()
188 getDisplayContent().getDisplayId(), mFeatureId); in getDisplayAreaInfo()
DDisplayAreaOrganizerController.java85 if (da.mFeatureId != feature) return; in registerOrganizer()
DRecentTasks.java160 private @Nullable String mFeatureId; field in RecentTasks
427 return mFeatureId; in getRecentsComponentFeatureId()
/frameworks/base/services/tests/servicestests/src/com/android/server/location/
DLocationRequestStatisticsTest.java40 assertEquals(FEATURE_ID, key.mFeatureId); in testSinglePackage()
59 assertEquals(FEATURE_ID, key.mFeatureId); in testSinglePackage_stopAndRestart()
82 assertEquals(FEATURE_ID, key.mFeatureId); in testSinglePackage_multipleIntervals()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pServiceImpl.java1235 clientInfo.mFeatureId = featureId; in processMessage()
4296 return clientInfo.mFeatureId; in getCallingFeatureId()
4323 private @Nullable String mFeatureId; field in WifiP2pServiceImpl.ClientInfo
4335 mFeatureId = null; in ClientInfo()