2018-10-17 20:15:50 +03:00
|
|
|
namespace Ryujinx.Common.Logging
|
2018-04-14 04:02:24 +03:00
|
|
|
{
|
|
|
|
public enum LogClass
|
|
|
|
{
|
2019-02-11 15:00:32 +03:00
|
|
|
Application,
|
2018-04-14 04:02:24 +03:00
|
|
|
Audio,
|
2020-08-18 04:49:37 +03:00
|
|
|
AudioRenderer,
|
2021-04-13 22:58:47 +03:00
|
|
|
Configuration,
|
2018-04-24 21:57:39 +03:00
|
|
|
Cpu,
|
2018-08-05 00:38:49 +03:00
|
|
|
Font,
|
2019-01-31 05:49:15 +03:00
|
|
|
Emulation,
|
2021-05-06 00:30:29 +03:00
|
|
|
FFmpeg,
|
2018-04-24 21:57:39 +03:00
|
|
|
Gpu,
|
|
|
|
Hid,
|
2020-07-12 06:07:01 +03:00
|
|
|
Host1x,
|
2018-04-14 04:02:24 +03:00
|
|
|
Kernel,
|
|
|
|
KernelIpc,
|
|
|
|
KernelScheduler,
|
|
|
|
KernelSvc,
|
|
|
|
Loader,
|
2020-07-09 07:31:15 +03:00
|
|
|
ModLoader,
|
2020-07-12 06:07:01 +03:00
|
|
|
Nvdec,
|
2020-06-16 21:28:02 +03:00
|
|
|
Ptc,
|
2018-04-14 04:02:24 +03:00
|
|
|
Service,
|
|
|
|
ServiceAcc,
|
|
|
|
ServiceAm,
|
|
|
|
ServiceApm,
|
|
|
|
ServiceAudio,
|
2020-02-06 07:09:59 +03:00
|
|
|
ServiceBcat,
|
2018-04-14 04:02:24 +03: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 17:58:50 +03:00
|
|
|
ServiceBtm,
|
2018-04-22 07:21:49 +03:00
|
|
|
ServiceCaps,
|
2018-04-14 04:02:24 +03:00
|
|
|
ServiceFriend,
|
|
|
|
ServiceFs,
|
|
|
|
ServiceHid,
|
2018-10-07 18:12:11 +03:00
|
|
|
ServiceIrs,
|
2019-11-21 15:24:06 +03:00
|
|
|
ServiceLdn,
|
2018-10-10 02:01:49 +03:00
|
|
|
ServiceLdr,
|
2018-04-14 04:02:24 +03:00
|
|
|
ServiceLm,
|
2021-06-28 21:54:45 +03:00
|
|
|
ServiceMii,
|
2018-05-26 23:49:21 +03:00
|
|
|
ServiceMm,
|
2021-06-24 02:05:40 +03:00
|
|
|
ServiceNfc,
|
2018-06-03 01:46:09 +03:00
|
|
|
ServiceNfp,
|
2020-12-10 05:08:28 +03:00
|
|
|
ServiceNgct,
|
2018-04-14 04:02:24 +03:00
|
|
|
ServiceNifm,
|
2020-07-27 02:04:08 +03:00
|
|
|
ServiceNim,
|
2018-04-14 04:02:24 +03: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 17:58:50 +03:00
|
|
|
ServiceNsd,
|
2018-04-14 04:02:24 +03:00
|
|
|
ServiceNv,
|
2020-11-20 01:56:23 +03:00
|
|
|
ServiceOlsc,
|
2018-04-14 04:02:24 +03:00
|
|
|
ServicePctl,
|
|
|
|
ServicePl,
|
2018-04-22 02:04:43 +03:00
|
|
|
ServicePrepo,
|
2018-10-21 09:01:22 +03:00
|
|
|
ServicePsm,
|
2020-04-28 04:44:29 +03:00
|
|
|
ServicePtm,
|
2018-04-14 04:02:24 +03:00
|
|
|
ServiceSet,
|
|
|
|
ServiceSfdnsres,
|
|
|
|
ServiceSm,
|
2018-06-03 01:46:09 +03:00
|
|
|
ServiceSsl,
|
2018-04-14 04:02:24 +03:00
|
|
|
ServiceSss,
|
|
|
|
ServiceTime,
|
2020-04-22 07:10:27 +03:00
|
|
|
ServiceVi,
|
2020-07-12 06:07:01 +03:00
|
|
|
SurfaceFlinger,
|
2021-03-27 17:12:05 +03:00
|
|
|
TamperMachine,
|
2020-07-12 06:07:01 +03:00
|
|
|
Vic
|
2018-04-14 04:02:24 +03: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 17:58:50 +03:00
|
|
|
}
|