summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat/backend/backend.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-2/+2
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2021-12-18core: hle: Remove global HLE lock.bunnei1-5/+0
- This was added early on as a hack to protect against some concurrency issues. - It's not clear that this serves any purpose anymore, and if it does, individual components should be fixed rather than using a global recursive mutex.
2021-11-04core: Remove unused includesameerj1-1/+0
2021-10-02service: Replace service event creation with ServiceContext::CreateEventMorph1-3/+7
The service context helps to manage all created events and allows us to close them upon destruction.
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-1/+1
Transition to PascalCase for result names.
2021-05-06hle: kernel: Migrate KReadableEvent and KWritableEvent to KAutoObject.bunnei1-2/+2
2021-05-06hle: kernel: Migrate KEvent to KAutoObject.bunnei1-1/+2
2021-02-05hle: kernel: Reimplement KReadableEvent and KWritableEvent.bunnei1-4/+4
2021-02-05hle: kernel: Rename WritableEvent to KWritableEvent.bunnei1-1/+1
2021-02-05hle: kernel: Rename ReadableEvent to KReadableEvent.bunnei1-2/+2
2020-10-21Revert "core: Fix clang build"bunnei1-4/+4
2020-10-18core: Fix clang buildLioncash1-4/+4
Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
2019-11-25kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei1-1/+1
* kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. - See https://github.com/citra-emu/citra/pull/4710 for details.
2019-10-15bcat: Remove use of global system accessorsLioncash1-2/+10
Removes all uses of the global system accessor within the BCAT interface.
2019-10-06bcat: Take std::function instance by value in NullBackend's constructorLioncash1-1/+1
Without this, the std::move within the constructor initializer list won't be able to actually perform a move.
2019-10-06bcat: In-class initialize ProgressServiceBackend's impl memberLioncash1-1/+1
Allows us to remove a constructor initializer list.
2019-10-06bcat: Make ProgressServiceBackend's constructor take a std::string_viewLioncash1-1/+4
Given the string is appended to another, we can make it a view so a redundant full copy of the string isn't made.
2019-10-06bcat: Make ProgressServiceBackend's GetEvent() constLioncash1-1/+1
This member function doesn't modify internal member state, so it can be marked const.
2019-10-01bcat: Add FSC accessors for BCAT dataZach Hilman1-5/+5
Ports BCAT to use FSC interface
2019-09-30bcat: Implement DeliveryCacheProgressImpl structureZach Hilman1-5/+92
Huge thanks to lioncash for re-ing this for me.
2019-09-30bcat: Add backend function for BCAT Indirect (launch parameter)Zach Hilman1-0/+5
Returns the data that should be returned by PopLaunchParameter kind=ApplicationSpecific.
2019-09-30bcat: Expose CreateBackendFromSettings helper functionZach Hilman1-0/+2
2019-09-30bcat: Add backend class to generify the functions of BCATZach Hilman1-0/+53
Provides the most abstract simplified functions of BCAT as functions. Also includes a NullBackend class which is just a no-op.