Home
last modified time | relevance | path

Searched refs:data_image (Results 1 – 4 of 4) sorted by relevance

/device/google/cuttlefish/host/libs/config/
Ddata_image.cpp23 bool ForceFsckImage(const char* data_image) { in ForceFsckImage() argument
25 int fsck_status = cuttlefish::execute({fsck_path, "-y", "-f", data_image}); in ForceFsckImage()
27 LOG(ERROR) << "`fsck.f2fs -y -f " << data_image << "` failed with code " in ForceFsckImage()
34 bool ResizeImage(const char* data_image, int data_image_mb) { in ResizeImage() argument
35 auto file_mb = cuttlefish::FileSize(data_image) >> 20; in ResizeImage()
37 LOG(ERROR) << data_image << " is already " << file_mb << " MB, will not " in ResizeImage()
41 LOG(INFO) << data_image << " is already the right size"; in ResizeImage()
45 auto fd = cuttlefish::SharedFD::Open(data_image, O_RDWR); in ResizeImage()
48 << data_image << "` failed:" << fd->StrError(); in ResizeImage()
51 bool fsck_success = ForceFsckImage(data_image); in ResizeImage()
[all …]
DAndroid.bp21 "data_image.cpp",
/device/google/cuttlefish/tools/
Dupload_to_gce_and_run.py41 if args.data_image:
45 '--blank-data-image-mb %d ' % (args.data_image, args.blank_data_image_mb))
/device/google/cuttlefish/host/commands/assemble_cvd/
Ddisk_flags.cc56 DEFINE_string(data_image, "", "Location of the data partition image.");