HomeSort by relevance Sort by last modified time
    Searched refs:wipe (Results 1 - 25 of 40) 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);
230 void Fat::wipe(const char *fsPath, unsigned int numSectors) { function in class:Fat
240 SLOGE("Fat wipe failed to determine size of %s", fsPath);
247 SLOGE("Fat wipe failed to discard blocks on %s", fsPath);
249 SLOGI("Fat wipe %d sectors on %s succeeded", numSectors, fsPath);
253 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 166 (argc == 4 && strcmp(argv[3], "wipe"))) {
167 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: volume format <path> [wipe]", false);
170 bool wipe = false; local
171 if (argc >= 4 && !strcmp(argv[3], "wipe")) {
172 wipe = true;
174 rc = vm->formatVolume(argv[2], wipe);
592 if ( (argc != 4) || (strcmp(argv[2], "wipe") && strcmp(argv[2], "inplace")) ) {
593 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: cryptfs enablecrypto <wipe|inplace> <passwd>", false);
Volume.cpp 232 int Volume::formatVol(bool wipe) {
278 if (Fat::format(devicePath, 0, 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...]
Android.mk 22 wipe \
  /frameworks/base/tests/backup/
test_backup.sh 26 # wipe data for the package participating in backup
28 a shell bmgr wipe "$pkg"
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AccountSyncAdapter.java 19 public void wipe() { method in class:AccountSyncAdapter
AbstractSyncParser.java 149 wipe(); method
223 abstract protected void wipe(); method in class:AbstractSyncParser
AbstractSyncAdapter.java 77 public abstract void wipe(); method in class:AbstractSyncAdapter
FolderSyncParser.java 214 // act as though we have a bad folder sync key (wipe/reload mailboxes)
239 wipe(); method
761 protected void wipe() { method in class:FolderSyncParser
    [all...]
  /system/extras/ext4_utils/
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 190 int sparse, int crc, int wipe,
make_ext4fs.c 22 #include "wipe.h"
460 int sparse, int crc, int wipe,
605 if (wipe)
  /bootable/recovery/
verifier_test.sh 20 emulator -wipe-data -noaudio -no-window -port $EMULATOR_PORT &
  /bootable/recovery/applypatch/
imgdiff_test.sh 25 emulator -wipe-data -noaudio -no-window -port $EMULATOR_PORT &
applypatch.sh 35 emulator -wipe-data -noaudio -no-window -port $EMULATOR_PORT &
  /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")) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 61 public void wipe() { method in class:GeometryMathUtils.GeometryHolder
261 out.wipe();
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FilterGraph.java 531 void wipe() { method in class:FilterGraph
  /external/chromium_org/third_party/openssl/openssl/crypto/
sparccpuid.S 52 ! we wipe it as memcpy might have used it...
  /external/openssl/crypto/
sparccpuid.S 52 ! we wipe it as memcpy might have used it...

Completed in 300 milliseconds

1 2