├── .clang-format ├── .gitmodules ├── Android.bp ├── Android.mk ├── CleanSpec.mk ├── DataBase.cpp ├── DataBase.hpp ├── NOTICE ├── OWNERS ├── PREUPLOAD.cfg ├── README.md ├── adb_install.cpp ├── adb_install.h ├── applypatch ├── Android.bp ├── Android.mk ├── NOTICE ├── applypatch.cpp ├── applypatch_main.cpp ├── applypatch_modes.cpp ├── applypatch_modes.h ├── bspatch.cpp ├── freecache.cpp ├── imgdiff.cpp ├── imgdiff_main.cpp ├── imgpatch.cpp └── include │ └── applypatch │ ├── applypatch.h │ ├── imgdiff.h │ ├── imgdiff_image.h │ └── imgpatch.h ├── asn1_decoder.cpp ├── asn1_decoder.h ├── bmlutils ├── Android.mk ├── bmlutils.c └── bmlutils.h ├── boot_control ├── Android.mk └── boot_control.cpp ├── bootloader.cpp ├── bootloader.h ├── bootloader.hpp ├── bootloader_message ├── Android.bp ├── Android.mk ├── bootloader_message.cpp └── include │ └── bootloader_message │ └── bootloader_message.h ├── bootloader_pterodon ├── Android.mk ├── bootloader_message.cpp └── include │ └── bootloader_message │ └── bootloader_message.h ├── common.h ├── constants.h ├── default_device.cpp ├── device.cpp ├── device.h ├── device_driver.cpp ├── device_driver.hpp ├── digest ├── md5.c ├── md5.h ├── sha1.cpp └── sha1.h ├── edify ├── Android.bp ├── Android.mk ├── README.md ├── expr.cpp ├── include │ └── edify │ │ └── expr.h ├── lexer.ll ├── parser.yy └── yydefs.h ├── env_service.cpp ├── env_service.hpp ├── env_test.cpp ├── error_code.h ├── etc ├── init.rc └── mkshrc ├── fb2png ├── .gitignore ├── Android.mk ├── AndroidManifest.xml ├── COPYING ├── Makefile ├── adb_screenshoot.c ├── ascreenshooter.py ├── fb.c ├── fb.h ├── fb2png-jni.c ├── fb2png.c ├── fb2png.h ├── fb2png_main.c ├── img_process.c ├── img_process.h ├── jni │ └── Application.mk ├── libpng │ ├── include │ │ ├── png.h │ │ ├── pngconf.h │ │ └── pnglibconf.h │ └── lib │ │ └── libpng.a ├── log.h ├── main.c ├── run.sh └── view888 ├── flashutils ├── Android.mk ├── dump_image.c ├── erase_image.c ├── flash_image.c ├── flashutils.c └── flashutils.h ├── fonts ├── 12x22.png ├── 18x32.png ├── OFL.txt └── README ├── framework.cpp ├── framework.hpp ├── fs_manager.cpp ├── fs_manager.h ├── fuse_sdcard_provider.cpp ├── fuse_sdcard_provider.h ├── fuse_sideload.cpp ├── fuse_sideload.h ├── global_metadata.cpp ├── global_metadata.hpp ├── gui ├── libaroma │ ├── AUTHORS │ ├── Android.mk │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── android.toolchain.cmake │ ├── examples │ │ ├── libaroma_test.c │ │ ├── libaroma_test_graphonly.c │ │ ├── mods │ │ │ ├── bar_test.c │ │ │ ├── common_test.c │ │ │ └── tab_test.c │ │ ├── recovery │ │ │ ├── recovery.c │ │ │ ├── recovery.h │ │ │ ├── recovery_libs.c │ │ │ ├── recovery_mainmenu.c │ │ │ ├── recovery_usb.c │ │ │ └── res │ │ │ │ ├── bg │ │ │ │ └── sidebar.jpg │ │ │ │ ├── fonts │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── ico │ │ │ │ ├── add.png │ │ │ │ ├── android.png │ │ │ │ ├── apps.png │ │ │ │ ├── backup.png │ │ │ │ ├── delete.png │ │ │ │ ├── direction.png │ │ │ │ ├── done.png │ │ │ │ ├── error.png │ │ │ │ ├── folder.png │ │ │ │ ├── help.png │ │ │ │ ├── info.png │ │ │ │ ├── install.png │ │ │ │ ├── logs.png │ │ │ │ ├── partition.png │ │ │ │ ├── power.png │ │ │ │ ├── reboot.png │ │ │ │ ├── restore.png │ │ │ │ ├── settings.png │ │ │ │ ├── terminal.png │ │ │ │ ├── tools.png │ │ │ │ ├── usb.png │ │ │ │ └── wipe.png │ │ │ │ ├── libaroma_test │ │ │ │ ├── recovery.zip │ │ │ │ └── recoverytest.zip │ │ └── rt_test │ │ │ ├── app-template-2.nut │ │ │ ├── app-templete.txt │ │ │ ├── libaroma_squirrel.c │ │ │ ├── libaroma_squirrel.h │ │ │ ├── libaroma_squirrel_app.c │ │ │ ├── libaroma_squirrel_internal.h │ │ │ ├── libaroma_squirrel_utils.c │ │ │ ├── main.nut │ │ │ ├── main_app.nut │ │ │ ├── rt_test.c │ │ │ ├── test.nut │ │ │ └── worker-template.nut │ ├── include │ │ ├── aroma.h │ │ ├── aroma │ │ │ ├── controls │ │ │ │ ├── ctl_bar.h │ │ │ │ ├── ctl_button.h │ │ │ │ ├── ctl_fragment.h │ │ │ │ ├── ctl_image.h │ │ │ │ ├── ctl_label.h │ │ │ │ ├── ctl_list.h │ │ │ │ ├── ctl_pager.h │ │ │ │ ├── ctl_progress.h │ │ │ │ ├── ctl_scroll.h │ │ │ │ ├── ctl_tabs.h │ │ │ │ └── listitem │ │ │ │ │ ├── listitem_caption.h │ │ │ │ │ ├── listitem_check.h │ │ │ │ │ ├── listitem_divider.h │ │ │ │ │ ├── listitem_image.h │ │ │ │ │ ├── listitem_menu.h │ │ │ │ │ ├── listitem_option.h │ │ │ │ │ └── listitem_text.h │ │ │ ├── core.h │ │ │ ├── defs.h │ │ │ ├── graph │ │ │ │ ├── artworker.h │ │ │ │ ├── canvas.h │ │ │ │ ├── draw.h │ │ │ │ ├── engine.h │ │ │ │ ├── fb.h │ │ │ │ ├── image.h │ │ │ │ ├── jpeg.h │ │ │ │ ├── png.h │ │ │ │ ├── svg.h │ │ │ │ └── text.h │ │ │ ├── hid │ │ │ │ ├── hid.h │ │ │ │ └── messages.h │ │ │ ├── types.h │ │ │ ├── ui.h │ │ │ ├── ui │ │ │ │ ├── color_manager.h │ │ │ │ ├── control.h │ │ │ │ ├── dialog.h │ │ │ │ ├── window.h │ │ │ │ └── window_manager.h │ │ │ └── utils │ │ │ │ ├── array.h │ │ │ │ ├── json.h │ │ │ │ ├── minutf8.h │ │ │ │ ├── motions.h │ │ │ │ ├── stream.h │ │ │ │ ├── strings.h │ │ │ │ ├── system.h │ │ │ │ ├── time.h │ │ │ │ └── zip.h │ │ ├── aromart.h │ │ └── aromart │ │ │ └── aromart_core.h │ ├── libs │ │ ├── freetype │ │ │ ├── Android.mk │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── builds │ │ │ │ └── ft2unix.h │ │ │ ├── include │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftfntfmt.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── ftttdrv.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── autohint.h │ │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ │ ├── ftpic.h │ │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ │ ├── ftserv.h │ │ │ │ │ │ ├── ftstream.h │ │ │ │ │ │ ├── fttrace.h │ │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ ├── psaux.h │ │ │ │ │ │ ├── pshints.h │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ │ └── svwinfnt.h │ │ │ │ │ │ ├── sfnt.h │ │ │ │ │ │ ├── t1types.h │ │ │ │ │ │ └── tttypes.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ │ └── src │ │ │ │ ├── Jamfile │ │ │ │ ├── autofit │ │ │ │ ├── Jamfile │ │ │ │ ├── afangles.c │ │ │ │ ├── afangles.h │ │ │ │ ├── afblue.c │ │ │ │ ├── afblue.cin │ │ │ │ ├── afblue.dat │ │ │ │ ├── afblue.h │ │ │ │ ├── afblue.hin │ │ │ │ ├── afcjk.c │ │ │ │ ├── afcjk.h │ │ │ │ ├── afcover.h │ │ │ │ ├── afdummy.c │ │ │ │ ├── afdummy.h │ │ │ │ ├── aferrors.h │ │ │ │ ├── afglobal.c │ │ │ │ ├── afglobal.h │ │ │ │ ├── afhints.c │ │ │ │ ├── afhints.h │ │ │ │ ├── afindic.c │ │ │ │ ├── afindic.h │ │ │ │ ├── aflatin.c │ │ │ │ ├── aflatin.h │ │ │ │ ├── aflatin2.c │ │ │ │ ├── aflatin2.h │ │ │ │ ├── afloader.c │ │ │ │ ├── afloader.h │ │ │ │ ├── afmodule.c │ │ │ │ ├── afmodule.h │ │ │ │ ├── afpic.c │ │ │ │ ├── afpic.h │ │ │ │ ├── afranges.c │ │ │ │ ├── afranges.h │ │ │ │ ├── afscript.h │ │ │ │ ├── afstyles.h │ │ │ │ ├── aftypes.h │ │ │ │ ├── afwarp.c │ │ │ │ ├── afwarp.h │ │ │ │ ├── afwrtsys.h │ │ │ │ ├── autofit.c │ │ │ │ ├── hbshim.c │ │ │ │ ├── hbshim.h │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ │ ├── base │ │ │ │ ├── Jamfile │ │ │ │ ├── basepic.c │ │ │ │ ├── basepic.h │ │ │ │ ├── ftadvanc.c │ │ │ │ ├── ftapi.c │ │ │ │ ├── ftbase.c │ │ │ │ ├── ftbase.h │ │ │ │ ├── ftbbox.c │ │ │ │ ├── ftbdf.c │ │ │ │ ├── ftbitmap.c │ │ │ │ ├── ftcalc.c │ │ │ │ ├── ftcid.c │ │ │ │ ├── ftdbgmem.c │ │ │ │ ├── ftdebug.c │ │ │ │ ├── ftfntfmt.c │ │ │ │ ├── ftfstype.c │ │ │ │ ├── ftgasp.c │ │ │ │ ├── ftgloadr.c │ │ │ │ ├── ftglyph.c │ │ │ │ ├── ftgxval.c │ │ │ │ ├── ftinit.c │ │ │ │ ├── ftlcdfil.c │ │ │ │ ├── ftmac.c │ │ │ │ ├── ftmm.c │ │ │ │ ├── ftobjs.c │ │ │ │ ├── ftotval.c │ │ │ │ ├── ftoutln.c │ │ │ │ ├── ftpatent.c │ │ │ │ ├── ftpfr.c │ │ │ │ ├── ftpic.c │ │ │ │ ├── ftrfork.c │ │ │ │ ├── ftsnames.c │ │ │ │ ├── ftstream.c │ │ │ │ ├── ftstroke.c │ │ │ │ ├── ftsynth.c │ │ │ │ ├── ftsystem.c │ │ │ │ ├── fttrigon.c │ │ │ │ ├── fttype1.c │ │ │ │ ├── ftutil.c │ │ │ │ ├── ftwinfnt.c │ │ │ │ ├── md5.c │ │ │ │ ├── md5.h │ │ │ │ └── rules.mk │ │ │ │ ├── bdf │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── bdf.c │ │ │ │ ├── bdf.h │ │ │ │ ├── bdfdrivr.c │ │ │ │ ├── bdfdrivr.h │ │ │ │ ├── bdferror.h │ │ │ │ ├── bdflib.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ │ ├── bzip2 │ │ │ │ ├── Jamfile │ │ │ │ ├── ftbzip2.c │ │ │ │ └── rules.mk │ │ │ │ ├── cache │ │ │ │ ├── Jamfile │ │ │ │ ├── ftcache.c │ │ │ │ ├── ftcbasic.c │ │ │ │ ├── ftccache.c │ │ │ │ ├── ftccache.h │ │ │ │ ├── ftccback.h │ │ │ │ ├── ftccmap.c │ │ │ │ ├── ftcerror.h │ │ │ │ ├── ftcglyph.c │ │ │ │ ├── ftcglyph.h │ │ │ │ ├── ftcimage.c │ │ │ │ ├── ftcimage.h │ │ │ │ ├── ftcmanag.c │ │ │ │ ├── ftcmanag.h │ │ │ │ ├── ftcmru.c │ │ │ │ ├── ftcmru.h │ │ │ │ ├── ftcsbits.c │ │ │ │ ├── ftcsbits.h │ │ │ │ └── rules.mk │ │ │ │ ├── cff │ │ │ │ ├── Jamfile │ │ │ │ ├── cf2arrst.c │ │ │ │ ├── cf2arrst.h │ │ │ │ ├── cf2blues.c │ │ │ │ ├── cf2blues.h │ │ │ │ ├── cf2error.c │ │ │ │ ├── cf2error.h │ │ │ │ ├── cf2fixed.h │ │ │ │ ├── cf2font.c │ │ │ │ ├── cf2font.h │ │ │ │ ├── cf2ft.c │ │ │ │ ├── cf2ft.h │ │ │ │ ├── cf2glue.h │ │ │ │ ├── cf2hints.c │ │ │ │ ├── cf2hints.h │ │ │ │ ├── cf2intrp.c │ │ │ │ ├── cf2intrp.h │ │ │ │ ├── cf2read.c │ │ │ │ ├── cf2read.h │ │ │ │ ├── cf2stack.c │ │ │ │ ├── cf2stack.h │ │ │ │ ├── cf2types.h │ │ │ │ ├── cff.c │ │ │ │ ├── cffcmap.c │ │ │ │ ├── cffcmap.h │ │ │ │ ├── cffdrivr.c │ │ │ │ ├── cffdrivr.h │ │ │ │ ├── cfferrs.h │ │ │ │ ├── cffgload.c │ │ │ │ ├── cffgload.h │ │ │ │ ├── cffload.c │ │ │ │ ├── cffload.h │ │ │ │ ├── cffobjs.c │ │ │ │ ├── cffobjs.h │ │ │ │ ├── cffparse.c │ │ │ │ ├── cffparse.h │ │ │ │ ├── cffpic.c │ │ │ │ ├── cffpic.h │ │ │ │ ├── cfftoken.h │ │ │ │ ├── cfftypes.h │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ │ ├── cid │ │ │ │ ├── Jamfile │ │ │ │ ├── ciderrs.h │ │ │ │ ├── cidgload.c │ │ │ │ ├── cidgload.h │ │ │ │ ├── cidload.c │ │ │ │ ├── cidload.h │ │ │ │ ├── cidobjs.c │ │ │ │ ├── cidobjs.h │ │ │ │ ├── cidparse.c │ │ │ │ ├── cidparse.h │ │ │ │ ├── cidriver.c │ │ │ │ ├── cidriver.h │ │ │ │ ├── cidtoken.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── type1cid.c │ │ │ │ ├── gxvalid │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── gxvalid.c │ │ │ │ ├── gxvalid.h │ │ │ │ ├── gxvbsln.c │ │ │ │ ├── gxvcommn.c │ │ │ │ ├── gxvcommn.h │ │ │ │ ├── gxverror.h │ │ │ │ ├── gxvfeat.c │ │ │ │ ├── gxvfeat.h │ │ │ │ ├── gxvfgen.c │ │ │ │ ├── gxvjust.c │ │ │ │ ├── gxvkern.c │ │ │ │ ├── gxvlcar.c │ │ │ │ ├── gxvmod.c │ │ │ │ ├── gxvmod.h │ │ │ │ ├── gxvmort.c │ │ │ │ ├── gxvmort.h │ │ │ │ ├── gxvmort0.c │ │ │ │ ├── gxvmort1.c │ │ │ │ ├── gxvmort2.c │ │ │ │ ├── gxvmort4.c │ │ │ │ ├── gxvmort5.c │ │ │ │ ├── gxvmorx.c │ │ │ │ ├── gxvmorx.h │ │ │ │ ├── gxvmorx0.c │ │ │ │ ├── gxvmorx1.c │ │ │ │ ├── gxvmorx2.c │ │ │ │ ├── gxvmorx4.c │ │ │ │ ├── gxvmorx5.c │ │ │ │ ├── gxvopbd.c │ │ │ │ ├── gxvprop.c │ │ │ │ ├── gxvtrak.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ │ ├── gzip │ │ │ │ ├── Jamfile │ │ │ │ ├── adler32.c │ │ │ │ ├── ftgzip.c │ │ │ │ ├── infblock.c │ │ │ │ ├── infblock.h │ │ │ │ ├── infcodes.c │ │ │ │ ├── infcodes.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── infutil.c │ │ │ │ ├── infutil.h │ │ │ │ ├── rules.mk │ │ │ │ ├── zconf.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ │ ├── lzw │ │ │ │ ├── Jamfile │ │ │ │ ├── ftlzw.c │ │ │ │ ├── ftzopen.c │ │ │ │ ├── ftzopen.h │ │ │ │ └── rules.mk │ │ │ │ ├── otvalid │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── otvalid.c │ │ │ │ ├── otvalid.h │ │ │ │ ├── otvbase.c │ │ │ │ ├── otvcommn.c │ │ │ │ ├── otvcommn.h │ │ │ │ ├── otverror.h │ │ │ │ ├── otvgdef.c │ │ │ │ ├── otvgpos.c │ │ │ │ ├── otvgpos.h │ │ │ │ ├── otvgsub.c │ │ │ │ ├── otvjstf.c │ │ │ │ ├── otvmath.c │ │ │ │ ├── otvmod.c │ │ │ │ ├── otvmod.h │ │ │ │ └── rules.mk │ │ │ │ ├── pcf │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── module.mk │ │ │ │ ├── pcf.c │ │ │ │ ├── pcf.h │ │ │ │ ├── pcfdrivr.c │ │ │ │ ├── pcfdrivr.h │ │ │ │ ├── pcferror.h │ │ │ │ ├── pcfread.c │ │ │ │ ├── pcfread.h │ │ │ │ ├── pcfutil.c │ │ │ │ ├── pcfutil.h │ │ │ │ └── rules.mk │ │ │ │ ├── pfr │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── pfr.c │ │ │ │ ├── pfrcmap.c │ │ │ │ ├── pfrcmap.h │ │ │ │ ├── pfrdrivr.c │ │ │ │ ├── pfrdrivr.h │ │ │ │ ├── pfrerror.h │ │ │ │ ├── pfrgload.c │ │ │ │ ├── pfrgload.h │ │ │ │ ├── pfrload.c │ │ │ │ ├── pfrload.h │ │ │ │ ├── pfrobjs.c │ │ │ │ ├── pfrobjs.h │ │ │ │ ├── pfrsbit.c │ │ │ │ ├── pfrsbit.h │ │ │ │ ├── pfrtypes.h │ │ │ │ └── rules.mk │ │ │ │ ├── psaux │ │ │ │ ├── Jamfile │ │ │ │ ├── afmparse.c │ │ │ │ ├── afmparse.h │ │ │ │ ├── module.mk │ │ │ │ ├── psaux.c │ │ │ │ ├── psauxerr.h │ │ │ │ ├── psauxmod.c │ │ │ │ ├── psauxmod.h │ │ │ │ ├── psconv.c │ │ │ │ ├── psconv.h │ │ │ │ ├── psobjs.c │ │ │ │ ├── psobjs.h │ │ │ │ ├── rules.mk │ │ │ │ ├── t1cmap.c │ │ │ │ ├── t1cmap.h │ │ │ │ ├── t1decode.c │ │ │ │ └── t1decode.h │ │ │ │ ├── pshinter │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── pshalgo.c │ │ │ │ ├── pshalgo.h │ │ │ │ ├── pshglob.c │ │ │ │ ├── pshglob.h │ │ │ │ ├── pshinter.c │ │ │ │ ├── pshmod.c │ │ │ │ ├── pshmod.h │ │ │ │ ├── pshnterr.h │ │ │ │ ├── pshpic.c │ │ │ │ ├── pshpic.h │ │ │ │ ├── pshrec.c │ │ │ │ ├── pshrec.h │ │ │ │ └── rules.mk │ │ │ │ ├── psnames │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── psmodule.c │ │ │ │ ├── psmodule.h │ │ │ │ ├── psnamerr.h │ │ │ │ ├── psnames.c │ │ │ │ ├── pspic.c │ │ │ │ ├── pspic.h │ │ │ │ ├── pstables.h │ │ │ │ └── rules.mk │ │ │ │ ├── raster │ │ │ │ ├── Jamfile │ │ │ │ ├── ftmisc.h │ │ │ │ ├── ftraster.c │ │ │ │ ├── ftraster.h │ │ │ │ ├── ftrend1.c │ │ │ │ ├── ftrend1.h │ │ │ │ ├── module.mk │ │ │ │ ├── raster.c │ │ │ │ ├── rasterrs.h │ │ │ │ ├── rastpic.c │ │ │ │ ├── rastpic.h │ │ │ │ └── rules.mk │ │ │ │ ├── sfnt │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── pngshim.c │ │ │ │ ├── pngshim.h │ │ │ │ ├── rules.mk │ │ │ │ ├── sfdriver.c │ │ │ │ ├── sfdriver.h │ │ │ │ ├── sferrors.h │ │ │ │ ├── sfnt.c │ │ │ │ ├── sfntpic.c │ │ │ │ ├── sfntpic.h │ │ │ │ ├── sfobjs.c │ │ │ │ ├── sfobjs.h │ │ │ │ ├── ttbdf.c │ │ │ │ ├── ttbdf.h │ │ │ │ ├── ttcmap.c │ │ │ │ ├── ttcmap.h │ │ │ │ ├── ttcmapc.h │ │ │ │ ├── ttkern.c │ │ │ │ ├── ttkern.h │ │ │ │ ├── ttload.c │ │ │ │ ├── ttload.h │ │ │ │ ├── ttmtx.c │ │ │ │ ├── ttmtx.h │ │ │ │ ├── ttpost.c │ │ │ │ ├── ttpost.h │ │ │ │ ├── ttsbit.c │ │ │ │ └── ttsbit.h │ │ │ │ ├── smooth │ │ │ │ ├── Jamfile │ │ │ │ ├── ftgrays.c │ │ │ │ ├── ftgrays.h │ │ │ │ ├── ftsmerrs.h │ │ │ │ ├── ftsmooth.c │ │ │ │ ├── ftsmooth.h │ │ │ │ ├── ftspic.c │ │ │ │ ├── ftspic.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── smooth.c │ │ │ │ ├── tools │ │ │ │ ├── Jamfile │ │ │ │ ├── afblue.pl │ │ │ │ ├── apinames.c │ │ │ │ ├── chktrcmp.py │ │ │ │ ├── cordic.py │ │ │ │ ├── docmaker │ │ │ │ │ ├── content.py │ │ │ │ │ ├── docbeauty.py │ │ │ │ │ ├── docmaker.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── sources.py │ │ │ │ │ ├── tohtml.py │ │ │ │ │ └── utils.py │ │ │ │ ├── ftfuzzer │ │ │ │ │ ├── README │ │ │ │ │ ├── ftfuzzer.cc │ │ │ │ │ ├── ftmutator.cc │ │ │ │ │ └── runinput.cc │ │ │ │ ├── ftrandom │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ └── ftrandom.c │ │ │ │ ├── glnames.py │ │ │ │ ├── no-copyright │ │ │ │ ├── test_afm.c │ │ │ │ ├── test_bbox.c │ │ │ │ ├── test_trig.c │ │ │ │ ├── update-copyright │ │ │ │ └── update-copyright-year │ │ │ │ ├── truetype │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── truetype.c │ │ │ │ ├── ttdriver.c │ │ │ │ ├── ttdriver.h │ │ │ │ ├── tterrors.h │ │ │ │ ├── ttgload.c │ │ │ │ ├── ttgload.h │ │ │ │ ├── ttgxvar.c │ │ │ │ ├── ttgxvar.h │ │ │ │ ├── ttinterp.c │ │ │ │ ├── ttinterp.h │ │ │ │ ├── ttobjs.c │ │ │ │ ├── ttobjs.h │ │ │ │ ├── ttpic.c │ │ │ │ ├── ttpic.h │ │ │ │ ├── ttpload.c │ │ │ │ ├── ttpload.h │ │ │ │ ├── ttsubpix.c │ │ │ │ └── ttsubpix.h │ │ │ │ ├── type1 │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── t1afm.c │ │ │ │ ├── t1afm.h │ │ │ │ ├── t1driver.c │ │ │ │ ├── t1driver.h │ │ │ │ ├── t1errors.h │ │ │ │ ├── t1gload.c │ │ │ │ ├── t1gload.h │ │ │ │ ├── t1load.c │ │ │ │ ├── t1load.h │ │ │ │ ├── t1objs.c │ │ │ │ ├── t1objs.h │ │ │ │ ├── t1parse.c │ │ │ │ ├── t1parse.h │ │ │ │ ├── t1tokens.h │ │ │ │ └── type1.c │ │ │ │ ├── type42 │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── t42drivr.c │ │ │ │ ├── t42drivr.h │ │ │ │ ├── t42error.h │ │ │ │ ├── t42objs.c │ │ │ │ ├── t42objs.h │ │ │ │ ├── t42parse.c │ │ │ │ ├── t42parse.h │ │ │ │ ├── t42types.h │ │ │ │ └── type42.c │ │ │ │ └── winfonts │ │ │ │ ├── Jamfile │ │ │ │ ├── fnterrs.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── winfnt.c │ │ │ │ └── winfnt.h │ │ ├── harfbuzz-ng │ │ │ ├── AUTHORS │ │ │ ├── Android.mk │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── README.md │ │ │ ├── THANKS │ │ │ ├── TODO │ │ │ └── src │ │ │ │ ├── hb-atomic-private.hh │ │ │ │ ├── hb-blob.cc │ │ │ │ ├── hb-blob.h │ │ │ │ ├── hb-buffer-deserialize-json.hh │ │ │ │ ├── hb-buffer-deserialize-text.hh │ │ │ │ ├── hb-buffer-private.hh │ │ │ │ ├── hb-buffer-serialize.cc │ │ │ │ ├── hb-buffer.cc │ │ │ │ ├── hb-buffer.h │ │ │ │ ├── hb-cache-private.hh │ │ │ │ ├── hb-common.cc │ │ │ │ ├── hb-common.h │ │ │ │ ├── hb-coretext.cc │ │ │ │ ├── hb-coretext.h │ │ │ │ ├── hb-deprecated.h │ │ │ │ ├── hb-face-private.hh │ │ │ │ ├── hb-face.cc │ │ │ │ ├── hb-face.h │ │ │ │ ├── hb-fallback-shape.cc │ │ │ │ ├── hb-font-private.hh │ │ │ │ ├── hb-font.cc │ │ │ │ ├── hb-font.h │ │ │ │ ├── hb-ft.cc │ │ │ │ ├── hb-ft.h │ │ │ │ ├── hb-glib.cc │ │ │ │ ├── hb-glib.h │ │ │ │ ├── hb-gobject-structs.cc │ │ │ │ ├── hb-gobject-structs.h │ │ │ │ ├── hb-gobject.h │ │ │ │ ├── hb-graphite2.cc │ │ │ │ ├── hb-graphite2.h │ │ │ │ ├── hb-icu.cc │ │ │ │ ├── hb-icu.h │ │ │ │ ├── hb-mutex-private.hh │ │ │ │ ├── hb-object-private.hh │ │ │ │ ├── hb-open-file-private.hh │ │ │ │ ├── hb-open-type-private.hh │ │ │ │ ├── hb-ot-cmap-table.hh │ │ │ │ ├── hb-ot-font.cc │ │ │ │ ├── hb-ot-font.h │ │ │ │ ├── hb-ot-head-table.hh │ │ │ │ ├── hb-ot-hhea-table.hh │ │ │ │ ├── hb-ot-hmtx-table.hh │ │ │ │ ├── hb-ot-layout-common-private.hh │ │ │ │ ├── hb-ot-layout-gdef-table.hh │ │ │ │ ├── hb-ot-layout-gpos-table.hh │ │ │ │ ├── hb-ot-layout-gsub-table.hh │ │ │ │ ├── hb-ot-layout-gsubgpos-private.hh │ │ │ │ ├── hb-ot-layout-jstf-table.hh │ │ │ │ ├── hb-ot-layout-private.hh │ │ │ │ ├── hb-ot-layout.cc │ │ │ │ ├── hb-ot-layout.h │ │ │ │ ├── hb-ot-map-private.hh │ │ │ │ ├── hb-ot-map.cc │ │ │ │ ├── hb-ot-maxp-table.hh │ │ │ │ ├── hb-ot-name-table.hh │ │ │ │ ├── hb-ot-shape-complex-arabic-fallback.hh │ │ │ │ ├── hb-ot-shape-complex-arabic-table.hh │ │ │ │ ├── hb-ot-shape-complex-arabic-win1256.hh │ │ │ │ ├── hb-ot-shape-complex-arabic.cc │ │ │ │ ├── hb-ot-shape-complex-default.cc │ │ │ │ ├── hb-ot-shape-complex-hangul.cc │ │ │ │ ├── hb-ot-shape-complex-hebrew.cc │ │ │ │ ├── hb-ot-shape-complex-indic-machine.hh │ │ │ │ ├── hb-ot-shape-complex-indic-private.hh │ │ │ │ ├── hb-ot-shape-complex-indic-table.cc │ │ │ │ ├── hb-ot-shape-complex-indic.cc │ │ │ │ ├── hb-ot-shape-complex-myanmar-machine.hh │ │ │ │ ├── hb-ot-shape-complex-myanmar.cc │ │ │ │ ├── hb-ot-shape-complex-private.hh │ │ │ │ ├── hb-ot-shape-complex-sea-machine.hh │ │ │ │ ├── hb-ot-shape-complex-sea.cc │ │ │ │ ├── hb-ot-shape-complex-thai.cc │ │ │ │ ├── hb-ot-shape-complex-tibetan.cc │ │ │ │ ├── hb-ot-shape-fallback-private.hh │ │ │ │ ├── hb-ot-shape-fallback.cc │ │ │ │ ├── hb-ot-shape-normalize-private.hh │ │ │ │ ├── hb-ot-shape-normalize.cc │ │ │ │ ├── hb-ot-shape-private.hh │ │ │ │ ├── hb-ot-shape.cc │ │ │ │ ├── hb-ot-shape.h │ │ │ │ ├── hb-ot-tag.cc │ │ │ │ ├── hb-ot-tag.h │ │ │ │ ├── hb-ot.h │ │ │ │ ├── hb-private.hh │ │ │ │ ├── hb-set-private.hh │ │ │ │ ├── hb-set.cc │ │ │ │ ├── hb-set.h │ │ │ │ ├── hb-shape-plan-private.hh │ │ │ │ ├── hb-shape-plan.cc │ │ │ │ ├── hb-shape-plan.h │ │ │ │ ├── hb-shape.cc │ │ │ │ ├── hb-shape.h │ │ │ │ ├── hb-shaper-impl-private.hh │ │ │ │ ├── hb-shaper-list.hh │ │ │ │ ├── hb-shaper-private.hh │ │ │ │ ├── hb-shaper.cc │ │ │ │ ├── hb-ucdn.cc │ │ │ │ ├── hb-ucdn │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ucdn.c │ │ │ │ ├── ucdn.h │ │ │ │ └── unicodedata_db.h │ │ │ │ ├── hb-unicode-private.hh │ │ │ │ ├── hb-unicode.cc │ │ │ │ ├── hb-unicode.h │ │ │ │ ├── hb-uniscribe.cc │ │ │ │ ├── hb-uniscribe.h │ │ │ │ ├── hb-utf-private.hh │ │ │ │ ├── hb-version.h │ │ │ │ ├── hb-warning.cc │ │ │ │ ├── hb.h │ │ │ │ ├── main.cc │ │ │ │ ├── test-buffer-serialize.cc │ │ │ │ ├── test-size-params.cc │ │ │ │ ├── test-would-substitute.cc │ │ │ │ └── test.cc │ │ ├── jpeg-turbo │ │ │ ├── Android.mk │ │ │ ├── BUILDING.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLog.txt │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── README-turbo.txt │ │ │ ├── acinclude.m4 │ │ │ ├── bmp.c │ │ │ ├── bmp.h │ │ │ ├── cderror.h │ │ │ ├── cdjpeg.c │ │ │ ├── cdjpeg.h │ │ │ ├── cjpeg.1 │ │ │ ├── cjpeg.c │ │ │ ├── coderules.txt │ │ │ ├── configure.ac │ │ │ ├── djpeg.1 │ │ │ ├── djpeg.c │ │ │ ├── doxygen.config │ │ │ ├── example.c │ │ │ ├── jaricom.c │ │ │ ├── jcapimin.c │ │ │ ├── jcapistd.c │ │ │ ├── jcarith.c │ │ │ ├── jccoefct.c │ │ │ ├── jccolext.c │ │ │ ├── jccolor.c │ │ │ ├── jcdctmgr.c │ │ │ ├── jchuff.c │ │ │ ├── jchuff.h │ │ │ ├── jcinit.c │ │ │ ├── jcmainct.c │ │ │ ├── jcmarker.c │ │ │ ├── jcmaster.c │ │ │ ├── jcomapi.c │ │ │ ├── jconfig.h │ │ │ ├── jconfig.h.in │ │ │ ├── jconfig.txt │ │ │ ├── jcparam.c │ │ │ ├── jcphuff.c │ │ │ ├── jcprepct.c │ │ │ ├── jcsample.c │ │ │ ├── jcstest.c │ │ │ ├── jctrans.c │ │ │ ├── jdapimin.c │ │ │ ├── jdapistd.c │ │ │ ├── jdarith.c │ │ │ ├── jdatadst-tj.c │ │ │ ├── jdatadst.c │ │ │ ├── jdatasrc-tj.c │ │ │ ├── jdatasrc.c │ │ │ ├── jdcoefct.c │ │ │ ├── jdcolext.c │ │ │ ├── jdcolor.c │ │ │ ├── jdct.h │ │ │ ├── jddctmgr.c │ │ │ ├── jdhuff.c │ │ │ ├── jdhuff.h │ │ │ ├── jdinput.c │ │ │ ├── jdmainct.c │ │ │ ├── jdmarker.c │ │ │ ├── jdmaster.c │ │ │ ├── jdmerge.c │ │ │ ├── jdmrgext.c │ │ │ ├── jdphuff.c │ │ │ ├── jdpostct.c │ │ │ ├── jdsample.c │ │ │ ├── jdtrans.c │ │ │ ├── jerror.c │ │ │ ├── jerror.h │ │ │ ├── jfdctflt.c │ │ │ ├── jfdctfst.c │ │ │ ├── jfdctint.c │ │ │ ├── jidctflt.c │ │ │ ├── jidctfst.c │ │ │ ├── jidctint.c │ │ │ ├── jidctred.c │ │ │ ├── jinclude.h │ │ │ ├── jmemmgr.c │ │ │ ├── jmemnobs.c │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpegcomp.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ ├── jpegtran.1 │ │ │ ├── jpegtran.c │ │ │ ├── jquant1.c │ │ │ ├── jquant2.c │ │ │ ├── jsimd.h │ │ │ ├── jsimd_none.c │ │ │ ├── jsimddct.h │ │ │ ├── jutils.c │ │ │ ├── jversion.h │ │ │ ├── libjpeg.map.in │ │ │ ├── libjpeg.txt │ │ │ ├── rdbmp.c │ │ │ ├── rdcolmap.c │ │ │ ├── rdgif.c │ │ │ ├── rdjpgcom.1 │ │ │ ├── rdjpgcom.c │ │ │ ├── rdppm.c │ │ │ ├── rdrle.c │ │ │ ├── rdswitch.c │ │ │ ├── rdtarga.c │ │ │ ├── simd │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── jcclrmmx.asm │ │ │ │ ├── jcclrss2-64.asm │ │ │ │ ├── jcclrss2.asm │ │ │ │ ├── jccolmmx.asm │ │ │ │ ├── jccolss2-64.asm │ │ │ │ ├── jccolss2.asm │ │ │ │ ├── jcgrammx.asm │ │ │ │ ├── jcgrass2-64.asm │ │ │ │ ├── jcgrass2.asm │ │ │ │ ├── jcgrymmx.asm │ │ │ │ ├── jcgryss2-64.asm │ │ │ │ ├── jcgryss2.asm │ │ │ │ ├── jcolsamp.inc │ │ │ │ ├── jcqnt3dn.asm │ │ │ │ ├── jcqntmmx.asm │ │ │ │ ├── jcqnts2f-64.asm │ │ │ │ ├── jcqnts2f.asm │ │ │ │ ├── jcqnts2i-64.asm │ │ │ │ ├── jcqnts2i.asm │ │ │ │ ├── jcqntsse.asm │ │ │ │ ├── jcsammmx.asm │ │ │ │ ├── jcsamss2-64.asm │ │ │ │ ├── jcsamss2.asm │ │ │ │ ├── jdclrmmx.asm │ │ │ │ ├── jdclrss2-64.asm │ │ │ │ ├── jdclrss2.asm │ │ │ │ ├── jdcolmmx.asm │ │ │ │ ├── jdcolss2-64.asm │ │ │ │ ├── jdcolss2.asm │ │ │ │ ├── jdct.inc │ │ │ │ ├── jdmermmx.asm │ │ │ │ ├── jdmerss2-64.asm │ │ │ │ ├── jdmerss2.asm │ │ │ │ ├── jdmrgmmx.asm │ │ │ │ ├── jdmrgss2-64.asm │ │ │ │ ├── jdmrgss2.asm │ │ │ │ ├── jdsammmx.asm │ │ │ │ ├── jdsamss2-64.asm │ │ │ │ ├── jdsamss2.asm │ │ │ │ ├── jf3dnflt.asm │ │ │ │ ├── jfmmxfst.asm │ │ │ │ ├── jfmmxint.asm │ │ │ │ ├── jfss2fst-64.asm │ │ │ │ ├── jfss2fst.asm │ │ │ │ ├── jfss2int-64.asm │ │ │ │ ├── jfss2int.asm │ │ │ │ ├── jfsseflt-64.asm │ │ │ │ ├── jfsseflt.asm │ │ │ │ ├── ji3dnflt.asm │ │ │ │ ├── jimmxfst.asm │ │ │ │ ├── jimmxint.asm │ │ │ │ ├── jimmxred.asm │ │ │ │ ├── jiss2flt-64.asm │ │ │ │ ├── jiss2flt.asm │ │ │ │ ├── jiss2fst-64.asm │ │ │ │ ├── jiss2fst.asm │ │ │ │ ├── jiss2int-64.asm │ │ │ │ ├── jiss2int.asm │ │ │ │ ├── jiss2red-64.asm │ │ │ │ ├── jiss2red.asm │ │ │ │ ├── jisseflt.asm │ │ │ │ ├── jsimd.h │ │ │ │ ├── jsimd_arm.c │ │ │ │ ├── jsimd_arm_neon.S │ │ │ │ ├── jsimd_i386.c │ │ │ │ ├── jsimd_mips.c │ │ │ │ ├── jsimd_mips_dspr2.S │ │ │ │ ├── jsimd_mips_dspr2_asm.h │ │ │ │ ├── jsimd_x86_64.c │ │ │ │ ├── jsimdcfg.inc.h │ │ │ │ ├── jsimdcpu.asm │ │ │ │ ├── jsimdext.inc │ │ │ │ └── nasm_lt.sh │ │ │ ├── structure.txt │ │ │ ├── tjbench.c │ │ │ ├── tjbenchtest.in │ │ │ ├── tjbenchtest.java.in │ │ │ ├── tjexampletest.in │ │ │ ├── tjunittest.c │ │ │ ├── tjutil.c │ │ │ ├── tjutil.h │ │ │ ├── transupp.c │ │ │ ├── transupp.h │ │ │ ├── turbojpeg-jni.c │ │ │ ├── turbojpeg-mapfile │ │ │ ├── turbojpeg-mapfile.jni │ │ │ ├── turbojpeg.c │ │ │ ├── turbojpeg.h │ │ │ ├── usage.txt │ │ │ ├── wizard.txt │ │ │ ├── wrbmp.c │ │ │ ├── wrgif.c │ │ │ ├── wrjpgcom.1 │ │ │ ├── wrjpgcom.c │ │ │ ├── wrppm.c │ │ │ ├── wrrle.c │ │ │ └── wrtarga.c │ │ ├── jpeg │ │ │ ├── Android.mk │ │ │ ├── CMakeLists.txt │ │ │ ├── CleanSpec.mk │ │ │ ├── ansi2knr.c │ │ │ ├── armv6_idct.S │ │ │ ├── cderror.h │ │ │ ├── cdjpeg.c │ │ │ ├── cdjpeg.h │ │ │ ├── cjpeg.c │ │ │ ├── ckconfig.c │ │ │ ├── djpeg.c │ │ │ ├── example.c │ │ │ ├── jcapimin.c │ │ │ ├── jcapistd.c │ │ │ ├── jccoefct.c │ │ │ ├── jccolor.c │ │ │ ├── jcdctmgr.c │ │ │ ├── jchuff.c │ │ │ ├── jchuff.h │ │ │ ├── jcinit.c │ │ │ ├── jcmainct.c │ │ │ ├── jcmarker.c │ │ │ ├── jcmaster.c │ │ │ ├── jcomapi.c │ │ │ ├── jconfig.h │ │ │ ├── jcparam.c │ │ │ ├── jcphuff.c │ │ │ ├── jcprepct.c │ │ │ ├── jcsample.c │ │ │ ├── jctrans.c │ │ │ ├── jdapimin.c │ │ │ ├── jdapistd.c │ │ │ ├── jdatadst.c │ │ │ ├── jdatasrc.c │ │ │ ├── jdcoefct.c │ │ │ ├── jdcolor.c │ │ │ ├── jdct.h │ │ │ ├── jddctmgr.c │ │ │ ├── jdhuff.c │ │ │ ├── jdhuff.h │ │ │ ├── jdinput.c │ │ │ ├── jdmainct.c │ │ │ ├── jdmarker.c │ │ │ ├── jdmaster.c │ │ │ ├── jdmerge.c │ │ │ ├── jdphuff.c │ │ │ ├── jdpostct.c │ │ │ ├── jdsample.c │ │ │ ├── jdtrans.c │ │ │ ├── jerror.c │ │ │ ├── jerror.h │ │ │ ├── jfdctflt.c │ │ │ ├── jfdctfst.c │ │ │ ├── jfdctint.c │ │ │ ├── jidctflt.c │ │ │ ├── jidctfst.c │ │ │ ├── jidctint.c │ │ │ ├── jidctintelsse.c │ │ │ ├── jidctred.c │ │ │ ├── jinclude.h │ │ │ ├── jmem-android.c │ │ │ ├── jmem-ashmem.c │ │ │ ├── jmemansi.c │ │ │ ├── jmemdos.c │ │ │ ├── jmemdosa.asm │ │ │ ├── jmemmac.c │ │ │ ├── jmemmgr.c │ │ │ ├── jmemname.c │ │ │ ├── jmemnobs.c │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ ├── jpegtran.c │ │ │ ├── jquant1.c │ │ │ ├── jquant2.c │ │ │ ├── jsimd_arm_neon.S │ │ │ ├── jsimd_neon.c │ │ │ ├── jsimd_neon.h │ │ │ ├── jutils.c │ │ │ ├── jversion.h │ │ │ ├── mips_idct_le.S │ │ │ ├── mips_jidctfst.c │ │ │ ├── rdbmp.c │ │ │ ├── rdcolmap.c │ │ │ ├── rdgif.c │ │ │ ├── rdjpgcom.c │ │ │ ├── rdppm.c │ │ │ ├── rdrle.c │ │ │ ├── rdswitch.c │ │ │ ├── rdtarga.c │ │ │ ├── transupp.c │ │ │ ├── transupp.h │ │ │ ├── wrbmp.c │ │ │ ├── wrgif.c │ │ │ ├── wrjpgcom.c │ │ │ ├── wrppm.c │ │ │ ├── wrrle.c │ │ │ └── wrtarga.c │ │ ├── minzip │ │ │ ├── Android.mk │ │ │ ├── Bits.h │ │ │ ├── CMakeLists.txt │ │ │ ├── DirUtil.c │ │ │ ├── DirUtil.h │ │ │ ├── Hash.c │ │ │ ├── Hash.h │ │ │ ├── Inlines.c │ │ │ ├── Log.h │ │ │ ├── SysUtil.c │ │ │ ├── SysUtil.h │ │ │ ├── Zip.c │ │ │ ├── Zip.h │ │ │ ├── inline_magic.h │ │ │ └── safe_iop.h │ │ ├── png │ │ │ ├── Android.mk │ │ │ ├── CMakeLists.txt │ │ │ ├── arm │ │ │ │ ├── arm_init.c │ │ │ │ ├── filter_neon.S │ │ │ │ └── filter_neon_intrinsics.c │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── pngdebug.h │ │ │ ├── pngerror.c │ │ │ ├── pngget.c │ │ │ ├── pnginfo.h │ │ │ ├── pnglibconf.h │ │ │ ├── pngmem.c │ │ │ ├── pngpread.c │ │ │ ├── pngpriv.h │ │ │ ├── pngread.c │ │ │ ├── pngrio.c │ │ │ ├── pngrtran.c │ │ │ ├── pngrutil.c │ │ │ ├── pngset.c │ │ │ ├── pngstruct.h │ │ │ ├── pngtest.c │ │ │ ├── pngtrans.c │ │ │ ├── pngusr.h │ │ │ ├── pngwio.c │ │ │ ├── pngwrite.c │ │ │ ├── pngwtran.c │ │ │ └── pngwutil.c │ │ ├── squirrel │ │ │ ├── CMakeLists.txt │ │ │ ├── COMPILE │ │ │ ├── COPYRIGHT │ │ │ ├── HISTORY │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── doc │ │ │ │ ├── sqstdlib3.chm │ │ │ │ ├── sqstdlib3.chw │ │ │ │ ├── sqstdlib3.pdf │ │ │ │ ├── squirrel3.chm │ │ │ │ ├── squirrel3.chw │ │ │ │ └── squirrel3.pdf │ │ │ ├── etc │ │ │ │ ├── minimal.c │ │ │ │ └── test.nut │ │ │ ├── include │ │ │ │ ├── sqstdaux.h │ │ │ │ ├── sqstdblob.h │ │ │ │ ├── sqstdio.h │ │ │ │ ├── sqstdmath.h │ │ │ │ ├── sqstdstring.h │ │ │ │ ├── sqstdsystem.h │ │ │ │ └── squirrel.h │ │ │ ├── samples │ │ │ │ ├── ackermann.nut │ │ │ │ ├── array.nut │ │ │ │ ├── class.nut │ │ │ │ ├── classattributes.nut │ │ │ │ ├── coroutines.nut │ │ │ │ ├── delegation.nut │ │ │ │ ├── fibonacci.nut │ │ │ │ ├── flow.nut │ │ │ │ ├── generators.nut │ │ │ │ ├── hello.nut │ │ │ │ ├── list.nut │ │ │ │ ├── loops.nut │ │ │ │ ├── matrix.nut │ │ │ │ ├── metamethods.nut │ │ │ │ ├── methcall.nut │ │ │ │ └── tailstate.nut │ │ │ ├── sq │ │ │ │ ├── Makefile │ │ │ │ ├── sq.c │ │ │ │ └── sq.dsp │ │ │ ├── sqstdlib │ │ │ │ ├── Makefile │ │ │ │ ├── sqstdaux.cpp │ │ │ │ ├── sqstdblob.cpp │ │ │ │ ├── sqstdblobimpl.h │ │ │ │ ├── sqstdio.cpp │ │ │ │ ├── sqstdlib.dsp │ │ │ │ ├── sqstdmath.cpp │ │ │ │ ├── sqstdrex.cpp │ │ │ │ ├── sqstdstream.cpp │ │ │ │ ├── sqstdstream.h │ │ │ │ ├── sqstdstring.cpp │ │ │ │ └── sqstdsystem.cpp │ │ │ ├── squirrel.dsw │ │ │ └── squirrel │ │ │ │ ├── Makefile │ │ │ │ ├── sqapi.cpp │ │ │ │ ├── sqarray.h │ │ │ │ ├── sqbaselib.cpp │ │ │ │ ├── sqclass.cpp │ │ │ │ ├── sqclass.h │ │ │ │ ├── sqclosure.h │ │ │ │ ├── sqcompiler.cpp │ │ │ │ ├── sqcompiler.h │ │ │ │ ├── sqdebug.cpp │ │ │ │ ├── sqfuncproto.h │ │ │ │ ├── sqfuncstate.cpp │ │ │ │ ├── sqfuncstate.h │ │ │ │ ├── sqlexer.cpp │ │ │ │ ├── sqlexer.h │ │ │ │ ├── sqmem.cpp │ │ │ │ ├── sqobject.cpp │ │ │ │ ├── sqobject.h │ │ │ │ ├── sqopcodes.h │ │ │ │ ├── sqpcheader.h │ │ │ │ ├── sqstate.cpp │ │ │ │ ├── sqstate.h │ │ │ │ ├── sqstring.h │ │ │ │ ├── sqtable.cpp │ │ │ │ ├── sqtable.h │ │ │ │ ├── squirrel.dsp │ │ │ │ ├── squserdata.h │ │ │ │ ├── squtils.h │ │ │ │ ├── sqvm.cpp │ │ │ │ └── sqvm.h │ │ └── zlib │ │ │ ├── Android.mk │ │ │ ├── CMakeLists.txt │ │ │ ├── CleanSpec.mk │ │ │ ├── MODULE_LICENSE_BSD_LIKE │ │ │ ├── NOTICE │ │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLog │ │ │ ├── FAQ │ │ │ ├── INDEX │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── adler32.c │ │ │ ├── amiga │ │ │ │ ├── Makefile.pup │ │ │ │ └── Makefile.sas │ │ │ ├── as400 │ │ │ │ ├── bndsrc │ │ │ │ ├── compile.clp │ │ │ │ ├── readme.txt │ │ │ │ └── zlib.inc │ │ │ ├── compress.c │ │ │ ├── configure │ │ │ ├── contrib │ │ │ │ ├── README.contrib │ │ │ │ ├── ada │ │ │ │ │ ├── buffer_demo.adb │ │ │ │ │ ├── mtest.adb │ │ │ │ │ ├── read.adb │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── test.adb │ │ │ │ │ ├── zlib-streams.adb │ │ │ │ │ ├── zlib-streams.ads │ │ │ │ │ ├── zlib-thin.adb │ │ │ │ │ ├── zlib-thin.ads │ │ │ │ │ ├── zlib.adb │ │ │ │ │ ├── zlib.ads │ │ │ │ │ └── zlib.gpr │ │ │ │ ├── amd64 │ │ │ │ │ └── amd64-match.S │ │ │ │ ├── asm686 │ │ │ │ │ ├── README.686 │ │ │ │ │ └── match.S │ │ │ │ ├── blast │ │ │ │ │ ├── README │ │ │ │ │ ├── blast.c │ │ │ │ │ ├── blast.h │ │ │ │ │ ├── test.pk │ │ │ │ │ └── test.txt │ │ │ │ ├── delphi │ │ │ │ │ ├── ZLib.pas │ │ │ │ │ ├── ZLibConst.pas │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── zlibd32.mak │ │ │ │ ├── dotzlib │ │ │ │ │ ├── DotZLib.build │ │ │ │ │ ├── DotZLib.chm │ │ │ │ │ ├── DotZLib.sln │ │ │ │ │ ├── DotZLib │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ │ │ ├── CircularBuffer.cs │ │ │ │ │ │ ├── CodecBase.cs │ │ │ │ │ │ ├── Deflater.cs │ │ │ │ │ │ ├── DotZLib.cs │ │ │ │ │ │ ├── DotZLib.csproj │ │ │ │ │ │ ├── GZipStream.cs │ │ │ │ │ │ ├── Inflater.cs │ │ │ │ │ │ └── UnitTests.cs │ │ │ │ │ ├── LICENSE_1_0.txt │ │ │ │ │ └── readme.txt │ │ │ │ ├── gcc_gvmat64 │ │ │ │ │ └── gvmat64.S │ │ │ │ ├── infback9 │ │ │ │ │ ├── README │ │ │ │ │ ├── infback9.c │ │ │ │ │ ├── infback9.h │ │ │ │ │ ├── inffix9.h │ │ │ │ │ ├── inflate9.h │ │ │ │ │ ├── inftree9.c │ │ │ │ │ └── inftree9.h │ │ │ │ ├── inflate86 │ │ │ │ │ ├── inffas86.c │ │ │ │ │ └── inffast.S │ │ │ │ ├── iostream │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── zfstream.cpp │ │ │ │ │ └── zfstream.h │ │ │ │ ├── iostream2 │ │ │ │ │ ├── zstream.h │ │ │ │ │ └── zstream_test.cpp │ │ │ │ ├── iostream3 │ │ │ │ │ ├── README │ │ │ │ │ ├── TODO │ │ │ │ │ ├── test.cc │ │ │ │ │ ├── zfstream.cc │ │ │ │ │ └── zfstream.h │ │ │ │ ├── masmx64 │ │ │ │ │ ├── bld_ml64.bat │ │ │ │ │ ├── gvmat64.asm │ │ │ │ │ ├── inffas8664.c │ │ │ │ │ ├── inffasx64.asm │ │ │ │ │ └── readme.txt │ │ │ │ ├── masmx86 │ │ │ │ │ ├── bld_ml32.bat │ │ │ │ │ ├── inffas32.asm │ │ │ │ │ ├── match686.asm │ │ │ │ │ └── readme.txt │ │ │ │ ├── minizip │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── MiniZip64_Changes.txt │ │ │ │ │ ├── MiniZip64_info.txt │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── crypt.h │ │ │ │ │ ├── ioapi.c │ │ │ │ │ ├── ioapi.h │ │ │ │ │ ├── iowin32.c │ │ │ │ │ ├── iowin32.h │ │ │ │ │ ├── make_vms.com │ │ │ │ │ ├── miniunz.c │ │ │ │ │ ├── miniunzip.1 │ │ │ │ │ ├── minizip.1 │ │ │ │ │ ├── minizip.c │ │ │ │ │ ├── minizip.pc.in │ │ │ │ │ ├── mztools.c │ │ │ │ │ ├── mztools.h │ │ │ │ │ ├── unzip.c │ │ │ │ │ ├── unzip.h │ │ │ │ │ ├── zip.c │ │ │ │ │ └── zip.h │ │ │ │ ├── pascal │ │ │ │ │ ├── example.pas │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── zlibd32.mak │ │ │ │ │ └── zlibpas.pas │ │ │ │ ├── puff │ │ │ │ │ ├── README │ │ │ │ │ ├── puff.c │ │ │ │ │ ├── puff.h │ │ │ │ │ ├── pufftest.c │ │ │ │ │ └── zeros.raw │ │ │ │ ├── testzlib │ │ │ │ │ ├── testzlib.c │ │ │ │ │ └── testzlib.txt │ │ │ │ ├── untgz │ │ │ │ │ ├── Makefile.msc │ │ │ │ │ └── untgz.c │ │ │ │ └── vstudio │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── vc10 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── miniunz.vcxproj.filters │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── minizip.vcxproj.filters │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlib.vcxproj.filters │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj.filters │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibstat.vcxproj.filters │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ ├── zlibvc.vcxproj │ │ │ │ │ └── zlibvc.vcxproj.filters │ │ │ │ │ ├── vc11 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcxproj │ │ │ │ │ └── vc9 │ │ │ │ │ ├── miniunz.vcproj │ │ │ │ │ ├── minizip.vcproj │ │ │ │ │ ├── testzlib.vcproj │ │ │ │ │ ├── testzlibdll.vcproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcproj │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── doc │ │ │ │ ├── algorithm.txt │ │ │ │ ├── rfc1950.txt │ │ │ │ ├── rfc1951.txt │ │ │ │ ├── rfc1952.txt │ │ │ │ └── txtvsbin.txt │ │ │ ├── examples │ │ │ │ ├── README.examples │ │ │ │ ├── enough.c │ │ │ │ ├── fitblk.c │ │ │ │ ├── gun.c │ │ │ │ ├── gzappend.c │ │ │ │ ├── gzjoin.c │ │ │ │ ├── gzlog.c │ │ │ │ ├── gzlog.h │ │ │ │ ├── zlib_how.html │ │ │ │ ├── zpipe.c │ │ │ │ └── zran.c │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── make_vms.com │ │ │ ├── msdos │ │ │ │ ├── Makefile.bor │ │ │ │ ├── Makefile.dj2 │ │ │ │ ├── Makefile.emx │ │ │ │ ├── Makefile.msc │ │ │ │ └── Makefile.tc │ │ │ ├── nintendods │ │ │ │ └── README │ │ │ ├── old │ │ │ │ ├── Makefile.emx │ │ │ │ ├── Makefile.riscos │ │ │ │ ├── README │ │ │ │ ├── descrip.mms │ │ │ │ ├── os2 │ │ │ │ │ ├── Makefile.os2 │ │ │ │ │ └── zlib.def │ │ │ │ └── visual-basic.txt │ │ │ ├── qnx │ │ │ │ └── package.qpg │ │ │ ├── test │ │ │ │ ├── example.c │ │ │ │ ├── infcover.c │ │ │ │ └── minigzip.c │ │ │ ├── treebuild.xml │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── watcom │ │ │ │ ├── watcom_f.mak │ │ │ │ └── watcom_l.mak │ │ │ ├── win32 │ │ │ │ ├── DLL_FAQ.txt │ │ │ │ ├── Makefile.bor │ │ │ │ ├── Makefile.gcc │ │ │ │ ├── Makefile.msc │ │ │ │ ├── README-WIN32.txt │ │ │ │ ├── VisualC.txt │ │ │ │ ├── zlib.def │ │ │ │ └── zlib1.rc │ │ │ ├── zconf.h │ │ │ ├── zconf.h.cmakein │ │ │ ├── zconf.h.in │ │ │ ├── zlib.3 │ │ │ ├── zlib.3.pdf │ │ │ ├── zlib.h │ │ │ ├── zlib.map │ │ │ ├── zlib.pc │ │ │ ├── zlib.pc.cmakein │ │ │ ├── zlib.pc.in │ │ │ ├── zlib2ansi │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ │ ├── update_zlib.sh │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ └── zutil.h │ ├── src │ │ ├── aroma │ │ │ ├── arch │ │ │ │ ├── arm │ │ │ │ │ └── memset32.S │ │ │ │ ├── arm64 │ │ │ │ │ └── android_memset.S │ │ │ │ ├── mips │ │ │ │ │ └── android_memset.c │ │ │ │ ├── x86 │ │ │ │ │ ├── android_memset16.S │ │ │ │ │ ├── android_memset32.S │ │ │ │ │ └── cache.h │ │ │ │ └── x86_64 │ │ │ │ │ ├── android_memset16.S │ │ │ │ │ ├── android_memset32.S │ │ │ │ │ └── cache.h │ │ │ ├── aroma.c │ │ │ ├── controls │ │ │ │ ├── ctl_bar.c │ │ │ │ ├── ctl_button.c │ │ │ │ ├── ctl_edit.c │ │ │ │ ├── ctl_fragment.c │ │ │ │ ├── ctl_image.c │ │ │ │ ├── ctl_ime.c │ │ │ │ ├── ctl_label.c │ │ │ │ ├── ctl_list.c │ │ │ │ ├── ctl_pager.c │ │ │ │ ├── ctl_progress.c │ │ │ │ ├── ctl_scroll.c │ │ │ │ ├── ctl_tabs.c │ │ │ │ └── listitem │ │ │ │ │ ├── listitem_caption.c │ │ │ │ │ ├── listitem_check.c │ │ │ │ │ ├── listitem_divider.c │ │ │ │ │ ├── listitem_image.c │ │ │ │ │ ├── listitem_menu.c │ │ │ │ │ ├── listitem_option.c │ │ │ │ │ └── listitem_text.c │ │ │ ├── debug │ │ │ │ ├── compiler_message.c │ │ │ │ ├── debug.h │ │ │ │ └── memory_tracking.c │ │ │ ├── graph │ │ │ │ ├── artworker.c │ │ │ │ ├── canvas.c │ │ │ │ ├── draw │ │ │ │ │ ├── blur.c │ │ │ │ │ ├── commondraw.c │ │ │ │ │ ├── filters.c │ │ │ │ │ ├── gradient.c │ │ │ │ │ ├── path.c │ │ │ │ │ └── scale.c │ │ │ │ ├── engine │ │ │ │ │ ├── alignblt.c │ │ │ │ │ ├── alpha.c │ │ │ │ │ ├── blt.c │ │ │ │ │ ├── color.c │ │ │ │ │ ├── dither.c │ │ │ │ │ └── engine_internal.h │ │ │ │ ├── fb.c │ │ │ │ ├── image.c │ │ │ │ ├── jpeg.c │ │ │ │ ├── png.c │ │ │ │ ├── svg.c │ │ │ │ ├── svg │ │ │ │ │ ├── nanosvg.h │ │ │ │ │ └── nanosvgrast_libaroma.h │ │ │ │ ├── text.c │ │ │ │ └── text │ │ │ │ │ ├── font_freetype.c │ │ │ │ │ ├── font_hb.c │ │ │ │ │ ├── text_chunk.c │ │ │ │ │ ├── text_common.c │ │ │ │ │ ├── text_defs.h │ │ │ │ │ ├── text_draw.c │ │ │ │ │ ├── text_header.h │ │ │ │ │ ├── text_line.c │ │ │ │ │ ├── text_public.c │ │ │ │ │ ├── text_shaper.c │ │ │ │ │ ├── text_structures.h │ │ │ │ │ └── text_tags.c │ │ │ ├── hid │ │ │ │ ├── hid.c │ │ │ │ └── messages.c │ │ │ ├── ui │ │ │ │ ├── color_manager.c │ │ │ │ ├── control.c │ │ │ │ ├── dialog.c │ │ │ │ ├── keyboard.c │ │ │ │ ├── ui_internal.h │ │ │ │ ├── window.c │ │ │ │ ├── window_layer.c │ │ │ │ └── window_manager.c │ │ │ ├── utils │ │ │ │ ├── array.c │ │ │ │ ├── json.c │ │ │ │ ├── minutf8.c │ │ │ │ ├── motions.c │ │ │ │ ├── runtime.c │ │ │ │ ├── stream.c │ │ │ │ ├── strings.c │ │ │ │ ├── system.c │ │ │ │ ├── time.c │ │ │ │ └── zip.c │ │ │ └── version.c │ │ ├── aroma_internal.h │ │ ├── aroma_memory.h │ │ ├── aromart │ │ │ ├── aromart_app.c │ │ │ ├── aromart_core.c │ │ │ ├── aromart_driver.c │ │ │ ├── aromart_internal.h │ │ │ ├── aromart_messaging.c │ │ │ └── aromart_sysui.c │ │ ├── config.h │ │ ├── config_features.h │ │ ├── contrib │ │ │ ├── arm_neon │ │ │ │ ├── arm_neon.h │ │ │ │ ├── arm_neon_alpha.h │ │ │ │ ├── arm_neon_blt.h │ │ │ │ ├── arm_neon_color.h │ │ │ │ └── arm_neon_dither.h │ │ │ ├── platform │ │ │ │ ├── linux │ │ │ │ │ ├── fb_colorspace │ │ │ │ │ │ ├── fb_16bit.c │ │ │ │ │ │ └── fb_32bit.c │ │ │ │ │ ├── fb_driver.c │ │ │ │ │ ├── fb_driver.h │ │ │ │ │ ├── fb_qcom │ │ │ │ │ │ ├── fb_qcom.c │ │ │ │ │ │ ├── fb_qcom.h │ │ │ │ │ │ └── msm_mdp.h │ │ │ │ │ ├── hid_driver.c │ │ │ │ │ ├── hid_translate │ │ │ │ │ │ ├── translate_keyboard.c │ │ │ │ │ │ ├── translate_pointer.c │ │ │ │ │ │ └── translate_touch.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── aroma_platform.h │ │ │ │ │ └── platform.c │ │ │ │ ├── qnx │ │ │ │ │ ├── fb_driver.c │ │ │ │ │ ├── hid_driver.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── aroma_platform.h │ │ │ │ │ ├── platform.c │ │ │ │ │ ├── qnx_hiddi_driver.c │ │ │ │ │ ├── qnx_hiddi_driver.h │ │ │ │ │ └── qnx_keycode.h │ │ │ │ ├── rpi │ │ │ │ │ ├── fb_colorspace │ │ │ │ │ │ ├── fb_16bit.c │ │ │ │ │ │ └── fb_32bit.c │ │ │ │ │ └── fb_driver.c │ │ │ │ └── sdl │ │ │ │ │ ├── fb_driver.c │ │ │ │ │ ├── fb_driver.h │ │ │ │ │ ├── hid_driver.c │ │ │ │ │ ├── include │ │ │ │ │ └── aroma_platform.h │ │ │ │ │ └── platform.c │ │ │ └── x86_sse │ │ │ │ ├── x86_sse.h │ │ │ │ ├── x86_sse_alpha.h │ │ │ │ ├── x86_sse_blt.h │ │ │ │ ├── x86_sse_color.h │ │ │ │ └── x86_sse_dither.h │ │ ├── fallbacks.h │ │ └── pterodon.sh │ ├── tools │ │ ├── linux-x86 │ │ │ ├── build.sh │ │ │ ├── build_libaroma.sh │ │ │ ├── build_test.sh │ │ │ ├── envsetup.sh │ │ │ └── libs │ │ │ │ ├── makelibs.sh │ │ │ │ ├── makelibs_freetype.sh │ │ │ │ ├── makelibs_hb.sh │ │ │ │ ├── makelibs_hbucdn.sh │ │ │ │ ├── makelibs_jpeg.sh │ │ │ │ ├── makelibs_minzip.sh │ │ │ │ ├── makelibs_png.sh │ │ │ │ └── makelibs_zlib.sh │ │ ├── linux │ │ │ ├── build.sh │ │ │ ├── build_libaroma.sh │ │ │ ├── build_test.sh │ │ │ ├── envsetup.sh │ │ │ └── libs │ │ │ │ ├── makelibs.sh │ │ │ │ ├── makelibs_freetype.sh │ │ │ │ ├── makelibs_hb.sh │ │ │ │ ├── makelibs_hbucdn.sh │ │ │ │ ├── makelibs_jpeg.sh │ │ │ │ ├── makelibs_minzip.sh │ │ │ │ ├── makelibs_png.sh │ │ │ │ └── makelibs_zlib.sh │ │ └── win32 │ │ │ ├── build.bat │ │ │ ├── build_libaroma-debug.bat │ │ │ ├── build_libaroma.bat │ │ │ ├── build_libaroma_rt.bat │ │ │ ├── build_libaroma_rt_test.bat │ │ │ ├── build_recovery-debug.bat │ │ │ ├── build_recovery.bat │ │ │ ├── build_test-debug.bat │ │ │ ├── build_test.bat │ │ │ ├── build_vm.bat │ │ │ ├── clean.bat │ │ │ ├── debug_build.bat │ │ │ ├── debug_build_test.bat │ │ │ ├── deploy_android.bat │ │ │ ├── deploy_gdb.bat │ │ │ ├── deploy_gdb_android.bat │ │ │ ├── deploy_gdb_stop.bat │ │ │ ├── deploy_recovery.bat │ │ │ ├── envsetup-ndk-sa.bat │ │ │ ├── envsetup-ndk.bat │ │ │ ├── envsetup.bat │ │ │ ├── envsetup_debug.bat │ │ │ ├── graphonly │ │ │ ├── CMakeLists.txt │ │ │ ├── build-linux │ │ │ ├── build.bat │ │ │ ├── deploy_android.bat │ │ │ ├── deploy_gdb.bat │ │ │ └── deploy_gdb_android.bat │ │ │ ├── libaroma-linaro-arm-toolchain.cmake │ │ │ └── libs │ │ │ ├── makelibs.bat │ │ │ ├── makelibs_freetype.bat │ │ │ ├── makelibs_hb.bat │ │ │ ├── makelibs_hbucdn.bat │ │ │ ├── makelibs_jpeg.bat │ │ │ ├── makelibs_minzip.bat │ │ │ ├── makelibs_png.bat │ │ │ ├── makelibs_squirrel.bat │ │ │ └── makelibs_zlib.bat │ └── win32-linaro-arm-toolchain.cmake └── theme │ ├── Android.mk │ ├── FileManager.cpp │ ├── FileManager.hpp │ ├── control_id.h │ ├── engine.cpp │ ├── engine.hpp │ ├── engine │ └── dialogs.cpp │ ├── engine_debug.cpp │ ├── engine_debug.hpp │ ├── filelist.cpp │ ├── filelist.hpp │ ├── gui.cpp │ ├── gui.hpp │ ├── language.cpp │ ├── language.hpp │ ├── pterodon │ ├── pterodon.h │ ├── res │ ├── fonts │ │ ├── Amiri-Regular.ttf │ │ ├── Dubai-Regular.ttf │ │ ├── OFL.txt │ │ └── Roboto-Regular.ttf │ ├── images │ │ ├── account.svg │ │ ├── account_circle-24px.svg │ │ ├── adb.svg │ │ ├── archive-24px.svg │ │ ├── arrow-left-right.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up.svg │ │ ├── backup.svg │ │ ├── battery-10.svg │ │ ├── battery-20.svg │ │ ├── battery-30.svg │ │ ├── battery-40.svg │ │ ├── battery-50.svg │ │ ├── battery-60.svg │ │ ├── battery-70.svg │ │ ├── battery-80.svg │ │ ├── battery-90.svg │ │ ├── battery-alert.svg │ │ ├── battery-charging-10.svg │ │ ├── battery-charging-100.svg │ │ ├── battery-charging-20.svg │ │ ├── battery-charging-30.svg │ │ ├── battery-charging-40.svg │ │ ├── battery-charging-50.svg │ │ ├── battery-charging-60.svg │ │ ├── battery-charging-70.svg │ │ ├── battery-charging-80.svg │ │ ├── battery-charging-90.svg │ │ ├── battery-charging-high.svg │ │ ├── battery-charging-outline.svg │ │ ├── battery-charging.svg │ │ ├── battery-heart-outline.svg │ │ ├── battery-heart-variant.svg │ │ ├── battery-heart.svg │ │ ├── battery-high.svg │ │ ├── battery-plus.svg │ │ ├── battery-positive.svg │ │ ├── battery.svg │ │ ├── bitbucket.svg │ │ ├── bitcoin.svg │ │ ├── brightness.svg │ │ ├── bug_report.svg │ │ ├── clock.svg │ │ ├── color.svg │ │ ├── copyright.svg │ │ ├── cpuboard.svg │ │ ├── direction.svg │ │ ├── discord.svg │ │ ├── facebook.svg │ │ ├── fahrenheit.svg │ │ ├── file.svg │ │ ├── flashlight.svg │ │ ├── folder.svg │ │ ├── font.svg │ │ ├── format.svg │ │ ├── format_paint.svg │ │ ├── forum.svg │ │ ├── fullscreen.svg │ │ ├── gesture.svg │ │ ├── gesture_tap_button.svg │ │ ├── git.svg │ │ ├── github.svg │ │ ├── gitlab.svg │ │ ├── heart.svg │ │ ├── help.svg │ │ ├── home.svg │ │ ├── home_button.svg │ │ ├── inbox.svg │ │ ├── info.svg │ │ ├── instagram.svg │ │ ├── keyboard-backspace.svg │ │ ├── keyboard.svg │ │ ├── language.svg │ │ ├── lightbulb.svg │ │ ├── linux.svg │ │ ├── logo.svg │ │ ├── logs.svg │ │ ├── memory.svg │ │ ├── partition.svg │ │ ├── patreon.svg │ │ ├── power-plug.svg │ │ ├── power.svg │ │ ├── reboot.svg │ │ ├── reddit.svg │ │ ├── restore.svg │ │ ├── school.svg │ │ ├── screenshot.svg │ │ ├── security.svg │ │ ├── settings.svg │ │ ├── settings_input_hdmi-24px.svg │ │ ├── sleep.svg │ │ ├── storage.svg │ │ ├── system_update.svg │ │ ├── telegram.svg │ │ ├── temperature-celsius.svg │ │ ├── temperature-kelvin.svg │ │ ├── terminal.svg │ │ ├── theme_light_dark.svg │ │ ├── timer.svg │ │ ├── tools.svg │ │ ├── twitter.svg │ │ ├── unarchive.svg │ │ ├── usb.svg │ │ ├── verified.svg │ │ ├── vibration.svg │ │ ├── window_maximize.svg │ │ ├── wipe.svg │ │ ├── workspace.svg │ │ ├── xda.svg │ │ └── youtube.svg │ └── language │ │ └── en.xml │ ├── sidebar.cpp │ ├── sidebar.hpp │ ├── statusbar.cpp │ ├── statusbar.hpp │ ├── timer.hpp │ ├── timer_test.cpp │ ├── windowpool.cpp │ └── windowpool.hpp ├── install.cpp ├── install.h ├── interlace-frames.py ├── libcrecovery ├── Android.mk ├── common.h ├── defines.h ├── dumwolf.c ├── dumwolf.h ├── mincrypt │ ├── hash-internal.h │ ├── sha.c │ ├── sha.h │ ├── sha256.c │ └── sha256.h ├── popen.c └── system.c ├── libmincrypt ├── Android.mk ├── NOTICE ├── dsa_sig.c ├── include │ └── mincrypt │ │ ├── dsa_sig.h │ │ ├── hash-internal.h │ │ ├── p256.h │ │ ├── p256_ecdsa.h │ │ ├── rsa.h │ │ ├── sha.h │ │ └── sha256.h ├── p256.c ├── p256_ec.c ├── p256_ecdsa.c ├── rsa.c ├── sha.c └── sha256.c ├── libtar ├── Android.mk ├── COPYRIGHT ├── ChangeLog ├── ChangeLog-1.0.x ├── INSTALL ├── MODULE_LICENSE_MIT ├── NOTICE ├── README ├── TODO ├── compat │ ├── ChangeLog │ ├── README │ ├── TODO │ ├── basename.c │ ├── compat.h │ ├── dirname.c │ ├── fnmatch.c │ ├── gethostbyname_r.c │ ├── gethostname.c │ ├── getservbyname_r.c │ ├── glob.c │ ├── inet_aton.c │ ├── module.ac │ ├── snprintf.c │ ├── strdup.c │ ├── strlcat.c │ ├── strlcpy.c │ ├── strmode.c │ ├── strrstr.c │ └── strsep.c ├── config.h ├── doc │ ├── Makefile.in │ ├── tar_append_file.3 │ ├── tar_block_read.3 │ ├── tar_extract_all.3 │ ├── tar_extract_file.3 │ ├── tar_open.3 │ ├── th_get_pathname.3 │ ├── th_print_long_ls.3 │ ├── th_read.3 │ └── th_set_from_stat.3 ├── lib │ ├── Makefile.in │ ├── append.c │ ├── block.c │ ├── decode.c │ ├── encode.c │ ├── extract.c │ ├── handle.c │ ├── internal.h │ ├── libtar.h │ ├── output.c │ ├── util.c │ └── wrapper.c ├── listhash │ ├── ChangeLog │ ├── TODO │ ├── hash.c.in │ ├── hash_new.3.in │ ├── libtar_hash.c │ ├── libtar_list.c │ ├── libtar_listhash.h │ ├── list.c.in │ ├── list_new.3.in │ ├── listhash.h.in │ └── module.ac ├── minitar │ ├── ChangeLog │ ├── Makefile.in │ ├── main.c │ └── minitar.c └── tar.h ├── metadata.cpp ├── metadata.hpp ├── minadbd ├── Android.mk ├── AndroidTest.xml ├── README.md ├── fuse_adb_provider.cpp ├── fuse_adb_provider.h ├── fuse_adb_provider_test.cpp ├── minadbd.cpp ├── minadbd.h └── minadbd_services.cpp ├── minelf ├── Android.mk ├── Retouch.c └── Retouch.h ├── minui ├── Android.mk ├── events.cpp ├── font_10x18.h ├── graphics.cpp ├── graphics.h ├── graphics_adf.cpp ├── graphics_adf.h ├── graphics_drm.cpp ├── graphics_drm.h ├── graphics_fbdev.cpp ├── graphics_fbdev.h ├── include │ └── minui │ │ └── minui.h ├── mkfont.c └── resources.cpp ├── mmcutils ├── Android.mk ├── mmcutils.c └── mmcutils.h ├── mounts.cpp ├── mounts.h ├── mtdutils ├── Android.mk ├── bml_over_mtd.c ├── mounts.c ├── mounts.h ├── mtdutils.c └── mtdutils.h ├── ntfs-3g ├── AUTHORS ├── Android.mk ├── COPYING ├── COPYING.LIB ├── CREDITS ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── TODO.ntfsprogs ├── aclocal.m4 ├── androidglue │ ├── include │ │ ├── androidglue.h │ │ └── sys │ │ │ └── statvfs.h │ └── statvfs.c ├── autogen.sh ├── compile ├── config.guess ├── config.h ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── include │ ├── Makefile.am │ ├── Makefile.in │ ├── fuse-lite │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── fuse.h │ │ ├── fuse_common.h │ │ ├── fuse_kernel.h │ │ ├── fuse_lowlevel.h │ │ ├── fuse_lowlevel_compat.h │ │ └── fuse_opt.h │ └── ntfs-3g │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── acls.h │ │ ├── attrib.h │ │ ├── attrlist.h │ │ ├── bitmap.h │ │ ├── bootsect.h │ │ ├── cache.h │ │ ├── collate.h │ │ ├── compat.h │ │ ├── compress.h │ │ ├── debug.h │ │ ├── device.h │ │ ├── device_io.h │ │ ├── dir.h │ │ ├── efs.h │ │ ├── endians.h │ │ ├── index.h │ │ ├── inode.h │ │ ├── layout.h │ │ ├── lcnalloc.h │ │ ├── logfile.h │ │ ├── logging.h │ │ ├── mft.h │ │ ├── misc.h │ │ ├── mst.h │ │ ├── ntfstime.h │ │ ├── object_id.h │ │ ├── param.h │ │ ├── realpath.h │ │ ├── reparse.h │ │ ├── runlist.h │ │ ├── security.h │ │ ├── support.h │ │ ├── types.h │ │ ├── unistr.h │ │ ├── volume.h │ │ └── xattrs.h ├── install-sh ├── libfuse-lite │ ├── Makefile.am │ ├── Makefile.in │ ├── fuse.c │ ├── fuse_i.h │ ├── fuse_kern_chan.c │ ├── fuse_loop.c │ ├── fuse_lowlevel.c │ ├── fuse_misc.h │ ├── fuse_opt.c │ ├── fuse_session.c │ ├── fuse_signals.c │ ├── fusermount.c │ ├── helper.c │ ├── mount.c │ ├── mount_util.c │ └── mount_util.h ├── libntfs-3g │ ├── Makefile.am │ ├── Makefile.in │ ├── acls.c │ ├── attrib.c │ ├── attrlist.c │ ├── bitmap.c │ ├── bootsect.c │ ├── cache.c │ ├── collate.c │ ├── compat.c │ ├── compress.c │ ├── debug.c │ ├── device.c │ ├── dir.c │ ├── efs.c │ ├── index.c │ ├── inode.c │ ├── lcnalloc.c │ ├── libntfs-3g.pc.in │ ├── libntfs-3g.script.so.in │ ├── logfile.c │ ├── logging.c │ ├── mft.c │ ├── misc.c │ ├── mst.c │ ├── object_id.c │ ├── realpath.c │ ├── reparse.c │ ├── runlist.c │ ├── security.c │ ├── unistr.c │ ├── unix_io.c │ ├── volume.c │ ├── win32_io.c │ └── xattrs.c ├── ltmain.sh ├── m4 │ └── .keep ├── missing ├── ntfsprogs │ ├── Makefile.am │ ├── Makefile.in │ ├── attrdef.c │ ├── attrdef.h │ ├── boot.c │ ├── boot.h │ ├── cluster.c │ ├── cluster.h │ ├── list.h │ ├── mkntfs.8.in │ ├── mkntfs.c │ ├── mkntfs_main.c │ ├── ntfscat.8.in │ ├── ntfscat.c │ ├── ntfscat.h │ ├── ntfsck.c │ ├── ntfsclone.8.in │ ├── ntfsclone.c │ ├── ntfscluster.8.in │ ├── ntfscluster.c │ ├── ntfscluster.h │ ├── ntfscmp.8.in │ ├── ntfscmp.c │ ├── ntfscp.8.in │ ├── ntfscp.c │ ├── ntfsdecrypt.c │ ├── ntfsdump_logfile.c │ ├── ntfsfix.8.in │ ├── ntfsfix.c │ ├── ntfsfix_main.c │ ├── ntfsinfo.8.in │ ├── ntfsinfo.c │ ├── ntfslabel.8.in │ ├── ntfslabel.c │ ├── ntfsls.8.in │ ├── ntfsls.c │ ├── ntfsmftalloc.c │ ├── ntfsmove.c │ ├── ntfsmove.h │ ├── ntfsprogs.8.in │ ├── ntfsresize.8.in │ ├── ntfsresize.c │ ├── ntfstruncate.c │ ├── ntfsundelete.8.in │ ├── ntfsundelete.c │ ├── ntfsundelete.h │ ├── ntfswipe.c │ ├── ntfswipe.h │ ├── sd.c │ ├── sd.h │ ├── utils.c │ └── utils.h └── src │ ├── Makefile.am │ ├── Makefile.in │ ├── lowntfs-3g.c │ ├── ntfs-3g.8.in │ ├── ntfs-3g.c │ ├── ntfs-3g.probe.8.in │ ├── ntfs-3g.probe.c │ ├── ntfs-3g.secaudit.8.in │ ├── ntfs-3g.usermap.8.in │ ├── ntfs-3g_common.c │ ├── ntfs-3g_common.h │ ├── ntfs-3g_main.c │ ├── secaudit.c │ ├── secaudit.h │ └── usermap.c ├── otafault ├── Android.bp ├── Android.mk ├── config.cpp ├── include │ └── otafault │ │ ├── config.h │ │ └── ota_io.h ├── ota_io.cpp └── test.cpp ├── otautil ├── Android.bp ├── Android.mk ├── DirUtil.cpp ├── SysUtil.cpp ├── ThermalUtil.cpp ├── cache_location.cpp ├── include │ └── otautil │ │ ├── DirUtil.h │ │ ├── SysUtil.h │ │ ├── ThermalUtil.h │ │ ├── cache_location.h │ │ ├── error_code.h │ │ ├── print_sha1.h │ │ └── rangeset.h └── rangeset.cpp ├── private └── install.h ├── property_api_fake.cpp ├── property_api_fake.hpp ├── property_manager.cpp ├── property_manager.hpp ├── pterodon.cpp ├── pterodon.hpp ├── pterologger.cpp ├── pterologger.hpp ├── recovery-persist.cpp ├── recovery-persist.rc ├── recovery-refresh.cpp ├── recovery-refresh.rc ├── recovery.cpp ├── res-560dpi ├── res-hdpi └── images │ ├── erasing_text.png │ ├── error_text.png │ ├── icon_error.png │ ├── installing_security_text.png │ ├── installing_text.png │ ├── loop00000.png │ ├── loop00001.png │ ├── loop00002.png │ ├── loop00003.png │ ├── loop00004.png │ ├── loop00005.png │ ├── loop00006.png │ ├── loop00007.png │ ├── loop00008.png │ ├── loop00009.png │ ├── loop00010.png │ ├── loop00011.png │ ├── loop00012.png │ ├── loop00013.png │ ├── loop00014.png │ ├── loop00015.png │ ├── loop00016.png │ ├── loop00017.png │ ├── loop00018.png │ ├── loop00019.png │ ├── loop00020.png │ ├── loop00021.png │ ├── loop00022.png │ ├── loop00023.png │ ├── loop00024.png │ ├── loop00025.png │ ├── loop00026.png │ ├── loop00027.png │ ├── loop00028.png │ ├── loop00029.png │ ├── no_command_text.png │ ├── progress_empty.png │ ├── progress_fill.png │ ├── stage_empty.png │ └── stage_fill.png ├── res-mdpi └── images │ ├── erasing_text.png │ ├── error_text.png │ ├── icon_error.png │ ├── installing_security_text.png │ ├── installing_text.png │ ├── loop00000.png │ ├── loop00001.png │ ├── loop00002.png │ ├── loop00003.png │ ├── loop00004.png │ ├── loop00005.png │ ├── loop00006.png │ ├── loop00007.png │ ├── loop00008.png │ ├── loop00009.png │ ├── loop00010.png │ ├── loop00011.png │ ├── loop00012.png │ ├── loop00013.png │ ├── loop00014.png │ ├── loop00015.png │ ├── loop00016.png │ ├── loop00017.png │ ├── loop00018.png │ ├── loop00019.png │ ├── loop00020.png │ ├── loop00021.png │ ├── loop00022.png │ ├── loop00023.png │ ├── loop00024.png │ ├── loop00025.png │ ├── loop00026.png │ ├── loop00027.png │ ├── loop00028.png │ ├── loop00029.png │ ├── no_command_text.png │ ├── progress_empty.png │ ├── progress_fill.png │ ├── stage_empty.png │ └── stage_fill.png ├── res-xhdpi └── images │ ├── erasing_text.png │ ├── error_text.png │ ├── icon_error.png │ ├── installing_security_text.png │ ├── installing_text.png │ ├── loop00000.png │ ├── loop00001.png │ ├── loop00002.png │ ├── loop00003.png │ ├── loop00004.png │ ├── loop00005.png │ ├── loop00006.png │ ├── loop00007.png │ ├── loop00008.png │ ├── loop00009.png │ ├── loop00010.png │ ├── loop00011.png │ ├── loop00012.png │ ├── loop00013.png │ ├── loop00014.png │ ├── loop00015.png │ ├── loop00016.png │ ├── loop00017.png │ ├── loop00018.png │ ├── loop00019.png │ ├── loop00020.png │ ├── loop00021.png │ ├── loop00022.png │ ├── loop00023.png │ ├── loop00024.png │ ├── loop00025.png │ ├── loop00026.png │ ├── loop00027.png │ ├── loop00028.png │ ├── loop00029.png │ ├── no_command_text.png │ ├── progress_empty.png │ ├── progress_fill.png │ ├── stage_empty.png │ └── stage_fill.png ├── res-xxhdpi └── images │ ├── erasing_text.png │ ├── error_text.png │ ├── icon_error.png │ ├── installing_security_text.png │ ├── installing_text.png │ ├── loop00000.png │ ├── loop00001.png │ ├── loop00002.png │ ├── loop00003.png │ ├── loop00004.png │ ├── loop00005.png │ ├── loop00006.png │ ├── loop00007.png │ ├── loop00008.png │ ├── loop00009.png │ ├── loop00010.png │ ├── loop00011.png │ ├── loop00012.png │ ├── loop00013.png │ ├── loop00014.png │ ├── loop00015.png │ ├── loop00016.png │ ├── loop00017.png │ ├── loop00018.png │ ├── loop00019.png │ ├── loop00020.png │ ├── loop00021.png │ ├── loop00022.png │ ├── loop00023.png │ ├── loop00024.png │ ├── loop00025.png │ ├── loop00026.png │ ├── loop00027.png │ ├── loop00028.png │ ├── loop00029.png │ ├── no_command_text.png │ ├── progress_empty.png │ ├── progress_fill.png │ ├── stage_empty.png │ └── stage_fill.png ├── res-xxxhdpi └── images │ ├── erasing_text.png │ ├── error_text.png │ ├── icon_error.png │ ├── installing_security_text.png │ ├── installing_text.png │ ├── loop00000.png │ ├── loop00001.png │ ├── loop00002.png │ ├── loop00003.png │ ├── loop00004.png │ ├── loop00005.png │ ├── loop00006.png │ ├── loop00007.png │ ├── loop00008.png │ ├── loop00009.png │ ├── loop00010.png │ ├── loop00011.png │ ├── loop00012.png │ ├── loop00013.png │ ├── loop00014.png │ ├── loop00015.png │ ├── loop00016.png │ ├── loop00017.png │ ├── loop00018.png │ ├── loop00019.png │ ├── loop00020.png │ ├── loop00021.png │ ├── loop00022.png │ ├── loop00023.png │ ├── loop00024.png │ ├── loop00025.png │ ├── loop00026.png │ ├── loop00027.png │ ├── loop00028.png │ ├── loop00029.png │ ├── no_command_text.png │ ├── progress_empty.png │ ├── progress_fill.png │ ├── stage_empty.png │ └── stage_fill.png ├── roots.cpp ├── roots.h ├── rotate_logs.cpp ├── rotate_logs.h ├── screen_ui.cpp ├── screen_ui.h ├── scripts ├── copy_blobs.sh ├── device_tree.sh ├── fix_script_bogus.sh └── readelf ├── settings.cpp ├── settings.hpp ├── strdiv.cpp ├── strdiv.hpp ├── strdiv_test.cpp ├── stub_ui.h ├── tests ├── Android.mk ├── AndroidTest.xml ├── common │ └── test_constants.h ├── component │ ├── applypatch_test.cpp │ ├── bootloader_message_test.cpp │ ├── edify_test.cpp │ ├── imgdiff_test.cpp │ ├── install_test.cpp │ ├── sideload_test.cpp │ ├── uncrypt_test.cpp │ ├── update_verifier_test.cpp │ ├── updater_test.cpp │ └── verifier_test.cpp ├── manual │ └── recovery_test.cpp ├── testdata │ ├── bonus.file │ ├── boot.img │ ├── deflate_src.zip │ ├── deflate_tgt.zip │ ├── fake-eocd.zip │ ├── jarsigned.zip │ ├── new.file │ ├── old.file │ ├── otasigned_v1.zip │ ├── otasigned_v2.zip │ ├── otasigned_v3.zip │ ├── otasigned_v4.zip │ ├── otasigned_v5.zip │ ├── patch.bsdiff │ ├── random.zip │ ├── recovery-from-boot-with-bonus.p │ ├── recovery-from-boot.p │ ├── recovery.img │ ├── testkey_v1.pk8 │ ├── testkey_v1.txt │ ├── testkey_v1.x509.pem │ ├── testkey_v2.pk8 │ ├── testkey_v2.txt │ ├── testkey_v2.x509.pem │ ├── testkey_v3.pk8 │ ├── testkey_v3.txt │ ├── testkey_v3.x509.pem │ ├── testkey_v4.pk8 │ ├── testkey_v4.txt │ ├── testkey_v4.x509.pem │ ├── testkey_v5.pk8 │ ├── testkey_v5.txt │ ├── testkey_v5.x509.pem │ ├── unsigned.zip │ ├── ziptest_dummy-update.zip │ └── ziptest_valid.zip └── unit │ ├── asn1_decoder_test.cpp │ ├── dirutil_test.cpp │ ├── locale_test.cpp │ ├── rangeset_test.cpp │ ├── sysutil_test.cpp │ └── zip_test.cpp ├── tools ├── Android.mk ├── dumpkey │ ├── Android.mk │ ├── DumpPublicKey.java │ └── DumpPublicKey.mf └── recovery_l10n │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── README.md │ ├── res │ └── layout │ │ └── main.xml │ └── src │ └── com │ └── android │ └── recovery_l10n │ └── Main.java ├── ui.cpp ├── ui.h ├── uncrypt ├── Android.bp ├── Android.mk ├── uncrypt.cpp └── uncrypt.rc ├── update_verifier ├── Android.mk ├── include │ └── update_verifier │ │ └── update_verifier.h ├── update_verifier.cpp ├── update_verifier.rc └── update_verifier_main.cpp ├── updater ├── Android.mk ├── blockimg.cpp ├── include │ └── updater │ │ ├── blockimg.h │ │ ├── install.h │ │ ├── rangeset.h │ │ └── updater.h ├── install.cpp └── updater.cpp ├── verifier.cpp ├── verifier.h ├── version.cpp ├── version.hpp ├── vr_device.cpp ├── vr_ui.cpp ├── vr_ui.h ├── wear_device.cpp ├── wear_ui.cpp └── wear_ui.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/Android.bp -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/Android.mk -------------------------------------------------------------------------------- /CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/CleanSpec.mk -------------------------------------------------------------------------------- /DataBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/DataBase.cpp -------------------------------------------------------------------------------- /DataBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/DataBase.hpp -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/NOTICE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/OWNERS -------------------------------------------------------------------------------- /PREUPLOAD.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/PREUPLOAD.cfg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/README.md -------------------------------------------------------------------------------- /adb_install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/adb_install.cpp -------------------------------------------------------------------------------- /adb_install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/adb_install.h -------------------------------------------------------------------------------- /applypatch/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/applypatch/Android.bp -------------------------------------------------------------------------------- /applypatch/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/applypatch/Android.mk -------------------------------------------------------------------------------- /applypatch/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/applypatch/NOTICE -------------------------------------------------------------------------------- /applypatch/applypatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/applypatch/applypatch.cpp -------------------------------------------------------------------------------- /applypatch/applypatch_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/applypatch/applypatch_main.cpp -------------------------------------------------------------------------------- /applypatch/applypatch_modes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/applypatch/applypatch_modes.cpp -------------------------------------------------------------------------------- /applypatch/applypatch_modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/applypatch/applypatch_modes.h -------------------------------------------------------------------------------- /applypatch/bspatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/applypatch/bspatch.cpp -------------------------------------------------------------------------------- /applypatch/freecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/applypatch/freecache.cpp -------------------------------------------------------------------------------- /applypatch/imgdiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/applypatch/imgdiff.cpp -------------------------------------------------------------------------------- /applypatch/imgdiff_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/applypatch/imgdiff_main.cpp -------------------------------------------------------------------------------- /applypatch/imgpatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/applypatch/imgpatch.cpp -------------------------------------------------------------------------------- /asn1_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/asn1_decoder.cpp -------------------------------------------------------------------------------- /asn1_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/asn1_decoder.h -------------------------------------------------------------------------------- /bmlutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/bmlutils/Android.mk -------------------------------------------------------------------------------- /bmlutils/bmlutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/bmlutils/bmlutils.c -------------------------------------------------------------------------------- /bmlutils/bmlutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/bmlutils/bmlutils.h -------------------------------------------------------------------------------- /boot_control/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/boot_control/Android.mk -------------------------------------------------------------------------------- /boot_control/boot_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/boot_control/boot_control.cpp -------------------------------------------------------------------------------- /bootloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/bootloader.cpp -------------------------------------------------------------------------------- /bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/bootloader.h -------------------------------------------------------------------------------- /bootloader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/bootloader.hpp -------------------------------------------------------------------------------- /bootloader_message/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/bootloader_message/Android.bp -------------------------------------------------------------------------------- /bootloader_message/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/bootloader_message/Android.mk -------------------------------------------------------------------------------- /bootloader_pterodon/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/bootloader_pterodon/Android.mk -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/common.h -------------------------------------------------------------------------------- /constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/constants.h -------------------------------------------------------------------------------- /default_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/default_device.cpp -------------------------------------------------------------------------------- /device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/device.cpp -------------------------------------------------------------------------------- /device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/device.h -------------------------------------------------------------------------------- /device_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/device_driver.cpp -------------------------------------------------------------------------------- /device_driver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/device_driver.hpp -------------------------------------------------------------------------------- /digest/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/digest/md5.c -------------------------------------------------------------------------------- /digest/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/digest/md5.h -------------------------------------------------------------------------------- /digest/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/digest/sha1.cpp -------------------------------------------------------------------------------- /digest/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/digest/sha1.h -------------------------------------------------------------------------------- /edify/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/edify/Android.bp -------------------------------------------------------------------------------- /edify/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/edify/Android.mk -------------------------------------------------------------------------------- /edify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/edify/README.md -------------------------------------------------------------------------------- /edify/expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/edify/expr.cpp -------------------------------------------------------------------------------- /edify/include/edify/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/edify/include/edify/expr.h -------------------------------------------------------------------------------- /edify/lexer.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/edify/lexer.ll -------------------------------------------------------------------------------- /edify/parser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/edify/parser.yy -------------------------------------------------------------------------------- /edify/yydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/edify/yydefs.h -------------------------------------------------------------------------------- /env_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/env_service.cpp -------------------------------------------------------------------------------- /env_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/env_service.hpp -------------------------------------------------------------------------------- /env_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/env_test.cpp -------------------------------------------------------------------------------- /error_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/error_code.h -------------------------------------------------------------------------------- /etc/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/etc/init.rc -------------------------------------------------------------------------------- /etc/mkshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/etc/mkshrc -------------------------------------------------------------------------------- /fb2png/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | fb2png 3 | adb_screenshoot 4 | libs 5 | obj 6 | -------------------------------------------------------------------------------- /fb2png/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/Android.mk -------------------------------------------------------------------------------- /fb2png/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fb2png/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/COPYING -------------------------------------------------------------------------------- /fb2png/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/Makefile -------------------------------------------------------------------------------- /fb2png/adb_screenshoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/adb_screenshoot.c -------------------------------------------------------------------------------- /fb2png/ascreenshooter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/ascreenshooter.py -------------------------------------------------------------------------------- /fb2png/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/fb.c -------------------------------------------------------------------------------- /fb2png/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/fb.h -------------------------------------------------------------------------------- /fb2png/fb2png-jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/fb2png-jni.c -------------------------------------------------------------------------------- /fb2png/fb2png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/fb2png.c -------------------------------------------------------------------------------- /fb2png/fb2png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/fb2png.h -------------------------------------------------------------------------------- /fb2png/fb2png_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/fb2png_main.c -------------------------------------------------------------------------------- /fb2png/img_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/img_process.c -------------------------------------------------------------------------------- /fb2png/img_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/img_process.h -------------------------------------------------------------------------------- /fb2png/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_BUILD_SCRIPT := $(call my-dir)/../Android.mk 2 | -------------------------------------------------------------------------------- /fb2png/libpng/include/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/libpng/include/png.h -------------------------------------------------------------------------------- /fb2png/libpng/include/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/libpng/include/pngconf.h -------------------------------------------------------------------------------- /fb2png/libpng/lib/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/libpng/lib/libpng.a -------------------------------------------------------------------------------- /fb2png/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/log.h -------------------------------------------------------------------------------- /fb2png/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/main.c -------------------------------------------------------------------------------- /fb2png/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/run.sh -------------------------------------------------------------------------------- /fb2png/view888: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fb2png/view888 -------------------------------------------------------------------------------- /flashutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/flashutils/Android.mk -------------------------------------------------------------------------------- /flashutils/dump_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/flashutils/dump_image.c -------------------------------------------------------------------------------- /flashutils/erase_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/flashutils/erase_image.c -------------------------------------------------------------------------------- /flashutils/flash_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/flashutils/flash_image.c -------------------------------------------------------------------------------- /flashutils/flashutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/flashutils/flashutils.c -------------------------------------------------------------------------------- /flashutils/flashutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/flashutils/flashutils.h -------------------------------------------------------------------------------- /fonts/12x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fonts/12x22.png -------------------------------------------------------------------------------- /fonts/18x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fonts/18x32.png -------------------------------------------------------------------------------- /fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fonts/OFL.txt -------------------------------------------------------------------------------- /fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fonts/README -------------------------------------------------------------------------------- /framework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/framework.cpp -------------------------------------------------------------------------------- /framework.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/framework.hpp -------------------------------------------------------------------------------- /fs_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fs_manager.cpp -------------------------------------------------------------------------------- /fs_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fs_manager.h -------------------------------------------------------------------------------- /fuse_sdcard_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fuse_sdcard_provider.cpp -------------------------------------------------------------------------------- /fuse_sdcard_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fuse_sdcard_provider.h -------------------------------------------------------------------------------- /fuse_sideload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fuse_sideload.cpp -------------------------------------------------------------------------------- /fuse_sideload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/fuse_sideload.h -------------------------------------------------------------------------------- /global_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/global_metadata.cpp -------------------------------------------------------------------------------- /global_metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/global_metadata.hpp -------------------------------------------------------------------------------- /gui/libaroma/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/AUTHORS -------------------------------------------------------------------------------- /gui/libaroma/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/Android.mk -------------------------------------------------------------------------------- /gui/libaroma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/CMakeLists.txt -------------------------------------------------------------------------------- /gui/libaroma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/LICENSE -------------------------------------------------------------------------------- /gui/libaroma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/README.md -------------------------------------------------------------------------------- /gui/libaroma/include/aroma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/include/aroma.h -------------------------------------------------------------------------------- /gui/libaroma/include/aroma/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/include/aroma/core.h -------------------------------------------------------------------------------- /gui/libaroma/include/aroma/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/include/aroma/defs.h -------------------------------------------------------------------------------- /gui/libaroma/include/aroma/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/include/aroma/ui.h -------------------------------------------------------------------------------- /gui/libaroma/include/aromart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/include/aromart.h -------------------------------------------------------------------------------- /gui/libaroma/libs/freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/freetype/README -------------------------------------------------------------------------------- /gui/libaroma/libs/harfbuzz-ng/README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/Android.mk -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/ansi2knr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/ansi2knr.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/cderror.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/cdjpeg.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/cdjpeg.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/cjpeg.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/ckconfig.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/djpeg.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/example.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jcapimin.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jcapistd.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jccoefct.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jccolor.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jcdctmgr.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jchuff.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jchuff.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jcinit.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jcmainct.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jcmarker.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jcmaster.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jcomapi.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jconfig.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jcparam.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jcphuff.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jcprepct.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jcsample.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jctrans.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdapimin.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdapistd.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdatadst.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdatasrc.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdcoefct.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdcolor.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdct.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jddctmgr.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdhuff.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdhuff.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdinput.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdmainct.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdmarker.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdmaster.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdmerge.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdphuff.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdpostct.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdsample.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jdtrans.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jerror.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jerror.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jfdctflt.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jfdctfst.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jfdctint.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jidctflt.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jidctfst.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jidctint.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jidctred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jidctred.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jinclude.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jmemansi.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jmemdos.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jmemmac.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jmemmgr.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jmemname.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jmemnobs.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jmemsys.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jmorecfg.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jpegint.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jpeglib.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jpegtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jpegtran.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jquant1.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jquant2.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jutils.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/jversion.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/rdbmp.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/rdcolmap.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/rdgif.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/rdjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/rdjpgcom.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/rdppm.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/rdrle.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/rdswitch.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/rdtarga.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/transupp.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/transupp.h -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/wrbmp.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/wrgif.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/wrjpgcom.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/wrppm.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/wrrle.c -------------------------------------------------------------------------------- /gui/libaroma/libs/jpeg/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/jpeg/wrtarga.c -------------------------------------------------------------------------------- /gui/libaroma/libs/minzip/Bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/minzip/Bits.h -------------------------------------------------------------------------------- /gui/libaroma/libs/minzip/Hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/minzip/Hash.c -------------------------------------------------------------------------------- /gui/libaroma/libs/minzip/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/minzip/Hash.h -------------------------------------------------------------------------------- /gui/libaroma/libs/minzip/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/minzip/Log.h -------------------------------------------------------------------------------- /gui/libaroma/libs/minzip/Zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/minzip/Zip.c -------------------------------------------------------------------------------- /gui/libaroma/libs/minzip/Zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/minzip/Zip.h -------------------------------------------------------------------------------- /gui/libaroma/libs/png/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/Android.mk -------------------------------------------------------------------------------- /gui/libaroma/libs/png/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/png.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/png.h -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngconf.h -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngdebug.h -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngerror.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngget.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pnginfo.h -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngmem.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngpread.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngpriv.h -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngread.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngrio.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngrtran.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngrutil.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngset.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngstruct.h -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngtest.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngtrans.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngusr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngusr.h -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngwio.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngwrite.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngwtran.c -------------------------------------------------------------------------------- /gui/libaroma/libs/png/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/png/pngwutil.c -------------------------------------------------------------------------------- /gui/libaroma/libs/squirrel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/squirrel/README -------------------------------------------------------------------------------- /gui/libaroma/libs/squirrel/samples/hello.nut: -------------------------------------------------------------------------------- 1 | print("Hello World!") -------------------------------------------------------------------------------- /gui/libaroma/libs/zlib/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/zlib/Android.mk -------------------------------------------------------------------------------- /gui/libaroma/libs/zlib/MODULE_LICENSE_BSD_LIKE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/libaroma/libs/zlib/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/zlib/NOTICE -------------------------------------------------------------------------------- /gui/libaroma/libs/zlib/src/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/zlib/src/FAQ -------------------------------------------------------------------------------- /gui/libaroma/libs/zlib/src/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/zlib/src/INDEX -------------------------------------------------------------------------------- /gui/libaroma/libs/zlib/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/zlib/src/README -------------------------------------------------------------------------------- /gui/libaroma/libs/zlib/src/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/zlib/src/zlib.3 -------------------------------------------------------------------------------- /gui/libaroma/libs/zlib/src/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/libs/zlib/src/zlib.h -------------------------------------------------------------------------------- /gui/libaroma/libs/zlib/zconf.h: -------------------------------------------------------------------------------- 1 | src/zconf.h -------------------------------------------------------------------------------- /gui/libaroma/libs/zlib/zlib.h: -------------------------------------------------------------------------------- 1 | src/zlib.h -------------------------------------------------------------------------------- /gui/libaroma/libs/zlib/zutil.h: -------------------------------------------------------------------------------- 1 | src/zutil.h -------------------------------------------------------------------------------- /gui/libaroma/src/aroma/aroma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/src/aroma/aroma.c -------------------------------------------------------------------------------- /gui/libaroma/src/aroma/graph/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/src/aroma/graph/fb.c -------------------------------------------------------------------------------- /gui/libaroma/src/aroma/hid/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/src/aroma/hid/hid.c -------------------------------------------------------------------------------- /gui/libaroma/src/aroma/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/src/aroma/version.c -------------------------------------------------------------------------------- /gui/libaroma/src/aroma_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/src/aroma_internal.h -------------------------------------------------------------------------------- /gui/libaroma/src/aroma_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/src/aroma_memory.h -------------------------------------------------------------------------------- /gui/libaroma/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/src/config.h -------------------------------------------------------------------------------- /gui/libaroma/src/fallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/src/fallbacks.h -------------------------------------------------------------------------------- /gui/libaroma/src/pterodon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/src/pterodon.sh -------------------------------------------------------------------------------- /gui/libaroma/tools/linux/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/libaroma/tools/linux/build.sh -------------------------------------------------------------------------------- /gui/libaroma/tools/win32/clean.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | cd obj 3 | del /F /Q * 4 | cd .. 5 | pause -------------------------------------------------------------------------------- /gui/libaroma/tools/win32/deploy_gdb_stop.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | cd bin 3 | %LIBAROMA_ADB% shell su -c killall gdbserver 4 | -------------------------------------------------------------------------------- /gui/theme/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/Android.mk -------------------------------------------------------------------------------- /gui/theme/FileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/FileManager.cpp -------------------------------------------------------------------------------- /gui/theme/FileManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/FileManager.hpp -------------------------------------------------------------------------------- /gui/theme/control_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/control_id.h -------------------------------------------------------------------------------- /gui/theme/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/engine.cpp -------------------------------------------------------------------------------- /gui/theme/engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/engine.hpp -------------------------------------------------------------------------------- /gui/theme/engine/dialogs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/theme/engine_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/engine_debug.cpp -------------------------------------------------------------------------------- /gui/theme/engine_debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/engine_debug.hpp -------------------------------------------------------------------------------- /gui/theme/filelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/filelist.cpp -------------------------------------------------------------------------------- /gui/theme/filelist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/filelist.hpp -------------------------------------------------------------------------------- /gui/theme/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/gui.cpp -------------------------------------------------------------------------------- /gui/theme/gui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/gui.hpp -------------------------------------------------------------------------------- /gui/theme/language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/language.cpp -------------------------------------------------------------------------------- /gui/theme/language.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/language.hpp -------------------------------------------------------------------------------- /gui/theme/pterodon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/pterodon -------------------------------------------------------------------------------- /gui/theme/pterodon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/pterodon.h -------------------------------------------------------------------------------- /gui/theme/res/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/fonts/OFL.txt -------------------------------------------------------------------------------- /gui/theme/res/images/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/account.svg -------------------------------------------------------------------------------- /gui/theme/res/images/adb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/adb.svg -------------------------------------------------------------------------------- /gui/theme/res/images/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/arrow-up.svg -------------------------------------------------------------------------------- /gui/theme/res/images/backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/backup.svg -------------------------------------------------------------------------------- /gui/theme/res/images/battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/battery.svg -------------------------------------------------------------------------------- /gui/theme/res/images/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/bitcoin.svg -------------------------------------------------------------------------------- /gui/theme/res/images/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/clock.svg -------------------------------------------------------------------------------- /gui/theme/res/images/color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/color.svg -------------------------------------------------------------------------------- /gui/theme/res/images/cpuboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/cpuboard.svg -------------------------------------------------------------------------------- /gui/theme/res/images/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/discord.svg -------------------------------------------------------------------------------- /gui/theme/res/images/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/facebook.svg -------------------------------------------------------------------------------- /gui/theme/res/images/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/file.svg -------------------------------------------------------------------------------- /gui/theme/res/images/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/folder.svg -------------------------------------------------------------------------------- /gui/theme/res/images/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/font.svg -------------------------------------------------------------------------------- /gui/theme/res/images/format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/format.svg -------------------------------------------------------------------------------- /gui/theme/res/images/forum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/forum.svg -------------------------------------------------------------------------------- /gui/theme/res/images/gesture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/gesture.svg -------------------------------------------------------------------------------- /gui/theme/res/images/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/git.svg -------------------------------------------------------------------------------- /gui/theme/res/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/github.svg -------------------------------------------------------------------------------- /gui/theme/res/images/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/gitlab.svg -------------------------------------------------------------------------------- /gui/theme/res/images/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/heart.svg -------------------------------------------------------------------------------- /gui/theme/res/images/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/help.svg -------------------------------------------------------------------------------- /gui/theme/res/images/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/home.svg -------------------------------------------------------------------------------- /gui/theme/res/images/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/inbox.svg -------------------------------------------------------------------------------- /gui/theme/res/images/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/info.svg -------------------------------------------------------------------------------- /gui/theme/res/images/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/keyboard.svg -------------------------------------------------------------------------------- /gui/theme/res/images/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/language.svg -------------------------------------------------------------------------------- /gui/theme/res/images/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/linux.svg -------------------------------------------------------------------------------- /gui/theme/res/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/logo.svg -------------------------------------------------------------------------------- /gui/theme/res/images/logs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/logs.svg -------------------------------------------------------------------------------- /gui/theme/res/images/memory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/memory.svg -------------------------------------------------------------------------------- /gui/theme/res/images/patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/patreon.svg -------------------------------------------------------------------------------- /gui/theme/res/images/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/power.svg -------------------------------------------------------------------------------- /gui/theme/res/images/reboot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/reboot.svg -------------------------------------------------------------------------------- /gui/theme/res/images/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/reddit.svg -------------------------------------------------------------------------------- /gui/theme/res/images/restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/restore.svg -------------------------------------------------------------------------------- /gui/theme/res/images/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/school.svg -------------------------------------------------------------------------------- /gui/theme/res/images/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/security.svg -------------------------------------------------------------------------------- /gui/theme/res/images/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/settings.svg -------------------------------------------------------------------------------- /gui/theme/res/images/sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/sleep.svg -------------------------------------------------------------------------------- /gui/theme/res/images/storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/storage.svg -------------------------------------------------------------------------------- /gui/theme/res/images/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/telegram.svg -------------------------------------------------------------------------------- /gui/theme/res/images/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/terminal.svg -------------------------------------------------------------------------------- /gui/theme/res/images/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/timer.svg -------------------------------------------------------------------------------- /gui/theme/res/images/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/tools.svg -------------------------------------------------------------------------------- /gui/theme/res/images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/twitter.svg -------------------------------------------------------------------------------- /gui/theme/res/images/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/usb.svg -------------------------------------------------------------------------------- /gui/theme/res/images/verified.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/verified.svg -------------------------------------------------------------------------------- /gui/theme/res/images/wipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/wipe.svg -------------------------------------------------------------------------------- /gui/theme/res/images/xda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/xda.svg -------------------------------------------------------------------------------- /gui/theme/res/images/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/images/youtube.svg -------------------------------------------------------------------------------- /gui/theme/res/language/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/res/language/en.xml -------------------------------------------------------------------------------- /gui/theme/sidebar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/sidebar.cpp -------------------------------------------------------------------------------- /gui/theme/sidebar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/sidebar.hpp -------------------------------------------------------------------------------- /gui/theme/statusbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/statusbar.cpp -------------------------------------------------------------------------------- /gui/theme/statusbar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/statusbar.hpp -------------------------------------------------------------------------------- /gui/theme/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/timer.hpp -------------------------------------------------------------------------------- /gui/theme/timer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/timer_test.cpp -------------------------------------------------------------------------------- /gui/theme/windowpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/windowpool.cpp -------------------------------------------------------------------------------- /gui/theme/windowpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/gui/theme/windowpool.hpp -------------------------------------------------------------------------------- /install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/install.cpp -------------------------------------------------------------------------------- /install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/install.h -------------------------------------------------------------------------------- /interlace-frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/interlace-frames.py -------------------------------------------------------------------------------- /libcrecovery/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libcrecovery/Android.mk -------------------------------------------------------------------------------- /libcrecovery/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libcrecovery/common.h -------------------------------------------------------------------------------- /libcrecovery/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libcrecovery/defines.h -------------------------------------------------------------------------------- /libcrecovery/dumwolf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libcrecovery/dumwolf.c -------------------------------------------------------------------------------- /libcrecovery/dumwolf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libcrecovery/dumwolf.h -------------------------------------------------------------------------------- /libcrecovery/mincrypt/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libcrecovery/mincrypt/sha.c -------------------------------------------------------------------------------- /libcrecovery/mincrypt/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libcrecovery/mincrypt/sha.h -------------------------------------------------------------------------------- /libcrecovery/mincrypt/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libcrecovery/mincrypt/sha256.c -------------------------------------------------------------------------------- /libcrecovery/mincrypt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libcrecovery/mincrypt/sha256.h -------------------------------------------------------------------------------- /libcrecovery/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libcrecovery/popen.c -------------------------------------------------------------------------------- /libcrecovery/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libcrecovery/system.c -------------------------------------------------------------------------------- /libmincrypt/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libmincrypt/Android.mk -------------------------------------------------------------------------------- /libmincrypt/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libmincrypt/NOTICE -------------------------------------------------------------------------------- /libmincrypt/dsa_sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libmincrypt/dsa_sig.c -------------------------------------------------------------------------------- /libmincrypt/p256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libmincrypt/p256.c -------------------------------------------------------------------------------- /libmincrypt/p256_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libmincrypt/p256_ec.c -------------------------------------------------------------------------------- /libmincrypt/p256_ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libmincrypt/p256_ecdsa.c -------------------------------------------------------------------------------- /libmincrypt/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libmincrypt/rsa.c -------------------------------------------------------------------------------- /libmincrypt/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libmincrypt/sha.c -------------------------------------------------------------------------------- /libmincrypt/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libmincrypt/sha256.c -------------------------------------------------------------------------------- /libtar/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/Android.mk -------------------------------------------------------------------------------- /libtar/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/COPYRIGHT -------------------------------------------------------------------------------- /libtar/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/ChangeLog -------------------------------------------------------------------------------- /libtar/ChangeLog-1.0.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/ChangeLog-1.0.x -------------------------------------------------------------------------------- /libtar/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/INSTALL -------------------------------------------------------------------------------- /libtar/MODULE_LICENSE_MIT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libtar/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/NOTICE -------------------------------------------------------------------------------- /libtar/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/README -------------------------------------------------------------------------------- /libtar/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/TODO -------------------------------------------------------------------------------- /libtar/compat/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/ChangeLog -------------------------------------------------------------------------------- /libtar/compat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/README -------------------------------------------------------------------------------- /libtar/compat/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/TODO -------------------------------------------------------------------------------- /libtar/compat/basename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/basename.c -------------------------------------------------------------------------------- /libtar/compat/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/compat.h -------------------------------------------------------------------------------- /libtar/compat/dirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/dirname.c -------------------------------------------------------------------------------- /libtar/compat/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/fnmatch.c -------------------------------------------------------------------------------- /libtar/compat/gethostbyname_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/gethostbyname_r.c -------------------------------------------------------------------------------- /libtar/compat/gethostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/gethostname.c -------------------------------------------------------------------------------- /libtar/compat/getservbyname_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/getservbyname_r.c -------------------------------------------------------------------------------- /libtar/compat/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/glob.c -------------------------------------------------------------------------------- /libtar/compat/inet_aton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/inet_aton.c -------------------------------------------------------------------------------- /libtar/compat/module.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/module.ac -------------------------------------------------------------------------------- /libtar/compat/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/snprintf.c -------------------------------------------------------------------------------- /libtar/compat/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/strdup.c -------------------------------------------------------------------------------- /libtar/compat/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/strlcat.c -------------------------------------------------------------------------------- /libtar/compat/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/strlcpy.c -------------------------------------------------------------------------------- /libtar/compat/strmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/strmode.c -------------------------------------------------------------------------------- /libtar/compat/strrstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/strrstr.c -------------------------------------------------------------------------------- /libtar/compat/strsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/compat/strsep.c -------------------------------------------------------------------------------- /libtar/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/config.h -------------------------------------------------------------------------------- /libtar/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/doc/Makefile.in -------------------------------------------------------------------------------- /libtar/doc/tar_append_file.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/doc/tar_append_file.3 -------------------------------------------------------------------------------- /libtar/doc/tar_block_read.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/doc/tar_block_read.3 -------------------------------------------------------------------------------- /libtar/doc/tar_extract_all.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/doc/tar_extract_all.3 -------------------------------------------------------------------------------- /libtar/doc/tar_extract_file.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/doc/tar_extract_file.3 -------------------------------------------------------------------------------- /libtar/doc/tar_open.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/doc/tar_open.3 -------------------------------------------------------------------------------- /libtar/doc/th_get_pathname.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/doc/th_get_pathname.3 -------------------------------------------------------------------------------- /libtar/doc/th_print_long_ls.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/doc/th_print_long_ls.3 -------------------------------------------------------------------------------- /libtar/doc/th_read.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/doc/th_read.3 -------------------------------------------------------------------------------- /libtar/doc/th_set_from_stat.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/doc/th_set_from_stat.3 -------------------------------------------------------------------------------- /libtar/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/lib/Makefile.in -------------------------------------------------------------------------------- /libtar/lib/append.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/lib/append.c -------------------------------------------------------------------------------- /libtar/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/lib/block.c -------------------------------------------------------------------------------- /libtar/lib/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/lib/decode.c -------------------------------------------------------------------------------- /libtar/lib/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/lib/encode.c -------------------------------------------------------------------------------- /libtar/lib/extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/lib/extract.c -------------------------------------------------------------------------------- /libtar/lib/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/lib/handle.c -------------------------------------------------------------------------------- /libtar/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/lib/internal.h -------------------------------------------------------------------------------- /libtar/lib/libtar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/lib/libtar.h -------------------------------------------------------------------------------- /libtar/lib/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/lib/output.c -------------------------------------------------------------------------------- /libtar/lib/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/lib/util.c -------------------------------------------------------------------------------- /libtar/lib/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/lib/wrapper.c -------------------------------------------------------------------------------- /libtar/listhash/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/listhash/ChangeLog -------------------------------------------------------------------------------- /libtar/listhash/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/listhash/TODO -------------------------------------------------------------------------------- /libtar/listhash/hash.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/listhash/hash.c.in -------------------------------------------------------------------------------- /libtar/listhash/hash_new.3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/listhash/hash_new.3.in -------------------------------------------------------------------------------- /libtar/listhash/libtar_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/listhash/libtar_hash.c -------------------------------------------------------------------------------- /libtar/listhash/libtar_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/listhash/libtar_list.c -------------------------------------------------------------------------------- /libtar/listhash/libtar_listhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/listhash/libtar_listhash.h -------------------------------------------------------------------------------- /libtar/listhash/list.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/listhash/list.c.in -------------------------------------------------------------------------------- /libtar/listhash/list_new.3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/listhash/list_new.3.in -------------------------------------------------------------------------------- /libtar/listhash/listhash.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/listhash/listhash.h.in -------------------------------------------------------------------------------- /libtar/listhash/module.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/listhash/module.ac -------------------------------------------------------------------------------- /libtar/minitar/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/minitar/ChangeLog -------------------------------------------------------------------------------- /libtar/minitar/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/minitar/Makefile.in -------------------------------------------------------------------------------- /libtar/minitar/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/minitar/main.c -------------------------------------------------------------------------------- /libtar/minitar/minitar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/minitar/minitar.c -------------------------------------------------------------------------------- /libtar/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/libtar/tar.h -------------------------------------------------------------------------------- /metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/metadata.cpp -------------------------------------------------------------------------------- /metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/metadata.hpp -------------------------------------------------------------------------------- /minadbd/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minadbd/Android.mk -------------------------------------------------------------------------------- /minadbd/AndroidTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minadbd/AndroidTest.xml -------------------------------------------------------------------------------- /minadbd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minadbd/README.md -------------------------------------------------------------------------------- /minadbd/fuse_adb_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minadbd/fuse_adb_provider.cpp -------------------------------------------------------------------------------- /minadbd/fuse_adb_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minadbd/fuse_adb_provider.h -------------------------------------------------------------------------------- /minadbd/minadbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minadbd/minadbd.cpp -------------------------------------------------------------------------------- /minadbd/minadbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minadbd/minadbd.h -------------------------------------------------------------------------------- /minadbd/minadbd_services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minadbd/minadbd_services.cpp -------------------------------------------------------------------------------- /minelf/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minelf/Android.mk -------------------------------------------------------------------------------- /minelf/Retouch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minelf/Retouch.c -------------------------------------------------------------------------------- /minelf/Retouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minelf/Retouch.h -------------------------------------------------------------------------------- /minui/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/Android.mk -------------------------------------------------------------------------------- /minui/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/events.cpp -------------------------------------------------------------------------------- /minui/font_10x18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/font_10x18.h -------------------------------------------------------------------------------- /minui/graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/graphics.cpp -------------------------------------------------------------------------------- /minui/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/graphics.h -------------------------------------------------------------------------------- /minui/graphics_adf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/graphics_adf.cpp -------------------------------------------------------------------------------- /minui/graphics_adf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/graphics_adf.h -------------------------------------------------------------------------------- /minui/graphics_drm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/graphics_drm.cpp -------------------------------------------------------------------------------- /minui/graphics_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/graphics_drm.h -------------------------------------------------------------------------------- /minui/graphics_fbdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/graphics_fbdev.cpp -------------------------------------------------------------------------------- /minui/graphics_fbdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/graphics_fbdev.h -------------------------------------------------------------------------------- /minui/include/minui/minui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/include/minui/minui.h -------------------------------------------------------------------------------- /minui/mkfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/mkfont.c -------------------------------------------------------------------------------- /minui/resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/minui/resources.cpp -------------------------------------------------------------------------------- /mmcutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/mmcutils/Android.mk -------------------------------------------------------------------------------- /mmcutils/mmcutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/mmcutils/mmcutils.c -------------------------------------------------------------------------------- /mmcutils/mmcutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/mmcutils/mmcutils.h -------------------------------------------------------------------------------- /mounts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/mounts.cpp -------------------------------------------------------------------------------- /mounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/mounts.h -------------------------------------------------------------------------------- /mtdutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/mtdutils/Android.mk -------------------------------------------------------------------------------- /mtdutils/bml_over_mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/mtdutils/bml_over_mtd.c -------------------------------------------------------------------------------- /mtdutils/mounts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/mtdutils/mounts.c -------------------------------------------------------------------------------- /mtdutils/mounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/mtdutils/mounts.h -------------------------------------------------------------------------------- /mtdutils/mtdutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/mtdutils/mtdutils.c -------------------------------------------------------------------------------- /mtdutils/mtdutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/mtdutils/mtdutils.h -------------------------------------------------------------------------------- /ntfs-3g/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/AUTHORS -------------------------------------------------------------------------------- /ntfs-3g/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/Android.mk -------------------------------------------------------------------------------- /ntfs-3g/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/COPYING -------------------------------------------------------------------------------- /ntfs-3g/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/COPYING.LIB -------------------------------------------------------------------------------- /ntfs-3g/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/CREDITS -------------------------------------------------------------------------------- /ntfs-3g/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ChangeLog -------------------------------------------------------------------------------- /ntfs-3g/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/INSTALL -------------------------------------------------------------------------------- /ntfs-3g/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/Makefile.am -------------------------------------------------------------------------------- /ntfs-3g/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/Makefile.in -------------------------------------------------------------------------------- /ntfs-3g/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/NEWS -------------------------------------------------------------------------------- /ntfs-3g/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/README -------------------------------------------------------------------------------- /ntfs-3g/TODO.ntfsprogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/TODO.ntfsprogs -------------------------------------------------------------------------------- /ntfs-3g/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/aclocal.m4 -------------------------------------------------------------------------------- /ntfs-3g/androidglue/statvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/androidglue/statvfs.c -------------------------------------------------------------------------------- /ntfs-3g/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/autogen.sh -------------------------------------------------------------------------------- /ntfs-3g/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/compile -------------------------------------------------------------------------------- /ntfs-3g/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/config.guess -------------------------------------------------------------------------------- /ntfs-3g/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/config.h -------------------------------------------------------------------------------- /ntfs-3g/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/config.h.in -------------------------------------------------------------------------------- /ntfs-3g/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/config.sub -------------------------------------------------------------------------------- /ntfs-3g/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/configure -------------------------------------------------------------------------------- /ntfs-3g/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/configure.ac -------------------------------------------------------------------------------- /ntfs-3g/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/depcomp -------------------------------------------------------------------------------- /ntfs-3g/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/Makefile.am -------------------------------------------------------------------------------- /ntfs-3g/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/Makefile.in -------------------------------------------------------------------------------- /ntfs-3g/include/fuse-lite/fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/fuse-lite/fuse.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/acls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/acls.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/attrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/attrib.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/bitmap.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/cache.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/collate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/collate.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/compat.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/debug.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/device.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/dir.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/efs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/efs.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/endians.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/endians.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/index.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/inode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/inode.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/layout.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/logfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/logfile.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/logging.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/mft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/mft.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/misc.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/mst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/mst.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/param.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/reparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/reparse.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/runlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/runlist.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/support.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/types.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/unistr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/unistr.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/volume.h -------------------------------------------------------------------------------- /ntfs-3g/include/ntfs-3g/xattrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/include/ntfs-3g/xattrs.h -------------------------------------------------------------------------------- /ntfs-3g/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/install-sh -------------------------------------------------------------------------------- /ntfs-3g/libfuse-lite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libfuse-lite/Makefile.am -------------------------------------------------------------------------------- /ntfs-3g/libfuse-lite/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libfuse-lite/Makefile.in -------------------------------------------------------------------------------- /ntfs-3g/libfuse-lite/fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libfuse-lite/fuse.c -------------------------------------------------------------------------------- /ntfs-3g/libfuse-lite/fuse_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libfuse-lite/fuse_i.h -------------------------------------------------------------------------------- /ntfs-3g/libfuse-lite/fuse_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libfuse-lite/fuse_loop.c -------------------------------------------------------------------------------- /ntfs-3g/libfuse-lite/fuse_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libfuse-lite/fuse_misc.h -------------------------------------------------------------------------------- /ntfs-3g/libfuse-lite/fuse_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libfuse-lite/fuse_opt.c -------------------------------------------------------------------------------- /ntfs-3g/libfuse-lite/fusermount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libfuse-lite/fusermount.c -------------------------------------------------------------------------------- /ntfs-3g/libfuse-lite/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libfuse-lite/helper.c -------------------------------------------------------------------------------- /ntfs-3g/libfuse-lite/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libfuse-lite/mount.c -------------------------------------------------------------------------------- /ntfs-3g/libfuse-lite/mount_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libfuse-lite/mount_util.c -------------------------------------------------------------------------------- /ntfs-3g/libfuse-lite/mount_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libfuse-lite/mount_util.h -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/Makefile.am -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/Makefile.in -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/acls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/acls.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/attrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/attrib.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/attrlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/attrlist.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/bitmap.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/bootsect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/bootsect.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/cache.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/collate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/collate.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/compat.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/compress.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/debug.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/device.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/dir.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/efs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/efs.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/index.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/inode.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/lcnalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/lcnalloc.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/libntfs-3g.script.so.in: -------------------------------------------------------------------------------- 1 | @OUTPUT_FORMAT@ 2 | GROUP ( @rootlibdir@/libntfs-3g.so ) 3 | -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/logfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/logfile.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/logging.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/mft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/mft.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/misc.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/mst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/mst.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/object_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/object_id.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/realpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/realpath.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/reparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/reparse.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/runlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/runlist.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/security.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/unistr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/unistr.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/unix_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/unix_io.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/volume.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/win32_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/win32_io.c -------------------------------------------------------------------------------- /ntfs-3g/libntfs-3g/xattrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/libntfs-3g/xattrs.c -------------------------------------------------------------------------------- /ntfs-3g/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ltmain.sh -------------------------------------------------------------------------------- /ntfs-3g/m4/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ntfs-3g/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/missing -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/Makefile.am -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/Makefile.in -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/attrdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/attrdef.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/attrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/attrdef.h -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/boot.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/boot.h -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/cluster.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/cluster.h -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/list.h -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/mkntfs.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/mkntfs.8.in -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/mkntfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/mkntfs.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/mkntfs_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/mkntfs_main.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfscat.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfscat.8.in -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfscat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfscat.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfscat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfscat.h -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsck.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsclone.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsclone.8.in -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsclone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsclone.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfscluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfscluster.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfscluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfscluster.h -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfscmp.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfscmp.8.in -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfscmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfscmp.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfscp.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfscp.8.in -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfscp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfscp.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsdecrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsdecrypt.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsfix.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsfix.8.in -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsfix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsfix.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsfix_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsfix_main.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsinfo.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsinfo.8.in -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsinfo.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfslabel.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfslabel.8.in -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfslabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfslabel.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsls.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsls.8.in -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsls.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsmftalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsmftalloc.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsmove.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsmove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsmove.h -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsprogs.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsprogs.8.in -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsresize.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsresize.8.in -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsresize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsresize.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfstruncate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfstruncate.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsundelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsundelete.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfsundelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfsundelete.h -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfswipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfswipe.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/ntfswipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/ntfswipe.h -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/sd.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/sd.h -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/utils.c -------------------------------------------------------------------------------- /ntfs-3g/ntfsprogs/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/ntfsprogs/utils.h -------------------------------------------------------------------------------- /ntfs-3g/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/Makefile.am -------------------------------------------------------------------------------- /ntfs-3g/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/Makefile.in -------------------------------------------------------------------------------- /ntfs-3g/src/lowntfs-3g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/lowntfs-3g.c -------------------------------------------------------------------------------- /ntfs-3g/src/ntfs-3g.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/ntfs-3g.8.in -------------------------------------------------------------------------------- /ntfs-3g/src/ntfs-3g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/ntfs-3g.c -------------------------------------------------------------------------------- /ntfs-3g/src/ntfs-3g.probe.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/ntfs-3g.probe.8.in -------------------------------------------------------------------------------- /ntfs-3g/src/ntfs-3g.probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/ntfs-3g.probe.c -------------------------------------------------------------------------------- /ntfs-3g/src/ntfs-3g.secaudit.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/ntfs-3g.secaudit.8.in -------------------------------------------------------------------------------- /ntfs-3g/src/ntfs-3g.usermap.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/ntfs-3g.usermap.8.in -------------------------------------------------------------------------------- /ntfs-3g/src/ntfs-3g_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/ntfs-3g_common.c -------------------------------------------------------------------------------- /ntfs-3g/src/ntfs-3g_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/ntfs-3g_common.h -------------------------------------------------------------------------------- /ntfs-3g/src/ntfs-3g_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/ntfs-3g_main.c -------------------------------------------------------------------------------- /ntfs-3g/src/secaudit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/secaudit.c -------------------------------------------------------------------------------- /ntfs-3g/src/secaudit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/secaudit.h -------------------------------------------------------------------------------- /ntfs-3g/src/usermap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ntfs-3g/src/usermap.c -------------------------------------------------------------------------------- /otafault/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otafault/Android.bp -------------------------------------------------------------------------------- /otafault/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otafault/Android.mk -------------------------------------------------------------------------------- /otafault/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otafault/config.cpp -------------------------------------------------------------------------------- /otafault/ota_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otafault/ota_io.cpp -------------------------------------------------------------------------------- /otafault/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otafault/test.cpp -------------------------------------------------------------------------------- /otautil/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otautil/Android.bp -------------------------------------------------------------------------------- /otautil/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otautil/Android.mk -------------------------------------------------------------------------------- /otautil/DirUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otautil/DirUtil.cpp -------------------------------------------------------------------------------- /otautil/SysUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otautil/SysUtil.cpp -------------------------------------------------------------------------------- /otautil/ThermalUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otautil/ThermalUtil.cpp -------------------------------------------------------------------------------- /otautil/cache_location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otautil/cache_location.cpp -------------------------------------------------------------------------------- /otautil/include/otautil/DirUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otautil/include/otautil/DirUtil.h -------------------------------------------------------------------------------- /otautil/include/otautil/SysUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otautil/include/otautil/SysUtil.h -------------------------------------------------------------------------------- /otautil/rangeset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/otautil/rangeset.cpp -------------------------------------------------------------------------------- /private/install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/private/install.h -------------------------------------------------------------------------------- /property_api_fake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/property_api_fake.cpp -------------------------------------------------------------------------------- /property_api_fake.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/property_api_fake.hpp -------------------------------------------------------------------------------- /property_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/property_manager.cpp -------------------------------------------------------------------------------- /property_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/property_manager.hpp -------------------------------------------------------------------------------- /pterodon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/pterodon.cpp -------------------------------------------------------------------------------- /pterodon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/pterodon.hpp -------------------------------------------------------------------------------- /pterologger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/pterologger.cpp -------------------------------------------------------------------------------- /pterologger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/pterologger.hpp -------------------------------------------------------------------------------- /recovery-persist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/recovery-persist.cpp -------------------------------------------------------------------------------- /recovery-persist.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/recovery-persist.rc -------------------------------------------------------------------------------- /recovery-refresh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/recovery-refresh.cpp -------------------------------------------------------------------------------- /recovery-refresh.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/recovery-refresh.rc -------------------------------------------------------------------------------- /recovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/recovery.cpp -------------------------------------------------------------------------------- /res-560dpi: -------------------------------------------------------------------------------- 1 | res-xxxhdpi -------------------------------------------------------------------------------- /res-hdpi/images/erasing_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/erasing_text.png -------------------------------------------------------------------------------- /res-hdpi/images/error_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/error_text.png -------------------------------------------------------------------------------- /res-hdpi/images/icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/icon_error.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00000.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00001.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00002.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00003.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00004.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00005.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00006.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00007.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00008.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00009.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00010.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00011.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00012.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00013.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00014.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00015.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00016.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00017.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00018.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00019.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00020.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00021.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00022.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00023.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00024.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00025.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00026.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00027.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00028.png -------------------------------------------------------------------------------- /res-hdpi/images/loop00029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/loop00029.png -------------------------------------------------------------------------------- /res-hdpi/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/progress_fill.png -------------------------------------------------------------------------------- /res-hdpi/images/stage_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/stage_empty.png -------------------------------------------------------------------------------- /res-hdpi/images/stage_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-hdpi/images/stage_fill.png -------------------------------------------------------------------------------- /res-mdpi/images/erasing_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/erasing_text.png -------------------------------------------------------------------------------- /res-mdpi/images/error_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/error_text.png -------------------------------------------------------------------------------- /res-mdpi/images/icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/icon_error.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00000.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00001.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00002.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00003.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00004.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00005.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00006.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00007.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00008.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00009.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00010.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00011.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00012.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00013.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00014.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00015.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00016.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00017.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00018.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00019.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00020.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00021.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00022.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00023.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00024.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00025.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00026.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00027.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00028.png -------------------------------------------------------------------------------- /res-mdpi/images/loop00029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/loop00029.png -------------------------------------------------------------------------------- /res-mdpi/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/progress_fill.png -------------------------------------------------------------------------------- /res-mdpi/images/stage_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/stage_empty.png -------------------------------------------------------------------------------- /res-mdpi/images/stage_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-mdpi/images/stage_fill.png -------------------------------------------------------------------------------- /res-xhdpi/images/erasing_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/erasing_text.png -------------------------------------------------------------------------------- /res-xhdpi/images/error_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/error_text.png -------------------------------------------------------------------------------- /res-xhdpi/images/icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/icon_error.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00000.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00001.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00002.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00003.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00004.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00005.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00006.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00007.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00008.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00009.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00010.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00011.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00012.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00013.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00014.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00015.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00016.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00017.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00018.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00019.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00020.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00021.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00022.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00023.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00024.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00025.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00026.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00027.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00028.png -------------------------------------------------------------------------------- /res-xhdpi/images/loop00029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/loop00029.png -------------------------------------------------------------------------------- /res-xhdpi/images/stage_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xhdpi/images/stage_fill.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00000.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00001.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00002.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00003.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00004.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00005.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00006.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00007.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00008.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00009.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00010.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00011.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00012.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00013.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00014.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00015.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00016.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00017.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00018.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00019.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00020.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00021.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00022.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00023.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00024.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00025.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00026.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00027.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00028.png -------------------------------------------------------------------------------- /res-xxhdpi/images/loop00029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/res-xxhdpi/images/loop00029.png -------------------------------------------------------------------------------- /roots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/roots.cpp -------------------------------------------------------------------------------- /roots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/roots.h -------------------------------------------------------------------------------- /rotate_logs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/rotate_logs.cpp -------------------------------------------------------------------------------- /rotate_logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/rotate_logs.h -------------------------------------------------------------------------------- /screen_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/screen_ui.cpp -------------------------------------------------------------------------------- /screen_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/screen_ui.h -------------------------------------------------------------------------------- /scripts/copy_blobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/scripts/copy_blobs.sh -------------------------------------------------------------------------------- /scripts/device_tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/scripts/device_tree.sh -------------------------------------------------------------------------------- /scripts/fix_script_bogus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/scripts/fix_script_bogus.sh -------------------------------------------------------------------------------- /scripts/readelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/scripts/readelf -------------------------------------------------------------------------------- /settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/settings.cpp -------------------------------------------------------------------------------- /settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/settings.hpp -------------------------------------------------------------------------------- /strdiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/strdiv.cpp -------------------------------------------------------------------------------- /strdiv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/strdiv.hpp -------------------------------------------------------------------------------- /strdiv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/strdiv_test.cpp -------------------------------------------------------------------------------- /stub_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/stub_ui.h -------------------------------------------------------------------------------- /tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/Android.mk -------------------------------------------------------------------------------- /tests/AndroidTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/AndroidTest.xml -------------------------------------------------------------------------------- /tests/common/test_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/common/test_constants.h -------------------------------------------------------------------------------- /tests/component/edify_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/component/edify_test.cpp -------------------------------------------------------------------------------- /tests/manual/recovery_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/manual/recovery_test.cpp -------------------------------------------------------------------------------- /tests/testdata/bonus.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/bonus.file -------------------------------------------------------------------------------- /tests/testdata/boot.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/boot.img -------------------------------------------------------------------------------- /tests/testdata/deflate_src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/deflate_src.zip -------------------------------------------------------------------------------- /tests/testdata/deflate_tgt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/deflate_tgt.zip -------------------------------------------------------------------------------- /tests/testdata/fake-eocd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/fake-eocd.zip -------------------------------------------------------------------------------- /tests/testdata/jarsigned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/jarsigned.zip -------------------------------------------------------------------------------- /tests/testdata/new.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/new.file -------------------------------------------------------------------------------- /tests/testdata/old.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/old.file -------------------------------------------------------------------------------- /tests/testdata/otasigned_v1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/otasigned_v1.zip -------------------------------------------------------------------------------- /tests/testdata/otasigned_v2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/otasigned_v2.zip -------------------------------------------------------------------------------- /tests/testdata/otasigned_v3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/otasigned_v3.zip -------------------------------------------------------------------------------- /tests/testdata/otasigned_v4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/otasigned_v4.zip -------------------------------------------------------------------------------- /tests/testdata/otasigned_v5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/otasigned_v5.zip -------------------------------------------------------------------------------- /tests/testdata/patch.bsdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/patch.bsdiff -------------------------------------------------------------------------------- /tests/testdata/random.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/random.zip -------------------------------------------------------------------------------- /tests/testdata/recovery.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/recovery.img -------------------------------------------------------------------------------- /tests/testdata/testkey_v1.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/testkey_v1.pk8 -------------------------------------------------------------------------------- /tests/testdata/testkey_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/testkey_v1.txt -------------------------------------------------------------------------------- /tests/testdata/testkey_v2.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/testkey_v2.pk8 -------------------------------------------------------------------------------- /tests/testdata/testkey_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/testkey_v2.txt -------------------------------------------------------------------------------- /tests/testdata/testkey_v3.pk8: -------------------------------------------------------------------------------- 1 | testkey_v1.pk8 -------------------------------------------------------------------------------- /tests/testdata/testkey_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/testkey_v3.txt -------------------------------------------------------------------------------- /tests/testdata/testkey_v4.pk8: -------------------------------------------------------------------------------- 1 | testkey_v2.pk8 -------------------------------------------------------------------------------- /tests/testdata/testkey_v4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/testkey_v4.txt -------------------------------------------------------------------------------- /tests/testdata/testkey_v5.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/testkey_v5.pk8 -------------------------------------------------------------------------------- /tests/testdata/testkey_v5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/testkey_v5.txt -------------------------------------------------------------------------------- /tests/testdata/unsigned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/testdata/unsigned.zip -------------------------------------------------------------------------------- /tests/unit/dirutil_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/unit/dirutil_test.cpp -------------------------------------------------------------------------------- /tests/unit/locale_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/unit/locale_test.cpp -------------------------------------------------------------------------------- /tests/unit/rangeset_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/unit/rangeset_test.cpp -------------------------------------------------------------------------------- /tests/unit/sysutil_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/unit/sysutil_test.cpp -------------------------------------------------------------------------------- /tests/unit/zip_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tests/unit/zip_test.cpp -------------------------------------------------------------------------------- /tools/Android.mk: -------------------------------------------------------------------------------- 1 | include $(all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /tools/dumpkey/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tools/dumpkey/Android.mk -------------------------------------------------------------------------------- /tools/dumpkey/DumpPublicKey.mf: -------------------------------------------------------------------------------- 1 | Main-Class: com.android.dumpkey.DumpPublicKey 2 | -------------------------------------------------------------------------------- /tools/recovery_l10n/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tools/recovery_l10n/Android.mk -------------------------------------------------------------------------------- /tools/recovery_l10n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/tools/recovery_l10n/README.md -------------------------------------------------------------------------------- /ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ui.cpp -------------------------------------------------------------------------------- /ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/ui.h -------------------------------------------------------------------------------- /uncrypt/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/uncrypt/Android.bp -------------------------------------------------------------------------------- /uncrypt/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/uncrypt/Android.mk -------------------------------------------------------------------------------- /uncrypt/uncrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/uncrypt/uncrypt.cpp -------------------------------------------------------------------------------- /uncrypt/uncrypt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/uncrypt/uncrypt.rc -------------------------------------------------------------------------------- /update_verifier/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/update_verifier/Android.mk -------------------------------------------------------------------------------- /updater/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/updater/Android.mk -------------------------------------------------------------------------------- /updater/blockimg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/updater/blockimg.cpp -------------------------------------------------------------------------------- /updater/install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/updater/install.cpp -------------------------------------------------------------------------------- /updater/updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/updater/updater.cpp -------------------------------------------------------------------------------- /verifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/verifier.cpp -------------------------------------------------------------------------------- /verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/verifier.h -------------------------------------------------------------------------------- /version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/version.cpp -------------------------------------------------------------------------------- /version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/version.hpp -------------------------------------------------------------------------------- /vr_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/vr_device.cpp -------------------------------------------------------------------------------- /vr_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/vr_ui.cpp -------------------------------------------------------------------------------- /vr_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/vr_ui.h -------------------------------------------------------------------------------- /wear_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/wear_device.cpp -------------------------------------------------------------------------------- /wear_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/wear_ui.cpp -------------------------------------------------------------------------------- /wear_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PterodonRecovery/pterodon/HEAD/wear_ui.h --------------------------------------------------------------------------------