Searched refs:lightsOut (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarView.java295 public void setLowProfile(final boolean lightsOut) { argument
296 setLowProfile(lightsOut, true, false);
299 public void setLowProfile(final boolean lightsOut, final boolean animate, final boolean force) { argument
300 if (!force && lightsOut == mLowProfile) return;
302 mLowProfile = lightsOut;
304 if (DEBUG) Slog.d(TAG, "setting lights " + (lightsOut?"out":"on"));
314 navButtons.setAlpha(lightsOut ? 0f : 1f);
316 lowLights.setAlpha(lightsOut ? 1f : 0f);
317 lowLights.setVisibility(lightsOut ? View.VISIBLE : View.GONE);
320 .alpha(lightsOut
[all...]
H A DPhoneStatusBar.java1794 final boolean lightsOut = (0 != (vis & View.SYSTEM_UI_FLAG_LOW_PROFILE));
1795 if (lightsOut) {
1803 mNavigationBarView.setLowProfile(lightsOut);
1806 setStatusBarLowProfile(lightsOut);
1813 private void setStatusBarLowProfile(boolean lightsOut) { argument
1848 final Animator a = lightsOut ? mLightsOutAnimation : mLightsOnAnimation;
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp693 bool lightsOut = mLocked.systemUiVisibility & ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN; local
694 controller->setInactivityTimeout(lightsOut

Completed in 386 milliseconds