Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/decor/
DPrivacyDotDecorProviderFactoryTest.kt46 private fun setPrivacyDotResources(isEnable: Boolean) { in setPrivacyDotResources()
47 whenever(resources.getBoolean(R.bool.config_enablePrivacyDot)).thenReturn(isEnable) in setPrivacyDotResources()
/frameworks/native/services/inputflinger/tests/
DFakeInputDispatcherPolicy.cpp160 return mPointerCaptureRequest->isEnable() && in assertSetPointerCaptureCalled()
163 return !mPointerCaptureRequest->isEnable(); in assertSetPointerCaptureCalled()
182 << std::to_string(mPointerCaptureRequest->isEnable()); in assertSetPointerCaptureNotCalled()
DInputReader_test.cpp1171 ASSERT_TRUE(args.request.isEnable()) << "Pointer Capture should be enabled."; in TEST_F()
1178 ASSERT_FALSE(args.request.isEnable()) << "Pointer Capture should be disabled."; in TEST_F()
/frameworks/native/services/inputflinger/reader/mapper/
DTouchpadInputMapper.cpp382 if ((!changes.any() && config.pointerCaptureRequest.isEnable()) || in reconfigure()
384 mPointerCaptured = config.pointerCaptureRequest.isEnable(); in reconfigure()
DCursorInputMapper.cpp459 if (config.pointerCaptureRequest.isEnable()) { in configureOnPointerCapture()
DTouchInputMapper.cpp921 mConfig.pointerGesturesEnabled && !mConfig.pointerCaptureRequest.isEnable()) { in configureInputDevice()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DDeviceStateMonitor.java462 public void setAlwaysReportSignalStrength(boolean isEnable) { in setAlwaysReportSignalStrength() argument
464 msg.arg1 = isEnable ? 1 : 0; in setAlwaysReportSignalStrength()
DPhone.java3889 public void setAlwaysReportSignalStrength(boolean isEnable) { in setAlwaysReportSignalStrength() argument
3891 mDeviceStateMonitor.setAlwaysReportSignalStrength(isEnable); in setAlwaysReportSignalStrength()
/frameworks/native/services/inputflinger/dispatcher/
DEntry.cpp114 pointerCaptureRequest.isEnable() ? "true" : "false"); in getDescription()
DInputDispatcher.cpp1735 if (entry->pointerCaptureRequest.isEnable()) { in dispatchPointerCaptureChangedLocked()
1744 if (!mCurrentPointerCaptureRequest.isEnable()) { in dispatchPointerCaptureChangedLocked()
1778 if (mCurrentPointerCaptureRequest.isEnable()) { in dispatchPointerCaptureChangedLocked()
1787 if (mCurrentPointerCaptureRequest.isEnable()) { in dispatchPointerCaptureChangedLocked()
3865 captureEntry.pointerCaptureRequest.isEnable()); in startDispatchCycleLocked()
4761 args.request.isEnable() ? "true" : "false"); in notifyPointerCaptureChanged()
5881 toString(mCurrentPointerCaptureRequest.isEnable())); in dumpPointerCaptureStateLocked()
6301 if (enabled == mCurrentPointerCaptureRequest.isEnable()) { in requestPointerCapture()
6958 if (!mCurrentPointerCaptureRequest.isEnable() && !mWindowTokenWithPointerCapture) { in disablePointerCaptureForcedLocked()
6964 if (mCurrentPointerCaptureRequest.isEnable()) { in disablePointerCaptureForcedLocked()
/frameworks/base/core/java/android/content/pm/
DApplicationInfo.java2889 public void setEnableOnBackInvokedCallback(boolean isEnable) { in setEnableOnBackInvokedCallback() argument
2890 if (isEnable) { in setEnableOnBackInvokedCallback()
/frameworks/native/include/input/
DInput.h1220 inline bool isEnable() const { return window != nullptr; } in isEnable() function
/frameworks/native/services/inputflinger/
DPointerChoreographer.cpp497 if (args.request.isEnable()) { in notifyPointerCaptureChanged()
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp505 mLocked.pointerCaptureRequest.isEnable() ? "Enabled" : "Disabled", in dump()
1624 ALOGV("%s pointer capture.", request.isEnable() ? "Enabling" : "Disabling"); in setPointerCapture()