Searched refs:localChanges (Results 1 – 4 of 4) sorted by relevance
1012 int localChanges; field in ViewRootImpl.SystemUiVisibilityInfo2738 info.localChanges |= systemUiFlag; in updateCompatSystemUiVisibilityInfo()2742 info.localChanges &= ~systemUiFlag; in updateCompatSystemUiVisibilityInfo()2758 info.localChanges |= SYSTEM_UI_FLAG_LOW_PROFILE; in clearLowProfileModeIfNeeded()2775 if (info.localChanges != 0) { in handleDispatchSystemUiVisibilityChanged()2776 mView.updateLocalSystemUiVisibility(info.localValue, info.localChanges); in handleDispatchSystemUiVisibilityChanged()2777 info.localChanges = 0; in handleDispatchSystemUiVisibilityChanged()
1929 boolean updateLocalSystemUiVisibility(int localValue, int localChanges) { in updateLocalSystemUiVisibility() argument1930 boolean changed = super.updateLocalSystemUiVisibility(localValue, localChanges); in updateLocalSystemUiVisibility()1936 changed |= child.updateLocalSystemUiVisibility(localValue, localChanges); in updateLocalSystemUiVisibility()
27799 boolean updateLocalSystemUiVisibility(int localValue, int localChanges) { in updateLocalSystemUiVisibility() argument27800 int val = (mSystemUiVisibility&~localChanges) | (localValue&localChanges); in updateLocalSystemUiVisibility()
64525 Landroid/view/ViewRootImpl$SystemUiVisibilityInfo;->localChanges:I