summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat/backend/backend.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-10-13kernel: remove KWritableEventLiam1-1/+1
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-1/+1
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-11/+1
- 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-10-02service: Replace service event creation with ServiceContext::CreateEventMorph1-10/+12
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-2/+2
Transition to PascalCase for result names.
2021-05-06hle: kernel: Migrate KReadableEvent and KWritableEvent to KAutoObject.bunnei1-4/+4
2021-05-06hle: kernel: Ensure all kernel objects with KAutoObject are properly created.bunnei1-0/+1
2021-05-06hle: kernel: Migrate KEvent to KAutoObject.bunnei1-8/+6
2021-05-06hle: kernel: Refactor IPC interfaces to not use std::shared_ptr.bunnei1-1/+1
2021-02-05hle: kernel: Reimplement KReadableEvent and KWritableEvent.bunnei1-5/+9
2021-02-05hle: kernel: Rename WritableEvent to KWritableEvent.bunnei1-1/+1
2021-02-05hle: kernel: Rename ReadableEvent to KReadableEvent.bunnei1-1/+1
2020-10-25general: Use template deduction guides for lock_guardLioncash1-1/+1
Same behavior, less code.
2020-02-12bcat/backend: Make formatting of passphrase consistent in NullBackend::SetPassphrase()Lioncash1-1/+1
Aligns the '=' to be consistent with the rest of the logs within this source file.
2020-02-12bcat/backend: Prevent fmt exception in debug log within NullBackend::Clear()Lioncash1-1/+1
A formatting specifier within Clear wasn't being used, which will cause fmt to throw an exception. This fixes that.
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-11-03kernel: events: Remove ResetType::Automatic.bunnei1-2/+1
- This does not actually seem to exist in the real kernel - games reset these automatically. # Conflicts: # src/core/hle/service/am/applets/applets.cpp # src/core/hle/service/filesystem/fsp_srv.cpp
2019-10-15bcat: Remove use of global system accessorsLioncash1-2/+2
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-2/+3
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-09-30boxcat: Implement events global fieldZach Hilman1-5/+8
2019-09-30bcat: Implement DeliveryCacheProgressImpl structureZach Hilman1-4/+84
Huge thanks to lioncash for re-ing this for me.
2019-09-30bcat: Add backend function for BCAT Indirect (launch parameter)Zach Hilman1-0/+6
Returns the data that should be returned by PopLaunchParameter kind=ApplicationSpecific.
2019-09-30bcat: Add backend class to generify the functions of BCATZach Hilman1-0/+47
Provides the most abstract simplified functions of BCAT as functions. Also includes a NullBackend class which is just a no-op.