Searched defs:force (Results 1 - 25 of 92) sorted by relevance

1234

/frameworks/av/media/libstagefright/foundation/
H A DAWakeLock.cpp79 void AWakeLock::release(bool force) { argument
83 if (force) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
H A DCarNavigationBarView.java53 public void setDisabledFlags(int disabledFlags, boolean force) { argument
70 public void setNavigationIconHints(int hints, boolean force) { argument
/frameworks/support/dynamic-animation/src/android/support/animation/
H A DSpringAnimation.java23 * SpringAnimation is an animation that is driven by a {@link SpringForce}. The spring force defines
25 * started, on each frame the spring force will update the animation's value and velocity.
26 * The animation will continue to run until the spring force reaches equilibrium. If the spring used
120 * Uses the given spring as the force that drives this animation. If this spring force has its
124 * @param force a pre-defined spring force that drives the animation
125 * @return the animation that the spring force is set on
127 public SpringAnimation setSpring(SpringForce force) { argument
128 mSpring = force;
[all...]
/frameworks/base/apct-tests/perftests/multiuser/src/android/multiuser/
H A DUserLifecycleTests.java249 private void stopUser(int userId, boolean force) throws Exception { argument
251 mIam.stopUser(userId, force /* force */, new IStopUserCallback.Stub() {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarTransitions.java71 applyLightsOut(false /*animate*/, true /*force*/);
94 applyLightsOut(animate, false /*force*/);
97 private void applyLightsOut(boolean animate, boolean force) { argument
99 applyLightsOut(isLightsOut(getMode()), animate, force);
102 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) { argument
103 if (!force && lightsOut == mLightsOut) return;
H A DLockIcon.java120 update(false /* force */);
123 public void update(boolean force) { argument
136 || mScreenOn != mLastScreenOn || force) {
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
H A DFakeGateKeeperService.java188 private void refreshSid(int uid, long sid, boolean force) { argument
189 if (!sidMap.containsKey(uid) || force) {
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioOutputDescriptor.cpp147 bool force)
151 // - the force flag is set
152 if (volume != mCurVolume[stream] || force) {
373 bool force)
375 bool changed = AudioOutputDescriptor::setVolume(volume, stream, device, delayMs, force);
437 bool force)
439 bool changed = AudioOutputDescriptor::setVolume(volume, stream, device, delayMs, force);
143 setVolume(float volume, audio_stream_type_t stream, audio_devices_t device __unused, uint32_t delayMs, bool force) argument
369 setVolume(float volume, audio_stream_type_t stream, audio_devices_t device, uint32_t delayMs, bool force) argument
433 setVolume(float volume, audio_stream_type_t stream, audio_devices_t device, uint32_t delayMs, bool force) argument
H A DDeviceDescriptor.cpp266 void DeviceDescriptor::importAudioPort(const sp<AudioPort>& port, bool force) { argument
267 if (!force && !port->hasDynamicAudioProfile()) {
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDeviceConnection.java122 * @param force true to disconnect kernel driver if necessary
125 public boolean claimInterface(UsbInterface intf, boolean force) { argument
126 return native_claim_interface(intf.getId(), force);
366 private native boolean native_claim_interface(int interfaceID, boolean force); argument
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java687 false /* force */, false /* wipeEuicc */);
692 rebootWipeUserData(context, false /* shutdown */, reason, false /* force */,
699 rebootWipeUserData(context, shutdown, context.getPackageName(), false /* force */,
705 boolean force) throws IOException {
706 rebootWipeUserData(context, shutdown, reason, force, false /* wipeEuicc */);
721 * @param force whether the {@link UserManager.DISALLOW_FACTORY_RESET} user restriction
732 boolean force, boolean wipeEuicc) throws IOException {
734 if (!force && um.hasUserRestriction(UserManager.DISALLOW_FACTORY_RESET)) {
704 rebootWipeUserData(Context context, boolean shutdown, String reason, boolean force) argument
731 rebootWipeUserData(Context context, boolean shutdown, String reason, boolean force, boolean wipeEuicc) argument
/frameworks/base/core/jni/
H A Dandroid_hardware_UsbDeviceConnection.cpp114 jint interfaceID, jboolean force)
123 if (ret && force && errno == EBUSY) {
113 android_hardware_UsbDeviceConnection_claim_interface(JNIEnv *env, jobject thiz, jint interfaceID, jboolean force) argument
/frameworks/base/libs/hwui/
H A DTexture.cpp54 void Texture::setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture, bool force) { argument
55 if (force || wrapS != mWrapS || wrapT != mWrapT) {
68 void Texture::setFilterMinMag(GLenum min, GLenum mag, bool bindTexture, bool force) { argument
69 if (force || min != mMinFilter || mag != mMagFilter) {
287 // force a glTexImage2D to discard the mipmap levels
/frameworks/base/native/android/
H A Dstorage_manager.cpp144 void unmountObb(const char* filename, const bool force, AStorageManager_obbCallbackFunc func, void* data) { argument
147 mMountService->unmountObb(filename16, force, mObbActionListener, cb->nonce);
191 void AStorageManager_unmountObb(AStorageManager* mgr, const char* filename, const int force, argument
193 mgr->unmountObb(filename, force != 0, cb, data);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DLocalBluetoothAdapter.java158 public void startScanning(boolean force) { argument
161 if (!force) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DDeviceStateMonitor.java337 * @param force Always set the filter when true.
339 private void setUnsolResponseFilter(int newFilter, boolean force) { argument
340 if (force || newFilter != mUnsolicitedResponseFilter) {
/frameworks/support/core-ui/java/android/support/v4/view/
H A DPagerTabStrip.java281 void updateTextPositions(int position, float positionOffset, boolean force) { argument
290 super.updateTextPositions(position, positionOffset, force);
H A DPagerTitleStrip.java327 void updateTextPositions(int position, float positionOffset, boolean force) { argument
330 } else if (!force && positionOffset == mLastKnownPositionOffset) {
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DAsecTests.java105 private int unmountContainer(String localId, boolean force) throws Exception { argument
110 return sm.unmountSecureContainer(fullId, force);
113 private int destroyContainer(String localId, boolean force) throws Exception { argument
118 return sm.destroySecureContainer(fullId, force);
H A DStorageManagerBaseTest.java412 * @param force true if we shuold force the unmount, false otherwise
415 protected boolean unmountObb_noThrow(String obbFilePath, boolean force) { argument
421 assertTrue("unmountObb call failed", mSm.unmountObb(obbFilePath, force, obbListener));
424 if (force) {
436 * @param force true if we shuold force the unmount, false otherwise
438 protected void unmountObb(String obbFilePath, boolean force) { argument
443 assertTrue("unmountObb call failed", mSm.unmountObb(obbFilePath, force, obbListener));
446 if (force) {
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationGuts.java101 * @param force whether the guts view should be forced closed regardless of state.
104 public boolean handleCloseControls(boolean save, boolean force); argument
139 closeControls(-1 /* x */, -1 /* y */, false /* save */, false /* force */);
215 public void closeControls(boolean leavebehinds, boolean controls, int x, int y, boolean force) { argument
218 closeControls(x, y, true /* save */, force);
220 closeControls(x, y, true /* save */, force);
225 public void closeControls(int x, int y, boolean save, boolean force) { argument
233 if (mGutsContent == null || !mGutsContent.handleCloseControls(save, force)) {
H A DNotificationInfo.java409 public boolean handleCloseControls(boolean save, boolean force) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DTransformState.java538 public void setVisible(boolean visible, boolean force) { argument
539 if (!force && mTransformedView.getVisibility() == View.GONE) {
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowSurfacePlacer.java135 performSurfacePlacement(false /* force */);
138 final void performSurfacePlacement(boolean force) { argument
139 if (mDeferDepth > 0 && !force) {
/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

Completed in 1214 milliseconds

1234