Searched refs:force (Results 1 - 25 of 133) sorted by relevance

123456

/frameworks/base/libs/hwui/
H A 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);
/frameworks/native/include/android/
H A Dstorage_manager.h134 void AStorageManager_unmountObb(AStorageManager* mgr, const char* filename, const int force,
/frameworks/base/libs/storage/include/storage/
H A 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/av/media/libmediaplayer2/nuplayer2/
H A DJWakeLock.h35 void release(bool force = false);
H A DJWakeLock.cpp80 void JWakeLock::release(bool force) { argument
84 if (force) {
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DAWakeLock.h35 void release(bool force = false);
H A DAWakeLock.cpp79 void AWakeLock::release(bool force) { argument
83 if (force) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarTransitions.java87 applyLightsOut(false /*animate*/, true /*force*/);
110 applyLightsOut(animate, false /*force*/);
113 private void applyLightsOut(boolean animate, boolean force) { argument
115 applyLightsOut(isLightsOut(getMode()), animate, force);
118 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) { argument
119 if (!force && lightsOut == mLightsOut) return;
/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);
376 private native boolean native_claim_interface(int interfaceID, boolean force); argument
/frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/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/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/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationListContainer.java138 * @param force reset the menu view even if it looks like it is already reset
140 void resetExposedMenuView(boolean animate, boolean force); argument
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...]
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageManagerBaseTest.java384 * @param force true if we shuold force the unmount, false otherwise
387 protected boolean unmountObb_noThrow(String obbFilePath, boolean force) { argument
393 assertTrue("unmountObb call failed", mSm.unmountObb(obbFilePath, force, obbListener));
396 if (force) {
408 * @param force true if we shuold force the unmount, false otherwise
410 protected void unmountObb(String obbFilePath, boolean force) { argument
415 assertTrue("unmountObb call failed", mSm.unmountObb(obbFilePath, force, obbListener));
418 if (force) {
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DLocalBluetoothAdapter.java159 public void startScanning(boolean force) { argument
162 if (!force) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DMessagingLayoutTransformState.java345 public void setVisible(boolean visible, boolean force) { argument
346 super.setVisible(visible, force);
355 setVisible(child, visible, force);
357 setVisible(ownGroup.getAvatar(), visible, force);
358 setVisible(ownGroup.getSenderView(), visible, force);
361 setVisible(isolatedMessage, visible, force);
367 private void setVisible(View child, boolean visible, boolean force) { argument
372 ownState.setVisible(visible, force);
411 setVisible(true /* visible */, false /* force */);
/frameworks/layoutlib/bridge/src/android/content/res/
H A DResources_Theme_Delegate.java117 final boolean[] force = key.mForce;
124 style, force[i]);
/frameworks/support/room/compiler/
H A Dbuild.gradle39 force GUAVA
/frameworks/base/services/core/java/com/android/server/job/
H A DJobSchedulerShellCommand.java123 pw.println(" has functional constraints but --force not specified");
132 checkPermission("force scheduled jobs");
134 boolean force = false;
141 case "--force":
142 force = true;
161 int ret = mInternal.executeRunCommand(pkgName, userId, jobId, force);
168 if (force) {
180 checkPermission("force timeout jobs");
304 checkPermission("force timeout jobs");
384 pw.println(" run [-f | --force] [
[all...]
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DSecurityLogMonitor.java132 /** Semaphore used to force log fetching on request from adb. */
135 /** The last timestamp when force fetch was used, to prevent abuse. */
220 notifyDeviceOwnerIfNeeded(false /* force */);
420 final boolean force = mForceSemaphore.tryAcquire(POLLING_INTERVAL_MS, MILLISECONDS);
433 notifyDeviceOwnerIfNeeded(force);
454 private void notifyDeviceOwnerIfNeeded(boolean force) throws InterruptedException { argument
462 if (logSize >= BUFFER_ENTRIES_NOTIFICATION_LEVEL || (force && logSize > 0)) {
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioOutputDescriptor.h61 bool force);
117 bool force);
167 bool force);
H A DDeviceDescriptor.h51 virtual void importAudioPort(const sp<AudioPort>& port, bool force = false);
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioOutputDescriptor.cpp148 bool force)
152 // - the force flag is set
153 if (volume != mCurVolume[stream] || force) {
371 bool force)
373 bool changed = AudioOutputDescriptor::setVolume(volume, stream, device, delayMs, force);
583 bool force)
585 bool changed = AudioOutputDescriptor::setVolume(volume, stream, device, delayMs, force);
144 setVolume(float volume, audio_stream_type_t stream, audio_devices_t device __unused, uint32_t delayMs, bool force) argument
367 setVolume(float volume, audio_stream_type_t stream, audio_devices_t device, uint32_t delayMs, bool force) argument
579 setVolume(float volume, audio_stream_type_t stream, audio_devices_t device, uint32_t delayMs, 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/av/media/libstagefright/include/
H A DNuCachedSource2.h141 bool ignoreLowWaterThreshold = false, bool force = false);

Completed in 477 milliseconds

123456