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

123

/frameworks/base/libs/hwui/
H A DTexture.h38 inline void setWrap(GLenum wrap, bool bindTexture = false, bool force = false,
40 setWrapST(wrap, wrap, bindTexture, force, renderTarget);
44 bool force = false, GLenum renderTarget = GL_TEXTURE_2D);
46 inline void setFilter(GLenum filter, bool bindTexture = false, bool force = false,
48 setFilterMinMag(filter, filter, bindTexture, force, renderTarget);
52 bool force = false, GLenum renderTarget = GL_TEXTURE_2D);
H A DTexture.cpp41 void Texture::setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture, bool force, argument
44 if (mFirstWrap || force || wrapS != mWrapS || wrapT != mWrapT) {
59 void Texture::setFilterMinMag(GLenum min, GLenum mag, bool bindTexture, bool force, argument
62 if (mFirstFilter || force || min != mMinFilter || mag != mMagFilter) {
H A DAssetAtlas.cpp95 bool force = false, GLenum renderTarget = GL_TEXTURE_2D) {
96 mDelegate->setWrapST(wrapS, wrapT, bindTexture, force, renderTarget);
100 bool force = false, GLenum renderTarget = GL_TEXTURE_2D) {
101 mDelegate->setFilterMinMag(min, mag, bindTexture, force, renderTarget);
H A DLayer.h187 void setWrap(GLenum wrap, bool bindTexture = false, bool force = false) {
188 texture.setWrap(wrap, bindTexture, force, renderTarget);
191 void setFilter(GLenum filter, bool bindTexture = false, bool force = false) {
192 texture.setFilter(filter, bindTexture, force, renderTarget);
H A DCaches.cpp430 bool force = bindIndicesBuffer(mMeshIndices); local
435 return force;
476 void Caches::bindPositionVertexPointer(bool force, GLvoid* vertices, GLsizei stride) { argument
477 if (force || vertices != mCurrentPositionPointer || stride != mCurrentPositionStride) {
485 void Caches::bindTexCoordsVertexPointer(bool force, GLvoid* vertices, GLsizei stride) { argument
486 if (force || vertices != mCurrentTexCoordsPointer || stride != mCurrentTexCoordsStride) {
H A DCaches.h211 void bindPositionVertexPointer(bool force, GLvoid* vertices, GLsizei stride = gMeshStride);
217 void bindTexCoordsVertexPointer(bool force, GLvoid* vertices, GLsizei stride = gMeshStride);
/frameworks/native/include/android/
H A Dstorage_manager.h109 void AStorageManager_unmountObb(AStorageManager* mgr, const char* filename, const int force,
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDeviceConnection.java87 * @param force true to disconnect kernel driver if necessary
90 public boolean claimInterface(UsbInterface intf, boolean force) { argument
91 return native_claim_interface(intf.getId(), force);
237 private native boolean native_claim_interface(int interfaceID, boolean force); argument
/frameworks/base/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/base/core/java/android/os/storage/
H A DIMountService.java170 public void unmountVolume(String mountPoint, boolean force, boolean removeEncryption) argument
177 _data.writeInt((force ? 1 : 0));
280 public int destroySecureContainer(String id, boolean force) throws RemoteException { argument
287 _data.writeInt((force ? 1 : 0));
348 public int unmountSecureContainer(String id, boolean force) throws RemoteException { argument
355 _data.writeInt((force ? 1 : 0));
510 * Unmounts an Opaque Binary Blob (OBB). When the force flag is
517 String rawPath, boolean force, IObbActionListener token, int nonce)
524 _data.writeInt((force ? 1 : 0));
915 boolean force
516 unmountObb( String rawPath, boolean force, IObbActionListener token, int nonce) argument
1201 destroySecureContainer(String id, boolean force) argument
1318 unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) argument
1325 unmountSecureContainer(String id, boolean force) argument
1337 unmountVolume(String mountPoint, boolean force, boolean removeEncryption) argument
[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/phone/
H A DNavigationBarTransitions.java53 applyMode(getMode(), false /*animate*/, true /*force*/);
74 applyMode(newMode, animate, false /*force*/);
77 private void applyMode(int mode, boolean animate, boolean force) { argument
90 applyLightsOut(mode == MODE_LIGHTS_OUT, animate, force);
136 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) { argument
137 if (!force && lightsOut == mLightsOut) return;
H A DNavigationBarView.java130 // When dismissing ime during unlock, force the back button to run the same appearance
319 public void setNavigationIconHints(int hints, boolean force) { argument
320 if (!force && hints == mNavigationIconHints) return;
346 public void setDisabledFlags(int disabledFlags, boolean force) { argument
347 if (!force && mDisabledFlags == disabledFlags) return;
434 public void setMenuVisibility(final boolean show, final boolean force) { argument
435 if (!force && mShowMenu == show) return;
515 // force the low profile & disabled states into compliance
517 setDisabledFlags(mDisabledFlags, true /* force */);
518 setMenuVisibility(mShowMenu, true /* force */);
[all...]
/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);
457 void unmountObb(const String16& filename, const bool force, argument
463 data.writeInt32(force ? 1 : 0);
/frameworks/av/media/libstagefright/include/
H A DNuCachedSource2.h129 bool ignoreLowWaterThreshold = false, bool force = false);
H A DTimedEventQueue.h151 void releaseWakeLock_l(bool force = false);
/frameworks/av/media/libstagefright/
H A DTimedEventQueue.cpp93 releaseWakeLock_l(true /*force*/);
346 void TimedEventQueue::releaseWakeLock_l(bool force) argument
348 if (force) {
370 releaseWakeLock_l(true /*force*/);
/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/wifi/
H A DWifiNotificationController.java200 * @param force {@code true} to force notification to be shown/not-shown,
205 private void setNotificationVisible(boolean visible, int numNetworks, boolean force, argument
215 if (!visible && !mNotificationShown && !force) {
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTabStrip.java276 void updateTextPositions(int position, float positionOffset, boolean force) { argument
285 super.updateTextPositions(position, positionOffset, force);
/frameworks/base/services/java/com/android/server/
H A DMountService.java354 final boolean force; field in class:MountService.UnmountCallBack
358 UnmountCallBack(String path, boolean force, boolean removeEncryption) { argument
361 this.force = force;
374 UmsEnableCallBack(String path, String method, boolean force) { argument
375 super(path, force, false);
444 if (!ucb.force) {
1031 * If force is not set, we do not unmount if there are
1033 * If force is set, all the processes holding references need to be
1038 * If removeEncryption is set, force i
1041 doUnmountVolume(String path, boolean force, boolean removeEncryption) argument
1586 unmountVolume(String path, boolean force, boolean removeEncryption) argument
1725 destroySecureContainer(String id, boolean force) argument
1794 unmountSecureContainer(String id, boolean force) argument
1992 unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) argument
2643 UnmountObbAction(ObbState obbState, boolean force) argument
[all...]
/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.aidl102 void stopAppFreezingScreen(IBinder token, boolean force);
152 * @param alwaysSendConfiguration Flag to force a new configuration to

Completed in 592 milliseconds

123