/frameworks/base/core/java/com/android/internal/widget/ |
H A D | ActionBarOverlayLayout.java | 232 // and the application has asked for stable content insets, then 263 final boolean stable = (visible & SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0; 266 // or the app has not turned on a stable UI mode (meaning they 268 mActionBarVisibilityCallback.enableContentAnimations(!stable); 269 if (barVisible || !stable) mActionBarVisibilityCallback.showForSystem(); 316 final boolean stable = (vis & SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0; 401 final boolean stable = (vis & SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0; 403 if (stable) { 404 // This is the standard space needed for the action bar. For stable measurement, 423 if (stable) { [all...] |
/frameworks/base/core/tests/coretests/src/com/android/internal/widget/ |
H A D | ActionBarOverlayLayoutTest.java | 194 void setStable(boolean stable) { argument 195 mStable = stable; 196 setSystemUiVisibility(stable ? SYSTEM_UI_FLAG_LAYOUT_STABLE : 0);
|
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/ |
H A D | ActionBarOverlayLayout.java | 204 // // and the application has asked for stable content insets, then 237 final boolean stable = (visible & SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0; 240 // or the app has not turned on a stable UI mode (meaning they 242 mActionBarVisibilityCallback.enableContentAnimations(!stable); 243 if (barVisible || !stable) mActionBarVisibilityCallback.showForSystem(); 290 final boolean stable = (vis & SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0; 358 final boolean stable = (vis & SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0; 360 if (stable) { 361 // This is the standard space needed for the action bar. For stable measurement, 383 if (!mOverlayMode && !stable) { [all...] |
/frameworks/base/services/tests/servicestests/src/com/android/server/policy/ |
H A D | PhoneWindowManagerLayoutTest.java | 309 final Rect stable = new Rect(); 313 stable, outsets, cutout); 317 assertThat(stable, equalTo(new Rect()));
|
/frameworks/base/core/java/android/content/ |
H A D | ContentProviderClient.java | 84 ContentResolver contentResolver, IContentProvider contentProvider, boolean stable) { 89 mStable = stable; 83 ContentProviderClient( ContentResolver contentResolver, IContentProvider contentProvider, boolean stable) argument
|
/frameworks/base/core/java/android/app/ |
H A D | ActivityThread.java | 4050 // When this is set, the stable and unstable ref counts are 0 and 5939 false /*noisy*/, true /*noReleaseNeeded*/, true /*stable*/); 5955 Context c, String auth, int userId, boolean stable) { 5956 final IContentProvider provider = acquireExistingProvider(c, auth, userId, stable); 5971 getApplicationThread(), auth, userId, stable); 5984 true /*noisy*/, holder.noReleaseNeeded, stable); 6000 private final void incProviderRefLocked(ProviderRefCount prc, boolean stable) { argument 6001 if (stable) { 6004 // We are acquiring a new stable reference on the provider. 6009 // that unstable reference to our new stable referenc 5954 acquireProvider( Context c, String auth, int userId, boolean stable) argument 6068 acquireExistingProvider( Context c, String auth, int userId, boolean stable) argument 6098 releaseProvider(IContentProvider provider, boolean stable) argument 6331 installProvider(Context context, ContentProviderHolder holder, ProviderInfo info, boolean noisy, boolean noReleaseNeeded, boolean stable) argument [all...] |
H A D | IActivityManager.aidl | 135 in String name, int userId, boolean stable); 210 void removeContentProvider(in IBinder connection, boolean stable);
|
/frameworks/base/services/core/java/com/android/server/am/ |
H A D | ActivityManagerService.java | 6979 // Record this for posterity if the process has been stable. 7011 // Record this for posterity if the process has been stable. 12026 final ContentProviderRecord cpr, IBinder externalProcessToken, boolean stable) { 12036 if (stable) { 12047 if (stable) { 12065 ContentProviderRecord cpr, IBinder externalProcessToken, boolean stable) { 12073 if (stable) { 12135 String name, IBinder token, boolean stable, int userId) { 12215 conn = incProviderCountLocked(r, cpr, token, stable); 12253 boolean lastRef = decProviderCountLocked(conn, cpr, token, stable); 12025 incProviderCountLocked(ProcessRecord r, final ContentProviderRecord cpr, IBinder externalProcessToken, boolean stable) argument 12064 decProviderCountLocked(ContentProviderConnection conn, ContentProviderRecord cpr, IBinder externalProcessToken, boolean stable) argument 12134 getContentProviderImpl(IApplicationThread caller, String name, IBinder token, boolean stable, int userId) argument 12571 getContentProvider( IApplicationThread caller, String name, int userId, boolean stable) argument 12602 removeContentProvider(IBinder connection, boolean stable) argument 12731 refContentProvider(IBinder connection, int stable, int unstable) argument [all...] |