Home
last modified time | relevance | path

Searched refs:force (Results 1 – 25 of 174) 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/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DShadeController.java43 void animateCollapsePanels(int flags, boolean force); in animateCollapsePanels() argument
46 void animateCollapsePanels(int flags, boolean force, boolean delayed); in animateCollapsePanels() argument
49 void animateCollapsePanels(int flags, boolean force, boolean delayed, float speedUpFactor); in animateCollapsePanels() argument
DShadeControllerImpl.java99 public void animateCollapsePanels(int flags, boolean force) { in animateCollapsePanels() argument
100 animateCollapsePanels(flags, force, false /* delayed */, 1.0f /* speedUpFactor */); in animateCollapsePanels()
104 public void animateCollapsePanels(int flags, boolean force, boolean delayed) { in animateCollapsePanels() argument
105 animateCollapsePanels(flags, force, delayed, 1.0f /* speedUpFactor */); in animateCollapsePanels()
109 public void animateCollapsePanels(int flags, boolean force, boolean delayed, in animateCollapsePanels() argument
111 if (!force && mStatusBarStateController.getState() != StatusBarState.SHADE) { in animateCollapsePanels()
/frameworks/base/libs/storage/include/storage/
DIMountService.h44 const String16& mountPoint, const bool force, const bool removeEncryption) = 0;
57 unmountSecureContainer(const String16& id, const bool force) = 0;
69 virtual void unmountObb(const String16& filename, const bool force,
/frameworks/av/media/libstagefright/tests/mediacodec/
DMediaTestHelper.cpp39 void MediaTestHelper::Reclaim(const sp<MediaCodec> &codec, bool force) { in Reclaim() argument
40 codec->reclaim(force); in Reclaim()
/frameworks/base/native/android/
Dstorage_manager.cpp166 …void unmountObb(const char* filename, const bool force, AStorageManager_obbCallbackFunc func, void… in unmountObb()
169 mMountService->unmountObb(filename16, force, mObbActionListener, cb->nonce); in unmountObb()
213 void AStorageManager_unmountObb(AStorageManager* mgr, const char* filename, const int force, in AStorageManager_unmountObb() argument
215 mgr->unmountObb(filename, force != 0, cb, data); in AStorageManager_unmountObb()
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
DNavigationBarTransitions.java160 private void applyLightsOut(boolean animate, boolean force) { in applyLightsOut() argument
162 applyLightsOut(isLightsOut(getMode()), animate, force); in applyLightsOut() local
165 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) { in applyLightsOut() argument
166 if (!force && lightsOut == mLightsOut) return; in applyLightsOut()
/frameworks/base/core/tests/coretests/src/android/os/storage/
DStorageManagerBaseTest.java300 protected boolean unmountObb_noThrow(String obbFilePath, boolean force) { in unmountObb_noThrow() argument
306 assertTrue("unmountObb call failed", mSm.unmountObb(obbFilePath, force, obbListener)); in unmountObb_noThrow()
309 if (force) { in unmountObb_noThrow()
323 protected void unmountObb(String obbFilePath, boolean force) { in unmountObb() argument
328 assertTrue("unmountObb call failed", mSm.unmountObb(obbFilePath, force, obbListener)); in unmountObb()
331 if (force) { in unmountObb()
/frameworks/base/services/core/java/com/android/server/
DPersistentDataBlockService.java321 channel.force(true); in computeAndWriteDigestLocked()
388 channel.force(true); in formatPartitionLocked()
395 channel.force(true); in formatPartitionLocked()
404 channel.force(true); in formatPartitionLocked()
411 channel.force(true); in formatPartitionLocked()
432 channel.force(true); in doSetOemUnlockEnabledLocked()
513 channel.force(true);
741 channel.force(true);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DMessagingLayoutTransformState.java419 public void setVisible(boolean visible, boolean force) { in setVisible() argument
420 super.setVisible(visible, force); in setVisible()
429 setVisible(child, visible, force); in setVisible()
431 setVisible(ownGroup.getAvatar(), visible, force); in setVisible() local
432 setVisible(ownGroup.getSenderView(), visible, force); in setVisible() local
435 setVisible(isolatedMessage, visible, force); in setVisible()
441 private void setVisible(View child, boolean visible, boolean force) { in setVisible() argument
446 ownState.setVisible(visible, force); in setVisible()
/frameworks/av/media/libmediaplayerservice/nuplayer/
DAWakeLock.cpp80 void AWakeLock::release(bool force) { in release() argument
84 if (force) { in release()
/frameworks/native/services/inputflinger/reader/mapper/
DJoystickInputMapper.cpp309 void JoystickInputMapper::sync(nsecs_t when, nsecs_t readTime, bool force) { in sync() argument
310 if (!filterAxes(force)) { in sync()
363 bool JoystickInputMapper::filterAxes(bool force) { in filterAxes() argument
364 bool atLeastOneSignificantChange = force; in filterAxes()
367 if (force || in filterAxes()
374 if (force || in filterAxes()
DJoystickInputMapper.h95 void sync(nsecs_t when, nsecs_t readTime, bool force);
99 bool filterAxes(bool force);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationGuts.java109 public boolean handleCloseControls(boolean save, boolean force); in handleCloseControls() argument
258 public void closeControls(boolean leavebehinds, boolean controls, int x, int y, boolean force) { in closeControls() argument
262 closeControls(x, y, mGutsContent.shouldBeSaved(), force); in closeControls()
291 private void closeControls(int x, int y, boolean save, boolean force) { in closeControls() argument
301 || !mGutsContent.handleCloseControls(save, force)) { in closeControls()
/frameworks/base/core/java/android/hardware/usb/
DUsbDeviceConnection.java156 public boolean claimInterface(UsbInterface intf, boolean force) { in claimInterface() argument
157 return native_claim_interface(intf.getId(), force); in claimInterface()
407 private native boolean native_claim_interface(int interfaceID, boolean force); in native_claim_interface() argument
/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/
DJobSchedulerShellCommand.java139 boolean force = false; in runJob()
148 force = true; in runJob()
167 if (force && satisfied) { in runJob()
177 int ret = mInternal.executeRunCommand(pkgName, userId, jobId, satisfied, force); in runJob()
184 if (force) { in runJob()
/frameworks/rs/tests/java_api/RsNbody/src/com/example/android/rs/nbody_gl/
Dnbody.rscript56 float3 force = {0.f, 0.f, 0.f};
65 force += dir * (mass.w * invDistCubed);
67 float3 acc = 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()
467 void unmountObb(const String16& filename, const bool force, in unmountObb() argument
473 data.writeInt32(force ? 1 : 0); in unmountObb()
/frameworks/base/libs/androidfw/tests/
DTheme_test.cpp269 const uint8_t force[] = {true, true}; in TEST_F() local
270 theme->Rebase(&am, styles, force, arraysize(styles)); in TEST_F()
289 const uint8_t force[] = {false, false}; in TEST_F() local
290 theme->Rebase(&am, styles, force, arraysize(styles)); in TEST_F()
308 const uint8_t force[] = {false, true}; in TEST_F() local
309 theme->Rebase(&am_night, styles, force, arraysize(styles)); in TEST_F()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DSecurityLogMonitor.java429 final boolean force = mForceSemaphore.tryAcquire(POLLING_INTERVAL_MS, MILLISECONDS); in run()
442 notifyDeviceOwnerOrProfileOwnerIfNeeded(force); in run()
463 private void notifyDeviceOwnerOrProfileOwnerIfNeeded(boolean force) in notifyDeviceOwnerOrProfileOwnerIfNeeded() argument
472 if (logSize >= BUFFER_ENTRIES_NOTIFICATION_LEVEL || (force && logSize > 0)) { in notifyDeviceOwnerOrProfileOwnerIfNeeded()
/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/base/services/core/java/com/android/server/wm/
DWindowSurfacePlacer.java118 final void performSurfacePlacement(boolean force) { in performSurfacePlacement() argument
119 if (mDeferDepth > 0 && !force) { in performSurfacePlacement()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DLocalBluetoothAdapter.java162 public void startScanning(boolean force) { in startScanning() argument
165 if (!force) { in startScanning()
/frameworks/native/include/android/
Dstorage_manager.h134 void AStorageManager_unmountObb(AStorageManager* mgr, const char* filename, const int force,

1234567