Search in sources :

Example 11 with IPowerManager

use of android.os.IPowerManager in project android_frameworks_base by DirtyUnicorns.

the class Watchdog method rebootSystem.

/**
     * Perform a full reboot of the system.
     */
void rebootSystem(String reason) {
    Slog.i(TAG, "Rebooting system because: " + reason);
    IPowerManager pms = (IPowerManager) ServiceManager.getService(Context.POWER_SERVICE);
    try {
        pms.reboot(false, reason, false);
    } catch (RemoteException ex) {
    }
}
Also used : IPowerManager(android.os.IPowerManager) RemoteException(android.os.RemoteException)

Example 12 with IPowerManager

use of android.os.IPowerManager in project platform_frameworks_base by android.

the class Watchdog method rebootSystem.

/**
     * Perform a full reboot of the system.
     */
void rebootSystem(String reason) {
    Slog.i(TAG, "Rebooting system because: " + reason);
    IPowerManager pms = (IPowerManager) ServiceManager.getService(Context.POWER_SERVICE);
    try {
        pms.reboot(false, reason, false);
    } catch (RemoteException ex) {
    }
}
Also used : IPowerManager(android.os.IPowerManager) RemoteException(android.os.RemoteException)

Example 13 with IPowerManager

use of android.os.IPowerManager in project platform_frameworks_base by android.

the class BrightnessLimit method onClick.

public void onClick(View v) {
    IPowerManager power = IPowerManager.Stub.asInterface(ServiceManager.getService("power"));
    if (power != null) {
        try {
            power.setTemporaryScreenBrightnessSettingOverride(0);
        } catch (RemoteException darn) {
        }
    }
    Settings.System.putInt(getContentResolver(), Settings.System.SCREEN_BRIGHTNESS, 0);
}
Also used : IPowerManager(android.os.IPowerManager) RemoteException(android.os.RemoteException)

Example 14 with IPowerManager

use of android.os.IPowerManager in project platform_frameworks_base by android.

the class ShutdownActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Intent intent = getIntent();
    mReboot = Intent.ACTION_REBOOT.equals(intent.getAction());
    mConfirm = intent.getBooleanExtra(Intent.EXTRA_KEY_CONFIRM, false);
    mUserRequested = intent.getBooleanExtra(Intent.EXTRA_USER_REQUESTED_SHUTDOWN, false);
    Slog.i(TAG, "onCreate(): confirm=" + mConfirm);
    Thread thr = new Thread("ShutdownActivity") {

        @Override
        public void run() {
            IPowerManager pm = IPowerManager.Stub.asInterface(ServiceManager.getService(Context.POWER_SERVICE));
            try {
                if (mReboot) {
                    pm.reboot(mConfirm, null, false);
                } else {
                    pm.shutdown(mConfirm, mUserRequested ? PowerManager.SHUTDOWN_USER_REQUESTED : null, false);
                }
            } catch (RemoteException e) {
            }
        }
    };
    thr.start();
    finish();
    // Wait for us to tell the power manager to shutdown.
    try {
        thr.join();
    } catch (InterruptedException e) {
    }
}
Also used : IPowerManager(android.os.IPowerManager) Intent(android.content.Intent) RemoteException(android.os.RemoteException)

Example 15 with IPowerManager

use of android.os.IPowerManager in project android_frameworks_base by crdroidandroid.

the class ShellUiAutomatorBridge method isScreenOn.

@Override
public boolean isScreenOn() {
    IPowerManager pm = IPowerManager.Stub.asInterface(ServiceManager.getService(Context.POWER_SERVICE));
    boolean ret = false;
    try {
        ret = pm.isInteractive();
    } catch (RemoteException e) {
        Log.e(LOG_TAG, "Error getting screen status", e);
        throw new RuntimeException(e);
    }
    return ret;
}
Also used : IPowerManager(android.os.IPowerManager) RemoteException(android.os.RemoteException)

Aggregations

IPowerManager (android.os.IPowerManager)43 RemoteException (android.os.RemoteException)41 ContentResolver (android.content.ContentResolver)8 PowerManager (android.os.PowerManager)7 Settings (android.provider.Settings)7 Intent (android.content.Intent)6 Point (android.graphics.Point)3 ShutdownThread (com.android.server.power.ShutdownThread)1