HomeSort by relevance Sort by last modified time
    Searched refs:rebootWipeUserData (Results 1 - 14 of 14) sorted by null

  /frameworks/base/core/java/android/os/
RecoverySystem.java 572 public static void rebootWipeUserData(Context context) throws IOException {
573 rebootWipeUserData(context, false /* shutdown */, context.getPackageName(),
578 public static void rebootWipeUserData(Context context, String reason) throws IOException {
579 rebootWipeUserData(context, false /* shutdown */, reason, false /* force */);
583 public static void rebootWipeUserData(Context context, boolean shutdown)
585 rebootWipeUserData(context, shutdown, context.getPackageName(), false /* force */);
609 public static void rebootWipeUserData(Context context, boolean shutdown, String reason,
    [all...]
  /frameworks/base/services/core/java/com/android/server/
MasterClearReceiver.java 58 RecoverySystem.rebootWipeUserData(context, shutdown, reason, forceWipe);