summaryrefslogtreecommitdiff
path: root/src/core/file_sys (follow)
Commit message (Expand)AuthorAgeFilesLines
* Update clang formatGravatar James Rowe2018-07-023-10/+8
* Rename logging macro back to LOG_*Gravatar James Rowe2018-07-028-55/+55
* Add support for decrypted NCA files (#567)Gravatar Zach Hilman2018-06-212-4/+16
* Build: Fixed some MSVC warnings in various parts of the code.Gravatar Subv2018-06-202-6/+6
* general: Make formatting of logged hex values more straightforwardGravatar Lioncash2018-05-021-9/+9
* file-sys: convert a StringFromFormat call into fmt::format in GetFullPath()Gravatar Lioncash2018-04-251-4/+1
* file-sys: Move logging macros over to the new fmt-capable onesGravatar Lioncash2018-04-258-64/+58
* Service/FS: implement IFileSystem::RenameFileGravatar mailwl2018-04-245-7/+15
* disk_filesystem: Remove unused total_entries_in_directory member from Disk_Di...Gravatar Lioncash2018-04-191-1/+0
* disk_filesystem: Remove redundant initializer in Disk_Directory's constructorGravatar Lioncash2018-04-191-1/+1
* disk_filesystem: Make constructors explicit where applicableGravatar Lioncash2018-04-191-2/+2
* file_sys: Use NGLOGGravatar shinyquagsire232018-04-171-5/+5
* file_sys: tweaksGravatar shinyquagsire232018-04-162-6/+7
* file_sys: Add HFS/PFS helper componentGravatar shinyquagsire232018-04-162-0/+211
* fsp_srv: Implement DeleteFile.Gravatar bunnei2018-04-155-8/+12
* fsp_srv: Implement GetSize and SetSize.Gravatar bunnei2018-03-311-2/+3
* FS: Move the file open mode calculation to a separate function.Gravatar Subv2018-03-231-7/+14
* FS: Implemented IFileSystem::CreateDirectory.Gravatar Subv2018-03-215-7/+14
* FS: Implement DiskFileSystem's OpenDirectory interface.Gravatar Subv2018-03-195-6/+19
* FS: Implement DiskFileSystem::GetEntryType for existing files/directories.Gravatar Subv2018-03-191-2/+4
* FS: Updated the Directory Entry structure to match the Switch.Gravatar Subv2018-03-195-30/+84
* FS: Support the file Append open mode.Gravatar Subv2018-03-192-2/+23
* FS: Added an SDMC archive factory and registered it to the SDMC archive on st...Gravatar Subv2018-03-192-0/+71
* core: Move process creation out of global state.Gravatar bunnei2018-03-141-1/+2
* FS: Use the correct error code when trying to open files that don't exist.Gravatar Subv2018-03-042-26/+6
* FS: Make EnsureSaveData create the savedata folder when called for the first ...Gravatar Subv2018-03-045-15/+30
* SaveData: Use the current titleid when opening the savedata archive.Gravatar Subv2018-03-011-2/+3
* Filesystem: Added a SaveData Factory and associated Disk_FileSystem.Gravatar Subv2018-03-017-14/+315
* file_sys: Style tweaksGravatar shinyquagsire232018-02-252-11/+5
* file_sys: Add support for parsing NPDM filesGravatar shinyquagsire232018-02-252-0/+274
* file_sys: Clang format fixes.Gravatar bunnei2018-01-213-4/+4
* file_sys: Cleanup to better match Switch file system constructs.Gravatar bunnei2018-01-219-57/+128
* file_sys: Remove disk_archive, savedata_archive, and title_metadata.Gravatar bunnei2018-01-216-829/+0
* archive_backend: Minor changes to match Switch IFileSystem.Gravatar bunnei2018-01-215-26/+26
* file_sys: Repurpose 3DS IVFC code for Switch ROMFS.Gravatar bunnei2018-01-212-49/+41
* Format: Run the new clang format on everythingGravatar James Rowe2018-01-201-1/+1
* Update title_metadata.hGravatar N00byKing2018-01-171-0/+1
* core: Gut out cryptop, since it doesn't compile with C++17.Gravatar bunnei2018-01-121-50/+1
* hle: Use Switch formatted result codes.Gravatar bunnei2017-10-313-74/+24
* core: Refactor MakeMagic usage and remove dead code.Gravatar bunnei2017-10-152-697/+0
* Remove lots more 3DS-specific code.Gravatar bunnei2017-10-1218-1935/+0
* Merge remote-tracking branch 'upstream/master' into nxGravatar bunnei2017-10-0910-22/+1198
|\
| * file_sys, loader: add support for reading TMDs to determine app pathsGravatar shinyquagsire232017-10-011-2/+13
| * file_sys: add class for Title Metadata (TMD)Gravatar shinyquagsire232017-10-012-0/+337
| * file_sys/ncch_container: add RomFS, ExeFS override to allow for backward comp...Gravatar shinyquagsire232017-10-012-69/+206
| * file_sys/archive_ncch: use NCCHContainer instead of loading .romfs filesGravatar shinyquagsire232017-10-011-6/+12
| * HLE/Archives: Allow multiple loaded applications to access their SelfNCCH arc...Gravatar Subv2017-09-252-13/+39
| * Loader/NCCH: Add support for loading application updates (#2927)Gravatar Max Thomas2017-09-254-5/+587
| * Warnings: Add UNREACHABLE macros to switches that contemplate all possible va...Gravatar Subv2017-08-211-0/+2
| * Handle invalid filenames when renaming files/directoriesGravatar James2017-07-312-4/+78