Home
last modified time | relevance | path

Searched refs:force (Results 1 – 25 of 157) sorted by relevance

1234567

/frameworks/rs/tests/java_api/Refocus/dataExtraction/
DN5ave.txt1 N5(fp_relaxed + no force CPU)
14 N5(fp_relaxed + force-CPU)
27 N5(no rs_fp_relaxed + force-CPU)
40 N5(no fp_relaxed + no force CPU)
DN5clean.txt13 N5(fp_relaxed + no force CPU)
53 N5(fp_relaxed + force-CPU)
93 N5(no rs_fp_relaxed + force-CPU)
133 N5(no fp_relaxed + no force CPU)
/frameworks/base/libs/hwui/
DTexture.h62 inline void setWrap(GLenum wrap, bool bindTexture = false, bool force = false) {
63 setWrapST(wrap, wrap, bindTexture, force);
67 bool force = false);
69 inline void setFilter(GLenum filter, bool bindTexture = false, bool force = false) {
70 setFilterMinMag(filter, filter, bindTexture, force);
74 bool force = false);
DTexture.cpp54 void Texture::setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture, bool force) { in setWrapST() argument
55 if (force || wrapS != mWrapS || wrapT != mWrapT) { in setWrapST()
68 void Texture::setFilterMinMag(GLenum min, GLenum mag, bool bindTexture, bool force) { in setFilterMinMag() argument
69 if (force || min != mMinFilter || mag != mMagFilter) { in setFilterMinMag()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNavigationBarTransitions.java113 private void applyLightsOut(boolean animate, boolean force) { in applyLightsOut() argument
115 applyLightsOut(isLightsOut(getMode()), animate, force); in applyLightsOut() local
118 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) { in applyLightsOut() argument
119 if (!force && lightsOut == mLightsOut) return; in applyLightsOut()
/frameworks/base/native/android/
Dstorage_manager.cpp144 …void unmountObb(const char* filename, const bool force, AStorageManager_obbCallbackFunc func, void… in unmountObb()
147 mMountService->unmountObb(filename16, force, mObbActionListener, cb->nonce); in unmountObb()
191 void AStorageManager_unmountObb(AStorageManager* mgr, const char* filename, const int force, in AStorageManager_unmountObb() argument
193 mgr->unmountObb(filename, force != 0, cb, data); in AStorageManager_unmountObb()
/frameworks/base/libs/storage/include/storage/
DIMountService.h43 const String16& mountPoint, const bool force, const bool removeEncryption) = 0;
56 unmountSecureContainer(const String16& id, const bool force) = 0;
68 virtual void unmountObb(const String16& filename, const bool force,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DMessagingLayoutTransformState.java345 public void setVisible(boolean visible, boolean force) { in setVisible() argument
346 super.setVisible(visible, force); in setVisible()
355 setVisible(child, visible, force); in setVisible()
357 setVisible(ownGroup.getAvatar(), visible, force); in setVisible() local
358 setVisible(ownGroup.getSenderView(), visible, force); in setVisible() local
361 setVisible(isolatedMessage, visible, force); in setVisible()
367 private void setVisible(View child, boolean visible, boolean force) { in setVisible() argument
372 ownState.setVisible(visible, force); in setVisible()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationGuts.java83 public boolean handleCloseControls(boolean save, boolean force); in handleCloseControls() argument
217 public void closeControls(boolean leavebehinds, boolean controls, int x, int y, boolean force) { in closeControls() argument
221 closeControls(x, y, mGutsContent.shouldBeSaved(), force); in closeControls()
234 public void closeControls(int x, int y, boolean save, boolean force) { in closeControls() argument
248 || !mGutsContent.handleCloseControls(save, force) in closeControls()
/frameworks/base/core/tests/coretests/src/android/os/storage/
DStorageManagerBaseTest.java387 protected boolean unmountObb_noThrow(String obbFilePath, boolean force) { in unmountObb_noThrow() argument
393 assertTrue("unmountObb call failed", mSm.unmountObb(obbFilePath, force, obbListener)); in unmountObb_noThrow()
396 if (force) { in unmountObb_noThrow()
410 protected void unmountObb(String obbFilePath, boolean force) { in unmountObb() argument
415 assertTrue("unmountObb call failed", mSm.unmountObb(obbFilePath, force, obbListener)); in unmountObb()
418 if (force) { in unmountObb()
/frameworks/base/core/java/android/hardware/usb/
DUsbDeviceConnection.java125 public boolean claimInterface(UsbInterface intf, boolean force) { in claimInterface() argument
126 return native_claim_interface(intf.getId(), force); in claimInterface()
376 private native boolean native_claim_interface(int interfaceID, boolean force); in native_claim_interface() argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
DAWakeLock.cpp79 void AWakeLock::release(bool force) { in release() argument
83 if (force) { in release()
DAWakeLock.h35 void release(bool force = false);
/frameworks/av/media/libmediaplayer2/nuplayer2/
DJWakeLock.cpp80 void JWakeLock::release(bool force) { in release() argument
84 if (force) { in release()
DJWakeLock.h35 void release(bool force = false);
/frameworks/rs/tests/java_api/RsNbody/src/com/example/android/rs/nbody_gl/
Dnbody.rs56 float3 force = {0.f, 0.f, 0.f};
65 force += dir * (mass.w * invDistCubed);
67 float3 acc = force;
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
DAudioOutputDescriptor.h61 bool force);
117 bool force);
167 bool force);
/frameworks/base/libs/storage/
DIMountService.cpp160 int32_t unmountVolume(const String16& mountPoint, const bool force, const bool removeEncryption) in unmountVolume() argument
165 data.writeInt32(force ? 1 : 0); in unmountVolume()
319 int32_t unmountSecureContainer(const String16& id, const bool force) in unmountSecureContainer() argument
324 data.writeInt32(force ? 1 : 0); in unmountSecureContainer()
466 void unmountObb(const String16& filename, const bool force, in unmountObb() argument
472 data.writeInt32(force ? 1 : 0); in unmountObb()
/frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
DSpringAnimation.java127 public SpringAnimation setSpring(SpringForce force) { in setSpring() argument
128 mSpring = force; in setSpring()
/frameworks/base/services/core/java/com/android/server/job/
DJobSchedulerShellCommand.java134 boolean force = false; in runJob()
142 force = true; in runJob()
161 int ret = mInternal.executeRunCommand(pkgName, userId, jobId, force); in runJob()
168 if (force) { in runJob()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DSecurityLogMonitor.java420 final boolean force = mForceSemaphore.tryAcquire(POLLING_INTERVAL_MS, MILLISECONDS); in run()
433 notifyDeviceOwnerIfNeeded(force); in run()
454 private void notifyDeviceOwnerIfNeeded(boolean force) throws InterruptedException { in notifyDeviceOwnerIfNeeded() argument
462 if (logSize >= BUFFER_ENTRIES_NOTIFICATION_LEVEL || (force && logSize > 0)) { in notifyDeviceOwnerIfNeeded()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DLocalBluetoothAdapter.java159 public void startScanning(boolean force) { in startScanning() argument
162 if (!force) { in startScanning()
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
DAudioOutputDescriptor.cpp148 bool force) in setVolume() argument
153 if (volume != mCurVolume[stream] || force) { in setVolume()
371 bool force) in setVolume() argument
373 bool changed = AudioOutputDescriptor::setVolume(volume, stream, device, delayMs, force); in setVolume()
583 bool force) in setVolume() argument
585 bool changed = AudioOutputDescriptor::setVolume(volume, stream, device, delayMs, force); in setVolume()
/frameworks/layoutlib/bridge/src/android/content/res/
DResources_Theme_Delegate.java117 final boolean[] force = key.mForce; in setupResources()
124 style, force[i]); in setupResources()
/frameworks/native/include/android/
Dstorage_manager.h134 void AStorageManager_unmountObb(AStorageManager* mgr, const char* filename, const int force,

1234567