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

123

/frameworks/base/libs/hwui/
H A DTexture.h43 void setWrap(GLenum wrap, bool bindTexture = false, bool force = false,
45 setWrapST(wrap, wrap, bindTexture, force, renderTarget);
48 void setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture = false, bool force = false,
51 if (firstWrap || force || wrapS != this->wrapS || wrapT != this->wrapT) {
66 void setFilter(GLenum filter, bool bindTexture = false, bool force = false,
68 setFilterMinMag(filter, filter, bindTexture, force, renderTarget);
71 void setFilterMinMag(GLenum min, GLenum mag, bool bindTexture = false, bool force = false,
74 if (firstFilter || force || min != minFilter || mag != magFilter) {
H A DLayer.h166 void setWrap(GLenum wrap, bool bindTexture = false, bool force = false) {
167 texture.setWrap(wrap, bindTexture, force, renderTarget);
170 void setFilter(GLenum filter, bool bindTexture = false, bool force = false) {
171 texture.setFilter(filter, bindTexture, force, renderTarget);
H A DCaches.h173 void bindPositionVertexPointer(bool force, GLuint slot, GLvoid* vertices,
180 void bindTexCoordsVertexPointer(bool force, GLuint slot, GLvoid* vertices);
H A DCaches.cpp309 void Caches::bindPositionVertexPointer(bool force, GLuint slot, GLvoid* vertices, GLsizei stride) { argument
310 if (force || vertices != mCurrentPositionPointer) {
316 void Caches::bindTexCoordsVertexPointer(bool force, GLuint slot, GLvoid* vertices) { argument
317 if (force || vertices != mCurrentTexCoordsPointer) {
/frameworks/compile/mclinker/
H A Dautogen.sh17 ${LIBTOOLIZE} --force
/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/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.java191 public void setNavigationIconHints(int hints, boolean force) { argument
192 if (!force && hints == mNavigationIconHints) return;
219 public void setDisabledFlags(int disabledFlags, boolean force) { argument
220 if (!force && mDisabledFlags == disabledFlags) return;
254 public void setMenuVisibility(final boolean show, final boolean force) { argument
255 if (!force && mShowMenu == show) return;
266 public void setLowProfile(final boolean lightsOut, final boolean animate, final boolean force) { argument
267 if (!force && lightsOut == mLowProfile) return;
343 // force the low profile & disabled states into compliance
344 setLowProfile(mLowProfile, false, 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));
282 public int destroySecureContainer(String id, boolean force) throws RemoteException { argument
289 _data.writeInt((force ? 1 : 0));
350 public int unmountSecureContainer(String id, boolean force) throws RemoteException { argument
357 _data.writeInt((force ? 1 : 0));
511 * Unmounts an Opaque Binary Blob (OBB). When the force flag is
517 public void unmountObb(String filename, boolean force, IObbActionListener token, argument
524 _data.writeInt((force ? 1 : 0));
895 boolean force
1173 destroySecureContainer(String id, boolean force) argument
1290 unmountObb(String filename, boolean force, IObbActionListener token, int nonce) argument
1297 unmountSecureContainer(String id, boolean force) argument
1309 unmountVolume(String mountPoint, boolean force, boolean removeEncryption) argument
[all...]
H A DStorageManager.java452 * <code>force</code> flag is true, it will kill any application needed to
465 * @param force whether to kill any programs using this in order to unmount
470 public boolean unmountObb(String filename, boolean force, OnObbStateChangeListener listener) { argument
481 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.java105 private int unmountContainer(String localId, boolean force) throws Exception { argument
110 return ms.unmountSecureContainer(fullId, force);
113 private int destroyContainer(String localId, boolean force) throws Exception { argument
118 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/av/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/support/v4/java/android/support/v4/view/
H A DPagerTabStrip.java275 void updateTextPositions(int position, float positionOffset, boolean force) { argument
284 super.updateTextPositions(position, positionOffset, force);
/frameworks/base/services/java/com/android/server/
H A DMountService.java311 final boolean force; field in class:MountService.UnmountCallBack
315 UnmountCallBack(String path, boolean force, boolean removeEncryption) { argument
318 this.force = force;
331 UmsEnableCallBack(String path, String method, boolean force) { argument
332 super(path, force, false);
401 if (!ucb.force) {
914 * If force is not set, we do not unmount if there are
916 * If force is set, all the processes holding references need to be
921 * If removeEncryption is set, force i
924 doUnmountVolume(String path, boolean force, boolean removeEncryption) argument
1383 unmountVolume(String path, boolean force, boolean removeEncryption) argument
1513 destroySecureContainer(String id, boolean force) argument
1582 unmountSecureContainer(String id, boolean force) argument
1777 unmountObb(String filename, boolean force, IObbActionListener token, int nonce) argument
2340 UnmountObbAction(ObbState obbState, boolean force) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java325 private void finishScale(boolean force) { argument
329 h = (force || h > mSmallSize) ? mNaturalHeight : mSmallSize;
331 h = (force || h < mNaturalHeight) ? mSmallSize : mNaturalHeight;
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java231 Object[] force = sp.getSpans(where, where + after,
234 for (int i = 0; i < force.length; i++) {
235 int st = sp.getSpanStart(force[i]);
236 int en = sp.getSpanEnd(force[i]);
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl96 void stopAppFreezingScreen(IBinder token, boolean force);
146 * @param alwaysSendConfiguration Flag to force a new configuration to
/frameworks/base/services/java/com/android/server/wm/
H A DInputMonitor.java153 public void updateInputWindowsLw(boolean force) { argument
154 if (!force && !mUpdateInputWindowsNeeded) {
343 updateInputWindowsLw(false /*force*/);
368 updateInputWindowsLw(true /*force*/);
379 updateInputWindowsLw(true /*force*/);
/frameworks/av/media/libstagefright/
H A DNuCachedSource2.cpp426 bool ignoreLowWaterThreshold, bool force) {
433 if (!ignoreLowWaterThreshold && !force
441 if (!force) {
535 true); // force
425 restartPrefetcherIfNecessary_l( bool ignoreLowWaterThreshold, bool force) argument

Completed in 501 milliseconds

123