Searched defs:force (Results 26 - 50 of 100) sorted by relevance

1234

/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowSurfacePlacer.java145 performSurfacePlacement(false /* force */);
148 final void performSurfacePlacement(boolean force) { argument
149 if (mDeferDepth > 0 && !force) {
H A DAppWindowContainerController.java713 public void stopFreezingScreen(boolean force) { argument
720 mContainer.stopFreezingScreen(true, force);
H A DInputMonitor.java139 updateInputWindowsLw(true /* force */);
144 updateInputWindowsLw(true /* force */);
365 void updateInputWindowsLw(boolean force) { argument
366 if (!force && !mUpdateInputWindowsNeeded) {
517 updateInputWindowsLw(false /*force*/);
542 updateInputWindowsLw(true /*force*/);
553 updateInputWindowsLw(true /*force*/);
H A DWindowSurfaceController.java464 void forceScaleableInTransaction(boolean force) { argument
467 int scalingMode = force ? SCALING_MODE_SCALE_TO_WINDOW : -1;
/frameworks/base/tests/UsbTests/src/com/android/server/usb/
H A DUsbHandlerTest.java101 protected void setEnabledFunctions(long functions, boolean force) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DDeviceStateMonitor.java469 * @param force Always set the filter when true.
471 private void setUnsolResponseFilter(int newFilter, boolean force) { argument
472 if (force || newFilter != mUnsolicitedResponseFilter) {
/frameworks/support/viewpager/src/main/java/androidx/viewpager/widget/
H A DPagerTitleStrip.java330 void updateTextPositions(int position, float positionOffset, boolean force) { argument
333 } else if (!force && positionOffset == mLastKnownPositionOffset) {
/frameworks/av/media/libstagefright/
H A DNuCachedSource2.cpp484 bool ignoreLowWaterThreshold, bool force) {
491 if (!ignoreLowWaterThreshold && !force
499 if (!force) {
608 true); // force
483 restartPrefetcherIfNecessary_l( bool ignoreLowWaterThreshold, bool force) argument
/frameworks/av/media/libstagefright/foundation/
H A DColorUtils.cpp662 const ColorAspects &aspects, sp<AMessage> &format, bool force) {
667 if (range != 0 || force) {
670 if (standard != 0 || force) {
673 if (transfer != 0 || force) {
661 setColorAspectsIntoFormat( const ColorAspects &aspects, sp<AMessage> &format, bool force) argument
/frameworks/base/libs/storage/
H A DIMountService.cpp160 int32_t unmountVolume(const String16& mountPoint, const bool force, const bool removeEncryption) argument
165 data.writeInt32(force ? 1 : 0);
319 int32_t unmountSecureContainer(const String16& id, const bool force) argument
324 data.writeInt32(force ? 1 : 0);
466 void unmountObb(const String16& filename, const bool force, argument
472 data.writeInt32(force ? 1 : 0);
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DFalsingManager.java140 private void sessionExitpoint(boolean force) { argument
141 if (mSessionActive && (force || !shouldSessionBeActive())) {
155 sessionExitpoint(false /* force */);
321 sessionExitpoint(false /* force */);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationGuts.java80 * @param force whether the guts view should be forced closed regardless of state.
83 public boolean handleCloseControls(boolean save, boolean force); argument
123 closeControls(-1 /* x */, -1 /* y */, false /* save */, false /* force */);
215 * @param force whether the guts should be force-closed regardless of state.
217 public void closeControls(boolean leavebehinds, boolean controls, int x, int y, boolean force) { argument
221 closeControls(x, y, mGutsContent.shouldBeSaved(), force);
232 * @param force whether the guts should be force-closed regardless of state.
234 public void closeControls(int x, int y, boolean save, boolean force) { argument
[all...]
H A DNotificationInfo.java477 mGutsContainer.closeControls(x, y, true /* save */, false /* force */);
501 public boolean handleCloseControls(boolean save, boolean force) { argument
H A DNotificationSnooze.java386 mGutsContainer.closeControls(x, y, false /* save */, false /* force */);
412 public boolean handleCloseControls(boolean save, boolean force) { argument
413 if (mExpanded && !force) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarWindowManager.java381 public void setForceWindowCollapsed(boolean force) { argument
382 mCurrentState.forceCollapsed = force;
H A DKeyguardAffordanceHelper.java444 boolean animate, boolean slowRadiusAnimation, boolean force,
446 if (view.getVisibility() != View.VISIBLE && !force) {
443 updateIcon(KeyguardAffordanceView view, float circleRadius, float alpha, boolean animate, boolean slowRadiusAnimation, boolean force, boolean forceNoCircleAnimation) argument
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
H A DDevicePolicyManagerServiceTestable.java292 void recoverySystemRebootWipeUserData(boolean shutdown, String reason, boolean force, argument
294 services.recoverySystem.rebootWipeUserData(shutdown, reason, force, wipeEuicc);
/frameworks/support/leanback/src/main/java/androidx/leanback/app/
H A DOnboardingFragment.java718 * and data loading is complete. If force flag is set to false, it will only start the animation
722 * @param force {@code true} if enter animation has to be performed regardless of whether it's
725 protected final void startEnterAnimation(boolean force) { argument
731 if (mEnterAnimationFinished && !force) {
H A DOnboardingSupportFragment.java713 * and data loading is complete. If force flag is set to false, it will only start the animation
717 * @param force {@code true} if enter animation has to be performed regardless of whether it's
720 protected final void startEnterAnimation(boolean force) { argument
726 if (mEnterAnimationFinished && !force) {
/frameworks/support/media/src/main/java/androidx/media/
H A DAudioAttributesCompat.java756 public static void setForceLegacyBehavior(boolean force) { argument
757 sForceLegacyBehavior = force;
/frameworks/base/core/java/android/content/res/
H A DResources.java1407 * <p>The semantics of this function depends on the <var>force</var>
1415 * @param force If true, values in the style resource will always be
1419 public void applyStyle(int resId, boolean force) { argument
1420 mThemeImpl.applyStyle(resId, force);
1699 public void append(int resId, boolean force) { argument
1709 mForce = GrowingArrayUtils.append(mForce, mCount, force);
1712 mHashCode = 31 * (31 * mHashCode + resId) + (force ? 1 : 0);
H A DResourcesImpl.java557 // the drawable returned is not the requested density, then force it
1303 void applyStyle(int resId, boolean force) { argument
1305 mAssets.applyStyleToTheme(mTheme, resId, force);
1307 mKey.append(resId, force);
1418 final boolean force = mKey.mForce[i];
1419 mAssets.applyStyleToTheme(mTheme, resId, force);
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java1401 void disableForegroundDispatchInternal(Activity activity, boolean force) { argument
1404 if (!force && !activity.isResumed()) {
/frameworks/base/libs/androidfw/
H A DAssetManager2.cpp904 bool Theme::ApplyStyle(uint32_t resid, bool force) { argument
976 if (force || (entry.value.dataType == Res_value::TYPE_NULL &&
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DNetworkControllerImpl.java208 updateAirplaneMode(true /* force callback */);
623 updateAirplaneMode(true /* force */);
651 private void updateAirplaneMode(boolean force) { argument
654 if (airplaneMode != mAirplaneMode || force) {

Completed in 567 milliseconds

1234