2018-10-17 19:15:50 +02:00
|
|
|
namespace Ryujinx.Common.Logging
|
2018-04-14 03:02:24 +02:00
|
|
|
{
|
|
|
|
public enum LogClass
|
|
|
|
{
|
2019-02-11 13:00:32 +01:00
|
|
|
Application,
|
2018-04-14 03:02:24 +02:00
|
|
|
Audio,
|
2020-08-18 03:49:37 +02:00
|
|
|
AudioRenderer,
|
2021-04-13 21:58:47 +02:00
|
|
|
Configuration,
|
2018-04-24 20:57:39 +02:00
|
|
|
Cpu,
|
2018-08-04 23:38:49 +02:00
|
|
|
Font,
|
2019-01-31 03:49:15 +01:00
|
|
|
Emulation,
|
2021-05-05 23:30:29 +02:00
|
|
|
FFmpeg,
|
2018-04-24 20:57:39 +02:00
|
|
|
Gpu,
|
|
|
|
Hid,
|
2020-07-12 05:07:01 +02:00
|
|
|
Host1x,
|
2018-04-14 03:02:24 +02:00
|
|
|
Kernel,
|
|
|
|
KernelIpc,
|
|
|
|
KernelScheduler,
|
|
|
|
KernelSvc,
|
|
|
|
Loader,
|
2020-07-09 06:31:15 +02:00
|
|
|
ModLoader,
|
2020-07-12 05:07:01 +02:00
|
|
|
Nvdec,
|
2020-06-16 20:28:02 +02:00
|
|
|
Ptc,
|
2018-04-14 03:02:24 +02:00
|
|
|
Service,
|
|
|
|
ServiceAcc,
|
|
|
|
ServiceAm,
|
|
|
|
ServiceApm,
|
|
|
|
ServiceAudio,
|
2020-02-06 05:09:59 +01:00
|
|
|
ServiceBcat,
|
2018-04-14 03:02:24 +02:00
|
|
|
ServiceBsd,
|
Implement Bluetooth, Btm, Hid and Nsd services and calls. (#761)
- Implement `btdrv` service (IBluetoothDriver).
Implement call `InitializeBluetoothLe` for initialize events of `bt` service according to RE.
- Implement `bt` service (IBluetoothUser).
Implement call `RegisterBleEvent` according to RE.
- Add a placeholder for the `btm` service (close #750).
- Implement `btm:u` service (IBtmUser) (close #751).
Implement call `GetCore` according to RE (close #752).
- Implement `IBtmUserCore` and calls `AcquireBleScanEvent`, `AcquireBleConnectionEvent`, `AcquireBleServiceDiscoveryEvent` and `AcquireBleMtuConfigEvent` according to RE.
- Implement `SetPalmaBoostMode` in `IHidServer` according to RE.
- Add stub for `SetIsPalmaAllConnectable` in `IHidServer` because we will not support Palma devices soon.
- Implement `nsd:a` and `nsd:u` service (IManager) (close #755).
Implement call `ResolveEx` according to RE (close #756).
Implement calls `GetSettingName`, `GetEnvironmentIdentifier`, `GetDeviceId`, `DeleteSettings`, `Resolve`, `ReadSaveDataFromFsForTest`, `WriteSaveDataToFsForTest` and `DeleteSaveDataOfFsForTest` according to RE.
2019-09-06 16:58:50 +02:00
|
|
|
ServiceBtm,
|
2018-04-22 06:21:49 +02:00
|
|
|
ServiceCaps,
|
2022-10-02 10:30:46 +02:00
|
|
|
ServiceFatal,
|
2018-04-14 03:02:24 +02:00
|
|
|
ServiceFriend,
|
|
|
|
ServiceFs,
|
|
|
|
ServiceHid,
|
2018-10-07 17:12:11 +02:00
|
|
|
ServiceIrs,
|
2019-11-21 13:24:06 +01:00
|
|
|
ServiceLdn,
|
2018-10-10 01:01:49 +02:00
|
|
|
ServiceLdr,
|
2018-04-14 03:02:24 +02:00
|
|
|
ServiceLm,
|
2021-06-28 20:54:45 +02:00
|
|
|
ServiceMii,
|
2018-05-26 22:49:21 +02:00
|
|
|
ServiceMm,
|
2022-02-18 02:00:06 +01:00
|
|
|
ServiceMnpp,
|
2021-06-24 01:05:40 +02:00
|
|
|
ServiceNfc,
|
2018-06-03 00:46:09 +02:00
|
|
|
ServiceNfp,
|
2020-12-10 03:08:28 +01:00
|
|
|
ServiceNgct,
|
2018-04-14 03:02:24 +02:00
|
|
|
ServiceNifm,
|
2020-07-27 01:04:08 +02:00
|
|
|
ServiceNim,
|
2018-04-14 03:02:24 +02:00
|
|
|
ServiceNs,
|
Implement Bluetooth, Btm, Hid and Nsd services and calls. (#761)
- Implement `btdrv` service (IBluetoothDriver).
Implement call `InitializeBluetoothLe` for initialize events of `bt` service according to RE.
- Implement `bt` service (IBluetoothUser).
Implement call `RegisterBleEvent` according to RE.
- Add a placeholder for the `btm` service (close #750).
- Implement `btm:u` service (IBtmUser) (close #751).
Implement call `GetCore` according to RE (close #752).
- Implement `IBtmUserCore` and calls `AcquireBleScanEvent`, `AcquireBleConnectionEvent`, `AcquireBleServiceDiscoveryEvent` and `AcquireBleMtuConfigEvent` according to RE.
- Implement `SetPalmaBoostMode` in `IHidServer` according to RE.
- Add stub for `SetIsPalmaAllConnectable` in `IHidServer` because we will not support Palma devices soon.
- Implement `nsd:a` and `nsd:u` service (IManager) (close #755).
Implement call `ResolveEx` according to RE (close #756).
Implement calls `GetSettingName`, `GetEnvironmentIdentifier`, `GetDeviceId`, `DeleteSettings`, `Resolve`, `ReadSaveDataFromFsForTest`, `WriteSaveDataToFsForTest` and `DeleteSaveDataOfFsForTest` according to RE.
2019-09-06 16:58:50 +02:00
|
|
|
ServiceNsd,
|
2022-03-15 04:07:07 +01:00
|
|
|
ServiceNtc,
|
2018-04-14 03:02:24 +02:00
|
|
|
ServiceNv,
|
2020-11-19 23:56:23 +01:00
|
|
|
ServiceOlsc,
|
2018-04-14 03:02:24 +02:00
|
|
|
ServicePctl,
|
2021-09-29 01:03:35 +02:00
|
|
|
ServicePcv,
|
2018-04-14 03:02:24 +02:00
|
|
|
ServicePl,
|
2018-04-22 01:04:43 +02:00
|
|
|
ServicePrepo,
|
2018-10-21 08:01:22 +02:00
|
|
|
ServicePsm,
|
2020-04-28 03:44:29 +02:00
|
|
|
ServicePtm,
|
2018-04-14 03:02:24 +02:00
|
|
|
ServiceSet,
|
|
|
|
ServiceSfdnsres,
|
|
|
|
ServiceSm,
|
2018-06-03 00:46:09 +02:00
|
|
|
ServiceSsl,
|
2018-04-14 03:02:24 +02:00
|
|
|
ServiceSss,
|
|
|
|
ServiceTime,
|
2020-04-22 06:10:27 +02:00
|
|
|
ServiceVi,
|
2020-07-12 05:07:01 +02:00
|
|
|
SurfaceFlinger,
|
2021-03-27 15:12:05 +01:00
|
|
|
TamperMachine,
|
2020-07-12 05:07:01 +02:00
|
|
|
Vic
|
2018-04-14 03:02:24 +02:00
|
|
|
}
|
Implement Bluetooth, Btm, Hid and Nsd services and calls. (#761)
- Implement `btdrv` service (IBluetoothDriver).
Implement call `InitializeBluetoothLe` for initialize events of `bt` service according to RE.
- Implement `bt` service (IBluetoothUser).
Implement call `RegisterBleEvent` according to RE.
- Add a placeholder for the `btm` service (close #750).
- Implement `btm:u` service (IBtmUser) (close #751).
Implement call `GetCore` according to RE (close #752).
- Implement `IBtmUserCore` and calls `AcquireBleScanEvent`, `AcquireBleConnectionEvent`, `AcquireBleServiceDiscoveryEvent` and `AcquireBleMtuConfigEvent` according to RE.
- Implement `SetPalmaBoostMode` in `IHidServer` according to RE.
- Add stub for `SetIsPalmaAllConnectable` in `IHidServer` because we will not support Palma devices soon.
- Implement `nsd:a` and `nsd:u` service (IManager) (close #755).
Implement call `ResolveEx` according to RE (close #756).
Implement calls `GetSettingName`, `GetEnvironmentIdentifier`, `GetDeviceId`, `DeleteSettings`, `Resolve`, `ReadSaveDataFromFsForTest`, `WriteSaveDataToFsForTest` and `DeleteSaveDataOfFsForTest` according to RE.
2019-09-06 16:58:50 +02:00
|
|
|
}
|