├── .clang-format ├── .gitignore ├── Makefile ├── OWNERS ├── README.md ├── android-base ├── include │ └── android-base │ │ └── stringprintf.h └── stringprintf.cpp ├── append2simg.cpp ├── backed_block.cpp ├── backed_block.h ├── defs.h ├── img2simg.cpp ├── include └── sparse │ └── sparse.h ├── output_file.cpp ├── output_file.h ├── simg2img.cpp ├── simg2simg.cpp ├── simg_dump.py ├── sparse.cpp ├── sparse_crc32.cpp ├── sparse_crc32.h ├── sparse_defs.h ├── sparse_err.cpp ├── sparse_file.h ├── sparse_format.h └── sparse_read.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | ccross@google.com 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/README.md -------------------------------------------------------------------------------- /android-base/include/android-base/stringprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/android-base/include/android-base/stringprintf.h -------------------------------------------------------------------------------- /android-base/stringprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/android-base/stringprintf.cpp -------------------------------------------------------------------------------- /append2simg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/append2simg.cpp -------------------------------------------------------------------------------- /backed_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/backed_block.cpp -------------------------------------------------------------------------------- /backed_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/backed_block.h -------------------------------------------------------------------------------- /defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/defs.h -------------------------------------------------------------------------------- /img2simg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/img2simg.cpp -------------------------------------------------------------------------------- /include/sparse/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/include/sparse/sparse.h -------------------------------------------------------------------------------- /output_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/output_file.cpp -------------------------------------------------------------------------------- /output_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/output_file.h -------------------------------------------------------------------------------- /simg2img.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/simg2img.cpp -------------------------------------------------------------------------------- /simg2simg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/simg2simg.cpp -------------------------------------------------------------------------------- /simg_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/simg_dump.py -------------------------------------------------------------------------------- /sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/sparse.cpp -------------------------------------------------------------------------------- /sparse_crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/sparse_crc32.cpp -------------------------------------------------------------------------------- /sparse_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/sparse_crc32.h -------------------------------------------------------------------------------- /sparse_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/sparse_defs.h -------------------------------------------------------------------------------- /sparse_err.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/sparse_err.cpp -------------------------------------------------------------------------------- /sparse_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/sparse_file.h -------------------------------------------------------------------------------- /sparse_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/sparse_format.h -------------------------------------------------------------------------------- /sparse_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/android-simg2img/HEAD/sparse_read.cpp --------------------------------------------------------------------------------