├── AUTHORS ├── Android.mk ├── COPYING ├── COPYING.LIB ├── CREDITS ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── TODO.ntfsprogs ├── aclocal.m4 ├── 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 │ ├── ea.h │ ├── efs.h │ ├── endians.h │ ├── index.h │ ├── inode.h │ ├── ioctl.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 ├── ea.c ├── efs.c ├── index.c ├── inode.c ├── ioctl.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 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 ├── 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 ├── 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.8.in ├── ntfsdecrypt.c ├── ntfsdump_logfile.c ├── ntfsfallocate.8.in ├── ntfsfallocate.c ├── ntfsfix.8.in ├── ntfsfix.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 ├── ntfsrecover.8.in ├── ntfsrecover.c ├── ntfsrecover.h ├── ntfsresize.8.in ├── ntfsresize.c ├── ntfstruncate.8.in ├── ntfstruncate.c ├── ntfsundelete.8.in ├── ntfsundelete.c ├── ntfsundelete.h ├── ntfswipe.8.in ├── ntfswipe.c ├── ntfswipe.h ├── playlog.c ├── 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 ├── secaudit.c ├── secaudit.h └── usermap.c /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/AUTHORS -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/Android.mk -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/CREDITS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/README -------------------------------------------------------------------------------- /TODO.ntfsprogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/TODO.ntfsprogs -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/autogen.sh -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/config.guess -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/config.h -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/depcomp -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/Makefile.in -------------------------------------------------------------------------------- /include/fuse-lite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/fuse-lite/Makefile.am -------------------------------------------------------------------------------- /include/fuse-lite/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/fuse-lite/Makefile.in -------------------------------------------------------------------------------- /include/fuse-lite/fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/fuse-lite/fuse.h -------------------------------------------------------------------------------- /include/fuse-lite/fuse_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/fuse-lite/fuse_common.h -------------------------------------------------------------------------------- /include/fuse-lite/fuse_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/fuse-lite/fuse_kernel.h -------------------------------------------------------------------------------- /include/fuse-lite/fuse_lowlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/fuse-lite/fuse_lowlevel.h -------------------------------------------------------------------------------- /include/fuse-lite/fuse_lowlevel_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/fuse-lite/fuse_lowlevel_compat.h -------------------------------------------------------------------------------- /include/fuse-lite/fuse_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/fuse-lite/fuse_opt.h -------------------------------------------------------------------------------- /include/ntfs-3g/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/Makefile.am -------------------------------------------------------------------------------- /include/ntfs-3g/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/Makefile.in -------------------------------------------------------------------------------- /include/ntfs-3g/acls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/acls.h -------------------------------------------------------------------------------- /include/ntfs-3g/attrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/attrib.h -------------------------------------------------------------------------------- /include/ntfs-3g/attrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/attrlist.h -------------------------------------------------------------------------------- /include/ntfs-3g/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/bitmap.h -------------------------------------------------------------------------------- /include/ntfs-3g/bootsect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/bootsect.h -------------------------------------------------------------------------------- /include/ntfs-3g/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/cache.h -------------------------------------------------------------------------------- /include/ntfs-3g/collate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/collate.h -------------------------------------------------------------------------------- /include/ntfs-3g/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/compat.h -------------------------------------------------------------------------------- /include/ntfs-3g/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/compress.h -------------------------------------------------------------------------------- /include/ntfs-3g/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/debug.h -------------------------------------------------------------------------------- /include/ntfs-3g/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/device.h -------------------------------------------------------------------------------- /include/ntfs-3g/device_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/device_io.h -------------------------------------------------------------------------------- /include/ntfs-3g/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/dir.h -------------------------------------------------------------------------------- /include/ntfs-3g/ea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/ea.h -------------------------------------------------------------------------------- /include/ntfs-3g/efs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/efs.h -------------------------------------------------------------------------------- /include/ntfs-3g/endians.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/endians.h -------------------------------------------------------------------------------- /include/ntfs-3g/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/index.h -------------------------------------------------------------------------------- /include/ntfs-3g/inode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/inode.h -------------------------------------------------------------------------------- /include/ntfs-3g/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/ioctl.h -------------------------------------------------------------------------------- /include/ntfs-3g/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/layout.h -------------------------------------------------------------------------------- /include/ntfs-3g/lcnalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/lcnalloc.h -------------------------------------------------------------------------------- /include/ntfs-3g/logfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/logfile.h -------------------------------------------------------------------------------- /include/ntfs-3g/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/logging.h -------------------------------------------------------------------------------- /include/ntfs-3g/mft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/mft.h -------------------------------------------------------------------------------- /include/ntfs-3g/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/misc.h -------------------------------------------------------------------------------- /include/ntfs-3g/mst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/mst.h -------------------------------------------------------------------------------- /include/ntfs-3g/ntfstime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/ntfstime.h -------------------------------------------------------------------------------- /include/ntfs-3g/object_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/object_id.h -------------------------------------------------------------------------------- /include/ntfs-3g/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/param.h -------------------------------------------------------------------------------- /include/ntfs-3g/realpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/realpath.h -------------------------------------------------------------------------------- /include/ntfs-3g/reparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/reparse.h -------------------------------------------------------------------------------- /include/ntfs-3g/runlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/runlist.h -------------------------------------------------------------------------------- /include/ntfs-3g/security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/security.h -------------------------------------------------------------------------------- /include/ntfs-3g/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/support.h -------------------------------------------------------------------------------- /include/ntfs-3g/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/types.h -------------------------------------------------------------------------------- /include/ntfs-3g/unistr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/unistr.h -------------------------------------------------------------------------------- /include/ntfs-3g/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/volume.h -------------------------------------------------------------------------------- /include/ntfs-3g/xattrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/include/ntfs-3g/xattrs.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/install-sh -------------------------------------------------------------------------------- /libfuse-lite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/Makefile.am -------------------------------------------------------------------------------- /libfuse-lite/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/Makefile.in -------------------------------------------------------------------------------- /libfuse-lite/fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/fuse.c -------------------------------------------------------------------------------- /libfuse-lite/fuse_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/fuse_i.h -------------------------------------------------------------------------------- /libfuse-lite/fuse_kern_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/fuse_kern_chan.c -------------------------------------------------------------------------------- /libfuse-lite/fuse_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/fuse_loop.c -------------------------------------------------------------------------------- /libfuse-lite/fuse_lowlevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/fuse_lowlevel.c -------------------------------------------------------------------------------- /libfuse-lite/fuse_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/fuse_misc.h -------------------------------------------------------------------------------- /libfuse-lite/fuse_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/fuse_opt.c -------------------------------------------------------------------------------- /libfuse-lite/fuse_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/fuse_session.c -------------------------------------------------------------------------------- /libfuse-lite/fuse_signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/fuse_signals.c -------------------------------------------------------------------------------- /libfuse-lite/fusermount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/fusermount.c -------------------------------------------------------------------------------- /libfuse-lite/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/helper.c -------------------------------------------------------------------------------- /libfuse-lite/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/mount.c -------------------------------------------------------------------------------- /libfuse-lite/mount_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/mount_util.c -------------------------------------------------------------------------------- /libfuse-lite/mount_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libfuse-lite/mount_util.h -------------------------------------------------------------------------------- /libntfs-3g/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/Makefile.am -------------------------------------------------------------------------------- /libntfs-3g/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/Makefile.in -------------------------------------------------------------------------------- /libntfs-3g/acls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/acls.c -------------------------------------------------------------------------------- /libntfs-3g/attrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/attrib.c -------------------------------------------------------------------------------- /libntfs-3g/attrlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/attrlist.c -------------------------------------------------------------------------------- /libntfs-3g/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/bitmap.c -------------------------------------------------------------------------------- /libntfs-3g/bootsect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/bootsect.c -------------------------------------------------------------------------------- /libntfs-3g/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/cache.c -------------------------------------------------------------------------------- /libntfs-3g/collate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/collate.c -------------------------------------------------------------------------------- /libntfs-3g/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/compat.c -------------------------------------------------------------------------------- /libntfs-3g/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/compress.c -------------------------------------------------------------------------------- /libntfs-3g/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/debug.c -------------------------------------------------------------------------------- /libntfs-3g/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/device.c -------------------------------------------------------------------------------- /libntfs-3g/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/dir.c -------------------------------------------------------------------------------- /libntfs-3g/ea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/ea.c -------------------------------------------------------------------------------- /libntfs-3g/efs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/efs.c -------------------------------------------------------------------------------- /libntfs-3g/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/index.c -------------------------------------------------------------------------------- /libntfs-3g/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/inode.c -------------------------------------------------------------------------------- /libntfs-3g/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/ioctl.c -------------------------------------------------------------------------------- /libntfs-3g/lcnalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/lcnalloc.c -------------------------------------------------------------------------------- /libntfs-3g/libntfs-3g.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/libntfs-3g.pc.in -------------------------------------------------------------------------------- /libntfs-3g/libntfs-3g.script.so.in: -------------------------------------------------------------------------------- 1 | @OUTPUT_FORMAT@ 2 | GROUP ( @rootlibdir@/libntfs-3g.so ) 3 | -------------------------------------------------------------------------------- /libntfs-3g/logfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/logfile.c -------------------------------------------------------------------------------- /libntfs-3g/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/logging.c -------------------------------------------------------------------------------- /libntfs-3g/mft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/mft.c -------------------------------------------------------------------------------- /libntfs-3g/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/misc.c -------------------------------------------------------------------------------- /libntfs-3g/mst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/mst.c -------------------------------------------------------------------------------- /libntfs-3g/object_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/object_id.c -------------------------------------------------------------------------------- /libntfs-3g/realpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/realpath.c -------------------------------------------------------------------------------- /libntfs-3g/reparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/reparse.c -------------------------------------------------------------------------------- /libntfs-3g/runlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/runlist.c -------------------------------------------------------------------------------- /libntfs-3g/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/security.c -------------------------------------------------------------------------------- /libntfs-3g/unistr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/unistr.c -------------------------------------------------------------------------------- /libntfs-3g/unix_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/unix_io.c -------------------------------------------------------------------------------- /libntfs-3g/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/volume.c -------------------------------------------------------------------------------- /libntfs-3g/win32_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/win32_io.c -------------------------------------------------------------------------------- /libntfs-3g/xattrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/libntfs-3g/xattrs.c -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ltmain.sh -------------------------------------------------------------------------------- /m4/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/m4/libtool.m4 -------------------------------------------------------------------------------- /m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/m4/ltoptions.m4 -------------------------------------------------------------------------------- /m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/m4/ltsugar.m4 -------------------------------------------------------------------------------- /m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/m4/ltversion.m4 -------------------------------------------------------------------------------- /m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/missing -------------------------------------------------------------------------------- /ntfsprogs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/Makefile.am -------------------------------------------------------------------------------- /ntfsprogs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/Makefile.in -------------------------------------------------------------------------------- /ntfsprogs/attrdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/attrdef.c -------------------------------------------------------------------------------- /ntfsprogs/attrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/attrdef.h -------------------------------------------------------------------------------- /ntfsprogs/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/boot.c -------------------------------------------------------------------------------- /ntfsprogs/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/boot.h -------------------------------------------------------------------------------- /ntfsprogs/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/cluster.c -------------------------------------------------------------------------------- /ntfsprogs/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/cluster.h -------------------------------------------------------------------------------- /ntfsprogs/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/list.h -------------------------------------------------------------------------------- /ntfsprogs/mkntfs.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/mkntfs.8.in -------------------------------------------------------------------------------- /ntfsprogs/mkntfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/mkntfs.c -------------------------------------------------------------------------------- /ntfsprogs/ntfscat.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfscat.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfscat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfscat.c -------------------------------------------------------------------------------- /ntfsprogs/ntfscat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfscat.h -------------------------------------------------------------------------------- /ntfsprogs/ntfsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsck.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsclone.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsclone.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfsclone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsclone.c -------------------------------------------------------------------------------- /ntfsprogs/ntfscluster.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfscluster.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfscluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfscluster.c -------------------------------------------------------------------------------- /ntfsprogs/ntfscluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfscluster.h -------------------------------------------------------------------------------- /ntfsprogs/ntfscmp.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfscmp.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfscmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfscmp.c -------------------------------------------------------------------------------- /ntfsprogs/ntfscp.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfscp.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfscp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfscp.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsdecrypt.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsdecrypt.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfsdecrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsdecrypt.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsdump_logfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsdump_logfile.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsfallocate.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsfallocate.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfsfallocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsfallocate.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsfix.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsfix.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfsfix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsfix.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsinfo.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsinfo.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfsinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsinfo.c -------------------------------------------------------------------------------- /ntfsprogs/ntfslabel.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfslabel.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfslabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfslabel.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsls.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsls.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfsls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsls.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsmftalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsmftalloc.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsmove.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsmove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsmove.h -------------------------------------------------------------------------------- /ntfsprogs/ntfsprogs.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsprogs.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfsrecover.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsrecover.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfsrecover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsrecover.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsrecover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsrecover.h -------------------------------------------------------------------------------- /ntfsprogs/ntfsresize.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsresize.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfsresize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsresize.c -------------------------------------------------------------------------------- /ntfsprogs/ntfstruncate.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfstruncate.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfstruncate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfstruncate.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsundelete.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsundelete.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfsundelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsundelete.c -------------------------------------------------------------------------------- /ntfsprogs/ntfsundelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfsundelete.h -------------------------------------------------------------------------------- /ntfsprogs/ntfswipe.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfswipe.8.in -------------------------------------------------------------------------------- /ntfsprogs/ntfswipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfswipe.c -------------------------------------------------------------------------------- /ntfsprogs/ntfswipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/ntfswipe.h -------------------------------------------------------------------------------- /ntfsprogs/playlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/playlog.c -------------------------------------------------------------------------------- /ntfsprogs/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/sd.c -------------------------------------------------------------------------------- /ntfsprogs/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/sd.h -------------------------------------------------------------------------------- /ntfsprogs/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/utils.c -------------------------------------------------------------------------------- /ntfsprogs/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/ntfsprogs/utils.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/lowntfs-3g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/lowntfs-3g.c -------------------------------------------------------------------------------- /src/ntfs-3g.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/ntfs-3g.8.in -------------------------------------------------------------------------------- /src/ntfs-3g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/ntfs-3g.c -------------------------------------------------------------------------------- /src/ntfs-3g.probe.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/ntfs-3g.probe.8.in -------------------------------------------------------------------------------- /src/ntfs-3g.probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/ntfs-3g.probe.c -------------------------------------------------------------------------------- /src/ntfs-3g.secaudit.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/ntfs-3g.secaudit.8.in -------------------------------------------------------------------------------- /src/ntfs-3g.usermap.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/ntfs-3g.usermap.8.in -------------------------------------------------------------------------------- /src/ntfs-3g_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/ntfs-3g_common.c -------------------------------------------------------------------------------- /src/ntfs-3g_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/ntfs-3g_common.h -------------------------------------------------------------------------------- /src/secaudit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/secaudit.c -------------------------------------------------------------------------------- /src/secaudit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/secaudit.h -------------------------------------------------------------------------------- /src/usermap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_ntfs-3g/HEAD/src/usermap.c --------------------------------------------------------------------------------