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

12

/frameworks/base/libs/hwui/
H A DTexture.h43 void setWrap(GLenum wrapS, GLenum wrapT, bool bindTexture = false, bool force = false,
46 if (firstWrap || force || wrapS != this->wrapS || wrapT != this->wrapT) {
61 void setFilter(GLenum min, GLenum mag, bool bindTexture = false, bool force = false,
64 if (firstFilter || force || min != minFilter || mag != magFilter) {
H A DLayer.h150 void setWrap(GLenum wrapS, GLenum wrapT, bool bindTexture = false, bool force = false) {
151 texture.setWrap(wrapS, wrapT, bindTexture, force, renderTarget);
154 void setFilter(GLenum min, GLenum mag, bool bindTexture = false, bool force = false) {
155 texture.setFilter(min, mag,bindTexture, force, renderTarget);
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDeviceConnection.java88 * @param force true to disconnect kernel driver if necessary
91 public boolean claimInterface(UsbInterface intf, boolean force) { argument
92 return native_claim_interface(intf.getId(), force);
175 private native boolean native_claim_interface(int interfaceID, boolean force); argument
/frameworks/base/native/include/android/
H A Dstorage_manager.h109 void AStorageManager_unmountObb(AStorageManager* mgr, const char* filename, const int force,
/frameworks/base/include/storage/
H A DIMountService.h41 const String16& mountPoint, const bool force, const bool removeEncryption) = 0;
54 unmountSecureContainer(const String16& id, const bool force) = 0;
65 virtual void unmountObb(const String16& filename, const bool force,
/frameworks/base/native/android/
H A Dstorage_manager.cpp135 void unmountObb(const char* filename, const bool force, AStorageManager_obbCallbackFunc func, void* data) { argument
138 mMountService->unmountObb(filename16, force, mObbActionListener, cb->nonce);
182 void AStorageManager_unmountObb(AStorageManager* mgr, const char* filename, const int force, argument
184 mgr->unmountObb(filename, force != 0, cb, data);
/frameworks/base/core/java/android/os/
H A DIPowerManager.aidl34 void userActivityWithForce(long when, boolean noChangeLights, boolean force);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarView.java119 public void setDisabledFlags(int disabledFlags, boolean force) { argument
120 if (!force && mDisabledFlags == disabledFlags) return;
137 public void setMenuVisibility(final boolean show, final boolean force) { argument
138 if (!force && mShowMenu == show) return;
149 public void setLowProfile(final boolean lightsOut, final boolean animate, final boolean force) { argument
150 if (!force && lightsOut == mLowProfile) return;
232 // force the low profile & disabled states into compliance
233 setLowProfile(mLowProfile, false, true /* force */);
234 setDisabledFlags(mDisabledFlags, true /* force */);
235 setMenuVisibility(mShowMenu, true /* force */);
[all...]
/frameworks/base/core/java/android/os/storage/
H A DIMountService.java172 public void unmountVolume(String mountPoint, boolean force, boolean removeEncryption) argument
179 _data.writeInt((force ? 1 : 0));
281 public int destroySecureContainer(String id, boolean force) throws RemoteException { argument
288 _data.writeInt((force ? 1 : 0));
349 public int unmountSecureContainer(String id, boolean force) throws RemoteException { argument
356 _data.writeInt((force ? 1 : 0));
510 * Unmounts an Opaque Binary Blob (OBB). When the force flag is
516 public void unmountObb(String filename, boolean force, IObbActionListener token, argument
523 _data.writeInt((force ? 1 : 0));
867 boolean force
1129 destroySecureContainer(String id, boolean force) argument
1246 unmountObb(String filename, boolean force, IObbActionListener token, int nonce) argument
1253 unmountSecureContainer(String id, boolean force) argument
1265 unmountVolume(String mountPoint, boolean force, boolean removeEncryption) argument
[all...]
H A DStorageManager.java451 * <code>force</code> flag is true, it will kill any application needed to
464 * @param force whether to kill any programs using this in order to unmount
469 public boolean unmountObb(String filename, boolean force, OnObbStateChangeListener listener) { argument
480 mMountService.unmountObb(filename, force, mObbActionListener, nonce);
/frameworks/base/core/tests/coretests/src/android/os/storage/
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...]
H A DAsecTests.java108 private int unmountContainer(String localId, boolean force) throws RemoteException { argument
113 return ms.unmountSecureContainer(fullId, force);
116 private int destroyContainer(String localId, boolean force) throws RemoteException { argument
121 return ms.destroySecureContainer(fullId, force);
/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);
310 int32_t unmountSecureContainer(const String16& id, const bool force) argument
315 data.writeInt32(force ? 1 : 0);
456 void unmountObb(const String16& filename, const bool force, argument
462 data.writeInt32(force ? 1 : 0);
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java230 Object[] force = sp.getSpans(where, where + after,
233 for (int i = 0; i < force.length; i++) {
234 int st = sp.getSpanStart(force[i]);
235 int en = sp.getSpanEnd(force[i]);
/frameworks/base/media/libstagefright/include/
H A DNuCachedSource2.h129 bool ignoreLowWaterThreshold = false, bool force = false);
/frameworks/base/core/jni/
H A Dandroid_hardware_UsbDeviceConnection.cpp109 int interfaceID, jboolean force)
118 if (ret && force && errno == EBUSY) {
108 android_hardware_UsbDeviceConnection_claim_interface(JNIEnv *env, jobject thiz, int interfaceID, jboolean force) argument
/frameworks/base/services/java/com/android/server/
H A DMountService.java306 final boolean force; field in class:MountService.UnmountCallBack
310 UnmountCallBack(String path, boolean force, boolean removeEncryption) { argument
313 this.force = force;
326 UmsEnableCallBack(String path, String method, boolean force) { argument
327 super(path, force, false);
396 if (!ucb.force) {
886 * If force is not set, we do not unmount if there are
888 * If force is set, all the processes holding references need to be
893 * If removeEncryption is set, force i
896 doUnmountVolume(String path, boolean force, boolean removeEncryption) argument
1380 unmountVolume(String path, boolean force, boolean removeEncryption) argument
1491 destroySecureContainer(String id, boolean force) argument
1557 unmountSecureContainer(String id, boolean force) argument
1759 unmountObb(String filename, boolean force, IObbActionListener token, int nonce) argument
2351 UnmountObbAction(ObbState obbState, boolean force) argument
[all...]
H A DPowerManagerService.java2338 public void userActivityWithForce(long time, boolean noChangeLights, boolean force) { argument
2340 userActivity(time, -1, noChangeLights, OTHER_EVENT, force);
2360 public void userActivity(long time, boolean noChangeLights, int eventType, boolean force) { argument
2361 userActivity(time, -1, noChangeLights, eventType, force);
2375 int eventType, boolean force) {
2392 + " force=" + force);
2404 if (mLastEventTime <= time || force) {
2406 if ((mUserActivityAllowed && !mProximitySensorActive) || force) {
2489 // force light
2374 userActivity(long time, long timeoutOverride, boolean noChangeLights, int eventType, boolean force) argument
[all...]
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java724 void disableForegroundDispatchInternal(Activity activity, boolean force) { argument
727 if (!force && !activity.isResumed()) {
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl99 void stopAppFreezingScreen(IBinder token, boolean force);
169 * @param alwaysSendConfiguration Flag to force a new configuration to
H A DSurfaceView.java383 private void updateWindow(boolean force, boolean redrawNeeded) { argument
407 if (force || creating || formatChanged || sizeChanged || visibleChanged
/frameworks/base/services/java/com/android/server/wm/
H A DInputMonitor.java142 public void updateInputWindowsLw(boolean force) { argument
143 if (!force && !mUpdateInputWindowsNeeded) {
325 updateInputWindowsLw(false /*force*/);
350 updateInputWindowsLw(true /*force*/);
361 updateInputWindowsLw(true /*force*/);
/frameworks/base/media/libstagefright/
H A DNuCachedSource2.cpp425 bool ignoreLowWaterThreshold, bool force) {
432 if (!ignoreLowWaterThreshold && !force
440 if (!force) {
534 true); // force
424 restartPrefetcherIfNecessary_l( bool ignoreLowWaterThreshold, bool force) argument
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/
H A DBearerData.java395 private static int countAsciiSeptets(CharSequence msg, boolean force) { argument
397 if (force) return msgLen;
446 private static byte[] encode7bitAscii(String msg, boolean force) argument
455 if (force) {
485 private static Gsm7bitCodingResult encode7bitGsm(String msg, int septetOffset, boolean force) argument
505 byte[] fullData = GsmAlphabet.stringToGsm7BitPacked(msg, septetOffset, !force, 0, 0);
516 private static void encode7bitEms(UserData uData, byte[] udhData, boolean force) argument
521 Gsm7bitCodingResult gcr = encode7bitGsm(uData.payloadStr, udhSeptets, force);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DLockPatternKeyguardView.java846 private void updateScreen(Mode mode, boolean force) { argument
849 + " last mode=" + mMode + ", force = " + force, new RuntimeException());
855 if (force || mLockScreen == null) {
864 if (force || mUnlockScreen == null || unlockMode != mUnlockScreenMode) {

Completed in 600 milliseconds

12