summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/fsp_srv.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2019-06-29fsp-srv: Implement GetAccessLogVersionInfoZach Hilman1-2/+11
2019-06-29fsp-srv: Implement OutputAccessLogToSdCardZach Hilman1-14/+29
2019-04-11service: Update service function tablesLioncash1-0/+7
2019-04-10fsp_srv: Remove unnecessary parameter popping in IDirectory's Read()Lioncash1-4/+1
2019-04-10fsp_srv: Log out option values in IFile's Read and Write functionsLioncash1-4/+6
2019-04-05service/fsp_srv: Remove unnecessary unknown member in OpenSaveDataFileSystemLioncash1-7/+8
2019-04-05service/fsp_srv: Update SaveDataInfo and SaveDataDescriptor structsLioncash1-1/+3
2019-04-04hle/service: Resolve unused variable warningsLioncash1-41/+29
2019-03-18fsp_srv: Unstub SetCurrentProcessLioncash1-1/+4
2019-01-30service/fsp-srv: Update function tablesLioncash1-12/+20
2018-12-10fsp_srv: Implement IStorage::GetSizeZach Hilman1-2/+15
2018-12-10service/fsp_srv: Correct returned value in GetGlobalAccessLogMode()Lioncash1-1/+10
2018-12-01service/fsp_srv: Implement CleanDirectoryRecursivelyLioncash1-1/+11
2018-11-27Reworked svcs slightly, improved error messages in AM and fsp_srvDavid Marcec1-6/+6
2018-11-26Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec1-1/+14
2018-11-16file_sys/errors: Extract FS-related error codes to file_sys/errors.hLioncash1-8/+8
2018-11-16fsp_srv: Add support for using open source archive if not found in NANDZach Hilman1-0/+10
2018-10-29ns: Implement command 400: GetApplicationControlDataZach Hilman1-14/+10
2018-10-29fsp_srv: Implement ISaveDataInfoReaderZach Hilman1-0/+144
2018-10-29fsp_srv: Implement command 61: OpenSaveDataInfoReaderBySaveDataSpaceIdZach Hilman1-1/+12
2018-10-27service/filesystem: Add DirectoryDelete & DirectoryDeleteRecursivelyDeeJayBro1-2/+26
2018-10-17fsp_srv: Apply patches to Data storage in OpenDataStorageByDataIdZach Hilman1-1/+5
2018-10-03services/fsp_srv: Amend service function tableLioncash1-0/+2
2018-09-11hle/service: Default constructors and destructors in the cpp file where applicableLioncash1-0/+2
2018-09-01filesystem: Implement OpenReadOnlySaveDataFilesystemZach Hilman1-1/+6
2018-09-01filesystem: Add OpenFileSystemWithPatchZach Hilman1-1/+22
2018-08-21vfs: Replace mode.h include with forward declarations where applicableLioncash1-0/+1
2018-08-21service/filesystem: Use forward declarations where applicableLioncash1-1/+3
2018-08-19filesystem: Add support for loading of system archivesZach Hilman1-12/+30
2018-08-09fsp_srv: Use std::string_view's copy() function instead of strncpy()Lioncash1-5/+1
2018-08-09fsp_srv: Emplace entries first when building index instead of emplacing lastLioncash1-2/+3
2018-07-19fsp_srv: Remove unnecessary vector construction in IFile's Write() functionLioncash1-2/+3
2018-07-19fsp_srv: Remove unnecessary std::vector construction in IDirectory's Read() functionLioncash1-10/+8
2018-07-19fsp_srv: Make IStorage constructor explicitLioncash1-1/+1
2018-07-19fsp_srv: Add missing includesLioncash1-0/+5
2018-07-19fsp_srv: Resolve sign-mismatch warnings in assertion comparisonsLioncash1-3/+3
2018-07-19fsp_srv: Respect write length in Write()Lioncash1-4/+5
2018-07-19Virtual Filesystem 2: Electric Boogaloo (#676)Zach Hilman1-95/+82
2018-07-17General Filesystem and Save Data Fixes (#670)Zach Hilman1-26/+59
2018-07-08Revert "Virtual Filesystem (#597)"bunnei1-65/+49
2018-07-06Virtual Filesystem (#597)Zach Hilman1-49/+65
2018-07-03Rename logging macro back to LOG_*James Rowe1-25/+25
2018-06-19Services/FS: Return the correct error code when trying to mount a nonexistent savedata.Subv1-2/+11
2018-06-07Common/string_util: add StringFromBuffer functionmailwl1-22/+9
2018-05-02general: Make formatting of logged hex values more straightforwardLioncash1-5/+5
2018-04-24filesystem: Move logging macros over to new fmt-compatible onesLioncash1-26/+25
2018-04-24Service/FS: implement IFileSystem::RenameFilemailwl1-1/+21
2018-04-20service: Use nested namespace specifiers where applicableLioncash1-4/+2
2018-04-15fsp_srv: Implement DeleteFile.bunnei1-1/+15
2018-04-15fsp_srv: Implement IFile::Flush.bunnei1-1/+9
2018-04-11Various fixes and clangHexagon121-12/+5
2018-04-10Updated fsp-srv with more service names.Hexagon121-4/+102
2018-04-07Fix spelling of InitializeJames Rowe1-2/+2
2018-04-01hle_ipc, fsp_srv: Cleanup logging.bunnei1-2/+2
2018-03-31fsp_srv: Implement GetSize and SetSize.bunnei1-2/+21
2018-03-21FS: Implemented IFileSystem::CreateDirectory.Subv1-0/+15
2018-03-20FS: Implemented IFileSystem's OpenDirectory function.Subv1-0/+28
2018-03-20FS: Added the IDirectory IPC interface and implemented its two functions.Subv1-0/+51
2018-03-20FS: Implement MountSdCard.Subv1-2/+6
2018-03-19oopsN00byKing1-3/+3
2018-03-19Clean Warnings (?)N00byKing1-3/+3
2018-03-04FS: Stubbed CreateSaveData. It currently does nothing.Subv1-0/+14
2018-03-02FS: Implement MountSaveData and some of the IFile interface.Subv1-0/+188
2018-02-14service: Remove remaining uses of BufferDescriptor*.bunnei1-3/+1
2018-02-10fsp_srv: Stub MountSdCard.bunnei1-0/+8
2018-02-07Service: stub some functions in am, audio, time, vi servicesmailwl1-0/+1
2018-01-25hle: Rename RequestBuilder to ResponseBuilder.bunnei1-9/+9
2018-01-25service: Fix all incorrect IPC response headers.bunnei1-2/+2
2018-01-21fsp_srv: Various improvements to IStorage:Read implementation.bunnei1-43/+49
2018-01-21filesystem: Implement basic IStorage functionality.David Marcec1-0/+132