summaryrefslogtreecommitdiff
path: root/src/core/hle/service/filesystem (follow)
Commit message (Expand)AuthorAgeFilesLines
* vfs: Replace mode.h include with forward declarations where applicableGravatar Lioncash2018-08-213-2/+3
* service/filesystem: Use forward declarations where applicableGravatar Lioncash2018-08-203-5/+19
* filesystem: Add support for loading of system archivesGravatar Zach Hilman2018-08-184-16/+50
* filesystem: Add Open and Register functions for BISFactoryGravatar Zach Hilman2018-08-112-4/+23
* Merge pull request #990 from lioncash/entryGravatar bunnei2018-08-091-6/+3
|\
| * fsp_srv: Use std::string_view's copy() function instead of strncpy()Gravatar Lioncash2018-08-081-5/+1
| * fsp_srv: Emplace entries first when building index instead of emplacing lastGravatar Lioncash2018-08-081-2/+3
* | core: Port core to VfsFilesystem for file accessGravatar Zach Hilman2018-08-082-8/+8
* | filesystem: Remove unnecessary if conditionsGravatar Zach Hilman2018-08-081-1/+1
|/
* service: Remove redundant #pragma once directivesGravatar Lioncash2018-08-042-4/+0
* service/filesystem: Add fsp:ldr and fsp:pr servicesGravatar Lioncash2018-08-015-0/+85
* VFS Regression and Accuracy Fixes (#776)Gravatar Zach Hilman2018-07-231-16/+29
* file_util, vfs: Use std::string_view where applicableGravatar Lioncash2018-07-221-1/+1
* file_util: Use an enum class for GetUserPath()Gravatar Lioncash2018-07-211-2/+2
* Merge pull request #720 from Subv/getentrytype_rootGravatar Sebastian Valle2018-07-191-0/+4
|\
| * Filesystem: Return EntryType::Directory for the root directory.Gravatar Subv2018-07-191-0/+4
* | Merge pull request #712 from lioncash/fspGravatar bunnei2018-07-191-17/+22
|\ \
| * | fsp_srv: Remove unnecessary vector construction in IFile's Write() functionGravatar Lioncash2018-07-191-2/+3
| * | fsp_srv: Remove unnecessary std::vector construction in IDirectory's Read() f...Gravatar Lioncash2018-07-191-10/+8
| * | fsp_srv: Make IStorage constructor explicitGravatar Lioncash2018-07-191-1/+1
| * | fsp_srv: Add missing includesGravatar Lioncash2018-07-191-0/+5
| * | fsp_srv: Resolve sign-mismatch warnings in assertion comparisonsGravatar Lioncash2018-07-191-3/+3
| * | fsp_srv: Respect write length in Write()Gravatar Lioncash2018-07-191-4/+5
| |/
* | filesystem: std::move VirtualDir instance in VfsDirectoryServiceWrapper's con...Gravatar Lioncash2018-07-191-1/+3
* | filesystem: Use std::string's empty() function instead of comparing against a...Gravatar Lioncash2018-07-191-1/+1
* | filesystem: Remove pragma disabling global optimizationsGravatar Lioncash2018-07-191-2/+0
|/
* Virtual Filesystem 2: Electric Boogaloo (#676)Gravatar Zach Hilman2018-07-184-115/+383
* General Filesystem and Save Data Fixes (#670)Gravatar Zach Hilman2018-07-174-87/+125
* Merge pull request #559 from Subv/mount_savedataGravatar bunnei2018-07-111-2/+11
|\
| * Services/FS: Return the correct error code when trying to mount a nonexistent...Gravatar Subv2018-06-181-2/+11
* | Revert "Virtual Filesystem (#597)"Gravatar bunnei2018-07-074-404/+70
* | Virtual Filesystem (#597)Gravatar Zach Hilman2018-07-064-70/+404
* | Update clang formatGravatar James Rowe2018-07-021-2/+2
* | Rename logging macro back to LOG_*Gravatar James Rowe2018-07-022-28/+28
|/
* Common/string_util: add StringFromBuffer functionGravatar mailwl2018-06-071-22/+9
* general: Make formatting of logged hex values more straightforwardGravatar Lioncash2018-05-022-6/+6
* filesystem: Move logging macros over to new fmt-compatible onesGravatar Lioncash2018-04-242-30/+29
* Service/FS: implement IFileSystem::RenameFileGravatar mailwl2018-04-241-1/+21
* service: Use nested namespace specifiers where applicableGravatar Lioncash2018-04-193-12/+6
* fsp_srv: Implement DeleteFile.Gravatar bunnei2018-04-151-1/+15
* fsp_srv: Implement IFile::Flush.Gravatar bunnei2018-04-141-1/+9
* Various fixes and clangGravatar Hexagon122018-04-111-12/+5
* Updated fsp-srv with more service names.Gravatar Hexagon122018-04-101-4/+102
* Fix spelling of InitializeGravatar James Rowe2018-04-072-3/+3
* hle_ipc, fsp_srv: Cleanup logging.Gravatar bunnei2018-03-311-2/+2
* fsp_srv: Implement GetSize and SetSize.Gravatar bunnei2018-03-311-2/+21
* Merge pull request #255 from Subv/sd_cardGravatar bunnei2018-03-233-2/+106
|\
| * FS: Implemented IFileSystem::CreateDirectory.Gravatar Subv2018-03-211-0/+15
| * FS: Implemented IFileSystem's OpenDirectory function.Gravatar Subv2018-03-191-0/+28
| * FS: Added the IDirectory IPC interface and implemented its two functions.Gravatar Subv2018-03-191-0/+51