Rename OsHle to HOS

This commit is contained in:
gdkchan 2018-08-15 19:45:35 -03:00
commit 92f15a3be5
214 changed files with 390 additions and 398 deletions

View file

@ -1,4 +1,4 @@
using Ryujinx.HLE.OsHle;
using Ryujinx.HLE.HOS;
using System;
namespace Ryujinx.HLE.Input

View file

@ -1,7 +1,7 @@
using ChocolArm64.Memory;
using Ryujinx.HLE.HOS;
using Ryujinx.HLE.HOS.Kernel;
using Ryujinx.HLE.Loaders.Executables;
using Ryujinx.HLE.OsHle;
using Ryujinx.HLE.OsHle.Kernel;
using Ryujinx.HLE.Utilities;
using System.Collections.Generic;
using System.IO;

View file

@ -2,7 +2,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace Ryujinx.HLE.OsHle.Diagnostics
namespace Ryujinx.HLE.HOS.Diagnostics
{
static class Demangler
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle
namespace Ryujinx.HLE.HOS
{
static class ErrorCode
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle
namespace Ryujinx.HLE.HOS
{
enum ErrorModule
{

View file

@ -1,10 +1,10 @@
using Ryujinx.HLE.Memory;
using Ryujinx.HLE.Utilities;
using Ryujinx.HLE.Resource;
using Ryujinx.HLE.Utilities;
using System.Collections.Generic;
using System.IO;
namespace Ryujinx.HLE.OsHle.Font
namespace Ryujinx.HLE.HOS.Font
{
class SharedFontManager
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Font
namespace Ryujinx.HLE.HOS.Font
{
public enum SharedFontType
{

View file

@ -1,7 +1,7 @@
using System.Collections.Concurrent;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle
namespace Ryujinx.HLE.HOS
{
class GlobalStateTable
{

View file

@ -1,7 +1,7 @@
using ChocolArm64.Memory;
using System.Text;
namespace Ryujinx.HLE.OsHle
namespace Ryujinx.HLE.HOS
{
static class Homebrew
{

View file

@ -1,14 +1,14 @@
using Ryujinx.HLE.HOS.Font;
using Ryujinx.HLE.HOS.Kernel;
using Ryujinx.HLE.HOS.SystemState;
using Ryujinx.HLE.Loaders.Executables;
using Ryujinx.HLE.Loaders.Npdm;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Font;
using Ryujinx.HLE.OsHle.Kernel;
using Ryujinx.HLE.OsHle.SystemState;
using System;
using System.Collections.Concurrent;
using System.IO;
namespace Ryujinx.HLE.OsHle
namespace Ryujinx.HLE.HOS
{
public class Horizon : IDisposable
{

View file

@ -2,7 +2,7 @@ using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle
namespace Ryujinx.HLE.HOS
{
class IdDictionary
{

View file

@ -1,6 +1,6 @@
using System.IO;
namespace Ryujinx.HLE.OsHle.Ipc
namespace Ryujinx.HLE.HOS.Ipc
{
struct IpcBuffDesc
{

View file

@ -1,7 +1,7 @@
using System;
using System.IO;
namespace Ryujinx.HLE.OsHle.Ipc
namespace Ryujinx.HLE.HOS.Ipc
{
class IpcHandleDesc
{

View file

@ -1,9 +1,9 @@
using ChocolArm64.Memory;
using Ryujinx.HLE.OsHle.Kernel;
using Ryujinx.HLE.HOS.Kernel;
using System;
using System.IO;
namespace Ryujinx.HLE.OsHle.Ipc
namespace Ryujinx.HLE.HOS.Ipc
{
static class IpcHandler
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Ipc
namespace Ryujinx.HLE.HOS.Ipc
{
abstract class IpcMagic
{

View file

@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.IO;
namespace Ryujinx.HLE.OsHle.Ipc
namespace Ryujinx.HLE.HOS.Ipc
{
class IpcMessage
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Ipc
namespace Ryujinx.HLE.HOS.Ipc
{
enum IpcMessageType
{

View file

@ -1,6 +1,6 @@
using System.IO;
namespace Ryujinx.HLE.OsHle.Ipc
namespace Ryujinx.HLE.HOS.Ipc
{
struct IpcPtrBuffDesc
{

View file

@ -1,6 +1,6 @@
using System.IO;
namespace Ryujinx.HLE.OsHle.Ipc
namespace Ryujinx.HLE.HOS.Ipc
{
struct IpcRecvListBuffDesc
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Ipc
namespace Ryujinx.HLE.HOS.Ipc
{
delegate long ServiceProcessRequest(ServiceCtx Context);
}

View file

@ -1,9 +1,9 @@
using ChocolArm64.Memory;
using ChocolArm64.State;
using static Ryujinx.HLE.OsHle.ErrorCode;
using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
static class AddressArbiter
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
enum AddressSpaceType
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class KEvent : KSynchronizationObject { }
}

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class KMemoryBlock
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class KMemoryInfo
{

View file

@ -1,12 +1,11 @@
using ChocolArm64.Memory;
using Ryujinx.HLE.Memory;
using Ryujinx.HLE.OsHle.Kernel;
using System;
using System.Collections.Generic;
using static Ryujinx.HLE.OsHle.ErrorCode;
using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class KMemoryManager
{

View file

@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class KProcessHandleTable
{

View file

@ -3,7 +3,7 @@ using System;
using System.Collections.Concurrent;
using System.Threading;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class KProcessScheduler : IDisposable
{

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.OsHle.Services;
using Ryujinx.HLE.HOS.Services;
using System;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class KSession : IDisposable
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class KSharedMemory
{

View file

@ -1,7 +1,7 @@
using System;
using System.Threading;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class KSynchronizationObject : IDisposable
{

View file

@ -1,7 +1,7 @@
using ChocolArm64;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class KThread : KSynchronizationObject
{

View file

@ -1,6 +1,6 @@
using System;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class KTlsPageManager
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class KTransferMemory
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
static class KernelErr
{

View file

@ -1,6 +1,6 @@
using System;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
[Flags]
enum MemoryAttribute : byte

View file

@ -1,6 +1,6 @@
using System;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
[Flags]
enum MemoryPermission : byte

View file

@ -1,6 +1,6 @@
using System;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
[Flags]
enum MemoryState : uint

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
static class NsTimeConverter
{

View file

@ -1,7 +1,7 @@
using System;
using System.Threading;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class SchedulerThread : IDisposable
{

View file

@ -7,7 +7,7 @@ using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Threading;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
partial class SvcHandler
{

View file

@ -1,9 +1,9 @@
using ChocolArm64.State;
using Ryujinx.HLE.Logging;
using static Ryujinx.HLE.OsHle.ErrorCode;
using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
partial class SvcHandler
{

View file

@ -1,15 +1,14 @@
using ChocolArm64.Memory;
using ChocolArm64.State;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.Exceptions;
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.OsHle.Services;
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Services;
using Ryujinx.HLE.Logging;
using System;
using System.Threading;
using static Ryujinx.HLE.HOS.ErrorCode;
using static Ryujinx.HLE.OsHle.ErrorCode;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
partial class SvcHandler
{

View file

@ -2,9 +2,9 @@ using ChocolArm64.State;
using Ryujinx.HLE.Logging;
using System.Threading;
using static Ryujinx.HLE.OsHle.ErrorCode;
using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
partial class SvcHandler
{

View file

@ -2,9 +2,9 @@ using ChocolArm64.State;
using Ryujinx.HLE.Logging;
using System;
using static Ryujinx.HLE.OsHle.ErrorCode;
using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
partial class SvcHandler
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Kernel
namespace Ryujinx.HLE.HOS.Kernel
{
class ThreadQueue
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle
namespace Ryujinx.HLE.HOS
{
enum MemoryType
{

View file

@ -2,15 +2,15 @@ using ChocolArm64;
using ChocolArm64.Events;
using ChocolArm64.Memory;
using ChocolArm64.State;
using Ryujinx.HLE.Exceptions;
using Ryujinx.HLE.HOS.Diagnostics;
using Ryujinx.HLE.HOS.Kernel;
using Ryujinx.HLE.HOS.Services.Nv;
using Ryujinx.HLE.HOS.SystemState;
using Ryujinx.HLE.Loaders;
using Ryujinx.HLE.Loaders.Executables;
using Ryujinx.HLE.Loaders.Npdm;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Diagnostics;
using Ryujinx.HLE.Exceptions;
using Ryujinx.HLE.OsHle.Kernel;
using Ryujinx.HLE.OsHle.Services.Nv;
using Ryujinx.HLE.OsHle.SystemState;
using Ryujinx.HLE.Utilities;
using System;
using System.Collections.Concurrent;
@ -18,7 +18,7 @@ using System.Collections.Generic;
using System.IO;
using System.Text;
namespace Ryujinx.HLE.OsHle
namespace Ryujinx.HLE.HOS
{
class Process : IDisposable
{

View file

@ -1,9 +1,9 @@
using ChocolArm64.Memory;
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.OsHle.Kernel;
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel;
using System.IO;
namespace Ryujinx.HLE.OsHle
namespace Ryujinx.HLE.HOS
{
class ServiceCtx
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Acc
namespace Ryujinx.HLE.HOS.Services.Acc
{
static class AccErr
{

View file

@ -1,11 +1,10 @@
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.SystemState;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.OsHle.SystemState;
using System.Collections.Generic;
using static Ryujinx.HLE.HOS.ErrorCode;
using static Ryujinx.HLE.OsHle.ErrorCode;
namespace Ryujinx.HLE.OsHle.Services.Acc
namespace Ryujinx.HLE.HOS.Services.Acc
{
class IAccountServiceForApplication : IpcService
{

View file

@ -1,8 +1,8 @@
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Acc
namespace Ryujinx.HLE.HOS.Services.Acc
{
class IManagerForApplication : IpcService
{

View file

@ -1,12 +1,12 @@
using ChocolArm64.Memory;
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.SystemState;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.OsHle.SystemState;
using Ryujinx.HLE.Utilities;
using System.Collections.Generic;
using System.Text;
namespace Ryujinx.HLE.OsHle.Services.Acc
namespace Ryujinx.HLE.HOS.Services.Acc
{
class IProfile : IpcService
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
static class AmErr
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
enum FocusState
{

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IAllSystemAppletProxiesService : IpcService
{

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IApplicationCreator : IpcService
{

View file

@ -1,8 +1,8 @@
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IApplicationFunctions : IpcService
{

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IApplicationProxy : IpcService
{

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IApplicationProxyService : IpcService
{

View file

@ -1,8 +1,8 @@
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IAudioController : IpcService
{

View file

@ -1,11 +1,10 @@
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.OsHle.Kernel;
using System.Collections.Generic;
using static Ryujinx.HLE.HOS.ErrorCode;
using static Ryujinx.HLE.OsHle.ErrorCode;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class ICommonStateGetter : IpcService
{

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IDebugFunctions : IpcService
{

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IDisplayController : IpcService
{

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IGlobalStateController : IpcService
{

View file

@ -1,9 +1,9 @@
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.OsHle.Kernel;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IHomeMenuFunctions : IpcService
{

View file

@ -1,9 +1,9 @@
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.OsHle.Kernel;
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel;
using Ryujinx.HLE.Logging;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class ILibraryAppletAccessor : IpcService
{

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class ILibraryAppletCreator : IpcService
{

View file

@ -1,9 +1,9 @@
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.OsHle.Kernel;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class ISelfController : IpcService
{

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IStorage : IpcService
{

View file

@ -1,8 +1,8 @@
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.HOS.Ipc;
using System;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IStorageAccessor : IpcService
{

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class ISystemAppletProxy : IpcService
{

View file

@ -1,8 +1,8 @@
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class IWindowController : IpcService
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
enum MessageInfo
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
enum OperationMode
{

View file

@ -1,6 +1,6 @@
using System.IO;
namespace Ryujinx.HLE.OsHle.Services.Am
namespace Ryujinx.HLE.HOS.Services.Am
{
class StorageHelper
{

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Apm
namespace Ryujinx.HLE.HOS.Services.Apm
{
class IManager : IpcService
{

View file

@ -1,8 +1,8 @@
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Apm
namespace Ryujinx.HLE.HOS.Services.Apm
{
class ISession : IpcService
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Apm
namespace Ryujinx.HLE.HOS.Services.Apm
{
enum PerformanceConfiguration : uint
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Apm
namespace Ryujinx.HLE.HOS.Services.Apm
{
enum PerformanceMode
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Aud
namespace Ryujinx.HLE.HOS.Services.Aud
{
static class AudErr
{

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioOut
namespace Ryujinx.HLE.HOS.Services.Aud.AudioOut
{
[StructLayout(LayoutKind.Sequential)]
struct AudioOutData

View file

@ -1,11 +1,11 @@
using ChocolArm64.Memory;
using Ryujinx.Audio;
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.OsHle.Kernel;
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel;
using System;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioOut
namespace Ryujinx.HLE.HOS.Services.Aud.AudioOut
{
class IAudioOut : IpcService, IDisposable
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
static class AudioConsts
{

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)]
struct BehaviorIn

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0xc, Pack = 1)]
struct BiquadFilter

View file

@ -1,15 +1,15 @@
using ChocolArm64.Memory;
using Ryujinx.Audio;
using Ryujinx.Audio.Adpcm;
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel;
using Ryujinx.HLE.Logging;
using Ryujinx.HLE.OsHle.Ipc;
using Ryujinx.HLE.OsHle.Kernel;
using Ryujinx.HLE.Utilities;
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
class IAudioRenderer : IpcService, IDisposable
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
class MemoryPoolContext
{

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x20, Pack = 4)]
struct MemoryPoolIn

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)]
struct MemoryPoolOut

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
enum MemoryPoolState : int
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
enum PlayState : byte
{

View file

@ -1,6 +1,6 @@
using System;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
static class Resampler
{

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
struct UpdateDataHeader
{

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x70, Pack = 1)]
struct VoiceChannelResourceIn

View file

@ -2,7 +2,7 @@ using ChocolArm64.Memory;
using Ryujinx.Audio.Adpcm;
using System;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
class VoiceContext
{

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x170, Pack = 1)]
struct VoiceIn

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)]
struct VoiceOut

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
[StructLayout(LayoutKind.Sequential, Size = 0x38, Pack = 1)]
struct WaveBuffer

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.OsHle.Services.Aud
namespace Ryujinx.HLE.HOS.Services.Aud
{
[StructLayout(LayoutKind.Sequential)]
struct AudioRendererParameter

Some files were not shown because too many files have changed in this diff Show more