Home
last modified time | relevance | path

Searched refs:wipe_package_size (Results 1 – 3 of 3) sorted by relevance

/bootable/recovery/install/
Dwipe_device.cpp129 static std::unique_ptr<Package> ReadWipePackage(size_t wipe_package_size) { in ReadWipePackage() argument
130 if (wipe_package_size == 0) { in ReadWipePackage()
136 if (std::string err_str; !read_wipe_package(&wipe_package, wipe_package_size, &err_str)) { in ReadWipePackage()
170 bool WipeAbDevice(Device* device, size_t wipe_package_size) { in WipeAbDevice() argument
175 auto wipe_package = ReadWipePackage(wipe_package_size); in WipeAbDevice()
/bootable/recovery/install/include/install/
Dwipe_device.h26 bool WipeAbDevice(Device* device, size_t wipe_package_size);
/bootable/recovery/
Drecovery.cpp622 size_t wipe_package_size = 0; in start_recovery() local
678 android::base::ParseUint(optarg, &wipe_package_size); in start_recovery()
823 if (!WipeAbDevice(device, wipe_package_size)) { in start_recovery()