this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add CoreSimulator stubs

+4579
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Developer/PrivateFrameworks/CoreSimulator.framework/Headers
··· 1 + Versions/A/Headers
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Developer/PrivateFrameworks/CoreSimulator.framework/Versions/A/Headers
··· 1 + ../../../../../../../../../../../../src/private-frameworks/CoreSimulator/include/CoreSimulator
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Developer/PrivateFrameworks/CoreSimulator.framework/Versions/Current
··· 1 + A
+1
framework-private-include/CoreSimulator
··· 1 + ../Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Developer/PrivateFrameworks/CoreSimulator.framework/Headers
+1
src/private-frameworks/CMakeLists.txt
··· 37 37 add_subdirectory(AssistantServices) 38 38 add_subdirectory(AuthKitUI) 39 39 add_subdirectory(CoreAnalytics) 40 + add_subdirectory(CoreSimulator) 40 41 add_subdirectory(CoreUI) 41 42 add_subdirectory(DataDetectors) 42 43 add_subdirectory(DataDetectorsCore)
+96
src/private-frameworks/CoreSimulator/CMakeLists.txt
··· 1 + project(CoreSimulator) 2 + 3 + remove_sdk_framework(CoreSimulator 4 + PRIVATE 5 + PARENT_DIR "/Library/Developer/PrivateFrameworks" 6 + ) 7 + 8 + set(DYLIB_COMPAT_VERSION "1.0.0") 9 + set(DYLIB_CURRENT_VERSION "885.2.0") 10 + 11 + set(FRAMEWORK_VERSION "A") 12 + 13 + generate_sdk_framework(CoreSimulator 14 + VERSION ${FRAMEWORK_VERSION} 15 + HEADER "include/CoreSimulator" 16 + PRIVATE 17 + PARENT_DIR "/Library/Developer/PrivateFrameworks" 18 + ) 19 + 20 + add_framework(CoreSimulator 21 + FAT 22 + CURRENT_VERSION 23 + VERSION ${FRAMEWORK_VERSION} 24 + PRIVATE 25 + PARENT_DIR "/Library/Developer/PrivateFrameworks" 26 + 27 + SOURCES 28 + src/SimNearbyPeer.m 29 + src/SimIdentityManager.m 30 + src/SimRuntimeMapData.m 31 + src/SimDeviceIOLoadedBundle.m 32 + src/SimIdentityDevice.m 33 + src/SimDiskImageIdentifier.m 34 + src/SimMachPortServer.m 35 + src/SimDeviceIOServer.m 36 + src/SimDevice.m 37 + src/SimDeviceType.m 38 + src/SimDisplayDefaultDescriptorState.m 39 + src/_SimDeallocSentinel.m 40 + src/SimDeviceIOServerLogger.m 41 + src/SimDeviceIOClient.m 42 + src/SimNotificationManager.m 43 + src/SimRuntimePairingRequirements.m 44 + src/SimDevicePair.m 45 + src/SimProfileBundle.m 46 + src/SimProfileModTime.m 47 + src/SimNearbyDeviceManager.m 48 + src/SimPasteboardItem.m 49 + src/SimSelectedRuntimePolicyResult.m 50 + src/SimLocalThrowable.m 51 + src/SimProfilesPathMonitor.m 52 + src/SimDiskImage.m 53 + src/SimNSPasteboardItem.m 54 + src/SimNotificationManagerToken.m 55 + src/SimDeviceNotificationManager.m 56 + src/SimLegacyHIDDefaultDescriptorState.m 57 + src/SimDiskImageManager.m 58 + src/SimAudioHostRouteDescriptorState.m 59 + src/SimLibLaunchInstance.m 60 + src/SimIdentityClient.m 61 + src/SimKnownSDKEntry.m 62 + src/SimDeviceBootInfo.m 63 + src/SimPasteboardSyncPool.m 64 + src/SimLaunchHostConnection.m 65 + src/SimNearbyDevice.m 66 + src/SimDeviceSet.m 67 + src/SimPendingOperation.m 68 + src/SimDeviceDataMigrationPluginResult.m 69 + src/SimVolumeManagerNotification.m 70 + src/SimPasteboardSyncPoolObject.m 71 + src/SimSDKInfo.m 72 + src/SimDeviceIO.m 73 + src/SimPasteboardItemData.m 74 + src/SimPasteboardPortMap.m 75 + src/SimLaunchHostClient.m 76 + src/SimRuntime.m 77 + src/SimDevicePasteboard.m 78 + src/SimPlatformInfo.m 79 + src/SimDevicePasteboardConnection.m 80 + src/SimDevicePasteboardItem.m 81 + src/SimDiskImageRuntimeInfo.m 82 + src/SimVolumeManager.m 83 + src/SimNSPasteboard.m 84 + src/SimPasteboardItemWrappedData.m 85 + src/SimServiceContext.m 86 + src/SimHostResourceChecker.m 87 + src/NSArray+SimPasteboardItem.m 88 + src/NSString+SimPasteboardItem.m 89 + src/NSPasteboardItem+SimPasteboardItem.m 90 + src/CoreSimulator.m 91 + 92 + DEPENDENCIES 93 + system 94 + objc 95 + Foundation 96 + )
+182
src/private-frameworks/CoreSimulator/include/CoreSimulator/CoreSimulator.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #ifndef _CORESIMULATOR_H_ 21 + #define _CORESIMULATOR_H_ 22 + 23 + #import <Foundation/Foundation.h> 24 + 25 + #import <CoreSimulator/NSArray+SimPasteboardItem.h> 26 + #import <CoreSimulator/NSObjectROCKDeserializable.h> 27 + #import <CoreSimulator/NSObjectROCKSerializable.h> 28 + #import <CoreSimulator/NSPasteboardItem+SimPasteboardItem.h> 29 + #import <CoreSimulator/NSPasteboardItemDataProvider.h> 30 + #import <CoreSimulator/NSString+SimPasteboardItem.h> 31 + #import <CoreSimulator/OS_xpc_object.h> 32 + #import <CoreSimulator/ROCKImpersonatable.h> 33 + #import <CoreSimulator/ROCKImpersonateable.h> 34 + #import <CoreSimulator/ROCKMemoizable.h> 35 + #import <CoreSimulator/SimAudioDescriptorState.h> 36 + #import <CoreSimulator/SimAudioHostRouteDescriptorState.h> 37 + #import <CoreSimulator/SimDevice.h> 38 + #import <CoreSimulator/SimDeviceBootInfo.h> 39 + #import <CoreSimulator/SimDeviceDataMigrationPluginResult.h> 40 + #import <CoreSimulator/SimDeviceIO.h> 41 + #import <CoreSimulator/SimDeviceIOClient.h> 42 + #import <CoreSimulator/SimDeviceIOClientProtocol.h> 43 + #import <CoreSimulator/SimDeviceIODeviceTypeInterface.h> 44 + #import <CoreSimulator/SimDeviceIOInterface.h> 45 + #import <CoreSimulator/SimDeviceIOLoadedBundle.h> 46 + #import <CoreSimulator/SimDeviceIOLogger.h> 47 + #import <CoreSimulator/SimDeviceIOMachServiceProvider.h> 48 + #import <CoreSimulator/SimDeviceIOPortDescriptorState.h> 49 + #import <CoreSimulator/SimDeviceIOProtocol.h> 50 + #import <CoreSimulator/SimDeviceIORuntimeInterface.h> 51 + #import <CoreSimulator/SimDeviceIOServer.h> 52 + #import <CoreSimulator/SimDeviceIOServerLogger.h> 53 + #import <CoreSimulator/SimDeviceNotificationManager.h> 54 + #import <CoreSimulator/SimDeviceNotifier.h> 55 + #import <CoreSimulator/SimDevicePair.h> 56 + #import <CoreSimulator/SimDevicePasteboard.h> 57 + #import <CoreSimulator/SimDevicePasteboardConnection.h> 58 + #import <CoreSimulator/SimDevicePasteboardItem.h> 59 + #import <CoreSimulator/SimDeviceSet.h> 60 + #import <CoreSimulator/SimDeviceType.h> 61 + #import <CoreSimulator/SimDiskImage.h> 62 + #import <CoreSimulator/SimDiskImageIdentifier.h> 63 + #import <CoreSimulator/SimDiskImageManager.h> 64 + #import <CoreSimulator/SimDiskImageRuntimeInfo.h> 65 + #import <CoreSimulator/SimDisplayDefaultDescriptorState.h> 66 + #import <CoreSimulator/SimDisplayDescriptorState.h> 67 + #import <CoreSimulator/SimEnvironmentProvider.h> 68 + #import <CoreSimulator/SimHostResourceChecker.h> 69 + #import <CoreSimulator/SimIdentityClient.h> 70 + #import <CoreSimulator/SimIdentityDevice.h> 71 + #import <CoreSimulator/SimIdentityManager.h> 72 + #import <CoreSimulator/SimIdentitySystem.h> 73 + #import <CoreSimulator/SimKnownSDKEntry.h> 74 + #import <CoreSimulator/SimLaunchHostClient.h> 75 + #import <CoreSimulator/SimLaunchHostConnection.h> 76 + #import <CoreSimulator/SimLegacyHIDDefaultDescriptorState.h> 77 + #import <CoreSimulator/SimLegacyHIDDescriptorState.h> 78 + #import <CoreSimulator/SimLibLaunchInstance.h> 79 + #import <CoreSimulator/SimLocalThrowable.h> 80 + #import <CoreSimulator/SimMachPortServer.h> 81 + #import <CoreSimulator/SimNSPasteboard.h> 82 + #import <CoreSimulator/SimNSPasteboardItem.h> 83 + #import <CoreSimulator/SimNearbyDevice.h> 84 + #import <CoreSimulator/SimNearbyDeviceManager.h> 85 + #import <CoreSimulator/SimNearbyPeer.h> 86 + #import <CoreSimulator/SimNotificationManager.h> 87 + #import <CoreSimulator/SimNotificationManagerToken.h> 88 + #import <CoreSimulator/SimPasteboard.h> 89 + #import <CoreSimulator/SimPasteboardItem.h> 90 + #import <CoreSimulator/SimPasteboardItemData.h> 91 + #import <CoreSimulator/SimPasteboardItemDataProvider.h> 92 + #import <CoreSimulator/SimPasteboardItemWrappedData.h> 93 + #import <CoreSimulator/SimPasteboardPortMap.h> 94 + #import <CoreSimulator/SimPasteboardSyncPool.h> 95 + #import <CoreSimulator/SimPasteboardSyncPoolObject.h> 96 + #import <CoreSimulator/SimPasteboardSyncPoolProtocol.h> 97 + #import <CoreSimulator/SimPendingOperation.h> 98 + #import <CoreSimulator/SimPlatformInfo.h> 99 + #import <CoreSimulator/SimProfileBundle.h> 100 + #import <CoreSimulator/SimProfileModTime.h> 101 + #import <CoreSimulator/SimProfilesPathMonitor.h> 102 + #import <CoreSimulator/SimRuntime.h> 103 + #import <CoreSimulator/SimRuntimeMapData.h> 104 + #import <CoreSimulator/SimRuntimePairingRequirements.h> 105 + #import <CoreSimulator/SimSDKInfo.h> 106 + #import <CoreSimulator/SimSelectedRuntimePolicyResult.h> 107 + #import <CoreSimulator/SimServiceContext.h> 108 + #import <CoreSimulator/SimVolumeManager.h> 109 + #import <CoreSimulator/SimVolumeManagerNotification.h> 110 + #import <CoreSimulator/_SimDeallocSentinel.h> 111 + 112 + 113 + void *SimDiskImageStateDisplayString(void); 114 + void *SimDiskImageStateIsTerminal(void); 115 + void *SimLogFence(void); 116 + void *SimLogSetHandler(void); 117 + void *_DADiskGetVolumePath(void); 118 + void *_GetDiskDescription(void); 119 + void *_ShouldIgnoreDisk(void); 120 + void *_SimLog(void); 121 + void *_SimLogASL(void); 122 + void *_SimLogCSS(void); 123 + void *_SimLogSTDOUT(void); 124 + void *pb_promise_support_mig_read_item_promised_data(void); 125 + 126 + 127 + extern void* const SimDeviceBootKeyBinPref; 128 + extern void* const SimDeviceBootKeyDeathPort; 129 + extern void* const SimDeviceBootKeyDeviceType; 130 + extern void* const SimDeviceBootKeyDisabledJobs; 131 + extern void* const SimDeviceBootKeyEnvironment; 132 + extern void* const SimDeviceBootKeyPersist; 133 + extern void* const SimDeviceBootKeyRuntime; 134 + extern void* const SimDeviceInstallOptionKeySkipWatchAppInstall; 135 + extern void* const SimDeviceLaunchApplicationEventTypeKeyBackgroundFetch; 136 + extern void* const SimDeviceLaunchApplicationKeyArguments; 137 + extern void* const SimDeviceLaunchApplicationKeyBackgrounded; 138 + extern void* const SimDeviceLaunchApplicationKeyEnvironment; 139 + extern void* const SimDeviceLaunchApplicationKeyEventType; 140 + extern void* const SimDeviceLaunchApplicationKeyStandardErrPath; 141 + extern void* const SimDeviceLaunchApplicationKeyStandardOutPath; 142 + extern void* const SimDeviceLaunchApplicationKeyTerminateRunningProcess; 143 + extern void* const SimDeviceLaunchApplicationKeyWaitForDebugger; 144 + extern void* const SimDeviceNotificationType_BootStatus; 145 + extern void* const SimDeviceSetOptionHostPort; 146 + extern void* const SimDeviceSpawnKeyArguments; 147 + extern void* const SimDeviceSpawnKeyBinPref; 148 + extern void* const SimDeviceSpawnKeyEnvironment; 149 + extern void* const SimDeviceSpawnKeyStandalone; 150 + extern void* const SimDeviceSpawnKeyStderr; 151 + extern void* const SimDeviceSpawnKeyStdin; 152 + extern void* const SimDeviceSpawnKeyStdout; 153 + extern void* const SimDeviceSpawnKeyWaitForDebugger; 154 + extern void* const SimNSPasteboardItemResolvedTypes; 155 + extern void* const kSimDeviceNotification_NewBootStatus; 156 + extern void* const kSimDeviceNotification_PreviousBootStatus; 157 + extern void* const kSimDevicePropertyKeyDeviceType; 158 + extern void* const kSimDevicePropertyKeyIsDeleted; 159 + extern void* const kSimDevicePropertyKeyIsEphemeral; 160 + extern void* const kSimDevicePropertyKeyLastBootedAt; 161 + extern void* const kSimDevicePropertyKeyName; 162 + extern void* const kSimDevicePropertyKeyRuntime; 163 + extern void* const kSimDevicePropertyKeyRuntimePolicy; 164 + extern void* const kSimDevicePropertyKeyRuntimeSpecifier; 165 + extern void* const kSimDevicePropertyKeyState; 166 + extern void* const kSimDevicePropertyKeyUDID; 167 + extern void* const kSimDeviceRuntimePolicyKeyLatest; 168 + extern void* const kSimDeviceRuntimePolicyKeyNewest; 169 + extern void* const kSimDeviceRuntimePolicyKeyPinnedToBuild; 170 + extern void* const kSimDeviceRuntimePolicyKeyPinnedToPath; 171 + extern void* const kSimDeviceRuntimePolicyKeySystem; 172 + extern void* const kSimPlatformIdentifierPhone; 173 + extern void* const kSimPlatformIdentifierTV; 174 + extern void* const kSimPlatformIdentifierWatch; 175 + extern void* const kSimPlatformShortNamePhone; 176 + extern void* const kSimPlatformShortNameTV; 177 + extern void* const kSimPlatformShortNameWatch; 178 + extern void* const kUnmountApprovalTimeout; 179 + extern void* const kUnmountVeryLongTimeout; 180 + 181 + #endif 182 +
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/NSArray+SimPasteboardItem.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSArray (SimPasteboardItem) 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/NSObjectROCKDeserializable.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSObjectROCKDeserializable 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/NSObjectROCKSerializable.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSObjectROCKSerializable 23 + 24 + @end
+25
src/private-frameworks/CoreSimulator/include/CoreSimulator/NSPasteboardItem+SimPasteboardItem.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + #import <AppKit/AppKit.h> 22 + 23 + @interface NSPasteboardItem (SimPasteboardItem) 24 + 25 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/NSPasteboardItemDataProvider.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSPasteboardItemDataProvider 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/NSString+SimPasteboardItem.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSString (SimPasteboardItem) 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/OS_xpc_object.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol OS_xpc_object 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/ROCKImpersonatable.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol ROCKImpersonatable 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/ROCKImpersonateable.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol ROCKImpersonateable 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/ROCKMemoizable.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol ROCKMemoizable 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimAudioDescriptorState.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimAudioDescriptorState 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimAudioHostRouteDescriptorState.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimAudioHostRouteDescriptorState : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDevice.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDevice : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceBootInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDeviceBootInfo : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceDataMigrationPluginResult.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDeviceDataMigrationPluginResult : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIO.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDeviceIO : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIOClient.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDeviceIOClient : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIOClientProtocol.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimDeviceIOClientProtocol 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIODeviceTypeInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimDeviceIODeviceTypeInterface 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIOInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimDeviceIOInterface 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIOLoadedBundle.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDeviceIOLoadedBundle : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIOLogger.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimDeviceIOLogger 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIOMachServiceProvider.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimDeviceIOMachServiceProvider 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIOPortDescriptorState.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimDeviceIOPortDescriptorState 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIOProtocol.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimDeviceIOProtocol 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIORuntimeInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimDeviceIORuntimeInterface 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIOServer.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDeviceIOServer : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceIOServerLogger.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDeviceIOServerLogger : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceNotificationManager.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDeviceNotificationManager : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceNotifier.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimDeviceNotifier 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDevicePair.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDevicePair : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDevicePasteboard.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDevicePasteboard : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDevicePasteboardConnection.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDevicePasteboardConnection : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDevicePasteboardItem.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDevicePasteboardItem : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceSet.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDeviceSet : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDeviceType.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDeviceType : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDiskImage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDiskImage : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDiskImageIdentifier.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDiskImageIdentifier : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDiskImageManager.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDiskImageManager : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDiskImageRuntimeInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDiskImageRuntimeInfo : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDisplayDefaultDescriptorState.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimDisplayDefaultDescriptorState : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimDisplayDescriptorState.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimDisplayDescriptorState 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimEnvironmentProvider.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimEnvironmentProvider 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimHostResourceChecker.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimHostResourceChecker : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimIdentityClient.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimIdentityClient : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimIdentityDevice.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimIdentityDevice : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimIdentityManager.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimIdentityManager : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimIdentitySystem.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimIdentitySystem 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimKnownSDKEntry.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimKnownSDKEntry : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimLaunchHostClient.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimLaunchHostClient : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimLaunchHostConnection.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimLaunchHostConnection : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimLegacyHIDDefaultDescriptorState.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimLegacyHIDDefaultDescriptorState : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimLegacyHIDDescriptorState.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimLegacyHIDDescriptorState 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimLibLaunchInstance.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimLibLaunchInstance : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimLocalThrowable.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimLocalThrowable : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimMachPortServer.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimMachPortServer : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimNSPasteboard.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimNSPasteboard : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimNSPasteboardItem.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimNSPasteboardItem : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimNearbyDevice.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimNearbyDevice : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimNearbyDeviceManager.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimNearbyDeviceManager : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimNearbyPeer.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimNearbyPeer : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimNotificationManager.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimNotificationManager : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimNotificationManagerToken.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimNotificationManagerToken : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimPasteboard.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimPasteboard 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimPasteboardItem.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimPasteboardItem : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimPasteboardItemData.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimPasteboardItemData : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimPasteboardItemDataProvider.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimPasteboardItemDataProvider 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimPasteboardItemWrappedData.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimPasteboardItemWrappedData : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimPasteboardPortMap.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimPasteboardPortMap : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimPasteboardSyncPool.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimPasteboardSyncPool : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimPasteboardSyncPoolObject.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimPasteboardSyncPoolObject : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimPasteboardSyncPoolProtocol.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SimPasteboardSyncPoolProtocol 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimPendingOperation.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimPendingOperation : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimPlatformInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimPlatformInfo : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimProfileBundle.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimProfileBundle : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimProfileModTime.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimProfileModTime : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimProfilesPathMonitor.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimProfilesPathMonitor : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimRuntime.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimRuntime : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimRuntimeMapData.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimRuntimeMapData : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimRuntimePairingRequirements.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimRuntimePairingRequirements : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimSDKInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimSDKInfo : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimSelectedRuntimePolicyResult.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimSelectedRuntimePolicyResult : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimServiceContext.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimServiceContext : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimVolumeManager.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimVolumeManager : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/SimVolumeManagerNotification.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SimVolumeManagerNotification : NSObject 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/include/CoreSimulator/_SimDeallocSentinel.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _SimDeallocSentinel : NSObject 23 + 24 + @end
+145
src/private-frameworks/CoreSimulator/src/CoreSimulator.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + 21 + #include <CoreSimulator/CoreSimulator.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + static int verbose = 0; 26 + __attribute__((constructor)) 27 + static void initme(void) { 28 + verbose = getenv("STUB_VERBOSE") != NULL; 29 + } 30 + 31 + 32 + extern void* const SimDeviceBootKeyBinPref = (void*)0; 33 + extern void* const SimDeviceBootKeyDeathPort = (void*)0; 34 + extern void* const SimDeviceBootKeyDeviceType = (void*)0; 35 + extern void* const SimDeviceBootKeyDisabledJobs = (void*)0; 36 + extern void* const SimDeviceBootKeyEnvironment = (void*)0; 37 + extern void* const SimDeviceBootKeyPersist = (void*)0; 38 + extern void* const SimDeviceBootKeyRuntime = (void*)0; 39 + extern void* const SimDeviceInstallOptionKeySkipWatchAppInstall = (void*)0; 40 + extern void* const SimDeviceLaunchApplicationEventTypeKeyBackgroundFetch = (void*)0; 41 + extern void* const SimDeviceLaunchApplicationKeyArguments = (void*)0; 42 + extern void* const SimDeviceLaunchApplicationKeyBackgrounded = (void*)0; 43 + extern void* const SimDeviceLaunchApplicationKeyEnvironment = (void*)0; 44 + extern void* const SimDeviceLaunchApplicationKeyEventType = (void*)0; 45 + extern void* const SimDeviceLaunchApplicationKeyStandardErrPath = (void*)0; 46 + extern void* const SimDeviceLaunchApplicationKeyStandardOutPath = (void*)0; 47 + extern void* const SimDeviceLaunchApplicationKeyTerminateRunningProcess = (void*)0; 48 + extern void* const SimDeviceLaunchApplicationKeyWaitForDebugger = (void*)0; 49 + extern void* const SimDeviceNotificationType_BootStatus = (void*)0; 50 + extern void* const SimDeviceSetOptionHostPort = (void*)0; 51 + extern void* const SimDeviceSpawnKeyArguments = (void*)0; 52 + extern void* const SimDeviceSpawnKeyBinPref = (void*)0; 53 + extern void* const SimDeviceSpawnKeyEnvironment = (void*)0; 54 + extern void* const SimDeviceSpawnKeyStandalone = (void*)0; 55 + extern void* const SimDeviceSpawnKeyStderr = (void*)0; 56 + extern void* const SimDeviceSpawnKeyStdin = (void*)0; 57 + extern void* const SimDeviceSpawnKeyStdout = (void*)0; 58 + extern void* const SimDeviceSpawnKeyWaitForDebugger = (void*)0; 59 + extern void* const SimNSPasteboardItemResolvedTypes = (void*)0; 60 + extern void* const kSimDeviceNotification_NewBootStatus = (void*)0; 61 + extern void* const kSimDeviceNotification_PreviousBootStatus = (void*)0; 62 + extern void* const kSimDevicePropertyKeyDeviceType = (void*)0; 63 + extern void* const kSimDevicePropertyKeyIsDeleted = (void*)0; 64 + extern void* const kSimDevicePropertyKeyIsEphemeral = (void*)0; 65 + extern void* const kSimDevicePropertyKeyLastBootedAt = (void*)0; 66 + extern void* const kSimDevicePropertyKeyName = (void*)0; 67 + extern void* const kSimDevicePropertyKeyRuntime = (void*)0; 68 + extern void* const kSimDevicePropertyKeyRuntimePolicy = (void*)0; 69 + extern void* const kSimDevicePropertyKeyRuntimeSpecifier = (void*)0; 70 + extern void* const kSimDevicePropertyKeyState = (void*)0; 71 + extern void* const kSimDevicePropertyKeyUDID = (void*)0; 72 + extern void* const kSimDeviceRuntimePolicyKeyLatest = (void*)0; 73 + extern void* const kSimDeviceRuntimePolicyKeyNewest = (void*)0; 74 + extern void* const kSimDeviceRuntimePolicyKeyPinnedToBuild = (void*)0; 75 + extern void* const kSimDeviceRuntimePolicyKeyPinnedToPath = (void*)0; 76 + extern void* const kSimDeviceRuntimePolicyKeySystem = (void*)0; 77 + extern void* const kSimPlatformIdentifierPhone = (void*)0; 78 + extern void* const kSimPlatformIdentifierTV = (void*)0; 79 + extern void* const kSimPlatformIdentifierWatch = (void*)0; 80 + extern void* const kSimPlatformShortNamePhone = (void*)0; 81 + extern void* const kSimPlatformShortNameTV = (void*)0; 82 + extern void* const kSimPlatformShortNameWatch = (void*)0; 83 + extern void* const kUnmountApprovalTimeout = (void*)0; 84 + extern void* const kUnmountVeryLongTimeout = (void*)0; 85 + 86 + void *SimDiskImageStateDisplayString(void) { 87 + if (verbose) puts("STUB: SimDiskImageStateDisplayString called"); 88 + return NULL; 89 + } 90 + 91 + void *SimDiskImageStateIsTerminal(void) { 92 + if (verbose) puts("STUB: SimDiskImageStateIsTerminal called"); 93 + return NULL; 94 + } 95 + 96 + void *SimLogFence(void) { 97 + if (verbose) puts("STUB: SimLogFence called"); 98 + return NULL; 99 + } 100 + 101 + void *SimLogSetHandler(void) { 102 + if (verbose) puts("STUB: SimLogSetHandler called"); 103 + return NULL; 104 + } 105 + 106 + void *_DADiskGetVolumePath(void) { 107 + if (verbose) puts("STUB: _DADiskGetVolumePath called"); 108 + return NULL; 109 + } 110 + 111 + void *_GetDiskDescription(void) { 112 + if (verbose) puts("STUB: _GetDiskDescription called"); 113 + return NULL; 114 + } 115 + 116 + void *_ShouldIgnoreDisk(void) { 117 + if (verbose) puts("STUB: _ShouldIgnoreDisk called"); 118 + return NULL; 119 + } 120 + 121 + void *_SimLog(void) { 122 + if (verbose) puts("STUB: _SimLog called"); 123 + return NULL; 124 + } 125 + 126 + void *_SimLogASL(void) { 127 + if (verbose) puts("STUB: _SimLogASL called"); 128 + return NULL; 129 + } 130 + 131 + void *_SimLogCSS(void) { 132 + if (verbose) puts("STUB: _SimLogCSS called"); 133 + return NULL; 134 + } 135 + 136 + void *_SimLogSTDOUT(void) { 137 + if (verbose) puts("STUB: _SimLogSTDOUT called"); 138 + return NULL; 139 + } 140 + 141 + void *pb_promise_support_mig_read_item_promised_data(void) { 142 + if (verbose) puts("STUB: pb_promise_support_mig_read_item_promised_data called"); 143 + return NULL; 144 + } 145 +
+24
src/private-frameworks/CoreSimulator/src/NSArray+SimPasteboardItem.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/NSArray+SimPasteboardItem.h> 21 + 22 + @implementation NSArray (SimPasteboardItem) 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/src/NSPasteboardItem+SimPasteboardItem.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/NSPasteboardItem+SimPasteboardItem.h> 21 + 22 + @implementation NSPasteboardItem (SimPasteboardItem) 23 + 24 + @end
+24
src/private-frameworks/CoreSimulator/src/NSString+SimPasteboardItem.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/NSString+SimPasteboardItem.h> 21 + 22 + @implementation NSString (SimPasteboardItem) 23 + 24 + @end
+34
src/private-frameworks/CoreSimulator/src/SimAudioHostRouteDescriptorState.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimAudioHostRouteDescriptorState.h> 21 + 22 + @implementation SimAudioHostRouteDescriptorState 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDevice.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDevice.h> 21 + 22 + @implementation SimDevice 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDeviceBootInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDeviceBootInfo.h> 21 + 22 + @implementation SimDeviceBootInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDeviceDataMigrationPluginResult.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDeviceDataMigrationPluginResult.h> 21 + 22 + @implementation SimDeviceDataMigrationPluginResult 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDeviceIO.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDeviceIO.h> 21 + 22 + @implementation SimDeviceIO 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDeviceIOClient.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDeviceIOClient.h> 21 + 22 + @implementation SimDeviceIOClient 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDeviceIOLoadedBundle.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDeviceIOLoadedBundle.h> 21 + 22 + @implementation SimDeviceIOLoadedBundle 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDeviceIOServer.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDeviceIOServer.h> 21 + 22 + @implementation SimDeviceIOServer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDeviceIOServerLogger.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDeviceIOServerLogger.h> 21 + 22 + @implementation SimDeviceIOServerLogger 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDeviceNotificationManager.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDeviceNotificationManager.h> 21 + 22 + @implementation SimDeviceNotificationManager 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDevicePair.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDevicePair.h> 21 + 22 + @implementation SimDevicePair 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDevicePasteboard.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDevicePasteboard.h> 21 + 22 + @implementation SimDevicePasteboard 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDevicePasteboardConnection.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDevicePasteboardConnection.h> 21 + 22 + @implementation SimDevicePasteboardConnection 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDevicePasteboardItem.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDevicePasteboardItem.h> 21 + 22 + @implementation SimDevicePasteboardItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDeviceSet.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDeviceSet.h> 21 + 22 + @implementation SimDeviceSet 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDeviceType.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDeviceType.h> 21 + 22 + @implementation SimDeviceType 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDiskImage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDiskImage.h> 21 + 22 + @implementation SimDiskImage 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDiskImageIdentifier.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDiskImageIdentifier.h> 21 + 22 + @implementation SimDiskImageIdentifier 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDiskImageManager.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDiskImageManager.h> 21 + 22 + @implementation SimDiskImageManager 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDiskImageRuntimeInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDiskImageRuntimeInfo.h> 21 + 22 + @implementation SimDiskImageRuntimeInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimDisplayDefaultDescriptorState.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimDisplayDefaultDescriptorState.h> 21 + 22 + @implementation SimDisplayDefaultDescriptorState 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimHostResourceChecker.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimHostResourceChecker.h> 21 + 22 + @implementation SimHostResourceChecker 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimIdentityClient.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimIdentityClient.h> 21 + 22 + @implementation SimIdentityClient 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimIdentityDevice.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimIdentityDevice.h> 21 + 22 + @implementation SimIdentityDevice 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimIdentityManager.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimIdentityManager.h> 21 + 22 + @implementation SimIdentityManager 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimKnownSDKEntry.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimKnownSDKEntry.h> 21 + 22 + @implementation SimKnownSDKEntry 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimLaunchHostClient.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimLaunchHostClient.h> 21 + 22 + @implementation SimLaunchHostClient 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimLaunchHostConnection.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimLaunchHostConnection.h> 21 + 22 + @implementation SimLaunchHostConnection 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimLegacyHIDDefaultDescriptorState.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimLegacyHIDDefaultDescriptorState.h> 21 + 22 + @implementation SimLegacyHIDDefaultDescriptorState 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimLibLaunchInstance.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimLibLaunchInstance.h> 21 + 22 + @implementation SimLibLaunchInstance 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimLocalThrowable.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimLocalThrowable.h> 21 + 22 + @implementation SimLocalThrowable 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimMachPortServer.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimMachPortServer.h> 21 + 22 + @implementation SimMachPortServer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimNSPasteboard.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimNSPasteboard.h> 21 + 22 + @implementation SimNSPasteboard 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimNSPasteboardItem.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimNSPasteboardItem.h> 21 + 22 + @implementation SimNSPasteboardItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimNearbyDevice.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimNearbyDevice.h> 21 + 22 + @implementation SimNearbyDevice 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimNearbyDeviceManager.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimNearbyDeviceManager.h> 21 + 22 + @implementation SimNearbyDeviceManager 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimNearbyPeer.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimNearbyPeer.h> 21 + 22 + @implementation SimNearbyPeer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimNotificationManager.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimNotificationManager.h> 21 + 22 + @implementation SimNotificationManager 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimNotificationManagerToken.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimNotificationManagerToken.h> 21 + 22 + @implementation SimNotificationManagerToken 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimPasteboardItem.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimPasteboardItem.h> 21 + 22 + @implementation SimPasteboardItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimPasteboardItemData.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimPasteboardItemData.h> 21 + 22 + @implementation SimPasteboardItemData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimPasteboardItemWrappedData.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimPasteboardItemWrappedData.h> 21 + 22 + @implementation SimPasteboardItemWrappedData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimPasteboardPortMap.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimPasteboardPortMap.h> 21 + 22 + @implementation SimPasteboardPortMap 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimPasteboardSyncPool.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimPasteboardSyncPool.h> 21 + 22 + @implementation SimPasteboardSyncPool 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimPasteboardSyncPoolObject.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimPasteboardSyncPoolObject.h> 21 + 22 + @implementation SimPasteboardSyncPoolObject 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimPendingOperation.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimPendingOperation.h> 21 + 22 + @implementation SimPendingOperation 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimPlatformInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimPlatformInfo.h> 21 + 22 + @implementation SimPlatformInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimProfileBundle.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimProfileBundle.h> 21 + 22 + @implementation SimProfileBundle 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimProfileModTime.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimProfileModTime.h> 21 + 22 + @implementation SimProfileModTime 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimProfilesPathMonitor.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimProfilesPathMonitor.h> 21 + 22 + @implementation SimProfilesPathMonitor 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimRuntime.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimRuntime.h> 21 + 22 + @implementation SimRuntime 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimRuntimeMapData.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimRuntimeMapData.h> 21 + 22 + @implementation SimRuntimeMapData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimRuntimePairingRequirements.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimRuntimePairingRequirements.h> 21 + 22 + @implementation SimRuntimePairingRequirements 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimSDKInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimSDKInfo.h> 21 + 22 + @implementation SimSDKInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimSelectedRuntimePolicyResult.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimSelectedRuntimePolicyResult.h> 21 + 22 + @implementation SimSelectedRuntimePolicyResult 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+42
src/private-frameworks/CoreSimulator/src/SimServiceContext.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimServiceContext.h> 21 + 22 + @implementation SimServiceContext 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + + (instancetype)sharedServiceContextForDeveloperDir: (NSString*)developerDir error: (NSError**)error 35 + { 36 + if (error != nil) { 37 + *error = [NSError errorWithDomain:NSOSStatusErrorDomain code:0 userInfo:nil]; 38 + } 39 + return nil; 40 + } 41 + 42 + @end
+34
src/private-frameworks/CoreSimulator/src/SimVolumeManager.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimVolumeManager.h> 21 + 22 + @implementation SimVolumeManager 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/SimVolumeManagerNotification.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/SimVolumeManagerNotification.h> 21 + 22 + @implementation SimVolumeManagerNotification 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/CoreSimulator/src/_SimDeallocSentinel.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <CoreSimulator/_SimDeallocSentinel.h> 21 + 22 + @implementation _SimDeallocSentinel 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end