aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/Unix/PathV2.inc
AgeCommit message (Expand)Author
2013-03-14[Support] Fix lifetime of file descriptors when using MemoryBuffer.Michael J. Spencer
2013-02-28[PathV2] In llvm::sys::fs::unique_file, make sure it doesn't fall into an inf...Argyrios Kyrtzidis
2013-01-10Fix a race condition in llvm::sys::path::unique_file: when we end upDouglas Gregor
2012-12-31Go ahead and get rid of the old page size interface and convert all theChandler Carruth
2012-11-30Switch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_REFERENCES.Chandler Carruth
2012-11-15PathV2: Fix a possible infinite loop.Daniel Dunbar
2012-08-15Properly test the LLVM_USE_RVALUE_REFERENCES macro.Michael J. Spencer
2012-08-15[PathV2] Add mapped_file_region. Implementation for Windows and POSIX.Michael J. Spencer
2012-08-10stdcxx's cstdio doesn't include stdio.h, but the code using PathV2.incJoerg Sonnenberger
2012-06-20Add permissions(), map_file_pages(), and unmap_file_pages() to llvm::sys::fs ...Nick Kledzik
2012-06-02Use access(2) instead of stat(2) to check if a file exists.Benjamin Kramer
2012-05-11Allow unique_file to take a mode for file permissions, but defaultEric Christopher
2012-05-05[Support] Fix up comments.Daniel Dunbar
2012-05-05[Support] Rewrite sys::fs::unique_file to not be stupid with /dev/urandom.Daniel Dunbar
2012-04-23Conflict with st_dev/st_ino identifiers under Debian GNU/HurdSylvestre Ledru
2012-04-11Fix the build under Debian GNU/Hurd.Sylvestre Ledru
2012-02-09Change default error_code ctor to a 'named ctor' so it's more self-documenting.David Blaikie
2011-12-12Revert r146363 to allow buildbots to make forward progress.Chad Rosier
2011-12-12Support/FileSystem: Implement bool equivalent(file_status A, file_status B);Michael J. Spencer
2011-12-12Support/FileSystem: Implement canonicalize.Michael J. Spencer
2011-12-08Support/FileSystem: Implement recursive_directory_iterator and makeMichael J. Spencer
2011-09-14Include limits.h to make sure PATH_MAX is known on Solaris 10.Bill Wendling
2011-07-28Add an optional 'bool makeAbsolute' in llvm::sys::fs::unique_file function.Argyrios Kyrtzidis
2011-03-24revert r128199 until it can be made to work with Frontend/dependency-gen.c.Andrew Trick
2011-03-24Remove all uses of PATH_MAX and MAXPATHLEN from PathV2.Michael J. Spencer
2011-02-09Rip out realpath() support. It's expensive, and often a bad idea, andDouglas Gregor
2011-02-09Attempt to fix the build after r125228.Cameron Zwarich
2011-02-09Add llvm::sys::path::canonical(), which provides the canonicalizedDouglas Gregor
2011-01-16Fix rename.Michael J. Spencer
2011-01-15Support/PathV2: Implement get_magic.Michael J. Spencer
2011-01-05Support/PathV2: Implement directory iteration on POSIX.Michael J. Spencer
2010-12-07Support/PathV2: Change most functions in the path namespace to return their workMichael J. Spencer
2010-12-07Support/PathV2: Remove the error_code return type from all functions in the pathMichael J. Spencer
2010-12-07Support/Unix/PathV2: Return the real error from realpath instead of any errorMichael J. Spencer
2010-12-07Support/Unix/PathV2: Use 0770 instead of 0700 when creating a directory. Also...Michael J. Spencer
2010-12-07Support/PathV2: Use SmallVector::clear instead of set_size.Michael J. Spencer
2010-12-07Support/PathV2: Clarify and correct documentation.Michael J. Spencer
2010-12-07Support/PathV2: Move current_path from path to fs and fix the Unix implementa...Michael J. Spencer
2010-12-04Support/PathV2: Remove redundant calls to make_error_code.Michael J. Spencer
2010-12-04Support/FileSystem: Add status implementation.Michael J. Spencer
2010-12-04Support/FileSystem: Add file_size implementation.Michael J. Spencer
2010-12-03Support/FileSystem: Add equivalent implementation.Michael J. Spencer
2010-12-03Support/FileSystem: Add resize_file implementation.Michael J. Spencer
2010-12-03Support/FileSystem: Add rename implementation.Michael J. Spencer
2010-12-03Support/FileSystem: Add remove implementation.Michael J. Spencer
2010-12-03Support/FileSystem: Add create_symlink implementation.Michael J. Spencer
2010-12-03Support/FileSystem: Add create_hard_link implementation.Michael J. Spencer
2010-12-03Support/FileSystem: Add create_director{y,ies} implementations.Michael J. Spencer
2010-12-03Support/FileSystem: Add unique_file and exists implementations.Michael J. Spencer
2010-12-01Support/FileSystem: Fix copy_file implementation to use toNullTerminatedStrin...Michael J. Spencer