pyobjc-framework-Virtualization 12.2__cp315-cp315t-macosx_10_15_universal2.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- Virtualization/_Virtualization.cpython-315t-darwin.so +0 -0
- Virtualization/__init__.py +141 -0
- Virtualization/_metadata.py +732 -0
- pyobjc_framework_virtualization-12.2.dist-info/METADATA +68 -0
- pyobjc_framework_virtualization-12.2.dist-info/RECORD +8 -0
- pyobjc_framework_virtualization-12.2.dist-info/WHEEL +5 -0
- pyobjc_framework_virtualization-12.2.dist-info/pyobjc-build-info.txt +3 -0
- pyobjc_framework_virtualization-12.2.dist-info/top_level.txt +1 -0
|
Binary file
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Python mapping for the Virtualization framework.
|
|
3
|
+
|
|
4
|
+
This module does not contain docstrings for the wrapped code, check Apple's
|
|
5
|
+
documentation for details on how to use these functions and classes.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def _setup():
|
|
10
|
+
import sys
|
|
11
|
+
|
|
12
|
+
import Foundation
|
|
13
|
+
import objc
|
|
14
|
+
from . import _metadata, _Virtualization
|
|
15
|
+
|
|
16
|
+
dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
|
|
17
|
+
name="Virtualization",
|
|
18
|
+
frameworkIdentifier="com.apple.Virtualization",
|
|
19
|
+
frameworkPath=objc.pathForFramework(
|
|
20
|
+
"/System/Library/Frameworks/Virtualization.framework"
|
|
21
|
+
),
|
|
22
|
+
globals_dict=globals(),
|
|
23
|
+
inline_list=None,
|
|
24
|
+
parents=(
|
|
25
|
+
_Virtualization,
|
|
26
|
+
Foundation,
|
|
27
|
+
),
|
|
28
|
+
metadict=_metadata.__dict__,
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
globals()["__dir__"] = dir_func
|
|
32
|
+
globals()["__getattr__"] = getattr_func
|
|
33
|
+
|
|
34
|
+
for cls, sel in (
|
|
35
|
+
("VZDirectoryShare", b"init"),
|
|
36
|
+
("VZDirectoryShare", b"new"),
|
|
37
|
+
("VZVirtioSoundDeviceStreamConfiguration", b"init"),
|
|
38
|
+
("VZVirtioSoundDeviceStreamConfiguration", b"new"),
|
|
39
|
+
("VZVirtioConsoleDevice", b"init"),
|
|
40
|
+
("VZVirtioConsoleDevice", b"new"),
|
|
41
|
+
("VZSharedDirectory", b"init"),
|
|
42
|
+
("VZSharedDirectory", b"new"),
|
|
43
|
+
("VZBootLoader", b"init"),
|
|
44
|
+
("VZBootLoader", b"new"),
|
|
45
|
+
("VZKeyboardConfiguration", b"init"),
|
|
46
|
+
("VZKeyboardConfiguration", b"new"),
|
|
47
|
+
("VZGraphicsDevice", b"init"),
|
|
48
|
+
("VZGraphicsDevice", b"new"),
|
|
49
|
+
("VZVirtioSocketDevice", b"init"),
|
|
50
|
+
("VZVirtioSocketDevice", b"new"),
|
|
51
|
+
("VZAudioDeviceConfiguration", b"init"),
|
|
52
|
+
("VZAudioDeviceConfiguration", b"new"),
|
|
53
|
+
("VZEntropyDeviceConfiguration", b"init"),
|
|
54
|
+
("VZEntropyDeviceConfiguration", b"new"),
|
|
55
|
+
("VZGraphicsDisplayConfiguration", b"init"),
|
|
56
|
+
("VZGraphicsDisplayConfiguration", b"new"),
|
|
57
|
+
("VZMacOSRestoreImage", b"init"),
|
|
58
|
+
("VZMacOSRestoreImage", b"new"),
|
|
59
|
+
("VZSerialPortAttachment", b"init"),
|
|
60
|
+
("VZSerialPortAttachment", b"new"),
|
|
61
|
+
("VZVirtioSocketConnection", b"init"),
|
|
62
|
+
("VZVirtioSocketConnection", b"new"),
|
|
63
|
+
("VZVirtioConsolePortConfigurationArray", b"init"),
|
|
64
|
+
("VZVirtioConsolePortConfigurationArray", b"new"),
|
|
65
|
+
("VZDirectorySharingDevice", b"init"),
|
|
66
|
+
("VZDirectorySharingDevice", b"new"),
|
|
67
|
+
("VZAudioInputStreamSource", b"init"),
|
|
68
|
+
("VZAudioInputStreamSource", b"new"),
|
|
69
|
+
("VZStorageDeviceAttachment", b"init"),
|
|
70
|
+
("VZStorageDeviceAttachment", b"new"),
|
|
71
|
+
("VZFileHandleSerialPortAttachment", b"init"),
|
|
72
|
+
("VZFileHandleSerialPortAttachment", b"new"),
|
|
73
|
+
("VZGraphicsDisplay", b"init"),
|
|
74
|
+
("VZGraphicsDisplay", b"new"),
|
|
75
|
+
("VZGraphicsDeviceConfiguration", b"init"),
|
|
76
|
+
("VZGraphicsDeviceConfiguration", b"new"),
|
|
77
|
+
("VZVirtioConsolePort", b"init"),
|
|
78
|
+
("VZVirtioConsolePort", b"new"),
|
|
79
|
+
("VZFileSerialPortAttachment", b"init"),
|
|
80
|
+
("VZFileSerialPortAttachment", b"new"),
|
|
81
|
+
("VZSocketDeviceConfiguration", b"init"),
|
|
82
|
+
("VZSocketDeviceConfiguration", b"new"),
|
|
83
|
+
("VZEFIVariableStore", b"init"),
|
|
84
|
+
("VZEFIVariableStore", b"new"),
|
|
85
|
+
("VZNetworkDevice", b"init"),
|
|
86
|
+
("VZNetworkDevice", b"new"),
|
|
87
|
+
("VZLinuxRosettaCachingOptions", b"init"),
|
|
88
|
+
("VZLinuxRosettaCachingOptions", b"new"),
|
|
89
|
+
("VZConsoleDeviceConfiguration", b"init"),
|
|
90
|
+
("VZConsoleDeviceConfiguration", b"new"),
|
|
91
|
+
("VZMacOSInstaller", b"init"),
|
|
92
|
+
("VZMacOSInstaller", b"new"),
|
|
93
|
+
("VZMacOSConfigurationRequirements", b"init"),
|
|
94
|
+
("VZMacOSConfigurationRequirements", b"new"),
|
|
95
|
+
("VZVirtioTraditionalMemoryBalloonDevice", b"init"),
|
|
96
|
+
("VZVirtioTraditionalMemoryBalloonDevice", b"new"),
|
|
97
|
+
("VZMacAuxiliaryStorage", b"init"),
|
|
98
|
+
("VZMacAuxiliaryStorage", b"new"),
|
|
99
|
+
("VZConsoleDevice", b"init"),
|
|
100
|
+
("VZConsoleDevice", b"new"),
|
|
101
|
+
("VZBridgedNetworkInterface", b"init"),
|
|
102
|
+
("VZBridgedNetworkInterface", b"new"),
|
|
103
|
+
("VZSerialPortConfiguration", b"init"),
|
|
104
|
+
("VZSerialPortConfiguration", b"new"),
|
|
105
|
+
("VZMemoryBalloonDevice", b"init"),
|
|
106
|
+
("VZMemoryBalloonDevice", b"new"),
|
|
107
|
+
("VZVirtualMachine", b"init"),
|
|
108
|
+
("VZVirtualMachine", b"new"),
|
|
109
|
+
("VZAudioOutputStreamSink", b"init"),
|
|
110
|
+
("VZAudioOutputStreamSink", b"new"),
|
|
111
|
+
("VZMacHardwareModel", b"init"),
|
|
112
|
+
("VZMacHardwareModel", b"new"),
|
|
113
|
+
("VZNetworkDeviceConfiguration", b"init"),
|
|
114
|
+
("VZNetworkDeviceConfiguration", b"new"),
|
|
115
|
+
("VZDirectorySharingDeviceConfiguration", b"init"),
|
|
116
|
+
("VZDirectorySharingDeviceConfiguration", b"new"),
|
|
117
|
+
("VZSocketDevice", b"init"),
|
|
118
|
+
("VZSocketDevice", b"new"),
|
|
119
|
+
("VZMemoryBalloonDeviceConfiguration", b"init"),
|
|
120
|
+
("VZMemoryBalloonDeviceConfiguration", b"new"),
|
|
121
|
+
("VZStorageDeviceConfiguration", b"init"),
|
|
122
|
+
("VZStorageDeviceConfiguration", b"new"),
|
|
123
|
+
("VZVirtioConsolePortArray", b"init"),
|
|
124
|
+
("VZVirtioConsolePortArray", b"new"),
|
|
125
|
+
("VZPlatformConfiguration", b"init"),
|
|
126
|
+
("VZPlatformConfiguration", b"new"),
|
|
127
|
+
("VZNetworkDeviceAttachment", b"init"),
|
|
128
|
+
("VZNetworkDeviceAttachment", b"new"),
|
|
129
|
+
("VZPointingDeviceConfiguration", b"init"),
|
|
130
|
+
("VZPointingDeviceConfiguration", b"new"),
|
|
131
|
+
("VZMACAddress", b"init"),
|
|
132
|
+
("VZMACAddress", b"new"),
|
|
133
|
+
("VZConsolePortConfiguration", b"init"),
|
|
134
|
+
("VZConsolePortConfiguration", b"new"),
|
|
135
|
+
):
|
|
136
|
+
objc.registerUnavailableMethod(cls, sel)
|
|
137
|
+
|
|
138
|
+
del sys.modules["Virtualization._metadata"]
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
globals().pop("_setup")()
|
|
@@ -0,0 +1,732 @@
|
|
|
1
|
+
# This file is generated by objective.metadata
|
|
2
|
+
#
|
|
3
|
+
# Last update: Sun May 24 12:00:35 2026
|
|
4
|
+
#
|
|
5
|
+
# flake8: noqa
|
|
6
|
+
|
|
7
|
+
import objc, sys
|
|
8
|
+
from typing import NewType
|
|
9
|
+
|
|
10
|
+
if sys.maxsize > 2**32:
|
|
11
|
+
|
|
12
|
+
def sel32or64(a, b):
|
|
13
|
+
return b
|
|
14
|
+
|
|
15
|
+
else:
|
|
16
|
+
|
|
17
|
+
def sel32or64(a, b):
|
|
18
|
+
return a
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
if objc.arch == "arm64":
|
|
22
|
+
|
|
23
|
+
def selAorI(a, b):
|
|
24
|
+
return a
|
|
25
|
+
|
|
26
|
+
else:
|
|
27
|
+
|
|
28
|
+
def selAorI(a, b):
|
|
29
|
+
return b
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
misc = {}
|
|
33
|
+
constants = """$VZErrorDomain$"""
|
|
34
|
+
enums = """$VZDiskImageCachingModeAutomatic@0$VZDiskImageCachingModeCached@2$VZDiskImageCachingModeUncached@1$VZDiskImageSynchronizationModeFsync@2$VZDiskImageSynchronizationModeFull@1$VZDiskImageSynchronizationModeNone@3$VZDiskSynchronizationModeFull@0$VZDiskSynchronizationModeNone@1$VZEFIVariableStoreInitializationOptionAllowOverwrite@1$VZErrorDeviceAlreadyAttached@30002$VZErrorDeviceInitializationFailure@30003$VZErrorDeviceNotFound@30004$VZErrorInstallationFailed@10007$VZErrorInstallationRequiresUpdate@10006$VZErrorInternal@1$VZErrorInvalidDiskImage@5$VZErrorInvalidRestoreImage@10005$VZErrorInvalidRestoreImageCatalog@10002$VZErrorInvalidVirtualMachineConfiguration@2$VZErrorInvalidVirtualMachineState@3$VZErrorInvalidVirtualMachineStateTransition@4$VZErrorNetworkBlockDeviceDisconnected@20002$VZErrorNetworkBlockDeviceNegotiationFailed@20001$VZErrorNetworkError@7$VZErrorNoSupportedRestoreImagesInCatalog@10003$VZErrorNotSupported@10$VZErrorOperationCancelled@9$VZErrorOutOfDiskSpace@8$VZErrorRestore@12$VZErrorRestoreImageCatalogLoadFailed@10001$VZErrorRestoreImageLoadFailed@10004$VZErrorSave@11$VZErrorUSBControllerNotFound@30001$VZErrorVirtualMachineLimitExceeded@6$VZLinuxRosettaAvailabilityInstalled@2$VZLinuxRosettaAvailabilityNotInstalled@1$VZLinuxRosettaAvailabilityNotSupported@0$VZMacAuxiliaryStorageInitializationOptionAllowOverwrite@1$VZVirtualMachineStateError@3$VZVirtualMachineStatePaused@2$VZVirtualMachineStatePausing@5$VZVirtualMachineStateRestoring@9$VZVirtualMachineStateResuming@6$VZVirtualMachineStateRunning@1$VZVirtualMachineStateSaving@8$VZVirtualMachineStateStarting@4$VZVirtualMachineStateStopped@0$VZVirtualMachineStateStopping@7$"""
|
|
35
|
+
misc.update(
|
|
36
|
+
{
|
|
37
|
+
"VZVirtualMachineState": NewType("VZVirtualMachineState", int),
|
|
38
|
+
"VZDiskImageCachingMode": NewType("VZDiskImageCachingMode", int),
|
|
39
|
+
"VZLinuxRosettaAvailability": NewType("VZLinuxRosettaAvailability", int),
|
|
40
|
+
"VZDiskImageSynchronizationMode": NewType(
|
|
41
|
+
"VZDiskImageSynchronizationMode", int
|
|
42
|
+
),
|
|
43
|
+
"VZErrorCode": NewType("VZErrorCode", int),
|
|
44
|
+
"VZMacAuxiliaryStorageInitializationOptions": NewType(
|
|
45
|
+
"VZMacAuxiliaryStorageInitializationOptions", int
|
|
46
|
+
),
|
|
47
|
+
"VZDiskSynchronizationMode": NewType("VZDiskSynchronizationMode", int),
|
|
48
|
+
"VZEFIVariableStoreInitializationOptions": NewType(
|
|
49
|
+
"VZEFIVariableStoreInitializationOptions", int
|
|
50
|
+
),
|
|
51
|
+
}
|
|
52
|
+
)
|
|
53
|
+
misc.update({})
|
|
54
|
+
misc.update({})
|
|
55
|
+
r = objc.registerMetaDataForSelector
|
|
56
|
+
objc._updatingMetadata(True)
|
|
57
|
+
try:
|
|
58
|
+
r(
|
|
59
|
+
b"NSObject",
|
|
60
|
+
b"attachment:didEncounterError:",
|
|
61
|
+
{
|
|
62
|
+
"required": False,
|
|
63
|
+
"retval": {"type": b"v"},
|
|
64
|
+
"arguments": {2: {"type": b"@"}, 3: {"type": b"@"}},
|
|
65
|
+
},
|
|
66
|
+
)
|
|
67
|
+
r(
|
|
68
|
+
b"NSObject",
|
|
69
|
+
b"attachmentWasConnected:",
|
|
70
|
+
{"required": False, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
|
|
71
|
+
)
|
|
72
|
+
r(
|
|
73
|
+
b"NSObject",
|
|
74
|
+
b"consoleDevice:didClosePort:",
|
|
75
|
+
{
|
|
76
|
+
"required": False,
|
|
77
|
+
"retval": {"type": b"v"},
|
|
78
|
+
"arguments": {2: {"type": b"@"}, 3: {"type": b"@"}},
|
|
79
|
+
},
|
|
80
|
+
)
|
|
81
|
+
r(
|
|
82
|
+
b"NSObject",
|
|
83
|
+
b"consoleDevice:didOpenPort:",
|
|
84
|
+
{
|
|
85
|
+
"required": False,
|
|
86
|
+
"retval": {"type": b"v"},
|
|
87
|
+
"arguments": {2: {"type": b"@"}, 3: {"type": b"@"}},
|
|
88
|
+
},
|
|
89
|
+
)
|
|
90
|
+
r(
|
|
91
|
+
b"NSObject",
|
|
92
|
+
b"displayDidBeginReconfiguration:",
|
|
93
|
+
{"required": False, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
|
|
94
|
+
)
|
|
95
|
+
r(
|
|
96
|
+
b"NSObject",
|
|
97
|
+
b"displayDidEndReconfiguration:",
|
|
98
|
+
{"required": False, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
|
|
99
|
+
)
|
|
100
|
+
r(
|
|
101
|
+
b"NSObject",
|
|
102
|
+
b"guestDidStopVirtualMachine:",
|
|
103
|
+
{"required": False, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
|
|
104
|
+
)
|
|
105
|
+
r(
|
|
106
|
+
b"NSObject",
|
|
107
|
+
b"listener:shouldAcceptNewConnection:fromSocketDevice:",
|
|
108
|
+
{
|
|
109
|
+
"required": False,
|
|
110
|
+
"retval": {"type": b"Z"},
|
|
111
|
+
"arguments": {2: {"type": b"@"}, 3: {"type": b"@"}, 4: {"type": b"@"}},
|
|
112
|
+
},
|
|
113
|
+
)
|
|
114
|
+
r(
|
|
115
|
+
b"NSObject",
|
|
116
|
+
b"setUuid:",
|
|
117
|
+
{"required": True, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
|
|
118
|
+
)
|
|
119
|
+
r(b"NSObject", b"usbController", {"required": True, "retval": {"type": b"@"}})
|
|
120
|
+
r(b"NSObject", b"uuid", {"required": True, "retval": {"type": b"@"}})
|
|
121
|
+
r(
|
|
122
|
+
b"NSObject",
|
|
123
|
+
b"virtualMachine:didStopWithError:",
|
|
124
|
+
{
|
|
125
|
+
"required": False,
|
|
126
|
+
"retval": {"type": b"v"},
|
|
127
|
+
"arguments": {2: {"type": b"@"}, 3: {"type": b"@"}},
|
|
128
|
+
},
|
|
129
|
+
)
|
|
130
|
+
r(
|
|
131
|
+
b"NSObject",
|
|
132
|
+
b"virtualMachine:networkDevice:attachmentWasDisconnectedWithError:",
|
|
133
|
+
{
|
|
134
|
+
"required": False,
|
|
135
|
+
"retval": {"type": b"v"},
|
|
136
|
+
"arguments": {2: {"type": b"@"}, 3: {"type": b"@"}, 4: {"type": b"@"}},
|
|
137
|
+
},
|
|
138
|
+
)
|
|
139
|
+
r(
|
|
140
|
+
b"VZDiskBlockDeviceStorageDeviceAttachment",
|
|
141
|
+
b"initWithFileHandle:readOnly:synchronizationMode:error:",
|
|
142
|
+
{"arguments": {3: {"type": b"Z"}, 5: {"type_modifier": b"o"}}},
|
|
143
|
+
)
|
|
144
|
+
r(
|
|
145
|
+
b"VZDiskBlockDeviceStorageDeviceAttachment",
|
|
146
|
+
b"isReadOnly",
|
|
147
|
+
{"retval": {"type": b"Z"}},
|
|
148
|
+
)
|
|
149
|
+
r(
|
|
150
|
+
b"VZDiskImageStorageDeviceAttachment",
|
|
151
|
+
b"initWithURL:readOnly:cachingMode:synchronizationMode:error:",
|
|
152
|
+
{"arguments": {3: {"type": b"Z"}, 6: {"type_modifier": b"o"}}},
|
|
153
|
+
)
|
|
154
|
+
r(
|
|
155
|
+
b"VZDiskImageStorageDeviceAttachment",
|
|
156
|
+
b"initWithURL:readOnly:error:",
|
|
157
|
+
{"arguments": {3: {"type": b"Z"}, 4: {"type_modifier": b"o"}}},
|
|
158
|
+
)
|
|
159
|
+
r(b"VZDiskImageStorageDeviceAttachment", b"isReadOnly", {"retval": {"type": "Z"}})
|
|
160
|
+
r(
|
|
161
|
+
b"VZEFIVariableStore",
|
|
162
|
+
b"initCreatingVariableStoreAtURL:options:error:",
|
|
163
|
+
{"arguments": {4: {"type_modifier": b"o"}}},
|
|
164
|
+
)
|
|
165
|
+
r(b"VZFileSerialPortAttachment", b"append", {"retval": {"type": b"Z"}})
|
|
166
|
+
r(
|
|
167
|
+
b"VZFileSerialPortAttachment",
|
|
168
|
+
b"initWithURL:append:error:",
|
|
169
|
+
{"arguments": {3: {"type": b"Z"}, 4: {"type_modifier": b"o"}}},
|
|
170
|
+
)
|
|
171
|
+
r(
|
|
172
|
+
b"VZGenericPlatformConfiguration",
|
|
173
|
+
b"isNestedVirtualizationEnabled",
|
|
174
|
+
{"retval": {"type": b"Z"}},
|
|
175
|
+
)
|
|
176
|
+
r(
|
|
177
|
+
b"VZGenericPlatformConfiguration",
|
|
178
|
+
b"isNestedVirtualizationSupported",
|
|
179
|
+
{"retval": {"type": b"Z"}},
|
|
180
|
+
)
|
|
181
|
+
r(
|
|
182
|
+
b"VZGenericPlatformConfiguration",
|
|
183
|
+
b"setNestedVirtualizationEnabled:",
|
|
184
|
+
{"arguments": {2: {"type": b"Z"}}},
|
|
185
|
+
)
|
|
186
|
+
r(
|
|
187
|
+
b"VZGraphicsDisplay",
|
|
188
|
+
b"reconfigureWithConfiguration:error:",
|
|
189
|
+
{"retval": {"type": b"Z"}, "arguments": {3: {"type_modifier": b"o"}}},
|
|
190
|
+
)
|
|
191
|
+
r(
|
|
192
|
+
b"VZGraphicsDisplay",
|
|
193
|
+
b"reconfigureWithSizeInPixels:error:",
|
|
194
|
+
{"retval": {"type": b"Z"}, "arguments": {3: {"type_modifier": b"o"}}},
|
|
195
|
+
)
|
|
196
|
+
r(
|
|
197
|
+
b"VZLinuxRosettaAbstractSocketCachingOptions",
|
|
198
|
+
b"initWithName:error:",
|
|
199
|
+
{"arguments": {3: {"type_modifier": b"o"}}},
|
|
200
|
+
)
|
|
201
|
+
r(
|
|
202
|
+
b"VZLinuxRosettaDirectoryShare",
|
|
203
|
+
b"initWithError:",
|
|
204
|
+
{"arguments": {2: {"type_modifier": b"o"}}},
|
|
205
|
+
)
|
|
206
|
+
r(
|
|
207
|
+
b"VZLinuxRosettaDirectoryShare",
|
|
208
|
+
b"installRosettaWithCompletionHandler:",
|
|
209
|
+
{
|
|
210
|
+
"arguments": {
|
|
211
|
+
2: {
|
|
212
|
+
"callable": {
|
|
213
|
+
"retval": {"type": b"v"},
|
|
214
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
)
|
|
220
|
+
r(
|
|
221
|
+
b"VZLinuxRosettaUnixSocketCachingOptions",
|
|
222
|
+
b"initWithPath:error:",
|
|
223
|
+
{"arguments": {3: {"type_modifier": b"o"}}},
|
|
224
|
+
)
|
|
225
|
+
r(b"VZMACAddress", b"isBroadcastAddress", {"retval": {"type": b"Z"}})
|
|
226
|
+
r(b"VZMACAddress", b"isLocallyAdministeredAddress", {"retval": {"type": b"Z"}})
|
|
227
|
+
r(b"VZMACAddress", b"isMulticastAddress", {"retval": {"type": b"Z"}})
|
|
228
|
+
r(b"VZMACAddress", b"isUnicastAddress", {"retval": {"type": b"Z"}})
|
|
229
|
+
r(b"VZMACAddress", b"isUniversallyAdministeredAddress", {"retval": {"type": b"Z"}})
|
|
230
|
+
r(
|
|
231
|
+
b"VZMacAuxiliaryStorage",
|
|
232
|
+
b"initCreatingStorageAtURL:hardwareModel:options:error:",
|
|
233
|
+
{"arguments": {5: {"type_modifier": b"o"}}},
|
|
234
|
+
)
|
|
235
|
+
r(b"VZMacHardwareModel", b"isSupported", {"retval": {"type": b"Z"}})
|
|
236
|
+
r(
|
|
237
|
+
b"VZMacOSInstaller",
|
|
238
|
+
b"installWithCompletionHandler:",
|
|
239
|
+
{
|
|
240
|
+
"arguments": {
|
|
241
|
+
2: {
|
|
242
|
+
"callable": {
|
|
243
|
+
"retval": {"type": b"v"},
|
|
244
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
)
|
|
250
|
+
r(
|
|
251
|
+
b"VZMacOSRestoreImage",
|
|
252
|
+
b"fetchLatestSupportedWithCompletionHandler:",
|
|
253
|
+
{
|
|
254
|
+
"arguments": {
|
|
255
|
+
2: {
|
|
256
|
+
"callable": {
|
|
257
|
+
"retval": {"type": b"v"},
|
|
258
|
+
"arguments": {
|
|
259
|
+
0: {"type": b"^v"},
|
|
260
|
+
1: {"type": b"@"},
|
|
261
|
+
2: {"type": b"@"},
|
|
262
|
+
},
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
)
|
|
268
|
+
r(b"VZMacOSRestoreImage", b"isSupported", {"retval": {"type": b"Z"}})
|
|
269
|
+
r(
|
|
270
|
+
b"VZMacOSRestoreImage",
|
|
271
|
+
b"loadFileURL:completionHandler:",
|
|
272
|
+
{
|
|
273
|
+
"arguments": {
|
|
274
|
+
3: {
|
|
275
|
+
"callable": {
|
|
276
|
+
"retval": {"type": b"v"},
|
|
277
|
+
"arguments": {
|
|
278
|
+
0: {"type": b"^v"},
|
|
279
|
+
1: {"type": b"@"},
|
|
280
|
+
2: {"type": b"@"},
|
|
281
|
+
},
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
)
|
|
287
|
+
r(
|
|
288
|
+
b"VZMacOSRestoreImage",
|
|
289
|
+
b"operatingSystemVersion",
|
|
290
|
+
{"retval": {"type": "{NSOperatingSystemVersion=qqq}"}},
|
|
291
|
+
)
|
|
292
|
+
r(
|
|
293
|
+
b"VZMacOSVirtualMachineStartOptions",
|
|
294
|
+
b"setStartUpFromMacOSRecovery:",
|
|
295
|
+
{"arguments": {2: {"type": b"Z"}}},
|
|
296
|
+
)
|
|
297
|
+
r(
|
|
298
|
+
b"VZMacOSVirtualMachineStartOptions",
|
|
299
|
+
b"startUpFromMacOSRecovery",
|
|
300
|
+
{"retval": {"type": b"Z"}},
|
|
301
|
+
)
|
|
302
|
+
r(
|
|
303
|
+
b"VZMultipleDirectoryShare",
|
|
304
|
+
b"validateName:error:",
|
|
305
|
+
{"retval": {"type": b"Z"}, "arguments": {3: {"type_modifier": b"o"}}},
|
|
306
|
+
)
|
|
307
|
+
r(
|
|
308
|
+
b"VZNetworkBlockDeviceStorageDeviceAttachment",
|
|
309
|
+
b"initWithURL:error:",
|
|
310
|
+
{"arguments": {3: {"type_modifier": b"o"}}},
|
|
311
|
+
)
|
|
312
|
+
r(
|
|
313
|
+
b"VZNetworkBlockDeviceStorageDeviceAttachment",
|
|
314
|
+
b"initWithURL:timeout:forcedReadOnly:synchronizationMode:error:",
|
|
315
|
+
{"arguments": {4: {"type": b"Z"}, 6: {"type_modifier": b"o"}}},
|
|
316
|
+
)
|
|
317
|
+
r(
|
|
318
|
+
b"VZNetworkBlockDeviceStorageDeviceAttachment",
|
|
319
|
+
b"isForcedReadOnly",
|
|
320
|
+
{"retval": {"type": b"Z"}},
|
|
321
|
+
)
|
|
322
|
+
r(
|
|
323
|
+
b"VZNetworkBlockDeviceStorageDeviceAttachment",
|
|
324
|
+
b"validateURL:error:",
|
|
325
|
+
{"retval": {"type": b"Z"}, "arguments": {3: {"type_modifier": b"o"}}},
|
|
326
|
+
)
|
|
327
|
+
r(
|
|
328
|
+
b"VZSharedDirectory",
|
|
329
|
+
b"initWithURL:readOnly:",
|
|
330
|
+
{"arguments": {3: {"type": b"Z"}}},
|
|
331
|
+
)
|
|
332
|
+
r(b"VZSharedDirectory", b"isReadOnly", {"retval": {"type": b"Z"}})
|
|
333
|
+
r(
|
|
334
|
+
b"VZSpiceAgentPortAttachment",
|
|
335
|
+
b"setSharesClipboard:",
|
|
336
|
+
{"arguments": {2: {"type": b"Z"}}},
|
|
337
|
+
)
|
|
338
|
+
r(b"VZSpiceAgentPortAttachment", b"sharesClipboard", {"retval": {"type": b"Z"}})
|
|
339
|
+
r(
|
|
340
|
+
b"VZUSBController",
|
|
341
|
+
b"attachDevice:completionHandler:",
|
|
342
|
+
{
|
|
343
|
+
"arguments": {
|
|
344
|
+
3: {
|
|
345
|
+
"callable": {
|
|
346
|
+
"retval": {"type": b"v"},
|
|
347
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
)
|
|
353
|
+
r(
|
|
354
|
+
b"VZUSBController",
|
|
355
|
+
b"detachDevice:completionHandler:",
|
|
356
|
+
{
|
|
357
|
+
"arguments": {
|
|
358
|
+
3: {
|
|
359
|
+
"callable": {
|
|
360
|
+
"retval": {"type": b"v"},
|
|
361
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
},
|
|
366
|
+
)
|
|
367
|
+
r(
|
|
368
|
+
b"VZVirtioBlockDeviceConfiguration",
|
|
369
|
+
b"validateBlockDeviceIdentifier:error:",
|
|
370
|
+
{"retval": {"type": b"Z"}, "arguments": {3: {"type_modifier": b"o"}}},
|
|
371
|
+
)
|
|
372
|
+
r(b"VZVirtioConsolePortConfiguration", b"isConsole", {"retval": {"type": b"Z"}})
|
|
373
|
+
r(
|
|
374
|
+
b"VZVirtioConsolePortConfiguration",
|
|
375
|
+
b"setIsConsole:",
|
|
376
|
+
{"arguments": {2: {"type": b"Z"}}},
|
|
377
|
+
)
|
|
378
|
+
r(
|
|
379
|
+
b"VZVirtioFileSystemDeviceConfiguration",
|
|
380
|
+
b"validateTag:error:",
|
|
381
|
+
{"retval": {"type": b"Z"}, "arguments": {3: {"type_modifier": b"o"}}},
|
|
382
|
+
)
|
|
383
|
+
r(
|
|
384
|
+
b"VZVirtioSocketDevice",
|
|
385
|
+
b"connectToPort:completionHandler:",
|
|
386
|
+
{
|
|
387
|
+
"arguments": {
|
|
388
|
+
3: {
|
|
389
|
+
"callable": {
|
|
390
|
+
"retval": {"type": b"v"},
|
|
391
|
+
"arguments": {
|
|
392
|
+
0: {"type": b"^v"},
|
|
393
|
+
1: {"type": b"@"},
|
|
394
|
+
2: {"type": b"@"},
|
|
395
|
+
},
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
)
|
|
401
|
+
r(b"VZVirtualMachine", b"canPause", {"retval": {"type": b"Z"}})
|
|
402
|
+
r(b"VZVirtualMachine", b"canRequestStop", {"retval": {"type": b"Z"}})
|
|
403
|
+
r(b"VZVirtualMachine", b"canResume", {"retval": {"type": b"Z"}})
|
|
404
|
+
r(b"VZVirtualMachine", b"canStart", {"retval": {"type": b"Z"}})
|
|
405
|
+
r(b"VZVirtualMachine", b"canStop", {"retval": {"type": b"Z"}})
|
|
406
|
+
r(b"VZVirtualMachine", b"isSupported", {"retval": {"type": b"Z"}})
|
|
407
|
+
r(
|
|
408
|
+
b"VZVirtualMachine",
|
|
409
|
+
b"pauseWithCompletionHandler:",
|
|
410
|
+
{
|
|
411
|
+
"arguments": {
|
|
412
|
+
2: {
|
|
413
|
+
"callable": {
|
|
414
|
+
"retval": {"type": b"v"},
|
|
415
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
},
|
|
420
|
+
)
|
|
421
|
+
r(
|
|
422
|
+
b"VZVirtualMachine",
|
|
423
|
+
b"requestStopWithError:",
|
|
424
|
+
{"retval": {"type": b"Z"}, "arguments": {2: {"type_modifier": b"o"}}},
|
|
425
|
+
)
|
|
426
|
+
r(
|
|
427
|
+
b"VZVirtualMachine",
|
|
428
|
+
b"restoreMachineStateFromURL:completionHandler:",
|
|
429
|
+
{
|
|
430
|
+
"arguments": {
|
|
431
|
+
3: {
|
|
432
|
+
"callable": {
|
|
433
|
+
"retval": {"type": b"v"},
|
|
434
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
},
|
|
439
|
+
)
|
|
440
|
+
r(
|
|
441
|
+
b"VZVirtualMachine",
|
|
442
|
+
b"resumeWithCompletionHandler:",
|
|
443
|
+
{
|
|
444
|
+
"arguments": {
|
|
445
|
+
2: {
|
|
446
|
+
"callable": {
|
|
447
|
+
"retval": {"type": b"v"},
|
|
448
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
)
|
|
454
|
+
r(
|
|
455
|
+
b"VZVirtualMachine",
|
|
456
|
+
b"saveMachineStateToURL:completionHandler:",
|
|
457
|
+
{
|
|
458
|
+
"arguments": {
|
|
459
|
+
3: {
|
|
460
|
+
"callable": {
|
|
461
|
+
"retval": {"type": b"v"},
|
|
462
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
},
|
|
467
|
+
)
|
|
468
|
+
r(
|
|
469
|
+
b"VZVirtualMachine",
|
|
470
|
+
b"startWithCompletionHandler:",
|
|
471
|
+
{
|
|
472
|
+
"arguments": {
|
|
473
|
+
2: {
|
|
474
|
+
"callable": {
|
|
475
|
+
"retval": {"type": b"v"},
|
|
476
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
)
|
|
482
|
+
r(
|
|
483
|
+
b"VZVirtualMachine",
|
|
484
|
+
b"startWithOptions:completionHandler:",
|
|
485
|
+
{
|
|
486
|
+
"arguments": {
|
|
487
|
+
3: {
|
|
488
|
+
"callable": {
|
|
489
|
+
"retval": {"type": b"v"},
|
|
490
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
)
|
|
496
|
+
r(
|
|
497
|
+
b"VZVirtualMachine",
|
|
498
|
+
b"stopWithCompletionHandler:",
|
|
499
|
+
{
|
|
500
|
+
"arguments": {
|
|
501
|
+
2: {
|
|
502
|
+
"callable": {
|
|
503
|
+
"retval": {"type": b"v"},
|
|
504
|
+
"arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
)
|
|
510
|
+
r(
|
|
511
|
+
b"VZVirtualMachineConfiguration",
|
|
512
|
+
b"validateSaveRestoreSupportWithError:",
|
|
513
|
+
{"retval": {"type": b"Z"}, "arguments": {2: {"type_modifier": b"o"}}},
|
|
514
|
+
)
|
|
515
|
+
r(
|
|
516
|
+
b"VZVirtualMachineConfiguration",
|
|
517
|
+
b"validateWithError:",
|
|
518
|
+
{"retval": {"type": b"Z"}, "arguments": {2: {"type_modifier": b"o"}}},
|
|
519
|
+
)
|
|
520
|
+
r(
|
|
521
|
+
b"VZVirtualMachineView",
|
|
522
|
+
b"automaticallyReconfiguresDisplay",
|
|
523
|
+
{"retval": {"type": b"Z"}},
|
|
524
|
+
)
|
|
525
|
+
r(b"VZVirtualMachineView", b"capturesSystemKeys", {"retval": {"type": b"Z"}})
|
|
526
|
+
r(
|
|
527
|
+
b"VZVirtualMachineView",
|
|
528
|
+
b"setAutomaticallyReconfiguresDisplay:",
|
|
529
|
+
{"arguments": {2: {"type": b"Z"}}},
|
|
530
|
+
)
|
|
531
|
+
r(
|
|
532
|
+
b"VZVirtualMachineView",
|
|
533
|
+
b"setCapturesSystemKeys:",
|
|
534
|
+
{"arguments": {2: {"type": b"Z"}}},
|
|
535
|
+
)
|
|
536
|
+
finally:
|
|
537
|
+
objc._updatingMetadata(False)
|
|
538
|
+
|
|
539
|
+
objc.registerNewKeywordsFromSelector("VZAudioDeviceConfiguration", b"init")
|
|
540
|
+
objc.registerNewKeywordsFromSelector("VZAudioInputStreamSource", b"init")
|
|
541
|
+
objc.registerNewKeywordsFromSelector("VZAudioOutputStreamSink", b"init")
|
|
542
|
+
objc.registerNewKeywordsFromSelector("VZBootLoader", b"init")
|
|
543
|
+
objc.registerNewKeywordsFromSelector(
|
|
544
|
+
"VZBridgedNetworkDeviceAttachment", b"initWithInterface:"
|
|
545
|
+
)
|
|
546
|
+
objc.registerNewKeywordsFromSelector("VZBridgedNetworkInterface", b"init")
|
|
547
|
+
objc.registerNewKeywordsFromSelector("VZConsoleDevice", b"init")
|
|
548
|
+
objc.registerNewKeywordsFromSelector("VZConsoleDeviceConfiguration", b"init")
|
|
549
|
+
objc.registerNewKeywordsFromSelector("VZConsolePortConfiguration", b"init")
|
|
550
|
+
objc.registerNewKeywordsFromSelector("VZDirectoryShare", b"init")
|
|
551
|
+
objc.registerNewKeywordsFromSelector("VZDirectorySharingDevice", b"init")
|
|
552
|
+
objc.registerNewKeywordsFromSelector("VZDirectorySharingDeviceConfiguration", b"init")
|
|
553
|
+
objc.registerNewKeywordsFromSelector(
|
|
554
|
+
"VZDiskBlockDeviceStorageDeviceAttachment",
|
|
555
|
+
b"initWithFileHandle:readOnly:synchronizationMode:error:",
|
|
556
|
+
)
|
|
557
|
+
objc.registerNewKeywordsFromSelector(
|
|
558
|
+
"VZDiskImageStorageDeviceAttachment",
|
|
559
|
+
b"initWithURL:readOnly:cachingMode:synchronizationMode:error:",
|
|
560
|
+
)
|
|
561
|
+
objc.registerNewKeywordsFromSelector(
|
|
562
|
+
"VZDiskImageStorageDeviceAttachment", b"initWithURL:readOnly:error:"
|
|
563
|
+
)
|
|
564
|
+
objc.registerNewKeywordsFromSelector("VZEFIBootLoader", b"init")
|
|
565
|
+
objc.registerNewKeywordsFromSelector("VZEFIVariableStore", b"init")
|
|
566
|
+
objc.registerNewKeywordsFromSelector(
|
|
567
|
+
"VZEFIVariableStore", b"initCreatingVariableStoreAtURL:options:error:"
|
|
568
|
+
)
|
|
569
|
+
objc.registerNewKeywordsFromSelector("VZEFIVariableStore", b"initWithURL:")
|
|
570
|
+
objc.registerNewKeywordsFromSelector("VZEntropyDeviceConfiguration", b"init")
|
|
571
|
+
objc.registerNewKeywordsFromSelector(
|
|
572
|
+
"VZFileHandleNetworkDeviceAttachment", b"initWithFileHandle:"
|
|
573
|
+
)
|
|
574
|
+
objc.registerNewKeywordsFromSelector("VZFileHandleSerialPortAttachment", b"init")
|
|
575
|
+
objc.registerNewKeywordsFromSelector(
|
|
576
|
+
"VZFileHandleSerialPortAttachment",
|
|
577
|
+
b"initWithFileHandleForReading:fileHandleForWriting:",
|
|
578
|
+
)
|
|
579
|
+
objc.registerNewKeywordsFromSelector("VZFileSerialPortAttachment", b"init")
|
|
580
|
+
objc.registerNewKeywordsFromSelector(
|
|
581
|
+
"VZFileSerialPortAttachment", b"initWithURL:append:error:"
|
|
582
|
+
)
|
|
583
|
+
objc.registerNewKeywordsFromSelector("VZGenericMachineIdentifier", b"init")
|
|
584
|
+
objc.registerNewKeywordsFromSelector(
|
|
585
|
+
"VZGenericMachineIdentifier", b"initWithDataRepresentation:"
|
|
586
|
+
)
|
|
587
|
+
objc.registerNewKeywordsFromSelector("VZGenericPlatformConfiguration", b"init")
|
|
588
|
+
objc.registerNewKeywordsFromSelector("VZGraphicsDevice", b"init")
|
|
589
|
+
objc.registerNewKeywordsFromSelector("VZGraphicsDeviceConfiguration", b"init")
|
|
590
|
+
objc.registerNewKeywordsFromSelector("VZGraphicsDisplay", b"init")
|
|
591
|
+
objc.registerNewKeywordsFromSelector("VZGraphicsDisplayConfiguration", b"init")
|
|
592
|
+
objc.registerNewKeywordsFromSelector("VZHostAudioInputStreamSource", b"init")
|
|
593
|
+
objc.registerNewKeywordsFromSelector("VZHostAudioOutputStreamSink", b"init")
|
|
594
|
+
objc.registerNewKeywordsFromSelector("VZKeyboardConfiguration", b"init")
|
|
595
|
+
objc.registerNewKeywordsFromSelector("VZLinuxBootLoader", b"initWithKernelURL:")
|
|
596
|
+
objc.registerNewKeywordsFromSelector(
|
|
597
|
+
"VZLinuxRosettaAbstractSocketCachingOptions", b"initWithName:error:"
|
|
598
|
+
)
|
|
599
|
+
objc.registerNewKeywordsFromSelector("VZLinuxRosettaCachingOptions", b"init")
|
|
600
|
+
objc.registerNewKeywordsFromSelector("VZLinuxRosettaDirectoryShare", b"initWithError:")
|
|
601
|
+
objc.registerNewKeywordsFromSelector("VZLinuxRosettaUnixSocketCachingOptions", b"init")
|
|
602
|
+
objc.registerNewKeywordsFromSelector(
|
|
603
|
+
"VZLinuxRosettaUnixSocketCachingOptions", b"initWithPath:error:"
|
|
604
|
+
)
|
|
605
|
+
objc.registerNewKeywordsFromSelector("VZMACAddress", b"init")
|
|
606
|
+
objc.registerNewKeywordsFromSelector("VZMACAddress", b"initWithEthernetAddress:")
|
|
607
|
+
objc.registerNewKeywordsFromSelector("VZMACAddress", b"initWithString:")
|
|
608
|
+
objc.registerNewKeywordsFromSelector("VZMacAuxiliaryStorage", b"init")
|
|
609
|
+
objc.registerNewKeywordsFromSelector(
|
|
610
|
+
"VZMacAuxiliaryStorage", b"initCreatingStorageAtURL:hardwareModel:options:error:"
|
|
611
|
+
)
|
|
612
|
+
objc.registerNewKeywordsFromSelector("VZMacAuxiliaryStorage", b"initWithContentsOfURL:")
|
|
613
|
+
objc.registerNewKeywordsFromSelector("VZMacAuxiliaryStorage", b"initWithURL:")
|
|
614
|
+
objc.registerNewKeywordsFromSelector("VZMacGraphicsDeviceConfiguration", b"init")
|
|
615
|
+
objc.registerNewKeywordsFromSelector(
|
|
616
|
+
"VZMacGraphicsDisplayConfiguration", b"initForScreen:sizeInPoints:"
|
|
617
|
+
)
|
|
618
|
+
objc.registerNewKeywordsFromSelector(
|
|
619
|
+
"VZMacGraphicsDisplayConfiguration",
|
|
620
|
+
b"initWithWidthInPixels:heightInPixels:pixelsPerInch:",
|
|
621
|
+
)
|
|
622
|
+
objc.registerNewKeywordsFromSelector("VZMacHardwareModel", b"init")
|
|
623
|
+
objc.registerNewKeywordsFromSelector(
|
|
624
|
+
"VZMacHardwareModel", b"initWithDataRepresentation:"
|
|
625
|
+
)
|
|
626
|
+
objc.registerNewKeywordsFromSelector("VZMacKeyboardConfiguration", b"init")
|
|
627
|
+
objc.registerNewKeywordsFromSelector("VZMacMachineIdentifier", b"init")
|
|
628
|
+
objc.registerNewKeywordsFromSelector(
|
|
629
|
+
"VZMacMachineIdentifier", b"initWithDataRepresentation:"
|
|
630
|
+
)
|
|
631
|
+
objc.registerNewKeywordsFromSelector("VZMacOSBootLoader", b"init")
|
|
632
|
+
objc.registerNewKeywordsFromSelector("VZMacOSConfigurationRequirements", b"init")
|
|
633
|
+
objc.registerNewKeywordsFromSelector("VZMacOSInstaller", b"init")
|
|
634
|
+
objc.registerNewKeywordsFromSelector(
|
|
635
|
+
"VZMacOSInstaller", b"initWithVirtualMachine:restoreImageURL:"
|
|
636
|
+
)
|
|
637
|
+
objc.registerNewKeywordsFromSelector("VZMacOSRestoreImage", b"init")
|
|
638
|
+
objc.registerNewKeywordsFromSelector("VZMacPlatformConfiguration", b"init")
|
|
639
|
+
objc.registerNewKeywordsFromSelector("VZMacTrackpadConfiguration", b"init")
|
|
640
|
+
objc.registerNewKeywordsFromSelector("VZMemoryBalloonDevice", b"init")
|
|
641
|
+
objc.registerNewKeywordsFromSelector("VZMemoryBalloonDeviceConfiguration", b"init")
|
|
642
|
+
objc.registerNewKeywordsFromSelector("VZMultipleDirectoryShare", b"init")
|
|
643
|
+
objc.registerNewKeywordsFromSelector(
|
|
644
|
+
"VZMultipleDirectoryShare", b"initWithDirectories:"
|
|
645
|
+
)
|
|
646
|
+
objc.registerNewKeywordsFromSelector("VZNATNetworkDeviceAttachment", b"init")
|
|
647
|
+
objc.registerNewKeywordsFromSelector(
|
|
648
|
+
"VZNVMExpressControllerDeviceConfiguration", b"initWithAttachment:"
|
|
649
|
+
)
|
|
650
|
+
objc.registerNewKeywordsFromSelector(
|
|
651
|
+
"VZNetworkBlockDeviceStorageDeviceAttachment", b"initWithURL:error:"
|
|
652
|
+
)
|
|
653
|
+
objc.registerNewKeywordsFromSelector(
|
|
654
|
+
"VZNetworkBlockDeviceStorageDeviceAttachment",
|
|
655
|
+
b"initWithURL:timeout:forcedReadOnly:synchronizationMode:error:",
|
|
656
|
+
)
|
|
657
|
+
objc.registerNewKeywordsFromSelector("VZNetworkDevice", b"init")
|
|
658
|
+
objc.registerNewKeywordsFromSelector("VZNetworkDeviceAttachment", b"init")
|
|
659
|
+
objc.registerNewKeywordsFromSelector("VZNetworkDeviceConfiguration", b"init")
|
|
660
|
+
objc.registerNewKeywordsFromSelector("VZPlatformConfiguration", b"init")
|
|
661
|
+
objc.registerNewKeywordsFromSelector("VZPointingDeviceConfiguration", b"init")
|
|
662
|
+
objc.registerNewKeywordsFromSelector("VZSerialPortAttachment", b"init")
|
|
663
|
+
objc.registerNewKeywordsFromSelector("VZSerialPortConfiguration", b"init")
|
|
664
|
+
objc.registerNewKeywordsFromSelector("VZSharedDirectory", b"init")
|
|
665
|
+
objc.registerNewKeywordsFromSelector("VZSharedDirectory", b"initWithURL:readOnly:")
|
|
666
|
+
objc.registerNewKeywordsFromSelector("VZSingleDirectoryShare", b"initWithDirectory:")
|
|
667
|
+
objc.registerNewKeywordsFromSelector("VZSocketDevice", b"init")
|
|
668
|
+
objc.registerNewKeywordsFromSelector("VZSocketDeviceConfiguration", b"init")
|
|
669
|
+
objc.registerNewKeywordsFromSelector("VZSpiceAgentPortAttachment", b"init")
|
|
670
|
+
objc.registerNewKeywordsFromSelector("VZStorageDevice", b"init")
|
|
671
|
+
objc.registerNewKeywordsFromSelector("VZStorageDeviceAttachment", b"init")
|
|
672
|
+
objc.registerNewKeywordsFromSelector("VZStorageDeviceConfiguration", b"init")
|
|
673
|
+
objc.registerNewKeywordsFromSelector("VZUSBController", b"init")
|
|
674
|
+
objc.registerNewKeywordsFromSelector("VZUSBControllerConfiguration", b"init")
|
|
675
|
+
objc.registerNewKeywordsFromSelector("VZUSBKeyboardConfiguration", b"init")
|
|
676
|
+
objc.registerNewKeywordsFromSelector(
|
|
677
|
+
"VZUSBMassStorageDevice", b"initWithConfiguration:"
|
|
678
|
+
)
|
|
679
|
+
objc.registerNewKeywordsFromSelector(
|
|
680
|
+
"VZUSBMassStorageDeviceConfiguration", b"initWithAttachment:"
|
|
681
|
+
)
|
|
682
|
+
objc.registerNewKeywordsFromSelector(
|
|
683
|
+
"VZUSBScreenCoordinatePointingDeviceConfiguration", b"init"
|
|
684
|
+
)
|
|
685
|
+
objc.registerNewKeywordsFromSelector(
|
|
686
|
+
"VZVirtioBlockDeviceConfiguration", b"initWithAttachment:"
|
|
687
|
+
)
|
|
688
|
+
objc.registerNewKeywordsFromSelector("VZVirtioConsoleDevice", b"init")
|
|
689
|
+
objc.registerNewKeywordsFromSelector("VZVirtioConsoleDeviceConfiguration", b"init")
|
|
690
|
+
objc.registerNewKeywordsFromSelector(
|
|
691
|
+
"VZVirtioConsoleDeviceSerialPortConfiguration", b"init"
|
|
692
|
+
)
|
|
693
|
+
objc.registerNewKeywordsFromSelector("VZVirtioConsolePort", b"init")
|
|
694
|
+
objc.registerNewKeywordsFromSelector("VZVirtioConsolePortArray", b"init")
|
|
695
|
+
objc.registerNewKeywordsFromSelector("VZVirtioConsolePortConfiguration", b"init")
|
|
696
|
+
objc.registerNewKeywordsFromSelector("VZVirtioConsolePortConfigurationArray", b"init")
|
|
697
|
+
objc.registerNewKeywordsFromSelector("VZVirtioEntropyDeviceConfiguration", b"init")
|
|
698
|
+
objc.registerNewKeywordsFromSelector(
|
|
699
|
+
"VZVirtioFileSystemDeviceConfiguration", b"initWithTag:"
|
|
700
|
+
)
|
|
701
|
+
objc.registerNewKeywordsFromSelector("VZVirtioGraphicsDeviceConfiguration", b"init")
|
|
702
|
+
objc.registerNewKeywordsFromSelector(
|
|
703
|
+
"VZVirtioGraphicsScanoutConfiguration", b"initWithWidthInPixels:heightInPixels:"
|
|
704
|
+
)
|
|
705
|
+
objc.registerNewKeywordsFromSelector("VZVirtioNetworkDeviceConfiguration", b"init")
|
|
706
|
+
objc.registerNewKeywordsFromSelector("VZVirtioSocketConnection", b"init")
|
|
707
|
+
objc.registerNewKeywordsFromSelector("VZVirtioSocketDevice", b"init")
|
|
708
|
+
objc.registerNewKeywordsFromSelector("VZVirtioSocketDeviceConfiguration", b"init")
|
|
709
|
+
objc.registerNewKeywordsFromSelector("VZVirtioSoundDeviceConfiguration", b"init")
|
|
710
|
+
objc.registerNewKeywordsFromSelector(
|
|
711
|
+
"VZVirtioSoundDeviceInputStreamConfiguration", b"init"
|
|
712
|
+
)
|
|
713
|
+
objc.registerNewKeywordsFromSelector(
|
|
714
|
+
"VZVirtioSoundDeviceOutputStreamConfiguration", b"init"
|
|
715
|
+
)
|
|
716
|
+
objc.registerNewKeywordsFromSelector("VZVirtioSoundDeviceStreamConfiguration", b"init")
|
|
717
|
+
objc.registerNewKeywordsFromSelector("VZVirtioTraditionalMemoryBalloonDevice", b"init")
|
|
718
|
+
objc.registerNewKeywordsFromSelector(
|
|
719
|
+
"VZVirtioTraditionalMemoryBalloonDeviceConfiguration", b"init"
|
|
720
|
+
)
|
|
721
|
+
objc.registerNewKeywordsFromSelector("VZVirtualMachine", b"init")
|
|
722
|
+
objc.registerNewKeywordsFromSelector("VZVirtualMachine", b"initWithConfiguration:")
|
|
723
|
+
objc.registerNewKeywordsFromSelector(
|
|
724
|
+
"VZVirtualMachine", b"initWithConfiguration:queue:"
|
|
725
|
+
)
|
|
726
|
+
objc.registerNewKeywordsFromSelector(
|
|
727
|
+
"VZVmnetNetworkDeviceAttachment", b"initWithNetwork:"
|
|
728
|
+
)
|
|
729
|
+
objc.registerNewKeywordsFromSelector("VZXHCIControllerConfiguration", b"init")
|
|
730
|
+
expressions = {}
|
|
731
|
+
|
|
732
|
+
# END OF FILE
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyobjc-framework-Virtualization
|
|
3
|
+
Version: 12.2
|
|
4
|
+
Summary: Wrappers for the framework Virtualization on macOS
|
|
5
|
+
Home-page: https://github.com/ronaldoussoren/pyobjc
|
|
6
|
+
Author: Ronald Oussoren
|
|
7
|
+
Author-email: pyobjc-dev@lists.sourceforge.net
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: PyObjC,Virtualization
|
|
10
|
+
Platform: MacOS X (>=11.0)
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Environment :: MacOS X :: Cocoa
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Natural Language :: English
|
|
16
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
17
|
+
Classifier: Programming Language :: Python
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.15
|
|
26
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
27
|
+
Classifier: Programming Language :: Python :: Free Threading :: 3 - Stable
|
|
28
|
+
Classifier: Programming Language :: Objective C
|
|
29
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
30
|
+
Classifier: Topic :: Software Development :: User Interfaces
|
|
31
|
+
Requires-Python: >=3.10
|
|
32
|
+
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
33
|
+
Requires-Dist: pyobjc-core>=12.2
|
|
34
|
+
Requires-Dist: pyobjc-framework-Cocoa>=12.2
|
|
35
|
+
Dynamic: author
|
|
36
|
+
Dynamic: author-email
|
|
37
|
+
Dynamic: classifier
|
|
38
|
+
Dynamic: description
|
|
39
|
+
Dynamic: description-content-type
|
|
40
|
+
Dynamic: home-page
|
|
41
|
+
Dynamic: keywords
|
|
42
|
+
Dynamic: license
|
|
43
|
+
Dynamic: platform
|
|
44
|
+
Dynamic: requires-dist
|
|
45
|
+
Dynamic: requires-python
|
|
46
|
+
Dynamic: summary
|
|
47
|
+
Project-URL: Documentation, https://pyobjc.readthedocs.io/en/latest/
|
|
48
|
+
Project-URL: Issue tracker, https://github.com/ronaldoussoren/pyobjc/issues
|
|
49
|
+
Project-URL: Repository, https://github.com/ronaldoussoren/pyobjc
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
Wrappers for the "Virtualization" framework on macOS.
|
|
53
|
+
|
|
54
|
+
These wrappers don't include documentation, please check Apple's documentation
|
|
55
|
+
for information on how to use this framework and PyObjC's documentation
|
|
56
|
+
for general tips and tricks regarding the translation between Python
|
|
57
|
+
and (Objective-)C frameworks
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
Project links
|
|
61
|
+
-------------
|
|
62
|
+
|
|
63
|
+
* `Documentation <https://pyobjc.readthedocs.io/en/latest/>`_
|
|
64
|
+
|
|
65
|
+
* `Issue Tracker <https://github.com/ronaldoussoren/pyobjc/issues>`_
|
|
66
|
+
|
|
67
|
+
* `Repository <https://github.com/ronaldoussoren/pyobjc/>`_
|
|
68
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Virtualization/_Virtualization.cpython-315t-darwin.so,sha256=yHR6kZU2WI31bV-RLghMdV-8M6Xc_6kWMAQpwCckP1M,87592
|
|
2
|
+
Virtualization/__init__.py,sha256=toz38hSmLoGgER1p8ffSVaZS2mX-dDH5DAEBW_4oMf0,5644
|
|
3
|
+
Virtualization/_metadata.py,sha256=Bs6CG6TZ8mdZMAaUom5b5mTILHWll4Gzgl7FzqNqnLM,28132
|
|
4
|
+
pyobjc_framework_virtualization-12.2.dist-info/METADATA,sha256=s0_HcvxZIgymj9ustTwWJ-8DZCgzluhQScjVTBmm4z4,2524
|
|
5
|
+
pyobjc_framework_virtualization-12.2.dist-info/WHEEL,sha256=_nP7yfUfwxmGX9RTJbiMJrobK8htS_8OhvZ4aYaIBs4,116
|
|
6
|
+
pyobjc_framework_virtualization-12.2.dist-info/pyobjc-build-info.txt,sha256=Ri0Wl_rPog8K797Y9SwUgX2P5KgewvMu0uQOBhtk0lo,83
|
|
7
|
+
pyobjc_framework_virtualization-12.2.dist-info/top_level.txt,sha256=4Hr1RLZK-RX2YskGKmk_OTFxgPYv6TfRiAvrSvVYVmQ,15
|
|
8
|
+
pyobjc_framework_virtualization-12.2.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Virtualization
|