Home
last modified time | relevance | path

Searched refs:DEVICE_POSTURE_UNKNOWN (Results 1 – 14 of 14) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDevicePostureController.java32 DEVICE_POSTURE_UNKNOWN,
44 int DEVICE_POSTURE_UNKNOWN = 0; field
67 case DEVICE_POSTURE_UNKNOWN: in devicePostureToString()
H A DDevicePostureControllerImpl.java40 private int mCurrentDevicePosture = DEVICE_POSTURE_UNKNOWN;
76 mDeviceStateToPostureMap.get(state, DEVICE_POSTURE_UNKNOWN); in DevicePostureControllerImpl()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/
H A DDevicePostureController.java48 DEVICE_POSTURE_UNKNOWN,
59 public static final int DEVICE_POSTURE_UNKNOWN = 0; field in DevicePostureController
70 private int mDevicePosture = DEVICE_POSTURE_UNKNOWN;
110 mDeviceStateToPostureMap.get(state, DEVICE_POSTURE_UNKNOWN))); in onInit()
H A DTabletopModeController.java22 import static com.android.wm.shell.common.DevicePostureController.DEVICE_POSTURE_UNKNOWN;
97 private int mDevicePosture = DEVICE_POSTURE_UNKNOWN;
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardBypassController.kt34 import com.android.systemui.statusbar.policy.DevicePostureController.DEVICE_POSTURE_UNKNOWN
50 @DevicePostureInt private var postureState: Int = DEVICE_POSTURE_UNKNOWN
131 if (configFaceAuthSupportedPosture != DEVICE_POSTURE_UNKNOWN) {
225 DEVICE_POSTURE_UNKNOWN -> true
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/shared/model/
H A DDevicePosture.kt36 DevicePostureController.DEVICE_POSTURE_UNKNOWN -> UNKNOWN
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DKeyguardBypassControllerTest.kt33 import com.android.systemui.statusbar.policy.DevicePostureController.DEVICE_POSTURE_UNKNOWN
119 DEVICE_POSTURE_UNKNOWN
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardPINView.java22 import static com.android.systemui.statusbar.policy.DevicePostureController.DEVICE_POSTURE_UNKNOWN;
55 @DevicePostureInt private int mLastDevicePosture = DEVICE_POSTURE_UNKNOWN;
H A DKeyguardPatternView.java19 import static com.android.systemui.statusbar.policy.DevicePostureController.DEVICE_POSTURE_UNKNOWN;
79 @DevicePostureInt private int mLastDevicePosture = DEVICE_POSTURE_UNKNOWN;
H A DKeyguardUpdateMonitor.java80 import static com.android.systemui.statusbar.policy.DevicePostureController.DEVICE_POSTURE_UNKNOWN;
448 private int mPostureState = DEVICE_POSTURE_UNKNOWN;
2644 if (mConfigFaceAuthSupportedPosture != DEVICE_POSTURE_UNKNOWN) { in KeyguardUpdateMonitor()
3273 return mConfigFaceAuthSupportedPosture == DEVICE_POSTURE_UNKNOWN in doesPostureAllowFaceAuth()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/repository/
H A DDevicePostureRepositoryTest.kt67 callback.value.onPostureChanged(DevicePostureController.DEVICE_POSTURE_UNKNOWN)
H A DBiometricSettingsRepositoryTest.kt488 DevicePostureController.DEVICE_POSTURE_UNKNOWN
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DKeyguardUpdateMonitorTest.java49 import static com.android.systemui.statusbar.policy.DevicePostureController.DEVICE_POSTURE_UNKNOWN;
337 when(mDevicePostureController.getDevicePosture()).thenReturn(DEVICE_POSTURE_UNKNOWN); in setup()
350 DEVICE_POSTURE_UNKNOWN); in setup()
2723 mKeyguardUpdateMonitor.mConfigFaceAuthSupportedPosture = DEVICE_POSTURE_UNKNOWN; in testShouldListenForFace_withoutAuthSupportPostureConfig_returnsTrue()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeSensors.java588 DevicePostureController.DEVICE_POSTURE_UNKNOWN, in TriggerSensor()