Searched defs:reboot (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgePowerManager.java79 public void reboot(String arg0) throws RemoteException { method in class:BridgePowerManager
/frameworks/base/core/java/android/os/
H A DPowerManager.java547 * Reboot the device. Will not return if the reboot is
554 public void reboot(String reason) method in class:PowerManager
557 mService.reboot(reason);
/frameworks/base/services/java/com/android/server/pm/
H A DShutdownThread.java178 public static void reboot(final Context context, String reason, boolean confirm) { method in class:ShutdownThread
186 * Request a reboot into safe mode. Must be called from a Looper thread in which its UI
481 * Do not call this directly. Use {@link #reboot(Context, String, boolean)}
484 * @param reboot true to reboot or false to shutdown
485 * @param reason reason for reboot
487 public static void rebootOrShutdown(boolean reboot, String reason) { argument
488 if (reboot) {
/frameworks/base/services/java/com/android/server/
H A DPowerManagerService.java717 * Low-level function to reboot the device.
720 * @throws IOException if reboot fails for some reason (eg, lack of
2777 public void reboot(String reason) method in class:PowerManagerService
2782 throw new IllegalStateException("Too early to call reboot()");
2789 ShutdownThread.reboot(mContext, finalReason, false);
2797 // PowerManager.reboot() is documented not to return so just wait for the inevitable.

Completed in 285 milliseconds