Searched refs:localChanges (Results 1 – 4 of 4) sorted by relevance
1023 int localChanges; field in ViewRootImpl.SystemUiVisibilityInfo3005 info.localChanges |= systemUiFlag; in updateCompatSystemUiVisibilityInfo()3009 info.localChanges &= ~systemUiFlag; in updateCompatSystemUiVisibilityInfo()3025 info.localChanges |= SYSTEM_UI_FLAG_LOW_PROFILE; in clearLowProfileModeIfNeeded()3042 if (info.localChanges != 0) { in handleDispatchSystemUiVisibilityChanged()3043 mView.updateLocalSystemUiVisibility(info.localValue, info.localChanges); in handleDispatchSystemUiVisibilityChanged()3044 info.localChanges = 0; in handleDispatchSystemUiVisibilityChanged()
1925 boolean updateLocalSystemUiVisibility(int localValue, int localChanges) { in updateLocalSystemUiVisibility() argument1926 boolean changed = super.updateLocalSystemUiVisibility(localValue, localChanges); in updateLocalSystemUiVisibility()1932 changed |= child.updateLocalSystemUiVisibility(localValue, localChanges); in updateLocalSystemUiVisibility()
28800 boolean updateLocalSystemUiVisibility(int localValue, int localChanges) { in updateLocalSystemUiVisibility() argument28801 int val = (mSystemUiVisibility&~localChanges) | (localValue&localChanges); in updateLocalSystemUiVisibility()
63882 Landroid/view/ViewRootImpl$SystemUiVisibilityInfo;->localChanges:I