summaryrefslogtreecommitdiff
path: root/src/core/hle/service/ptm (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ts: add OpenSessionGravatar Liam2023-10-202-6/+40
|
* service: move hle_ipc from kernelGravatar Liam2023-03-014-17/+17
|
* service: refactor server architectureGravatar Liam2023-02-212-8/+8
| | | | Converts services to have their own processes
* Merge pull request #9061 from liamwhite/writable-eventGravatar liamwhite2022-10-141-3/+3
|\ | | | | kernel: remove KWritableEvent
| * kernel: remove KWritableEventGravatar Liam2022-10-121-3/+3
| |
* | general: preliminary support for hblGravatar Liam2022-10-112-3/+13
|/
* service: ptm: Rewrite PSM and add TSGravatar german772022-06-286-80/+175
|
* general: Convert source file copyright comments over to SPDXGravatar Morph2022-04-232-6/+4
| | | | | 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.
* core: Remove unused includesGravatar ameerj2021-11-031-1/+0
|
* service: Replace service event creation with ServiceContext::CreateEventGravatar Morph2021-10-011-11/+13
| | | | The service context helps to manage all created events and allows us to close them upon destruction.
* general: Replace RESULT_SUCCESS with ResultSuccessGravatar Morph2021-06-021-8/+8
| | | | Transition to PascalCase for result names.
* hle: kernel: Migrate KReadableEvent and KWritableEvent to KAutoObject.Gravatar bunnei2021-05-051-3/+3
|
* hle: kernel: Ensure all kernel objects with KAutoObject are properly created.Gravatar bunnei2021-05-051-0/+1
|
* hle: kernel: Migrate KEvent to KAutoObject.Gravatar bunnei2021-05-051-9/+8
|
* hle: kernel: Reimplement KReadableEvent and KWritableEvent.Gravatar bunnei2021-02-051-7/+9
|
* hle: kernel: Rename WritableEvent to KWritableEvent.Gravatar bunnei2021-02-051-2/+2
|
* hle: kernel: Rename ReadableEvent to KReadableEvent.Gravatar bunnei2021-02-051-1/+1
|
* Omit system referenceGravatar Chloe Marcec2021-01-251-2/+1
|
* psm: IPsmSessionGravatar Chloe Marcec2021-01-251-2/+114
| | | | Used by homebrew menu
* service: Eliminate usages of the global system instanceGravatar Lioncash2020-11-262-4/+8
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* service: Update function tablesGravatar VolcaEM2020-06-291-0/+1
|
* psm: Mark as debug instead of warningGravatar David Marcec2020-04-291-7/+14
| | | | No point to emulate battery life. However options are broken out if we ever want to add a setting for it
* psm: Stub GetChargerTypeGravatar Zach Hilman2018-10-212-24/+27
| | | Used by LovePotion Lua Homebrew. Stubbed as connected to official Nintendo Switch dock.
* psm: Stub GetBatteryChargePercentageGravatar Zach Hilman2018-10-202-1/+14
| | | | Used by LovePotion Lua Homebrew. Stubbed to return 100% charge.
* service: Add skeleton for psm serviceGravatar Zach Hilman2018-10-202-0/+70
| | | | Seems to be the power controller. Listed in switchbrew under the category PTM services.
* hle: Remove a large amount of 3ds-specific service code.Gravatar bunnei2017-10-1012-605/+0
|
* ResultVal: Remove MoveFrom()Gravatar Yuri Kunde Schlesner2017-06-181-1/+1
| | | | | Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue.
* FileSys: Move all result description to errors.hGravatar Yuri Kunde Schlesner2017-05-241-1/+2
|
* result: Make error description a generic integerGravatar Yuri Kunde Schlesner2017-05-241-1/+1
| | | | | | | | | It is now known that result code description vary depending on the module, and so they're best defined on a per-module basis. To support this, allow passing in an arbitrary integer instead of limiting to the ones in the ErrorDescription enum. These will be gradually migrated to their individual users, but a few will be kept as "common" codes shared by all modules.
* use IPCHelper for PTM servicesGravatar emmaus2017-05-193-31/+45
|
* Merge pull request #2533 from Lectem/apt_ipchelperGravatar bunnei2017-04-062-4/+10
|\ | | | | IpcHelper enhancement and APT refactor
| * IPCHelper Skip method + address comments for aptGravatar Lectem2017-03-181-1/+1
| |
| * move push out of class body and add u8 u16 bool specializationsGravatar Lectem2017-03-181-1/+1
| |
| * refactor APT service to use the new IPC helpersGravatar Lectem2017-03-182-4/+10
| |
* | ptm: create SharedExtSave file before openning itGravatar wwylele2017-03-251-1/+1
|/
* Merge pull request #2292 from lioncash/boolGravatar Yuri Kunde Schlesner2016-12-091-1/+1
|\ | | | | ptm: Use boolean instead of integral value
| * ptm: Use boolean instead of integral valueGravatar Lioncash2016-12-091-1/+1
| | | | | | | | The third parameter of Write is actually a bool type, not an int.
* | service: Add the ptm:s serviceGravatar Lioncash2016-12-083-0/+14
| | | | | | | | 3dbrew documents this as being the exact same as ptm:sysm
* | service: Add common ptm:u commands to other ptm servicesGravatar Lioncash2016-12-084-0/+54
| | | | | | | | | | 3dbrew indicates that all services have access to these commands except for ptm:sets.
* | service: Drop '_Interface' in ptm service class namesGravatar Lioncash2016-12-087-14/+14
| | | | | | | | Inheriting from Service::Interface makes this obvious.
* | service: Add ptm::gets and ptm::sets servicesGravatar Lioncash2016-12-085-0/+86
| |
* | ptm: Update ptm_sysm function tableGravatar Lioncash2016-12-083-6/+7
|/ | | | Updated based off information from 3dbrew.
* PTM & CFG: use the correct path and error code according to the new FileSys ↵Gravatar wwylele2016-11-191-1/+1
| | | | policy
* Use negative priorities to avoid special-casing the self-includeGravatar Yuri Kunde Schlesner2016-09-213-3/+3
|
* Manually tweak source formatting and then re-run clang-formatGravatar Yuri Kunde Schlesner2016-09-183-4/+3
|
* Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot2016-09-186-74/+82
|
* New3DS: Minor style cleanup to #1520.Gravatar bunnei2016-05-241-2/+2
|
* Implement CheckNew3DS and CheckNew3DSAppGravatar JamePeng2016-04-203-3/+25
| | | | | | Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field
* HLE/FS: Implemented GetFormatInfoGravatar Subv2016-03-201-1/+1
| | | | Format information is currently only implemented for the ExtSaveData, SharedExtSaveData and SaveData archives, the information is stored in a file alongside the root folder of the archive.
* BitField: Make trivially copyable and remove assignment operatorGravatar MerryMage2016-02-121-2/+2
|