HomeSort by relevance Sort by last modified time
    Searched refs:wipe (Results 1 - 25 of 50) sorted by null

1 2

  /system/vold/
Fat.h 29 static int format(const char *fsPath, unsigned int numSectors, bool wipe);
32 static void wipe(const char *fsPath, unsigned int numSectors);
Fat.cpp 172 int Fat::format(const char *fsPath, unsigned int numSectors, bool wipe) {
178 if (wipe) {
179 Fat::wipe(fsPath, numSectors);
231 void Fat::wipe(const char *fsPath, unsigned int numSectors) { function in class:Fat
241 SLOGE("Fat wipe failed to determine size of %s", fsPath);
248 SLOGE("Fat wipe failed to discard blocks on %s", fsPath);
250 SLOGI("Fat wipe %d sectors on %s succeeded", numSectors, fsPath);
254 SLOGE("Fat wipe failed to open device %s", fsPath);
Volume.h 72 int formatVol(bool wipe);
VolumeManager.h 86 int formatVolume(const char *label, bool wipe);
CommandListener.cpp 167 (argc == 4 && strcmp(argv[3], "wipe"))) {
168 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: volume format <path> [wipe]", false);
171 bool wipe = false; local
172 if (argc >= 4 && !strcmp(argv[3], "wipe")) {
173 wipe = true;
175 rc = vm->formatVolume(argv[2], wipe);
593 const char* syntax = "Usage: cryptfs enablecrypto <wipe|inplace> "
596 || (strcmp(argv[2], "wipe") && strcmp(argv[2], "inplace")) ) {
Volume.cpp 232 int Volume::formatVol(bool wipe) {
278 if (Fat::format(devicePath, 0, wipe)) {
  /frameworks/base/core/java/android/service/persistentdata/
IPersistentDataBlockService.aidl 32 void wipe();
PersistentDataBlockManager.java 112 public void wipe() { method in class:PersistentDataBlockManager
114 sService.wipe();
  /system/core/toolbox/
wipe.c 28 static void wipe (const char *path);
32 fprintf(stderr, "wipe <system|data|all>\n\n"
49 wipe ("/system");
53 wipe ("/data");
57 wipe ("/system");
58 wipe ("/data");
63 wipe ("/system");
64 wipe ("/data");
81 static void wipe (const char *path) function
134 wipe(newpath)
    [all...]
  /external/qemu/distrib/ext4_utils/include/
make_ext4fs.h 31 int wipe, int verbose);
  /frameworks/base/tests/backup/
test_backup.sh 26 # wipe data for the package participating in backup
28 a shell bmgr wipe "$pkg"
  /external/qemu/distrib/ext4_utils/src/
make_ext4fs_main.c 70 int wipe = 0; local
116 wipe = 1;
164 if (wipe && sparse) {
165 fprintf(stderr, "Cannot specifiy both wipe and sparse\n");
170 if (wipe && gzip) {
171 fprintf(stderr, "Cannot specifiy both wipe and gzip\n");
204 sparse, crc, wipe, sehnd, verbose);
Android.mk 15 wipe.c \
ext4_utils.h 156 int sparse, int crc, int wipe,
make_ext4fs.c 22 #include "wipe.h"
481 int sparse, int crc, int wipe,
626 if (wipe && WIPE_IS_SUPPORTED) {
  /system/extras/ext4_utils/
make_ext4fs_main.c 72 int wipe = 0; local
119 wipe = 1;
190 if (wipe && sparse) {
191 fprintf(stderr, "Cannot specifiy both wipe and sparse\n");
196 if (wipe && gzip) {
197 fprintf(stderr, "Cannot specifiy both wipe and gzip\n");
230 sparse, crc, wipe, sehnd, verbose, fixed_time, block_list_file);
Android.mk 15 wipe.c \
ext4_utils.h 160 int sparse, int crc, int wipe,
  /external/qemu/distrib/ext4_utils/
sources.mk 15 src/wipe.c \
  /bootable/recovery/applypatch/
imgdiff_test.sh 25 emulator -wipe-data -noaudio -no-window -port $EMULATOR_PORT &
  /bootable/recovery/
verifier_test.sh 20 emulator -wipe-data -noaudio -no-window -port $EMULATOR_PORT &
  /packages/apps/Settings/src/com/android/settings/
MasterClearConfirm.java 77 pdbManager.wipe();
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncParser.java 157 wipe(); method
236 abstract protected void wipe(); method in class:AbstractSyncParser
AbstractSyncAdapter.java 76 public abstract void wipe(); method in class:AbstractSyncAdapter
  /frameworks/native/cmds/rawbu/
backup.cpp 64 /* This is just copied from the shell's built-in wipe command. */
65 static int wipe (const char *path) function in namespace:android
109 // we do want to wipe its contents, but not the
136 if (wipe(newpath) == 0) {
530 if (!wipe("/data")) {

Completed in 304 milliseconds

1 2