OSDN Git Service

Repairing: implement unknown entry type fix.
[android-x86/external-exfat.git] / libexfat / exfat.h
2018-09-15 relanRepairing: implement unknown entry type fix.
2018-09-15 relanRepairing: implement invalid node checksum fix.
2018-09-15 relanRepairing: implement invalid VBR checksum fix.
2018-09-15 relanRepairing: add repair hooks file.
2018-09-15 relanRepairing: add "repair=n" option.
2018-04-02 LongPingWEIAndroid: convert Android.mk to Android.bp.
2018-04-02 liminghaoAndroid: support building exfat-utils.
2018-02-03 relanUpdate copyright years.
2017-04-01 relanClean up unused parameters in libexfat.
2017-03-19 relanImprove upper bound check in CLUSTER_INVALID() macro.
2017-01-28 relanUpdate copyright years.
2017-01-16 relanAdd tail entries support.
2017-01-16 relanGeneric I/O for directories: switch readdir().
2017-01-16 relanGeneric I/O for directories: switch erase_entry().
2017-01-16 relanRename node field flags to attrib.
2017-01-16 relanReplace node flags with bit fields.
2016-12-26 relanReduce the sizes of name buffers.
2016-12-26 relanChange output buffer size semantics for UTF functions.
2016-12-26 relanRemove buffer size argument for exfat_get_name().
2016-12-26 relanAvoid name length calculation in exfat_calc_name_hash().
2016-12-26 relanFix max file name length.
2016-06-03 relanUpdate copyright years.
2016-06-03 relanSupport upcase table compression.
2015-11-07 relanMove nodes flush from exfat_flush() into a separate...
2015-08-26 relanDrop version.h header.
2015-08-26 relanInclude local headers before system headers.
2015-08-24 relanUpdate copyright years.
2015-08-24 relanMove off_t size check from build script to code.
2015-08-24 relanUpdate copyright years.
2015-08-24 relanHandle I/O errors in exfat_put_node().
2015-08-24 relanFix bitmaps handling on big-endian machines.
2015-08-24 relanHandle I/O error in exfat_flush().
2015-08-24 relanHandle I/O errors in exfat_flush_node().
2015-08-24 relanGive the caller of pread()/pwrite() a chance to handle...
2015-08-24 relanAddress clusters bitmap using size_t-sized blocks inste...
2015-08-24 relanImplement fsync() and fsyncdir().
2015-08-24 relanRelicense the code from GPLv3+ to GPLv2+.
2015-08-24 relanMove compiler-specific code into a separate header.
2015-08-24 relanFix handling of long non-ASCII file names.
2015-08-24 relanRelax mode handling.
2015-08-24 relanAdd "quiet" option.
2015-08-24 relanAvoid extra erase on writes to the end of a file.
2015-08-24 relanUpdate copyright years.
2015-08-24 relanUse bool type.
2015-08-24 relanOS X: correctly detect device size.
2015-08-24 relanRename exfat_mode() to exfat_get_mode().
2015-08-24 relanUse bool type.
2015-08-24 relanRefactor device access mode handling.
2015-08-24 relanImprove invalid clusters handling.
2015-08-24 relanThe new mkfs rewritten in more declarative style.
2015-08-24 relanUpdate copyright years.
2015-08-24 relanSelect suitable cluster size when creating a huge FS.
2015-08-24 relanAdd constant for the last possible valid cluster number.
2015-08-24 relanRepresent device as an extensible structure.
2015-08-24 relanAdd exfat_seek() interface (wrapper for lseek()).
2015-08-24 relanAdd exfat_read() and exfat_write() interfaces.
2015-08-24 relanAdd exfat_fsync() function.
2015-08-24 relanAdd exfat_close() function.
2015-08-24 relanRename read/write functions.
2015-08-24 relanUse a more portable way to obtain timezone offset.
2015-08-24 relanMove time-related stuff into a separate file.
2015-08-24 relanRetry to mount FS in read-only mode if device is write...
2015-08-24 relanErase whole clusters instead of sectors.
2015-08-24 relanAdd exfat_open() function.
2015-08-24 relanRename block to sector to avoid confusion.
2015-08-24 relanAdd -u option for dumpexfat that prints used sectors.
2015-08-24 relanAdd functions that get and set volume label.
2015-08-24 relanMove VBR checksum calculation functions to libexfat.
2015-08-24 relanAdd a function that prints basic information about...
2015-08-24 relanexfat_count_free_clusters() should not modify the argument.
2015-08-24 relanAdd facilities for printing byte values in human-readab...
2015-08-24 relanMove bitmap macros to header to be used by other units.
2015-08-24 relanImprove timestamps resolution from 2 sec to 1 sec.
2015-08-24 relanMove version constants into a separate header.
2015-08-24 relanBump version to 0.9.0.
2015-08-24 relanImplement dynamic calculation of free clusters count.
2015-08-24 relanFix rename(): replace target if it exists.
2015-08-24 relanRename entries structures for consistency.
2015-08-24 relanChange source files headings to meet FSF recommendations.
2015-08-24 relanAdd patchlevel constant.
2015-08-24 relanImplement rename in libexfat.
2015-08-24 relanAdd noatime mount option.
2015-08-24 relanAdd function that updates node mtime.
2015-08-24 relanAdd function that updates node atime.
2015-08-24 relanOpen special file in RO mode if FS was mounted with...
2015-08-24 relanImplement uid and gid mount options.
2015-08-24 relanImplement utimens (file time stamps updating).
2015-08-24 relanAdd attributes for printf-style functions.
2015-08-24 relanImplement umask, dmask and fmask mount options.
2015-08-24 relanPass struct exfat to exfat_stat().
2015-08-24 relanPass mount options to exfat_mount().
2015-08-24 relanImplement mknod and mkdir in libexfat.
2015-08-24 relanAdd file name hash calculation function.
2015-08-24 relanSplit checksum calculation into a separate function.
2015-08-24 relanMove DIV_ROUND_UP macro to header to be used by other...
2015-08-24 relanImplement unlink and rmdir in libexfat.
2015-08-24 relanAdd function that calculates UTF-16 string length.
2015-08-24 relanAdd pointer to parent for each node.
2015-08-24 relanRepresent directory entry address as cluster + offset.
2015-08-24 relanRemove non-existent functions declarations.
next