├── .circleci └── config.yml ├── .gdbinit ├── .github ├── ISSUE_TEMPLATE │ ├── build_issue.md │ ├── lkm_bug.md │ ├── misc_bug.md │ ├── missing_framework.md │ ├── missing_library.md │ ├── missing_tool.md │ └── startup_bug.md └── workflows │ └── actions.yaml ├── .gitignore ├── .gitmodules ├── .vscode └── launch.json ├── CMakeLists.txt ├── CONTRIBUTORS.md ├── Developer ├── .gitignore ├── Platforms │ └── MacOSX.platform │ │ ├── Developer │ │ ├── Library │ │ │ └── Xcode │ │ │ │ └── Specifications │ │ │ │ ├── Core Build System.xcspec │ │ │ │ ├── MacOSX Architectures.xcspec │ │ │ │ ├── MacOSX Package Types.xcspec │ │ │ │ └── MacOSX Product Types.xcspec │ │ └── SDKs │ │ │ ├── MacOSX.sdk │ │ │ ├── Library │ │ │ │ └── Developer │ │ │ │ │ └── PrivateFrameworks │ │ │ │ │ └── CoreSimulator.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ └── Headers │ │ │ │ │ └── Current │ │ │ ├── SDKSettings.plist │ │ │ ├── System │ │ │ │ └── Library │ │ │ │ │ ├── Frameworks │ │ │ │ │ ├── AGL.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ATS.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AVFoundation.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AVKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Accelerate.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Accounts.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AddressBook.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AppKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ApplicationServices.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AssistantServices.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AudioToolbox.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AudioUnit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AudioVideoBridging.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AuthenticationServices.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Automator.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CFNetwork.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CalendarStore.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Carbon.framework │ │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ │ │ ├── CommonPanels.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── HIToolbox.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── Help.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── ImageCapture.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── Ink.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── OpenScripting.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── Print.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── SecurityHI.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ └── SpeechRecognition.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CloudKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Cocoa.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Collaboration.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ColorSync.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ColorSyncLegacy.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Contacts.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ContactsUI.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreAudio.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreAudioKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreBluetooth.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreData.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreFoundation.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreGraphics.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreImage.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreLocation.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreMIDI.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreMedia.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreMediaIO.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreServices.framework │ │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ │ │ ├── AE.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── CarbonCore.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── DictionaryServices.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── FSEvents.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── LaunchServices.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── Metadata.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── OSServices.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── SearchKit.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ └── SharedFileList.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreTelephony.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreText.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreVideo.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreWLAN.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CryptoTokenKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── DirectoryService.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── DiscRecording.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── DiscRecordingUI.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── DiskArbitration.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── DrawSprocket.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── EventKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ExceptionHandling.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ForceFeedback.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Foundation.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── GLKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── GSS.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── GameController.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── HIServices.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── IOBluetooth.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── IOBluetoothUI.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── IOKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── IOSurface.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ImageCaptureCore.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ImageIO.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── InputMethodKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── InstantMessage.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── JavaNativeFoundation.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── JavaRuntimeSupport.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── JavaScriptCore.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── JavaVM.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Kerberos.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Kernel.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── LDAP.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── LangAnalysis.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── LocalAuthentication.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── MapKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── MediaAccessibility.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── MediaToolbox.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Metal.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── MetalKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── MetalPerformanceShaders.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ModelIO.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── MultipeerConnectivity.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── NetFS.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Network.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── OSAKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Onyx2D.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── OpenAL.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── OpenCL.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── OpenDirectory.framework │ │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ │ │ └── CFOpenDirectory.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── OpenGL.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── PCSC.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── PDFKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Photos.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── PrintCore.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── QD.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── QTKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Quartz.framework │ │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ │ │ ├── ImageKit.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ ├── QuartzComposer.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ │ └── QuartzFilters.framework │ │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── QuartzCore.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── QuickLook.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Ruby.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── 2.6 │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ └── usr │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SceneKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ScreenSaver.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ScriptingBridge.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Security.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SecurityFoundation.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SecurityInterface.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ServiceManagement.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ShazamKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Speech.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SpeechSynthesis.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SpriteKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── StoreKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SyncServices.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── System.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SystemConfiguration.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── UniformTypeIdentifiers.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── UserNotifications.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── VideoDecodeAcceleration.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── VideoToolbox.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Vision.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── Headers │ │ │ │ │ │ │ └── Current │ │ │ │ │ └── WebKit.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ └── PrivateFrameworks │ │ │ │ │ ├── AppleAccount.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AppleFSCompression.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AppleSauce.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AppleSystemInfo.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AssertionServices.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AssetCacheServices.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AssistantServices.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AuthKit.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── AuthKitUI.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Bom.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CommonAuth.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ConfigurationProfiles.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreAnalytics.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreSymbolication.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreUI.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CoreUtils.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── CrashReporterSupport.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── DataDetectors.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── DataDetectorsCore.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── DataDetectorsNaturalLanguage.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── DebugSymbols.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── DeviceLink.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── DiskImages.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── DiskManagement.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Espresso.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Heimdal.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── IOPlatformPluginFamily.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── IconServices.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── InternationalSupport.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── LoggingSupport.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── MobileAsset.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── MobileDevice.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── NetworkStatistics.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── PackageKit.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── PerformanceAnalysis.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── PlugInKit.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── PowerLog.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ProtocolBuffer.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SecurityTokend.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ServerInformation.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ShazamCore.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ShazamEvents.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ShazamInsights.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ShazamKitUI.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SkyLight.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Spotlight.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SpotlightDaemon.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SpotlightIndex.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SpotlightReceiver.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SpotlightServerKit.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── SpotlightServices.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── StreamingZip.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── TCC.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── TrustedPeers.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── UIFoundation.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── ViewBridge.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ ├── kperf.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ └── Headers │ │ │ │ │ │ └── Current │ │ │ │ │ └── login.framework │ │ │ │ │ ├── Headers │ │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ └── Headers │ │ │ │ │ └── Current │ │ │ └── usr │ │ │ │ ├── include │ │ │ │ ├── ACMAclDefs.h │ │ │ │ ├── ACMDefs.h │ │ │ │ ├── ACMLib.h │ │ │ │ ├── Accessibility │ │ │ │ ├── AssertMacros.h │ │ │ │ ├── Availability.h │ │ │ │ ├── AvailabilityInternal.h │ │ │ │ ├── AvailabilityMacros.h │ │ │ │ ├── AvailabilityVersions.h │ │ │ │ ├── BerkeleyDB │ │ │ │ │ ├── db.h │ │ │ │ │ └── db_cxx.h │ │ │ │ ├── Block.h │ │ │ │ ├── Block_private.h │ │ │ │ ├── CommonCrypto │ │ │ │ │ ├── CommonBaseXX.h │ │ │ │ │ ├── CommonBigNum.h │ │ │ │ │ ├── CommonCMACSPI.h │ │ │ │ │ ├── CommonCRC.h │ │ │ │ │ ├── CommonCollabKeyGen.h │ │ │ │ │ ├── CommonCrypto.h │ │ │ │ │ ├── CommonCryptoError.h │ │ │ │ │ ├── CommonCryptoErrorSPI.h │ │ │ │ │ ├── CommonCryptoPriv.h │ │ │ │ │ ├── CommonCryptor.h │ │ │ │ │ ├── CommonCryptorSPI.h │ │ │ │ │ ├── CommonDH.h │ │ │ │ │ ├── CommonDigest.h │ │ │ │ │ ├── CommonDigestSPI.h │ │ │ │ │ ├── CommonECCryptor.h │ │ │ │ │ ├── CommonHMAC.h │ │ │ │ │ ├── CommonHMacSPI.h │ │ │ │ │ ├── CommonKeyDerivation.h │ │ │ │ │ ├── CommonKeyDerivationSPI.h │ │ │ │ │ ├── CommonNumerics.h │ │ │ │ │ ├── CommonRSACryptor.h │ │ │ │ │ ├── CommonRSACryptorSPI.h │ │ │ │ │ ├── CommonRandom.h │ │ │ │ │ ├── CommonRandomSPI.h │ │ │ │ │ └── CommonSymmetricKeywrap.h │ │ │ │ ├── CommonNumerics │ │ │ │ │ ├── CommonBaseXX.h │ │ │ │ │ ├── CommonCRC.h │ │ │ │ │ └── CommonNumerics.h │ │ │ │ ├── ConditionalMacros.h │ │ │ │ ├── CrashReporterClient.h │ │ │ │ ├── DiagnosticMessagesClient.h │ │ │ │ ├── IOKit │ │ │ │ ├── MacTypes.h │ │ │ │ ├── MobileGestalt.h │ │ │ │ ├── NEHelperClient.h │ │ │ │ ├── NSSystemDirectories.h │ │ │ │ ├── OpenScriptingUtilPriv.h │ │ │ │ ├── SoftLinking │ │ │ │ ├── TargetConditionals.h │ │ │ │ ├── __cxxabi_config.h │ │ │ │ ├── __libunwind_config.h │ │ │ │ ├── __wctype.h │ │ │ │ ├── _ctermid.h │ │ │ │ ├── _ctype.h │ │ │ │ ├── _errno.h │ │ │ │ ├── _libkernel_init.h │ │ │ │ ├── _locale.h │ │ │ │ ├── _regex.h │ │ │ │ ├── _simple.h │ │ │ │ ├── _stdio.h │ │ │ │ ├── _types.h │ │ │ │ ├── _types │ │ │ │ │ ├── _intmax_t.h │ │ │ │ │ ├── _nl_item.h │ │ │ │ │ ├── _uint16_t.h │ │ │ │ │ ├── _uint32_t.h │ │ │ │ │ ├── _uint64_t.h │ │ │ │ │ ├── _uint8_t.h │ │ │ │ │ ├── _uintmax_t.h │ │ │ │ │ ├── _wctrans_t.h │ │ │ │ │ └── _wctype_t.h │ │ │ │ ├── _wctype.h │ │ │ │ ├── _xlocale.h │ │ │ │ ├── aio.h │ │ │ │ ├── aliasdb.h │ │ │ │ ├── alloca.h │ │ │ │ ├── apr-1 │ │ │ │ ├── ar.h │ │ │ │ ├── architecture │ │ │ │ │ ├── alignment.h │ │ │ │ │ ├── byte_order.h │ │ │ │ │ ├── i386 │ │ │ │ │ │ ├── alignment.h │ │ │ │ │ │ ├── asm_help.h │ │ │ │ │ │ ├── byte_order.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── desc.h │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ ├── fpu.h │ │ │ │ │ │ ├── frame.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── math.h │ │ │ │ │ │ ├── pio.h │ │ │ │ │ │ ├── reg_help.h │ │ │ │ │ │ ├── sel.h │ │ │ │ │ │ ├── table.h │ │ │ │ │ │ └── tss.h │ │ │ │ │ ├── m88k │ │ │ │ │ │ ├── fp_regs.h │ │ │ │ │ │ └── reg_help.h │ │ │ │ │ ├── nrw │ │ │ │ │ │ ├── macro_help.h │ │ │ │ │ │ └── reg_help.h │ │ │ │ │ └── sparc │ │ │ │ │ │ └── reg.h │ │ │ │ ├── arpa │ │ │ │ │ ├── ftp.h │ │ │ │ │ ├── inet.h │ │ │ │ │ ├── nameser.h │ │ │ │ │ ├── nameser_compat.h │ │ │ │ │ ├── telnet.h │ │ │ │ │ └── tftp.h │ │ │ │ ├── asl.h │ │ │ │ ├── assert.h │ │ │ │ ├── atm │ │ │ │ │ ├── atm_notification.defs │ │ │ │ │ ├── atm_types.defs │ │ │ │ │ └── atm_types.h │ │ │ │ ├── bank │ │ │ │ │ └── bank_types.h │ │ │ │ ├── bitstring.h │ │ │ │ ├── bmalloc │ │ │ │ ├── bootfiles.h │ │ │ │ ├── bootparams.h │ │ │ │ ├── bootstrap.h │ │ │ │ ├── bootstrap_priv.h │ │ │ │ ├── bsm │ │ │ │ │ ├── audit.h │ │ │ │ │ ├── audit_domain.h │ │ │ │ │ ├── audit_errno.h │ │ │ │ │ ├── audit_fcntl.h │ │ │ │ │ ├── audit_filter.h │ │ │ │ │ ├── audit_internal.h │ │ │ │ │ ├── audit_kevents.h │ │ │ │ │ ├── audit_record.h │ │ │ │ │ ├── audit_session.h │ │ │ │ │ ├── audit_socket_type.h │ │ │ │ │ ├── audit_uevents.h │ │ │ │ │ ├── auditd_lib.h │ │ │ │ │ └── libbsm.h │ │ │ │ ├── bzlib.h │ │ │ │ ├── checkint.h │ │ │ │ ├── collate.h │ │ │ │ ├── com_err.h │ │ │ │ ├── complex.h │ │ │ │ ├── compression.h │ │ │ │ ├── configuration_profile.h │ │ │ │ ├── copyfile.h │ │ │ │ ├── coreauthd_spi.h │ │ │ │ ├── corecrypto │ │ │ │ ├── corpses │ │ │ │ │ └── task_corpse.h │ │ │ │ ├── cpio.h │ │ │ │ ├── crt_externs.h │ │ │ │ ├── ctkclient │ │ │ │ │ ├── ctkclient.h │ │ │ │ │ ├── ctkclient_test.h │ │ │ │ │ └── ctkloginhelper.h │ │ │ │ ├── ctkloginhelper.h │ │ │ │ ├── ctype.h │ │ │ │ ├── cups │ │ │ │ ├── curl │ │ │ │ │ ├── curl.h │ │ │ │ │ ├── curlver.h │ │ │ │ │ ├── easy.h │ │ │ │ │ ├── mprintf.h │ │ │ │ │ ├── multi.h │ │ │ │ │ ├── system.h │ │ │ │ │ ├── typecheck-gcc.h │ │ │ │ │ └── urlapi.h │ │ │ │ ├── curses.h │ │ │ │ ├── cxxabi.h │ │ │ │ ├── darling │ │ │ │ │ ├── emulation │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── conversion │ │ │ │ │ │ ├── linux_premigration │ │ │ │ │ │ ├── other │ │ │ │ │ │ └── xnu_syscall │ │ │ │ │ └── mldr │ │ │ │ │ │ └── elfcalls │ │ │ │ │ │ └── dthreads.h │ │ │ │ ├── db.h │ │ │ │ ├── default_pager │ │ │ │ │ └── default_pager_types.h │ │ │ │ ├── device │ │ │ │ │ ├── device.defs │ │ │ │ │ ├── device_port.h │ │ │ │ │ ├── device_types.defs │ │ │ │ │ └── device_types.h │ │ │ │ ├── dirent.h │ │ │ │ ├── dirhelper_priv.h │ │ │ │ ├── disktab.h │ │ │ │ ├── dispatch │ │ │ │ │ ├── base.h │ │ │ │ │ ├── benchmark.h │ │ │ │ │ ├── block.h │ │ │ │ │ ├── channel_private.h │ │ │ │ │ ├── data.h │ │ │ │ │ ├── data_private.h │ │ │ │ │ ├── dispatch.h │ │ │ │ │ ├── group.h │ │ │ │ │ ├── introspection.h │ │ │ │ │ ├── introspection_private.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── io_private.h │ │ │ │ │ ├── layout_private.h │ │ │ │ │ ├── mach_private.h │ │ │ │ │ ├── object.h │ │ │ │ │ ├── once.h │ │ │ │ │ ├── private.h │ │ │ │ │ ├── queue.h │ │ │ │ │ ├── queue_private.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── source.h │ │ │ │ │ ├── source_private.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── time_private.h │ │ │ │ │ ├── workloop.h │ │ │ │ │ └── workloop_private.h │ │ │ │ ├── dlfcn.h │ │ │ │ ├── dns.h │ │ │ │ ├── dns_sd.h │ │ │ │ ├── dns_sd_private.h │ │ │ │ ├── dns_util.h │ │ │ │ ├── dnsinfo.h │ │ │ │ ├── dtrace.h │ │ │ │ ├── dyld │ │ │ │ │ ├── VersionMap.h │ │ │ │ │ └── for_dyld_priv.inc │ │ │ │ ├── editline │ │ │ │ ├── elfcalls.h │ │ │ │ ├── elfcalls │ │ │ │ │ ├── elfcalls.h │ │ │ │ │ └── threads.h │ │ │ │ ├── energytrace.h │ │ │ │ ├── err.h │ │ │ │ ├── errno.h │ │ │ │ ├── eti.h │ │ │ │ ├── execinfo.h │ │ │ │ ├── expat.h │ │ │ │ ├── expat │ │ │ │ │ ├── ascii.h │ │ │ │ │ ├── asciitab.h │ │ │ │ │ ├── expat.h │ │ │ │ │ ├── expat_external.h │ │ │ │ │ ├── iasciitab.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── latin1tab.h │ │ │ │ │ ├── nametab.h │ │ │ │ │ ├── utf8tab.h │ │ │ │ │ ├── xmlrole.h │ │ │ │ │ ├── xmltok.h │ │ │ │ │ └── xmltok_impl.h │ │ │ │ ├── expat_external.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── ffi.h │ │ │ │ ├── ffi │ │ │ │ │ ├── ffi.h │ │ │ │ │ ├── ffi_common.h │ │ │ │ │ ├── fficonfig.h │ │ │ │ │ ├── fficonfig_arm64.h │ │ │ │ │ ├── fficonfig_armv7.h │ │ │ │ │ ├── fficonfig_i386.h │ │ │ │ │ ├── fficonfig_x86_64.h │ │ │ │ │ ├── ffitarget.h │ │ │ │ │ ├── ffitarget_arm64.h │ │ │ │ │ ├── ffitarget_armv7.h │ │ │ │ │ ├── ffitarget_x86.h │ │ │ │ │ └── x86-ffitarget.h │ │ │ │ ├── ffi_common.h │ │ │ │ ├── fficonfig.h │ │ │ │ ├── fficonfig_arm64.h │ │ │ │ ├── fficonfig_armv7.h │ │ │ │ ├── fficonfig_i386.h │ │ │ │ ├── fficonfig_x86_64.h │ │ │ │ ├── ffitarget.h │ │ │ │ ├── ffitarget_arm64.h │ │ │ │ ├── ffitarget_armv7.h │ │ │ │ ├── ffitarget_x86.h │ │ │ │ ├── firehose │ │ │ │ │ ├── chunk_private.h │ │ │ │ │ ├── firehose_types_private.h │ │ │ │ │ ├── ioctl_private.h │ │ │ │ │ ├── private.h │ │ │ │ │ └── tracepoint_private.h │ │ │ │ ├── float.h │ │ │ │ ├── fmdb │ │ │ │ │ ├── FMDB.h │ │ │ │ │ ├── FMDatabase.h │ │ │ │ │ ├── FMDatabaseAdditions.h │ │ │ │ │ ├── FMDatabasePool.h │ │ │ │ │ ├── FMDatabaseQueue.h │ │ │ │ │ └── FMResultSet.h │ │ │ │ ├── fmtmsg.h │ │ │ │ ├── fnmatch.h │ │ │ │ ├── form.h │ │ │ │ ├── fsproperties.h │ │ │ │ ├── fstab.h │ │ │ │ ├── fts.h │ │ │ │ ├── ftw.h │ │ │ │ ├── get_compat.h │ │ │ │ ├── gethostuuid.h │ │ │ │ ├── gethostuuid_private.h │ │ │ │ ├── getopt.h │ │ │ │ ├── glob.h │ │ │ │ ├── grp.h │ │ │ │ ├── gssapi.h │ │ │ │ ├── gssapi │ │ │ │ │ ├── gssapi.h │ │ │ │ │ ├── gssapi_generic.h │ │ │ │ │ └── gssapi_krb5.h │ │ │ │ ├── histedit.h │ │ │ │ ├── i386 │ │ │ │ │ ├── Diagnostics.h │ │ │ │ │ ├── _limits.h │ │ │ │ │ ├── _mcontext.h │ │ │ │ │ ├── _param.h │ │ │ │ │ ├── _types.h │ │ │ │ │ ├── acpi.h │ │ │ │ │ ├── apic.h │ │ │ │ │ ├── arch_types.h │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── asm64.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── bit_routines.h │ │ │ │ │ ├── cpu_affinity.h │ │ │ │ │ ├── cpu_capabilities.h │ │ │ │ │ ├── cpu_data.h │ │ │ │ │ ├── cpu_number.h │ │ │ │ │ ├── cpu_threads.h │ │ │ │ │ ├── cpu_topology.h │ │ │ │ │ ├── cpuid.h │ │ │ │ │ ├── dis_tables.h │ │ │ │ │ ├── disklabel.h │ │ │ │ │ ├── eflags.h │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── exec.h │ │ │ │ │ ├── fasttrap_isa.h │ │ │ │ │ ├── fpu.h │ │ │ │ │ ├── hpet.h │ │ │ │ │ ├── hw_defs.h │ │ │ │ │ ├── hw_lock_types.h │ │ │ │ │ ├── i386_lowmem.h │ │ │ │ │ ├── io_map_entries.h │ │ │ │ │ ├── io_port.h │ │ │ │ │ ├── iopb.h │ │ │ │ │ ├── lapic.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── lock.h │ │ │ │ │ ├── locks.h │ │ │ │ │ ├── locks_i386_inlines.h │ │ │ │ │ ├── machdep_call.h │ │ │ │ │ ├── machine_check.h │ │ │ │ │ ├── machine_cpu.h │ │ │ │ │ ├── machine_routines.h │ │ │ │ │ ├── machine_rpc.h │ │ │ │ │ ├── machlimits.h │ │ │ │ │ ├── machparam.h │ │ │ │ │ ├── memory_types.h │ │ │ │ │ ├── misc_protos.h │ │ │ │ │ ├── mp.h │ │ │ │ │ ├── mp_desc.h │ │ │ │ │ ├── mp_events.h │ │ │ │ │ ├── mtrr.h │ │ │ │ │ ├── pal_hibernate.h │ │ │ │ │ ├── pal_lock_asm.h │ │ │ │ │ ├── pal_native.h │ │ │ │ │ ├── pal_routines.h │ │ │ │ │ ├── pal_rtclock_asm.h │ │ │ │ │ ├── panic_hooks.h │ │ │ │ │ ├── param.h │ │ │ │ │ ├── pio.h │ │ │ │ │ ├── pmCPU.h │ │ │ │ │ ├── pmap.h │ │ │ │ │ ├── pmap_internal.h │ │ │ │ │ ├── pmap_pcid.h │ │ │ │ │ ├── postcode.h │ │ │ │ │ ├── proc_reg.h │ │ │ │ │ ├── profile.h │ │ │ │ │ ├── psl.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── rtclock_asm.h │ │ │ │ │ ├── rtclock_asm_native.h │ │ │ │ │ ├── rtclock_protos.h │ │ │ │ │ ├── sched_param.h │ │ │ │ │ ├── seg.h │ │ │ │ │ ├── serial_io.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── simple_lock.h │ │ │ │ │ ├── smp.h │ │ │ │ │ ├── stab.h │ │ │ │ │ ├── task.h │ │ │ │ │ ├── thread.h │ │ │ │ │ ├── trap.h │ │ │ │ │ ├── tsc.h │ │ │ │ │ ├── tss.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── ucode.h │ │ │ │ │ ├── user_ldt.h │ │ │ │ │ ├── vm_tuning.h │ │ │ │ │ ├── vmparam.h │ │ │ │ │ └── vmx.h │ │ │ │ ├── iconv.h │ │ │ │ ├── ifaddrs.h │ │ │ │ ├── ils.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── iso646.h │ │ │ │ ├── kern │ │ │ │ │ ├── affinity.h │ │ │ │ │ ├── arcade.h │ │ │ │ │ ├── arithmetic_128.h │ │ │ │ │ ├── assert.h │ │ │ │ │ ├── ast.h │ │ │ │ │ ├── audit_sessionport.h │ │ │ │ │ ├── backtrace.h │ │ │ │ │ ├── bits.h │ │ │ │ │ ├── block_hint.h │ │ │ │ │ ├── btlog.h │ │ │ │ │ ├── build_config.h │ │ │ │ │ ├── circle_queue.h │ │ │ │ │ ├── clock.h │ │ │ │ │ ├── coalition.h │ │ │ │ │ ├── copyout_shim.h │ │ │ │ │ ├── cpu_data.h │ │ │ │ │ ├── cpu_number.h │ │ │ │ │ ├── cpu_quiesce.h │ │ │ │ │ ├── cs_blobs.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── ecc.h │ │ │ │ │ ├── energy_perf.h │ │ │ │ │ ├── exc_guard.h │ │ │ │ │ ├── exc_resource.h │ │ │ │ │ ├── exception.h │ │ │ │ │ ├── extmod_statistics.h │ │ │ │ │ ├── host.h │ │ │ │ │ ├── host_notify.h │ │ │ │ │ ├── host_statistics.h │ │ │ │ │ ├── hv_support.h │ │ │ │ │ ├── ipc_host.h │ │ │ │ │ ├── ipc_kobject.h │ │ │ │ │ ├── ipc_mig.h │ │ │ │ │ ├── ipc_misc.h │ │ │ │ │ ├── ipc_sync.h │ │ │ │ │ ├── ipc_tt.h │ │ │ │ │ ├── kalloc.h │ │ │ │ │ ├── kcdata.h │ │ │ │ │ ├── kern_cdata.h │ │ │ │ │ ├── kern_types.h │ │ │ │ │ ├── kext_alloc.h │ │ │ │ │ ├── kpc.h │ │ │ │ │ ├── ledger.h │ │ │ │ │ ├── lock.h │ │ │ │ │ ├── lock_group.h │ │ │ │ │ ├── lock_stat.h │ │ │ │ │ ├── locks.h │ │ │ │ │ ├── ltable.h │ │ │ │ │ ├── mach_node.h │ │ │ │ │ ├── mach_node_link.h │ │ │ │ │ ├── mach_param.h │ │ │ │ │ ├── machine.h │ │ │ │ │ ├── macro_help.h │ │ │ │ │ ├── misc_protos.h │ │ │ │ │ ├── mk_timer.h │ │ │ │ │ ├── monotonic.h │ │ │ │ │ ├── mpqueue.h │ │ │ │ │ ├── mpsc_queue.h │ │ │ │ │ ├── page_decrypt.h │ │ │ │ │ ├── pms.h │ │ │ │ │ ├── policy_internal.h │ │ │ │ │ ├── priority_queue.h │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── queue.h │ │ │ │ │ ├── remote_time.h │ │ │ │ │ ├── restartable.h │ │ │ │ │ ├── sched.h │ │ │ │ │ ├── sched_clutch.h │ │ │ │ │ ├── sched_prim.h │ │ │ │ │ ├── sched_urgency.h │ │ │ │ │ ├── sfi.h │ │ │ │ │ ├── simple_lock.h │ │ │ │ │ ├── smp.h │ │ │ │ │ ├── spl.h │ │ │ │ │ ├── startup.h │ │ │ │ │ ├── sync_lock.h │ │ │ │ │ ├── sync_sema.h │ │ │ │ │ ├── syscall_subr.h │ │ │ │ │ ├── syscall_sw.h │ │ │ │ │ ├── task.h │ │ │ │ │ ├── telemetry.h │ │ │ │ │ ├── thread.h │ │ │ │ │ ├── thread_call.h │ │ │ │ │ ├── thread_group.h │ │ │ │ │ ├── thread_kernel_state.h │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── timer_call.h │ │ │ │ │ ├── timer_queue.h │ │ │ │ │ ├── trustcache.h │ │ │ │ │ ├── turnstile.h │ │ │ │ │ ├── ux_handler.h │ │ │ │ │ ├── waitq.h │ │ │ │ │ ├── work_interval.h │ │ │ │ │ └── zalloc.h │ │ │ │ ├── krb5.h │ │ │ │ ├── krb5 │ │ │ │ │ ├── krb5.h │ │ │ │ │ ├── locate_plugin.h │ │ │ │ │ └── preauth_plugin.h │ │ │ │ ├── kxld.h │ │ │ │ ├── kxld_types.h │ │ │ │ ├── langinfo.h │ │ │ │ ├── launch.h │ │ │ │ ├── launch_internal.h │ │ │ │ ├── launch_priv.h │ │ │ │ ├── launchd.h │ │ │ │ ├── lber.h │ │ │ │ ├── lber_types.h │ │ │ │ ├── ldap.h │ │ │ │ ├── ldap_cdefs.h │ │ │ │ ├── ldap_features.h │ │ │ │ ├── ldap_private.h │ │ │ │ ├── ldap_schema.h │ │ │ │ ├── ldap_utf8.h │ │ │ │ ├── ldif.h │ │ │ │ ├── libDER │ │ │ │ ├── libaks.h │ │ │ │ ├── libaks_acl_cf_keys.h │ │ │ │ ├── libaks_smartcard.h │ │ │ │ ├── libarchive │ │ │ │ │ ├── archive.h │ │ │ │ │ └── archive_entry.h │ │ │ │ ├── libc.h │ │ │ │ ├── libc_private.h │ │ │ │ ├── libcharset.h │ │ │ │ ├── libexslt │ │ │ │ │ ├── exslt.h │ │ │ │ │ ├── exsltconfig.h │ │ │ │ │ └── exsltexports.h │ │ │ │ ├── libgen.h │ │ │ │ ├── libinfo.h │ │ │ │ ├── libkern │ │ │ │ │ ├── Block.h │ │ │ │ │ ├── Block_private.h │ │ │ │ │ ├── OSAtomic.h │ │ │ │ │ ├── OSAtomicDeprecated.h │ │ │ │ │ ├── OSAtomicQueue.h │ │ │ │ │ ├── OSBase.h │ │ │ │ │ ├── OSByteOrder.h │ │ │ │ │ ├── OSCacheControl.h │ │ │ │ │ ├── OSCrossEndian.h │ │ │ │ │ ├── OSDebug.h │ │ │ │ │ ├── OSKextLib.h │ │ │ │ │ ├── OSKextLibPrivate.h │ │ │ │ │ ├── OSMalloc.h │ │ │ │ │ ├── OSReturn.h │ │ │ │ │ ├── OSRuntime.h │ │ │ │ │ ├── OSSerializeBinary.h │ │ │ │ │ ├── OSSpinLockDeprecated.h │ │ │ │ │ ├── OSThermalNotification.h │ │ │ │ │ ├── OSTypes.h │ │ │ │ │ ├── _OSByteOrder.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── i386 │ │ │ │ │ │ ├── OSByteOrder.h │ │ │ │ │ │ └── _OSByteOrder.h │ │ │ │ │ ├── kernel_mach_header.h │ │ │ │ │ ├── kext_panic_report.h │ │ │ │ │ ├── kext_request_keys.h │ │ │ │ │ ├── kxld.h │ │ │ │ │ ├── kxld_types.h │ │ │ │ │ ├── locks.h │ │ │ │ │ ├── machine │ │ │ │ │ │ └── OSByteOrder.h │ │ │ │ │ ├── mkext.h │ │ │ │ │ ├── prelink.h │ │ │ │ │ ├── section_keywords.h │ │ │ │ │ ├── stack_protector.h │ │ │ │ │ ├── sysctl.h │ │ │ │ │ ├── tree.h │ │ │ │ │ ├── zconf.h │ │ │ │ │ └── zlib.h │ │ │ │ ├── liblaunch │ │ │ │ │ ├── bootstrap.h │ │ │ │ │ ├── bootstrap_priv.h │ │ │ │ │ ├── launch.h │ │ │ │ │ ├── launch_internal.h │ │ │ │ │ ├── launch_priv.h │ │ │ │ │ ├── reboot2.h │ │ │ │ │ ├── vproc.h │ │ │ │ │ ├── vproc_internal.h │ │ │ │ │ └── vproc_priv.h │ │ │ │ ├── libproc.h │ │ │ │ ├── libproc_internal.h │ │ │ │ ├── libtelnet │ │ │ │ │ ├── auth-proto.h │ │ │ │ │ ├── auth.h │ │ │ │ │ ├── enc-proto.h │ │ │ │ │ ├── encrypt.h │ │ │ │ │ ├── misc-proto.h │ │ │ │ │ └── misc.h │ │ │ │ ├── libunwind.h │ │ │ │ ├── libutil.h │ │ │ │ ├── libxml2 │ │ │ │ │ └── libxml │ │ │ │ │ │ ├── DOCBparser.h │ │ │ │ │ │ ├── HTMLparser.h │ │ │ │ │ │ ├── HTMLtree.h │ │ │ │ │ │ ├── SAX.h │ │ │ │ │ │ ├── SAX2.h │ │ │ │ │ │ ├── c14n.h │ │ │ │ │ │ ├── catalog.h │ │ │ │ │ │ ├── chvalid.h │ │ │ │ │ │ ├── debugXML.h │ │ │ │ │ │ ├── dict.h │ │ │ │ │ │ ├── encoding.h │ │ │ │ │ │ ├── entities.h │ │ │ │ │ │ ├── globals.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── list.h │ │ │ │ │ │ ├── nanoftp.h │ │ │ │ │ │ ├── nanohttp.h │ │ │ │ │ │ ├── parser.h │ │ │ │ │ │ ├── parserInternals.h │ │ │ │ │ │ ├── pattern.h │ │ │ │ │ │ ├── relaxng.h │ │ │ │ │ │ ├── schemasInternals.h │ │ │ │ │ │ ├── schematron.h │ │ │ │ │ │ ├── threads.h │ │ │ │ │ │ ├── tree.h │ │ │ │ │ │ ├── uri.h │ │ │ │ │ │ ├── valid.h │ │ │ │ │ │ ├── xinclude.h │ │ │ │ │ │ ├── xlink.h │ │ │ │ │ │ ├── xmlIO.h │ │ │ │ │ │ ├── xmlautomata.h │ │ │ │ │ │ ├── xmlerror.h │ │ │ │ │ │ ├── xmlexports.h │ │ │ │ │ │ ├── xmlmemory.h │ │ │ │ │ │ ├── xmlmodule.h │ │ │ │ │ │ ├── xmlreader.h │ │ │ │ │ │ ├── xmlregexp.h │ │ │ │ │ │ ├── xmlsave.h │ │ │ │ │ │ ├── xmlschemas.h │ │ │ │ │ │ ├── xmlschemastypes.h │ │ │ │ │ │ ├── xmlstring.h │ │ │ │ │ │ ├── xmlunicode.h │ │ │ │ │ │ ├── xmlversion.h │ │ │ │ │ │ ├── xmlwriter.h │ │ │ │ │ │ ├── xpath.h │ │ │ │ │ │ ├── xpathInternals.h │ │ │ │ │ │ └── xpointer.h │ │ │ │ ├── libxslt │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── documents.h │ │ │ │ │ ├── extensions.h │ │ │ │ │ ├── extra.h │ │ │ │ │ ├── functions.h │ │ │ │ │ ├── imports.h │ │ │ │ │ ├── keys.h │ │ │ │ │ ├── namespaces.h │ │ │ │ │ ├── numbersInternals.h │ │ │ │ │ ├── pattern.h │ │ │ │ │ ├── preproc.h │ │ │ │ │ ├── security.h │ │ │ │ │ ├── templates.h │ │ │ │ │ ├── transform.h │ │ │ │ │ ├── variables.h │ │ │ │ │ ├── xslt.h │ │ │ │ │ ├── xsltInternals.h │ │ │ │ │ ├── xsltconfig.h │ │ │ │ │ ├── xsltexports.h │ │ │ │ │ ├── xsltlocale.h │ │ │ │ │ └── xsltutils.h │ │ │ │ ├── limits.h │ │ │ │ ├── lmessages.h │ │ │ │ ├── lmonetary.h │ │ │ │ ├── lnumeric.h │ │ │ │ ├── localcharset.h │ │ │ │ ├── locale.h │ │ │ │ ├── lzfse.h │ │ │ │ ├── lzma │ │ │ │ ├── lzma.h │ │ │ │ ├── mach-o │ │ │ │ │ ├── arch.h │ │ │ │ │ ├── arm │ │ │ │ │ │ └── reloc.h │ │ │ │ │ ├── arm64 │ │ │ │ │ │ └── reloc.h │ │ │ │ │ ├── compact_unwind_encoding.h │ │ │ │ │ ├── dyld-interposing.h │ │ │ │ │ ├── dyld.h │ │ │ │ │ ├── dyld_images.h │ │ │ │ │ ├── dyld_priv.h │ │ │ │ │ ├── dyld_process_info.h │ │ │ │ │ ├── fat.h │ │ │ │ │ ├── fixup-chains.h │ │ │ │ │ ├── getsect.h │ │ │ │ │ ├── hppa │ │ │ │ │ │ ├── reloc.h │ │ │ │ │ │ └── swap.h │ │ │ │ │ ├── i386 │ │ │ │ │ │ └── swap.h │ │ │ │ │ ├── i860 │ │ │ │ │ │ ├── reloc.h │ │ │ │ │ │ └── swap.h │ │ │ │ │ ├── ldsyms.h │ │ │ │ │ ├── loader.h │ │ │ │ │ ├── m68k │ │ │ │ │ │ └── swap.h │ │ │ │ │ ├── m88k │ │ │ │ │ │ ├── reloc.h │ │ │ │ │ │ └── swap.h │ │ │ │ │ ├── nlist.h │ │ │ │ │ ├── ppc │ │ │ │ │ │ ├── reloc.h │ │ │ │ │ │ └── swap.h │ │ │ │ │ ├── ranlib.h │ │ │ │ │ ├── reloc.h │ │ │ │ │ ├── sparc │ │ │ │ │ │ ├── reloc.h │ │ │ │ │ │ └── swap.h │ │ │ │ │ ├── stab.h │ │ │ │ │ ├── swap.h │ │ │ │ │ └── x86_64 │ │ │ │ │ │ └── reloc.h │ │ │ │ ├── mach │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── _structs.h │ │ │ │ │ │ ├── thread_state.h │ │ │ │ │ │ └── thread_status.h │ │ │ │ │ ├── audit_triggers.defs │ │ │ │ │ ├── boolean.h │ │ │ │ │ ├── bootstrap.h │ │ │ │ │ ├── clock.defs │ │ │ │ │ ├── clock.h │ │ │ │ │ ├── clock_priv.defs │ │ │ │ │ ├── clock_priv.h │ │ │ │ │ ├── clock_reply.defs │ │ │ │ │ ├── clock_reply.h │ │ │ │ │ ├── clock_types.defs │ │ │ │ │ ├── clock_types.h │ │ │ │ │ ├── coalition.h │ │ │ │ │ ├── dyld_kernel.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── errorlib.h │ │ │ │ │ ├── events_info.h │ │ │ │ │ ├── exc.defs │ │ │ │ │ ├── exc.h │ │ │ │ │ ├── exception.h │ │ │ │ │ ├── exception_types.h │ │ │ │ │ ├── host_info.h │ │ │ │ │ ├── host_notify.h │ │ │ │ │ ├── host_notify_reply.defs │ │ │ │ │ ├── host_priv.defs │ │ │ │ │ ├── host_priv.h │ │ │ │ │ ├── host_reboot.h │ │ │ │ │ ├── host_security.defs │ │ │ │ │ ├── host_security.h │ │ │ │ │ ├── host_special_ports.h │ │ │ │ │ ├── hppa │ │ │ │ │ │ └── thread_status.h │ │ │ │ │ ├── i386 │ │ │ │ │ │ ├── _structs.h │ │ │ │ │ │ ├── boolean.h │ │ │ │ │ │ ├── exception.h │ │ │ │ │ │ ├── fp_reg.h │ │ │ │ │ │ ├── kern_return.h │ │ │ │ │ │ ├── ndr_def.h │ │ │ │ │ │ ├── processor_info.h │ │ │ │ │ │ ├── rpc.h │ │ │ │ │ │ ├── sdt_isa.h │ │ │ │ │ │ ├── syscall_sw.h │ │ │ │ │ │ ├── thread_state.h │ │ │ │ │ │ ├── thread_status.h │ │ │ │ │ │ ├── vm_param.h │ │ │ │ │ │ └── vm_types.h │ │ │ │ │ ├── i860 │ │ │ │ │ │ └── thread_status.h │ │ │ │ │ ├── kern_return.h │ │ │ │ │ ├── kmod.h │ │ │ │ │ ├── lock_set.defs │ │ │ │ │ ├── lock_set.h │ │ │ │ │ ├── m68k │ │ │ │ │ │ └── thread_status.h │ │ │ │ │ ├── m88k │ │ │ │ │ │ └── thread_status.h │ │ │ │ │ ├── mach.h │ │ │ │ │ ├── mach_error.h │ │ │ │ │ ├── mach_exc.defs │ │ │ │ │ ├── mach_host.defs │ │ │ │ │ ├── mach_host.h │ │ │ │ │ ├── mach_init.h │ │ │ │ │ ├── mach_interface.h │ │ │ │ │ ├── mach_param.h │ │ │ │ │ ├── mach_port.defs │ │ │ │ │ ├── mach_port.h │ │ │ │ │ ├── mach_right.h │ │ │ │ │ ├── mach_right_private.h │ │ │ │ │ ├── mach_sync_ipc.h │ │ │ │ │ ├── mach_syscalls.h │ │ │ │ │ ├── mach_time.h │ │ │ │ │ ├── mach_traps.h │ │ │ │ │ ├── mach_types.defs │ │ │ │ │ ├── mach_types.h │ │ │ │ │ ├── mach_vm.defs │ │ │ │ │ ├── mach_vm.h │ │ │ │ │ ├── mach_voucher.defs │ │ │ │ │ ├── mach_voucher.h │ │ │ │ │ ├── mach_voucher_attr_control.defs │ │ │ │ │ ├── mach_voucher_types.h │ │ │ │ │ ├── machine.h │ │ │ │ │ ├── machine │ │ │ │ │ │ ├── _structs.h │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── boolean.h │ │ │ │ │ │ ├── exception.h │ │ │ │ │ │ ├── kern_return.h │ │ │ │ │ │ ├── machine_types.defs │ │ │ │ │ │ ├── ndr_def.h │ │ │ │ │ │ ├── processor_info.h │ │ │ │ │ │ ├── rpc.h │ │ │ │ │ │ ├── sdt.h │ │ │ │ │ │ ├── sdt_isa.h │ │ │ │ │ │ ├── syscall_sw.h │ │ │ │ │ │ ├── thread_state.h │ │ │ │ │ │ ├── thread_status.h │ │ │ │ │ │ ├── vm_param.h │ │ │ │ │ │ └── vm_types.h │ │ │ │ │ ├── memory_entry.defs │ │ │ │ │ ├── memory_entry.h │ │ │ │ │ ├── memory_object.h │ │ │ │ │ ├── memory_object_types.h │ │ │ │ │ ├── message.h │ │ │ │ │ ├── mig.h │ │ │ │ │ ├── mig_errors.h │ │ │ │ │ ├── mig_log.h │ │ │ │ │ ├── mig_strncpy_zerofill_support.h │ │ │ │ │ ├── mig_voucher_support.h │ │ │ │ │ ├── mk_timer.h │ │ │ │ │ ├── mk_traps.h │ │ │ │ │ ├── msg_type.h │ │ │ │ │ ├── ndr.h │ │ │ │ │ ├── notify.defs │ │ │ │ │ ├── notify.h │ │ │ │ │ ├── policy.h │ │ │ │ │ ├── port.h │ │ │ │ │ ├── port_descriptions.h │ │ │ │ │ ├── port_obj.h │ │ │ │ │ ├── ppc │ │ │ │ │ │ ├── _structs.h │ │ │ │ │ │ └── thread_status.h │ │ │ │ │ ├── processor.defs │ │ │ │ │ ├── processor.h │ │ │ │ │ ├── processor_info.h │ │ │ │ │ ├── processor_set.defs │ │ │ │ │ ├── processor_set.h │ │ │ │ │ ├── prof_types.h │ │ │ │ │ ├── resource_monitors.h │ │ │ │ │ ├── rpc.h │ │ │ │ │ ├── sdt.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── servers │ │ │ │ │ │ └── netname.h │ │ │ │ │ ├── sfi_class.h │ │ │ │ │ ├── shared_memory_server.h │ │ │ │ │ ├── shared_region.h │ │ │ │ │ ├── sparc │ │ │ │ │ │ └── thread_status.h │ │ │ │ │ ├── std_types.defs │ │ │ │ │ ├── std_types.h │ │ │ │ │ ├── sync.h │ │ │ │ │ ├── sync_policy.h │ │ │ │ │ ├── syscall_sw.h │ │ │ │ │ ├── task.defs │ │ │ │ │ ├── task.h │ │ │ │ │ ├── task_access.defs │ │ │ │ │ ├── task_info.h │ │ │ │ │ ├── task_inspect.h │ │ │ │ │ ├── task_ledger.h │ │ │ │ │ ├── task_policy.h │ │ │ │ │ ├── task_special_ports.h │ │ │ │ │ ├── telemetry_notification.defs │ │ │ │ │ ├── thread_act.defs │ │ │ │ │ ├── thread_act.h │ │ │ │ │ ├── thread_info.h │ │ │ │ │ ├── thread_policy.h │ │ │ │ │ ├── thread_special_ports.h │ │ │ │ │ ├── thread_state.h │ │ │ │ │ ├── thread_status.h │ │ │ │ │ ├── thread_switch.h │ │ │ │ │ ├── time_value.h │ │ │ │ │ ├── vm_attributes.h │ │ │ │ │ ├── vm_behavior.h │ │ │ │ │ ├── vm_inherit.h │ │ │ │ │ ├── vm_map.defs │ │ │ │ │ ├── vm_map.h │ │ │ │ │ ├── vm_page_size.h │ │ │ │ │ ├── vm_param.h │ │ │ │ │ ├── vm_prot.h │ │ │ │ │ ├── vm_purgable.h │ │ │ │ │ ├── vm_region.h │ │ │ │ │ ├── vm_statistics.h │ │ │ │ │ ├── vm_sync.h │ │ │ │ │ ├── vm_task.h │ │ │ │ │ └── vm_types.h │ │ │ │ ├── mach_debug │ │ │ │ │ ├── hash_info.h │ │ │ │ │ ├── ipc_info.h │ │ │ │ │ ├── lockgroup_info.h │ │ │ │ │ ├── mach_debug.h │ │ │ │ │ ├── mach_debug_types.defs │ │ │ │ │ ├── mach_debug_types.h │ │ │ │ │ ├── page_info.h │ │ │ │ │ ├── vm_info.h │ │ │ │ │ └── zone_info.h │ │ │ │ ├── machine │ │ │ │ │ ├── _limits.h │ │ │ │ │ ├── _mcontext.h │ │ │ │ │ ├── _param.h │ │ │ │ │ ├── _types.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── byte_order.h │ │ │ │ │ ├── cons.h │ │ │ │ │ ├── cpu_capabilities.h │ │ │ │ │ ├── dis_tables.h │ │ │ │ │ ├── disklabel.h │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── exec.h │ │ │ │ │ ├── fasttrap_isa.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── param.h │ │ │ │ │ ├── profile.h │ │ │ │ │ ├── psl.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── smp.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── vmparam.h │ │ │ │ ├── magmallocProvider.h │ │ │ │ ├── malloc │ │ │ │ │ ├── _malloc.h │ │ │ │ │ └── malloc.h │ │ │ │ ├── malloc_implementation.h │ │ │ │ ├── malloc_private.h │ │ │ │ ├── math.h │ │ │ │ ├── membership.h │ │ │ │ ├── membershipPriv.h │ │ │ │ ├── memory.h │ │ │ │ ├── menu.h │ │ │ │ ├── miscfs │ │ │ │ │ ├── devfs │ │ │ │ │ │ └── devfs.h │ │ │ │ │ ├── specfs │ │ │ │ │ │ └── specdev.h │ │ │ │ │ └── union │ │ │ │ │ │ └── union.h │ │ │ │ ├── monetary.h │ │ │ │ ├── monitor.h │ │ │ │ ├── mpool.h │ │ │ │ ├── msgcat.h │ │ │ │ ├── msgtracer_client.h │ │ │ │ ├── msgtracer_keys.h │ │ │ │ ├── nameser.h │ │ │ │ ├── nan.h │ │ │ │ ├── nc_tparm.h │ │ │ │ ├── ncurses.h │ │ │ │ ├── ncurses_dll.h │ │ │ │ ├── ndbm.h │ │ │ │ ├── ne_session.h │ │ │ │ ├── net │ │ │ │ │ ├── bpf.h │ │ │ │ │ ├── bpf_compat.h │ │ │ │ │ ├── bpfdesc.h │ │ │ │ │ ├── bridgestp.h │ │ │ │ │ ├── cc.h │ │ │ │ │ ├── classq │ │ │ │ │ │ ├── classq.h │ │ │ │ │ │ ├── classq_blue.h │ │ │ │ │ │ ├── classq_fq_codel.h │ │ │ │ │ │ ├── classq_red.h │ │ │ │ │ │ ├── classq_rio.h │ │ │ │ │ │ ├── classq_sfb.h │ │ │ │ │ │ └── if_classq.h │ │ │ │ │ ├── content_filter.h │ │ │ │ │ ├── content_filter_crypto.h │ │ │ │ │ ├── contiki-conf.h │ │ │ │ │ ├── contiki-default-conf.h │ │ │ │ │ ├── contiki-lib.h │ │ │ │ │ ├── contiki-net.h │ │ │ │ │ ├── contiki-version.h │ │ │ │ │ ├── contiki.h │ │ │ │ │ ├── devtimer.h │ │ │ │ │ ├── dlil.h │ │ │ │ │ ├── ether_if_module.h │ │ │ │ │ ├── etherdefs.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── firewire.h │ │ │ │ │ ├── flowadv.h │ │ │ │ │ ├── flowhash.h │ │ │ │ │ ├── frame802154.h │ │ │ │ │ ├── ieee8023ad.h │ │ │ │ │ ├── if.h │ │ │ │ │ ├── if_6lowpan_var.h │ │ │ │ │ ├── if_arp.h │ │ │ │ │ ├── if_bond_internal.h │ │ │ │ │ ├── if_bond_var.h │ │ │ │ │ ├── if_bridgevar.h │ │ │ │ │ ├── if_dl.h │ │ │ │ │ ├── if_ether.h │ │ │ │ │ ├── if_fake_var.h │ │ │ │ │ ├── if_gif.h │ │ │ │ │ ├── if_ipsec.h │ │ │ │ │ ├── if_llatbl.h │ │ │ │ │ ├── if_llc.h │ │ │ │ │ ├── if_llreach.h │ │ │ │ │ ├── if_media.h │ │ │ │ │ ├── if_mib.h │ │ │ │ │ ├── if_pflog.h │ │ │ │ │ ├── if_ports_used.h │ │ │ │ │ ├── if_ppp.h │ │ │ │ │ ├── if_types.h │ │ │ │ │ ├── if_utun.h │ │ │ │ │ ├── if_var.h │ │ │ │ │ ├── if_vlan_var.h │ │ │ │ │ ├── init.h │ │ │ │ │ ├── iptap.h │ │ │ │ │ ├── kext_net.h │ │ │ │ │ ├── kpi_interface.h │ │ │ │ │ ├── kpi_interfacefilter.h │ │ │ │ │ ├── kpi_protocol.h │ │ │ │ │ ├── lacp.h │ │ │ │ │ ├── linkaddr.h │ │ │ │ │ ├── multi_layer_pkt_log.h │ │ │ │ │ ├── multicast_list.h │ │ │ │ │ ├── nat464_utils.h │ │ │ │ │ ├── ndrv.h │ │ │ │ │ ├── ndrv_var.h │ │ │ │ │ ├── necp.h │ │ │ │ │ ├── net_api_stats.h │ │ │ │ │ ├── net_kev.h │ │ │ │ │ ├── net_log_common.h │ │ │ │ │ ├── net_osdep.h │ │ │ │ │ ├── net_perf.h │ │ │ │ │ ├── net_str_id.h │ │ │ │ │ ├── netsrc.h │ │ │ │ │ ├── network_agent.h │ │ │ │ │ ├── ntstat.h │ │ │ │ │ ├── nwk_wq.h │ │ │ │ │ ├── packet_mangler.h │ │ │ │ │ ├── pf_pbuf.h │ │ │ │ │ ├── pfkeyv2.h │ │ │ │ │ ├── pfvar.h │ │ │ │ │ ├── pktap.h │ │ │ │ │ ├── pktsched │ │ │ │ │ │ ├── pktsched.h │ │ │ │ │ │ ├── pktsched_cbq.h │ │ │ │ │ │ ├── pktsched_fairq.h │ │ │ │ │ │ ├── pktsched_fq_codel.h │ │ │ │ │ │ ├── pktsched_hfsc.h │ │ │ │ │ │ ├── pktsched_netem.h │ │ │ │ │ │ ├── pktsched_priq.h │ │ │ │ │ │ └── pktsched_rmclass.h │ │ │ │ │ ├── ppp_comp.h │ │ │ │ │ ├── ppp_defs.h │ │ │ │ │ ├── radix.h │ │ │ │ │ ├── raw_cb.h │ │ │ │ │ ├── restricted_in_port.h │ │ │ │ │ ├── route.h │ │ │ │ │ ├── sixxlowpan.h │ │ │ │ │ └── zlib.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netdb_async.h │ │ │ │ ├── netinet │ │ │ │ │ ├── bootp.h │ │ │ │ │ ├── dhcp.h │ │ │ │ │ ├── dhcp_options.h │ │ │ │ │ ├── flow_divert.h │ │ │ │ │ ├── flow_divert_proto.h │ │ │ │ │ ├── icmp6.h │ │ │ │ │ ├── icmp_var.h │ │ │ │ │ ├── if_ether.h │ │ │ │ │ ├── if_tun.h │ │ │ │ │ ├── igmp.h │ │ │ │ │ ├── igmp_var.h │ │ │ │ │ ├── in.h │ │ │ │ │ ├── in_arp.h │ │ │ │ │ ├── in_gif.h │ │ │ │ │ ├── in_pcb.h │ │ │ │ │ ├── in_stat.h │ │ │ │ │ ├── in_systm.h │ │ │ │ │ ├── in_tclass.h │ │ │ │ │ ├── in_var.h │ │ │ │ │ ├── ip.h │ │ │ │ │ ├── ip6.h │ │ │ │ │ ├── ip_compat.h │ │ │ │ │ ├── ip_dummynet.h │ │ │ │ │ ├── ip_ecn.h │ │ │ │ │ ├── ip_encap.h │ │ │ │ │ ├── ip_flowid.h │ │ │ │ │ ├── ip_icmp.h │ │ │ │ │ ├── ip_var.h │ │ │ │ │ ├── isakmp.h │ │ │ │ │ ├── kpi_ipfilter.h │ │ │ │ │ ├── kpi_ipfilter_var.h │ │ │ │ │ ├── mp_pcb.h │ │ │ │ │ ├── mptcp.h │ │ │ │ │ ├── mptcp_opt.h │ │ │ │ │ ├── mptcp_seq.h │ │ │ │ │ ├── mptcp_timer.h │ │ │ │ │ ├── mptcp_var.h │ │ │ │ │ ├── tcp.h │ │ │ │ │ ├── tcp_cache.h │ │ │ │ │ ├── tcp_cc.h │ │ │ │ │ ├── tcp_debug.h │ │ │ │ │ ├── tcp_fsm.h │ │ │ │ │ ├── tcp_log.h │ │ │ │ │ ├── tcp_seq.h │ │ │ │ │ ├── tcp_timer.h │ │ │ │ │ ├── tcp_var.h │ │ │ │ │ ├── tcpip.h │ │ │ │ │ ├── udp.h │ │ │ │ │ └── udp_var.h │ │ │ │ ├── netinet6 │ │ │ │ │ ├── ah.h │ │ │ │ │ ├── ah6.h │ │ │ │ │ ├── esp.h │ │ │ │ │ ├── esp6.h │ │ │ │ │ ├── esp_chachapoly.h │ │ │ │ │ ├── esp_rijndael.h │ │ │ │ │ ├── icmp6.h │ │ │ │ │ ├── in6.h │ │ │ │ │ ├── in6_gif.h │ │ │ │ │ ├── in6_ifattach.h │ │ │ │ │ ├── in6_pcb.h │ │ │ │ │ ├── in6_var.h │ │ │ │ │ ├── ip6.h │ │ │ │ │ ├── ip6_ecn.h │ │ │ │ │ ├── ip6_var.h │ │ │ │ │ ├── ip6protosw.h │ │ │ │ │ ├── ipcomp.h │ │ │ │ │ ├── ipsec.h │ │ │ │ │ ├── ipsec6.h │ │ │ │ │ ├── mld6.h │ │ │ │ │ ├── mld6_var.h │ │ │ │ │ ├── nd6.h │ │ │ │ │ ├── nd6_var.h │ │ │ │ │ ├── raw_ip6.h │ │ │ │ │ ├── scope6_var.h │ │ │ │ │ ├── tcp6_var.h │ │ │ │ │ └── udp6_var.h │ │ │ │ ├── netkey │ │ │ │ │ └── keysock.h │ │ │ │ ├── network_information.h │ │ │ │ ├── nfs │ │ │ │ │ ├── krpc.h │ │ │ │ │ ├── nfs.h │ │ │ │ │ ├── nfs_gss.h │ │ │ │ │ ├── nfs_ioctl.h │ │ │ │ │ ├── nfs_lock.h │ │ │ │ │ ├── nfsdiskless.h │ │ │ │ │ ├── nfsm_subs.h │ │ │ │ │ ├── nfsmount.h │ │ │ │ │ ├── nfsnode.h │ │ │ │ │ ├── nfsproto.h │ │ │ │ │ ├── nfsrvcache.h │ │ │ │ │ ├── rpcv2.h │ │ │ │ │ └── xdr_subs.h │ │ │ │ ├── nghttp2 │ │ │ │ │ └── nghttp2.h │ │ │ │ ├── nl_types.h │ │ │ │ ├── nlist.h │ │ │ │ ├── notify.h │ │ │ │ ├── notify_keys.h │ │ │ │ ├── ntsid.h │ │ │ │ ├── nw │ │ │ │ ├── objc-shared-cache.h │ │ │ │ ├── objc │ │ │ │ │ ├── DenseMapExtras.h │ │ │ │ │ ├── List.h │ │ │ │ │ ├── NSObjCRuntime.h │ │ │ │ │ ├── NSObject-internal.h │ │ │ │ │ ├── NSObject.h │ │ │ │ │ ├── Object.h │ │ │ │ │ ├── PointerUnion.h │ │ │ │ │ ├── Protocol.h │ │ │ │ │ ├── arm64-asm.h │ │ │ │ │ ├── hashtable.h │ │ │ │ │ ├── hashtable2.h │ │ │ │ │ ├── isa.h │ │ │ │ │ ├── llvm-AlignOf.h │ │ │ │ │ ├── llvm-DenseMap.h │ │ │ │ │ ├── llvm-DenseMapInfo.h │ │ │ │ │ ├── llvm-DenseSet.h │ │ │ │ │ ├── llvm-MathExtras.h │ │ │ │ │ ├── llvm-type_traits.h │ │ │ │ │ ├── maptable.h │ │ │ │ │ ├── message.h │ │ │ │ │ ├── objc-abi.h │ │ │ │ │ ├── objc-api.h │ │ │ │ │ ├── objc-auto.h │ │ │ │ │ ├── objc-block-trampolines.h │ │ │ │ │ ├── objc-cache-old.h │ │ │ │ │ ├── objc-class.h │ │ │ │ │ ├── objc-config.h │ │ │ │ │ ├── objc-env.h │ │ │ │ │ ├── objc-exception.h │ │ │ │ │ ├── objc-file-old.h │ │ │ │ │ ├── objc-file.h │ │ │ │ │ ├── objc-gdb.h │ │ │ │ │ ├── objc-initialize.h │ │ │ │ │ ├── objc-internal.h │ │ │ │ │ ├── objc-load.h │ │ │ │ │ ├── objc-loadmethod.h │ │ │ │ │ ├── objc-lockdebug.h │ │ │ │ │ ├── objc-locks-new.h │ │ │ │ │ ├── objc-locks-old.h │ │ │ │ │ ├── objc-locks.h │ │ │ │ │ ├── objc-object.h │ │ │ │ │ ├── objc-os.h │ │ │ │ │ ├── objc-private.h │ │ │ │ │ ├── objc-probes.h │ │ │ │ │ ├── objc-ptrauth.h │ │ │ │ │ ├── objc-references.h │ │ │ │ │ ├── objc-runtime-new.h │ │ │ │ │ ├── objc-runtime-old.h │ │ │ │ │ ├── objc-runtime.h │ │ │ │ │ ├── objc-sel-set.h │ │ │ │ │ ├── objc-sync.h │ │ │ │ │ ├── objc-weak.h │ │ │ │ │ ├── objc-zalloc.h │ │ │ │ │ ├── objc.h │ │ │ │ │ ├── objcrt.h │ │ │ │ │ └── runtime.h │ │ │ │ ├── opendirectory │ │ │ │ ├── openssl │ │ │ │ ├── os │ │ │ │ │ ├── activity.h │ │ │ │ │ ├── alloc_once_impl.h │ │ │ │ │ ├── alloc_once_private.h │ │ │ │ │ ├── api.h │ │ │ │ │ ├── assumes.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── atomic_private.h │ │ │ │ │ ├── atomic_private_arch.h │ │ │ │ │ ├── atomic_private_impl.h │ │ │ │ │ ├── availability.h │ │ │ │ │ ├── base.h │ │ │ │ │ ├── base_private.h │ │ │ │ │ ├── boot_mode_private.h │ │ │ │ │ ├── bsd.h │ │ │ │ │ ├── cleanup.h │ │ │ │ │ ├── clock.h │ │ │ │ │ ├── cpp_util.h │ │ │ │ │ ├── crashlog_private.h │ │ │ │ │ ├── ctl.h │ │ │ │ │ ├── debug_private.h │ │ │ │ │ ├── dirstat.h │ │ │ │ │ ├── dirstat_collection.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── feature_private.h │ │ │ │ │ ├── firehose.h │ │ │ │ │ ├── firehose_buffer_private.h │ │ │ │ │ ├── firehose_server_private.h │ │ │ │ │ ├── generic_unix_base.h │ │ │ │ │ ├── generic_win_base.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── libdarwin_init.h │ │ │ │ │ ├── linker_set.h │ │ │ │ │ ├── lock.h │ │ │ │ │ ├── lock_private.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── log_private.h │ │ │ │ │ ├── mach_exception.h │ │ │ │ │ ├── mach_utils.h │ │ │ │ │ ├── object.h │ │ │ │ │ ├── object_private.h │ │ │ │ │ ├── once_private.h │ │ │ │ │ ├── overflow.h │ │ │ │ │ ├── proc.h │ │ │ │ │ ├── ptrtools.h │ │ │ │ │ ├── reason_private.h │ │ │ │ │ ├── refcnt.h │ │ │ │ │ ├── refcnt_internal.h │ │ │ │ │ ├── semaphore_private.h │ │ │ │ │ ├── signpost.h │ │ │ │ │ ├── signpost_private.h │ │ │ │ │ ├── state_private.h │ │ │ │ │ ├── stdio.h │ │ │ │ │ ├── stdlib.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── thread_self_restrict.h │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── trace_base.h │ │ │ │ │ ├── trace_internal.h │ │ │ │ │ ├── trace_private.h │ │ │ │ │ ├── transaction_private.h │ │ │ │ │ ├── tsd.h │ │ │ │ │ ├── variant_private.h │ │ │ │ │ ├── voucher_activity_private.h │ │ │ │ │ ├── voucher_private.h │ │ │ │ │ ├── workgroup.h │ │ │ │ │ ├── workgroup_base.h │ │ │ │ │ ├── workgroup_interval.h │ │ │ │ │ ├── workgroup_object.h │ │ │ │ │ └── workgroup_parallel.h │ │ │ │ ├── panel.h │ │ │ │ ├── paths.h │ │ │ │ ├── pcre.h │ │ │ │ ├── pexpert │ │ │ │ │ ├── boot.h │ │ │ │ │ ├── i386 │ │ │ │ │ │ ├── boot.h │ │ │ │ │ │ ├── efi.h │ │ │ │ │ │ └── protos.h │ │ │ │ │ ├── machine │ │ │ │ │ │ ├── boot.h │ │ │ │ │ │ └── protos.h │ │ │ │ │ ├── pexpert.h │ │ │ │ │ └── protos.h │ │ │ │ ├── platform │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── introspection_private.h │ │ │ │ │ └── string.h │ │ │ │ ├── pmenergy.h │ │ │ │ ├── pmsample.h │ │ │ │ ├── poll.h │ │ │ │ ├── printerdb.h │ │ │ │ ├── printf.h │ │ │ │ ├── private.h │ │ │ │ ├── profile.h │ │ │ │ ├── protocols │ │ │ │ │ ├── routed.h │ │ │ │ │ ├── rwhod.h │ │ │ │ │ ├── talkd.h │ │ │ │ │ └── timed.h │ │ │ │ ├── pthread.h │ │ │ │ ├── pthread │ │ │ │ │ ├── bsdthread_private.h │ │ │ │ │ ├── dependency_private.h │ │ │ │ │ ├── introspection.h │ │ │ │ │ ├── introspection_private.h │ │ │ │ │ ├── posix_sched.h │ │ │ │ │ ├── priority_private.h │ │ │ │ │ ├── private.h │ │ │ │ │ ├── pthread.h │ │ │ │ │ ├── pthread_impl.h │ │ │ │ │ ├── pthread_spis.h │ │ │ │ │ ├── qos.h │ │ │ │ │ ├── qos_private.h │ │ │ │ │ ├── sched.h │ │ │ │ │ ├── spawn.h │ │ │ │ │ ├── spinlock_private.h │ │ │ │ │ ├── stack_np.h │ │ │ │ │ ├── tsd_private.h │ │ │ │ │ ├── workqueue_internal.h │ │ │ │ │ ├── workqueue_private.h │ │ │ │ │ ├── workqueue_syscalls.h │ │ │ │ │ └── workqueue_trace.h │ │ │ │ ├── pthread_impl.h │ │ │ │ ├── pthread_machdep.h │ │ │ │ ├── pthread_spis.h │ │ │ │ ├── pthread_workqueue.h │ │ │ │ ├── ptrauth.h │ │ │ │ ├── pwd.h │ │ │ │ ├── python2.7 │ │ │ │ ├── quarantine.h │ │ │ │ ├── quit │ │ │ │ ├── ranlib.h │ │ │ │ ├── readline │ │ │ │ ├── readpassphrase.h │ │ │ │ ├── reboot2.h │ │ │ │ ├── regex.h │ │ │ │ ├── removefile.h │ │ │ │ ├── resolv.h │ │ │ │ ├── rootless.h │ │ │ │ ├── rpc │ │ │ │ │ ├── auth.h │ │ │ │ │ ├── auth_unix.h │ │ │ │ │ ├── clnt.h │ │ │ │ │ ├── pmap_clnt.h │ │ │ │ │ ├── pmap_prot.h │ │ │ │ │ ├── pmap_rmt.h │ │ │ │ │ ├── rpc.h │ │ │ │ │ ├── rpc_msg.h │ │ │ │ │ ├── svc.h │ │ │ │ │ ├── svc_auth.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── xdr.h │ │ │ │ ├── rpcsvc │ │ │ │ │ ├── bootparam_prot.h │ │ │ │ │ ├── klm_prot.h │ │ │ │ │ ├── mount.h │ │ │ │ │ ├── nfs_prot.h │ │ │ │ │ ├── nlm_prot.h │ │ │ │ │ ├── rex.h │ │ │ │ │ ├── rnusers.h │ │ │ │ │ ├── rquota.h │ │ │ │ │ ├── rstat.h │ │ │ │ │ ├── rusers.h │ │ │ │ │ ├── rwall.h │ │ │ │ │ ├── sm_inter.h │ │ │ │ │ ├── spray.h │ │ │ │ │ ├── yp.h │ │ │ │ │ ├── yp_prot.h │ │ │ │ │ ├── ypclnt.h │ │ │ │ │ ├── ypinternal.h │ │ │ │ │ └── yppasswd.h │ │ │ │ ├── rune.h │ │ │ │ ├── runetype.h │ │ │ │ ├── sandbox.h │ │ │ │ ├── sandbox │ │ │ │ │ ├── private.h │ │ │ │ │ ├── rootless.h │ │ │ │ │ └── sandbox.h │ │ │ │ ├── sanitizer │ │ │ │ ├── sasl │ │ │ │ │ ├── gai.h │ │ │ │ │ ├── hmac-md5.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── md5global.h │ │ │ │ │ ├── prop.h │ │ │ │ │ ├── sasl.h │ │ │ │ │ ├── saslplug.h │ │ │ │ │ └── saslutil.h │ │ │ │ ├── sched.h │ │ │ │ ├── search.h │ │ │ │ ├── secure │ │ │ │ │ ├── _common.h │ │ │ │ │ ├── _stdio.h │ │ │ │ │ ├── _string.h │ │ │ │ │ └── _strings.h │ │ │ │ ├── security │ │ │ │ │ ├── audit │ │ │ │ │ │ └── audit_ioctl.h │ │ │ │ │ ├── openpam.h │ │ │ │ │ ├── openpam_attr.h │ │ │ │ │ ├── openpam_version.h │ │ │ │ │ ├── pam_appl.h │ │ │ │ │ ├── pam_constants.h │ │ │ │ │ ├── pam_modules.h │ │ │ │ │ └── pam_types.h │ │ │ │ ├── security_libDER │ │ │ │ ├── security_tokend_client │ │ │ │ │ ├── SecTokend.h │ │ │ │ │ ├── server.h │ │ │ │ │ ├── tdclient.h │ │ │ │ │ ├── tdtransit.h │ │ │ │ │ ├── tokend_types.h │ │ │ │ │ └── transit.h │ │ │ │ ├── semaphore.h │ │ │ │ ├── servers │ │ │ │ │ ├── bootstrap.h │ │ │ │ │ ├── bootstrap_defs.h │ │ │ │ │ ├── key_defs.h │ │ │ │ │ ├── ls_defs.h │ │ │ │ │ ├── netname.defs │ │ │ │ │ ├── netname.h │ │ │ │ │ ├── netname_defs.h │ │ │ │ │ └── nm_defs.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── setlocale.h │ │ │ │ ├── sgtty.h │ │ │ │ ├── si_data.h │ │ │ │ ├── si_module.h │ │ │ │ ├── signal.h │ │ │ │ ├── slapi-plugin.h │ │ │ │ ├── spawn.h │ │ │ │ ├── spawn_private.h │ │ │ │ ├── sqlite3.h │ │ │ │ ├── sqlite3_private.h │ │ │ │ ├── sqlite3ext.h │ │ │ │ ├── stab.h │ │ │ │ ├── stack_logging.h │ │ │ │ ├── standards.h │ │ │ │ ├── stdatomic.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── strhash.h │ │ │ │ ├── string.h │ │ │ │ ├── stringlist.h │ │ │ │ ├── strings.h │ │ │ │ ├── struct.h │ │ │ │ ├── subsystem.h │ │ │ │ ├── sys │ │ │ │ │ ├── _endian.h │ │ │ │ │ ├── _posix_availability.h │ │ │ │ │ ├── _pthread │ │ │ │ │ │ ├── _pthread_attr_t.h │ │ │ │ │ │ ├── _pthread_cond_t.h │ │ │ │ │ │ ├── _pthread_condattr_t.h │ │ │ │ │ │ ├── _pthread_key_t.h │ │ │ │ │ │ ├── _pthread_mutex_t.h │ │ │ │ │ │ ├── _pthread_mutexattr_t.h │ │ │ │ │ │ ├── _pthread_once_t.h │ │ │ │ │ │ ├── _pthread_rwlock_t.h │ │ │ │ │ │ ├── _pthread_rwlockattr_t.h │ │ │ │ │ │ ├── _pthread_t.h │ │ │ │ │ │ └── _pthread_types.h │ │ │ │ │ ├── _select.h │ │ │ │ │ ├── _structs.h │ │ │ │ │ ├── _symbol_aliasing.h │ │ │ │ │ ├── _types.h │ │ │ │ │ ├── _types │ │ │ │ │ │ ├── _blkcnt_t.h │ │ │ │ │ │ ├── _blksize_t.h │ │ │ │ │ │ ├── _caddr_t.h │ │ │ │ │ │ ├── _clock_t.h │ │ │ │ │ │ ├── _ct_rune_t.h │ │ │ │ │ │ ├── _dev_t.h │ │ │ │ │ │ ├── _errno_t.h │ │ │ │ │ │ ├── _fd_clr.h │ │ │ │ │ │ ├── _fd_copy.h │ │ │ │ │ │ ├── _fd_def.h │ │ │ │ │ │ ├── _fd_isset.h │ │ │ │ │ │ ├── _fd_set.h │ │ │ │ │ │ ├── _fd_setsize.h │ │ │ │ │ │ ├── _fd_zero.h │ │ │ │ │ │ ├── _filesec_t.h │ │ │ │ │ │ ├── _fsblkcnt_t.h │ │ │ │ │ │ ├── _fsfilcnt_t.h │ │ │ │ │ │ ├── _fsid_t.h │ │ │ │ │ │ ├── _fsobj_id_t.h │ │ │ │ │ │ ├── _gid_t.h │ │ │ │ │ │ ├── _guid_t.h │ │ │ │ │ │ ├── _id_t.h │ │ │ │ │ │ ├── _in_addr_t.h │ │ │ │ │ │ ├── _in_port_t.h │ │ │ │ │ │ ├── _ino64_t.h │ │ │ │ │ │ ├── _ino_t.h │ │ │ │ │ │ ├── _int16_t.h │ │ │ │ │ │ ├── _int32_t.h │ │ │ │ │ │ ├── _int64_t.h │ │ │ │ │ │ ├── _int8_t.h │ │ │ │ │ │ ├── _intptr_t.h │ │ │ │ │ │ ├── _iovec_t.h │ │ │ │ │ │ ├── _key_t.h │ │ │ │ │ │ ├── _mach_port_t.h │ │ │ │ │ │ ├── _mbstate_t.h │ │ │ │ │ │ ├── _mode_t.h │ │ │ │ │ │ ├── _nlink_t.h │ │ │ │ │ │ ├── _null.h │ │ │ │ │ │ ├── _o_dsync.h │ │ │ │ │ │ ├── _o_sync.h │ │ │ │ │ │ ├── _off_t.h │ │ │ │ │ │ ├── _offsetof.h │ │ │ │ │ │ ├── _os_inline.h │ │ │ │ │ │ ├── _pid_t.h │ │ │ │ │ │ ├── _posix_vdisable.h │ │ │ │ │ │ ├── _ptrdiff_t.h │ │ │ │ │ │ ├── _rsize_t.h │ │ │ │ │ │ ├── _rune_t.h │ │ │ │ │ │ ├── _s_ifmt.h │ │ │ │ │ │ ├── _sa_family_t.h │ │ │ │ │ │ ├── _seek_set.h │ │ │ │ │ │ ├── _sigaltstack.h │ │ │ │ │ │ ├── _sigset_t.h │ │ │ │ │ │ ├── _size_t.h │ │ │ │ │ │ ├── _socklen_t.h │ │ │ │ │ │ ├── _ssize_t.h │ │ │ │ │ │ ├── _suseconds_t.h │ │ │ │ │ │ ├── _time_t.h │ │ │ │ │ │ ├── _timespec.h │ │ │ │ │ │ ├── _timeval.h │ │ │ │ │ │ ├── _timeval32.h │ │ │ │ │ │ ├── _timeval64.h │ │ │ │ │ │ ├── _u_char.h │ │ │ │ │ │ ├── _u_int.h │ │ │ │ │ │ ├── _u_int16_t.h │ │ │ │ │ │ ├── _u_int32_t.h │ │ │ │ │ │ ├── _u_int64_t.h │ │ │ │ │ │ ├── _u_int8_t.h │ │ │ │ │ │ ├── _u_short.h │ │ │ │ │ │ ├── _ucontext.h │ │ │ │ │ │ ├── _ucontext64.h │ │ │ │ │ │ ├── _uid_t.h │ │ │ │ │ │ ├── _uintptr_t.h │ │ │ │ │ │ ├── _useconds_t.h │ │ │ │ │ │ ├── _user32_itimerval.h │ │ │ │ │ │ ├── _user32_ntptimeval.h │ │ │ │ │ │ ├── _user32_timespec.h │ │ │ │ │ │ ├── _user32_timeval.h │ │ │ │ │ │ ├── _user32_timex.h │ │ │ │ │ │ ├── _user64_itimerval.h │ │ │ │ │ │ ├── _user64_ntptimeval.h │ │ │ │ │ │ ├── _user64_timespec.h │ │ │ │ │ │ ├── _user64_timeval.h │ │ │ │ │ │ ├── _user64_timex.h │ │ │ │ │ │ ├── _user_timespec.h │ │ │ │ │ │ ├── _user_timeval.h │ │ │ │ │ │ ├── _uuid_t.h │ │ │ │ │ │ ├── _va_list.h │ │ │ │ │ │ ├── _wchar_t.h │ │ │ │ │ │ └── _wint_t.h │ │ │ │ │ ├── acct.h │ │ │ │ │ ├── acl.h │ │ │ │ │ ├── aio.h │ │ │ │ │ ├── aio_kern.h │ │ │ │ │ ├── appleapiopts.h │ │ │ │ │ ├── attr.h │ │ │ │ │ ├── bitstring.h │ │ │ │ │ ├── bsdtask_info.h │ │ │ │ │ ├── buf.h │ │ │ │ │ ├── buf_internal.h │ │ │ │ │ ├── cdefs.h │ │ │ │ │ ├── clonefile.h │ │ │ │ │ ├── coalition.h │ │ │ │ │ ├── codedir_internal.h │ │ │ │ │ ├── codesign.h │ │ │ │ │ ├── commpage.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── content_protection.h │ │ │ │ │ ├── cprotect.h │ │ │ │ │ ├── csr.h │ │ │ │ │ ├── decmpfs.h │ │ │ │ │ ├── dir.h │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── dis_tables.h │ │ │ │ │ ├── disk.h │ │ │ │ │ ├── disklabel.h │ │ │ │ │ ├── disktab.h │ │ │ │ │ ├── dkstat.h │ │ │ │ │ ├── dmap.h │ │ │ │ │ ├── doc_tombstone.h │ │ │ │ │ ├── domain.h │ │ │ │ │ ├── dtrace.h │ │ │ │ │ ├── dtrace_glue.h │ │ │ │ │ ├── dtrace_impl.h │ │ │ │ │ ├── dtrace_ptss.h │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── ev.h │ │ │ │ │ ├── event.h │ │ │ │ │ ├── eventvar.h │ │ │ │ │ ├── exec.h │ │ │ │ │ ├── fasttrap.h │ │ │ │ │ ├── fasttrap_impl.h │ │ │ │ │ ├── fasttrap_isa.h │ │ │ │ │ ├── fbt.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── file_internal.h │ │ │ │ │ ├── filedesc.h │ │ │ │ │ ├── fileport.h │ │ │ │ │ ├── filio.h │ │ │ │ │ ├── fsctl.h │ │ │ │ │ ├── fsevents.h │ │ │ │ │ ├── fsgetpath.h │ │ │ │ │ ├── fslog.h │ │ │ │ │ ├── gmon.h │ │ │ │ │ ├── guarded.h │ │ │ │ │ ├── imageboot.h │ │ │ │ │ ├── imgact.h │ │ │ │ │ ├── imgsrc.h │ │ │ │ │ ├── ioccom.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── ioctl_compat.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── ipcs.h │ │ │ │ │ ├── kas_info.h │ │ │ │ │ ├── kasl.h │ │ │ │ │ ├── kauth.h │ │ │ │ │ ├── kdebug.h │ │ │ │ │ ├── kdebug_private.h │ │ │ │ │ ├── kdebug_signpost.h │ │ │ │ │ ├── kern_control.h │ │ │ │ │ ├── kern_event.h │ │ │ │ │ ├── kern_memorystatus.h │ │ │ │ │ ├── kern_overrides.h │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── kernel_types.h │ │ │ │ │ ├── kpi_mbuf.h │ │ │ │ │ ├── kpi_private.h │ │ │ │ │ ├── kpi_socket.h │ │ │ │ │ ├── kpi_socketfilter.h │ │ │ │ │ ├── ktrace.h │ │ │ │ │ ├── lctx.h │ │ │ │ │ ├── linker_set.h │ │ │ │ │ ├── loadable_fs.h │ │ │ │ │ ├── lock.h │ │ │ │ │ ├── lockf.h │ │ │ │ │ ├── lockstat.h │ │ │ │ │ ├── log_data.h │ │ │ │ │ ├── mach_swapon.h │ │ │ │ │ ├── malloc.h │ │ │ │ │ ├── mbuf.h │ │ │ │ │ ├── mcache.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── memory_maintenance.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── mount.h │ │ │ │ │ ├── mount_internal.h │ │ │ │ │ ├── msg.h │ │ │ │ │ ├── msgbuf.h │ │ │ │ │ ├── munge.h │ │ │ │ │ ├── namei.h │ │ │ │ │ ├── netboot.h │ │ │ │ │ ├── netport.h │ │ │ │ │ ├── param.h │ │ │ │ │ ├── paths.h │ │ │ │ │ ├── persona.h │ │ │ │ │ ├── pgo.h │ │ │ │ │ ├── pipe.h │ │ │ │ │ ├── poll.h │ │ │ │ │ ├── posix_sem.h │ │ │ │ │ ├── posix_shm.h │ │ │ │ │ ├── priv.h │ │ │ │ │ ├── proc.h │ │ │ │ │ ├── proc_info.h │ │ │ │ │ ├── proc_internal.h │ │ │ │ │ ├── proc_uuid_policy.h │ │ │ │ │ ├── process_policy.h │ │ │ │ │ ├── protosw.h │ │ │ │ │ ├── pthread_internal.h │ │ │ │ │ ├── pthread_shims.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── qos.h │ │ │ │ │ ├── qos_private.h │ │ │ │ │ ├── queue.h │ │ │ │ │ ├── quota.h │ │ │ │ │ ├── random.h │ │ │ │ │ ├── rbtree.h │ │ │ │ │ ├── reason.h │ │ │ │ │ ├── reboot.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── resourcevar.h │ │ │ │ │ ├── sbuf.h │ │ │ │ │ ├── sdt.h │ │ │ │ │ ├── sdt_impl.h │ │ │ │ │ ├── select.h │ │ │ │ │ ├── sem.h │ │ │ │ │ ├── sem_internal.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── sfi.h │ │ │ │ │ ├── shm.h │ │ │ │ │ ├── shm_internal.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── signalvar.h │ │ │ │ │ ├── snapshot.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── socketvar.h │ │ │ │ │ ├── sockio.h │ │ │ │ │ ├── spawn.h │ │ │ │ │ ├── spawn_internal.h │ │ │ │ │ ├── stackshot.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── statvfs.h │ │ │ │ │ ├── stdio.h │ │ │ │ │ ├── subr_prf.h │ │ │ │ │ ├── sys_domain.h │ │ │ │ │ ├── syscall.h │ │ │ │ │ ├── sysctl.h │ │ │ │ │ ├── sysent.h │ │ │ │ │ ├── syslimits.h │ │ │ │ │ ├── syslog.h │ │ │ │ │ ├── systm.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timeb.h │ │ │ │ │ ├── times.h │ │ │ │ │ ├── timex.h │ │ │ │ │ ├── tprintf.h │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── tree.h │ │ │ │ │ ├── tty.h │ │ │ │ │ ├── ttychars.h │ │ │ │ │ ├── ttycom.h │ │ │ │ │ ├── ttydefaults.h │ │ │ │ │ ├── ttydev.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── ubc.h │ │ │ │ │ ├── ubc_internal.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ ├── ucred.h │ │ │ │ │ ├── uio.h │ │ │ │ │ ├── uio_internal.h │ │ │ │ │ ├── ulock.h │ │ │ │ │ ├── un.h │ │ │ │ │ ├── unistd.h │ │ │ │ │ ├── unpcb.h │ │ │ │ │ ├── user.h │ │ │ │ │ ├── utfconv.h │ │ │ │ │ ├── utsname.h │ │ │ │ │ ├── ux_exception.h │ │ │ │ │ ├── vadvise.h │ │ │ │ │ ├── vcmd.h │ │ │ │ │ ├── vfs_context.h │ │ │ │ │ ├── vlimit.h │ │ │ │ │ ├── vm.h │ │ │ │ │ ├── vmmeter.h │ │ │ │ │ ├── vmparam.h │ │ │ │ │ ├── vnioctl.h │ │ │ │ │ ├── vnode.h │ │ │ │ │ ├── vnode_if.h │ │ │ │ │ ├── vnode_internal.h │ │ │ │ │ ├── vsock.h │ │ │ │ │ ├── vstat.h │ │ │ │ │ ├── wait.h │ │ │ │ │ ├── work_interval.h │ │ │ │ │ └── xattr.h │ │ │ │ ├── sysdir.h │ │ │ │ ├── sysexits.h │ │ │ │ ├── syslog.h │ │ │ │ ├── sysmon │ │ │ │ ├── tar.h │ │ │ │ ├── term.h │ │ │ │ ├── term_entry.h │ │ │ │ ├── termcap.h │ │ │ │ ├── termios.h │ │ │ │ ├── thread_stack_pcs.h │ │ │ │ ├── tic.h │ │ │ │ ├── time.h │ │ │ │ ├── timeconv.h │ │ │ │ ├── timelocal.h │ │ │ │ ├── tls.h │ │ │ │ ├── tls_cache.h │ │ │ │ ├── tls_handshake.h │ │ │ │ ├── tls_helpers.h │ │ │ │ ├── tls_record.h │ │ │ │ ├── tls_stream_parser.h │ │ │ │ ├── tls_types.h │ │ │ │ ├── ttyent.h │ │ │ │ ├── tzfile.h │ │ │ │ ├── ucontext.h │ │ │ │ ├── ulimit.h │ │ │ │ ├── unctrl.h │ │ │ │ ├── unicode │ │ │ │ │ ├── alphaindex.h │ │ │ │ │ ├── appendable.h │ │ │ │ │ ├── basictz.h │ │ │ │ │ ├── brkiter.h │ │ │ │ │ ├── bytestream.h │ │ │ │ │ ├── bytestrie.h │ │ │ │ │ ├── bytestriebuilder.h │ │ │ │ │ ├── calendar.h │ │ │ │ │ ├── caniter.h │ │ │ │ │ ├── casemap.h │ │ │ │ │ ├── char16ptr.h │ │ │ │ │ ├── chariter.h │ │ │ │ │ ├── choicfmt.h │ │ │ │ │ ├── coleitr.h │ │ │ │ │ ├── coll.h │ │ │ │ │ ├── compactdecimalformat.h │ │ │ │ │ ├── curramt.h │ │ │ │ │ ├── currpinf.h │ │ │ │ │ ├── currunit.h │ │ │ │ │ ├── datefmt.h │ │ │ │ │ ├── dbbi.h │ │ │ │ │ ├── dcfmtsym.h │ │ │ │ │ ├── decimfmt.h │ │ │ │ │ ├── docmain.h │ │ │ │ │ ├── dtfmtsym.h │ │ │ │ │ ├── dtintrv.h │ │ │ │ │ ├── dtitvfmt.h │ │ │ │ │ ├── dtitvinf.h │ │ │ │ │ ├── dtptngen.h │ │ │ │ │ ├── dtrule.h │ │ │ │ │ ├── edits.h │ │ │ │ │ ├── enumset.h │ │ │ │ │ ├── errorcode.h │ │ │ │ │ ├── fieldpos.h │ │ │ │ │ ├── filteredbrk.h │ │ │ │ │ ├── fmtable.h │ │ │ │ │ ├── format.h │ │ │ │ │ ├── formattedvalue.h │ │ │ │ │ ├── fpositer.h │ │ │ │ │ ├── gender.h │ │ │ │ │ ├── gregocal.h │ │ │ │ │ ├── icudataver.h │ │ │ │ │ ├── icuplug.h │ │ │ │ │ ├── idna.h │ │ │ │ │ ├── listformatter.h │ │ │ │ │ ├── localebuilder.h │ │ │ │ │ ├── localpointer.h │ │ │ │ │ ├── locdspnm.h │ │ │ │ │ ├── locid.h │ │ │ │ │ ├── measfmt.h │ │ │ │ │ ├── measunit.h │ │ │ │ │ ├── measure.h │ │ │ │ │ ├── messagepattern.h │ │ │ │ │ ├── msgfmt.h │ │ │ │ │ ├── normalizer2.h │ │ │ │ │ ├── normlzr.h │ │ │ │ │ ├── nounit.h │ │ │ │ │ ├── numberformatter.h │ │ │ │ │ ├── numberrangeformatter.h │ │ │ │ │ ├── numfmt.h │ │ │ │ │ ├── numsys.h │ │ │ │ │ ├── parseerr.h │ │ │ │ │ ├── parsepos.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── plurfmt.h │ │ │ │ │ ├── plurrule.h │ │ │ │ │ ├── ptypes.h │ │ │ │ │ ├── putil.h │ │ │ │ │ ├── rbbi.h │ │ │ │ │ ├── rbnf.h │ │ │ │ │ ├── rbtz.h │ │ │ │ │ ├── regex.h │ │ │ │ │ ├── region.h │ │ │ │ │ ├── reldatefmt.h │ │ │ │ │ ├── rep.h │ │ │ │ │ ├── resbund.h │ │ │ │ │ ├── schriter.h │ │ │ │ │ ├── scientificnumberformatter.h │ │ │ │ │ ├── search.h │ │ │ │ │ ├── selfmt.h │ │ │ │ │ ├── simpleformatter.h │ │ │ │ │ ├── simpletz.h │ │ │ │ │ ├── smpdtfmt.h │ │ │ │ │ ├── sortkey.h │ │ │ │ │ ├── std_string.h │ │ │ │ │ ├── strenum.h │ │ │ │ │ ├── stringoptions.h │ │ │ │ │ ├── stringpiece.h │ │ │ │ │ ├── stringtriebuilder.h │ │ │ │ │ ├── stsearch.h │ │ │ │ │ ├── symtable.h │ │ │ │ │ ├── tblcoll.h │ │ │ │ │ ├── timezone.h │ │ │ │ │ ├── tmunit.h │ │ │ │ │ ├── tmutamt.h │ │ │ │ │ ├── tmutfmt.h │ │ │ │ │ ├── translit.h │ │ │ │ │ ├── tzfmt.h │ │ │ │ │ ├── tznames.h │ │ │ │ │ ├── tzrule.h │ │ │ │ │ ├── tztrans.h │ │ │ │ │ ├── ualoc.h │ │ │ │ │ ├── uameasureformat.h │ │ │ │ │ ├── uatimeunitformat.h │ │ │ │ │ ├── ubidi.h │ │ │ │ │ ├── ubiditransform.h │ │ │ │ │ ├── ubrk.h │ │ │ │ │ ├── ucal.h │ │ │ │ │ ├── ucasemap.h │ │ │ │ │ ├── ucat.h │ │ │ │ │ ├── uchar.h │ │ │ │ │ ├── ucharstrie.h │ │ │ │ │ ├── ucharstriebuilder.h │ │ │ │ │ ├── uchriter.h │ │ │ │ │ ├── uclean.h │ │ │ │ │ ├── ucnv.h │ │ │ │ │ ├── ucnv_cb.h │ │ │ │ │ ├── ucnv_err.h │ │ │ │ │ ├── ucnvsel.h │ │ │ │ │ ├── ucol.h │ │ │ │ │ ├── ucoleitr.h │ │ │ │ │ ├── uconfig.h │ │ │ │ │ ├── ucpmap.h │ │ │ │ │ ├── ucptrie.h │ │ │ │ │ ├── ucsdet.h │ │ │ │ │ ├── ucurr.h │ │ │ │ │ ├── udat.h │ │ │ │ │ ├── udata.h │ │ │ │ │ ├── udateintervalformat.h │ │ │ │ │ ├── udatintv.h │ │ │ │ │ ├── udatpg.h │ │ │ │ │ ├── udisplaycontext.h │ │ │ │ │ ├── uenum.h │ │ │ │ │ ├── ufieldpositer.h │ │ │ │ │ ├── uformattable.h │ │ │ │ │ ├── uformattedvalue.h │ │ │ │ │ ├── ugender.h │ │ │ │ │ ├── uidna.h │ │ │ │ │ ├── uiter.h │ │ │ │ │ ├── uldnames.h │ │ │ │ │ ├── ulistformatter.h │ │ │ │ │ ├── uloc.h │ │ │ │ │ ├── ulocdata.h │ │ │ │ │ ├── umachine.h │ │ │ │ │ ├── umisc.h │ │ │ │ │ ├── umsg.h │ │ │ │ │ ├── umutablecptrie.h │ │ │ │ │ ├── unifilt.h │ │ │ │ │ ├── unifunct.h │ │ │ │ │ ├── unimatch.h │ │ │ │ │ ├── unirepl.h │ │ │ │ │ ├── uniset.h │ │ │ │ │ ├── unistr.h │ │ │ │ │ ├── unorm.h │ │ │ │ │ ├── unorm2.h │ │ │ │ │ ├── unum.h │ │ │ │ │ ├── unumberformatter.h │ │ │ │ │ ├── unumsys.h │ │ │ │ │ ├── uobject.h │ │ │ │ │ ├── uplrule.h │ │ │ │ │ ├── upluralrules.h │ │ │ │ │ ├── urbtok.h │ │ │ │ │ ├── uregex.h │ │ │ │ │ ├── uregion.h │ │ │ │ │ ├── ureldatefmt.h │ │ │ │ │ ├── urename.h │ │ │ │ │ ├── urep.h │ │ │ │ │ ├── ures.h │ │ │ │ │ ├── uscript.h │ │ │ │ │ ├── usearch.h │ │ │ │ │ ├── uset.h │ │ │ │ │ ├── usetiter.h │ │ │ │ │ ├── ushape.h │ │ │ │ │ ├── uspoof.h │ │ │ │ │ ├── usprep.h │ │ │ │ │ ├── ustring.h │ │ │ │ │ ├── ustringtrie.h │ │ │ │ │ ├── utext.h │ │ │ │ │ ├── utf.h │ │ │ │ │ ├── utf16.h │ │ │ │ │ ├── utf32.h │ │ │ │ │ ├── utf8.h │ │ │ │ │ ├── utf_old.h │ │ │ │ │ ├── utmscale.h │ │ │ │ │ ├── utrace.h │ │ │ │ │ ├── utrans.h │ │ │ │ │ ├── utypes.h │ │ │ │ │ ├── uvernum.h │ │ │ │ │ ├── uversion.h │ │ │ │ │ └── vtzone.h │ │ │ │ ├── unistd.h │ │ │ │ ├── unwind.h │ │ │ │ ├── util.h │ │ │ │ ├── utime.h │ │ │ │ ├── utmp.h │ │ │ │ ├── utmpx.h │ │ │ │ ├── uuid │ │ │ │ │ └── uuid.h │ │ │ │ ├── vfs │ │ │ │ │ └── vfs_support.h │ │ │ │ ├── vis.h │ │ │ │ ├── voucher │ │ │ │ │ └── ipc_pthread_priority_types.h │ │ │ │ ├── vproc.h │ │ │ │ ├── vproc_internal.h │ │ │ │ ├── vproc_priv.h │ │ │ │ ├── wchar.h │ │ │ │ ├── wctype.h │ │ │ │ ├── wordexp.h │ │ │ │ ├── wtf │ │ │ │ ├── x86-ffitarget.h │ │ │ │ ├── xar │ │ │ │ ├── xattr_flags.h │ │ │ │ ├── xcselect.h │ │ │ │ ├── xlocale.h │ │ │ │ ├── xlocale │ │ │ │ │ ├── __wctype.h │ │ │ │ │ ├── _ctype.h │ │ │ │ │ ├── _inttypes.h │ │ │ │ │ ├── _langinfo.h │ │ │ │ │ ├── _monetary.h │ │ │ │ │ ├── _regex.h │ │ │ │ │ ├── _stdio.h │ │ │ │ │ ├── _stdlib.h │ │ │ │ │ ├── _string.h │ │ │ │ │ ├── _time.h │ │ │ │ │ ├── _wchar.h │ │ │ │ │ └── _wctype.h │ │ │ │ ├── xlocale_private.h │ │ │ │ ├── xpc │ │ │ │ │ ├── activity.h │ │ │ │ │ ├── availability.h │ │ │ │ │ ├── base.h │ │ │ │ │ ├── connection.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── endpoint.h │ │ │ │ │ ├── launchd.h │ │ │ │ │ ├── launchd_defs.h │ │ │ │ │ ├── private.h │ │ │ │ │ ├── private │ │ │ │ │ │ ├── bundle.h │ │ │ │ │ │ ├── date.h │ │ │ │ │ │ ├── endpoint.h │ │ │ │ │ │ ├── mach_recv.h │ │ │ │ │ │ ├── mach_send.h │ │ │ │ │ │ ├── pipe.h │ │ │ │ │ │ └── plist.h │ │ │ │ │ └── xpc.h │ │ │ │ ├── zconf.h │ │ │ │ └── zlib.h │ │ │ │ ├── lib │ │ │ │ ├── libSystem.dylib │ │ │ │ ├── libobjc.dylib │ │ │ │ └── system │ │ │ │ │ ├── libcache.dylib │ │ │ │ │ ├── libcommonCrypto.dylib │ │ │ │ │ ├── libcompiler_rt.dylib │ │ │ │ │ ├── libcopyfile.dylib │ │ │ │ │ ├── libcorecrypto.dylib │ │ │ │ │ ├── libdispatch.dylib │ │ │ │ │ ├── libdyld.dylib │ │ │ │ │ ├── libkeymgr.dylib │ │ │ │ │ ├── liblaunch.dylib │ │ │ │ │ ├── libmacho.dylib │ │ │ │ │ ├── libquarantine.dylib │ │ │ │ │ ├── libremovefile.dylib │ │ │ │ │ ├── libsystem_asl.dylib │ │ │ │ │ ├── libsystem_blocks.dylib │ │ │ │ │ ├── libsystem_c.dylib │ │ │ │ │ ├── libsystem_configuration.dylib │ │ │ │ │ ├── libsystem_coreservices.dylib │ │ │ │ │ ├── libsystem_coretls.dylib │ │ │ │ │ ├── libsystem_darwin.dylib │ │ │ │ │ ├── libsystem_dnssd.dylib │ │ │ │ │ ├── libsystem_duct.dylib │ │ │ │ │ ├── libsystem_info.dylib │ │ │ │ │ ├── libsystem_kernel.dylib │ │ │ │ │ ├── libsystem_m.dylib │ │ │ │ │ ├── libsystem_malloc.dylib │ │ │ │ │ ├── libsystem_networkextension.dylib │ │ │ │ │ ├── libsystem_notify.dylib │ │ │ │ │ ├── libsystem_platform.dylib │ │ │ │ │ ├── libsystem_pthread.dylib │ │ │ │ │ ├── libsystem_sandbox.dylib │ │ │ │ │ ├── libsystem_trace.dylib │ │ │ │ │ ├── libunwind.dylib │ │ │ │ │ └── libxpc.dylib │ │ │ │ └── local │ │ │ │ ├── include │ │ │ │ └── dyld │ │ │ │ │ └── for_dyld_priv.inc │ │ │ │ └── libexec │ │ │ │ └── availability.pl │ │ │ ├── MacOSX10.13.sdk │ │ │ └── macosx.internal.sdk │ │ │ └── SDKSettings.plist │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── ResourceRules.plist │ │ ├── macOS.icns │ │ └── version.plist ├── TODO.md ├── Toolchains │ └── XcodeDefault.xctoolchain │ │ ├── ToolchainInfo.plist │ │ └── usr │ │ ├── bin │ │ ├── clang │ │ ├── clang++ │ │ ├── dsymutil │ │ ├── ld │ │ └── xcrun │ │ └── include │ │ ├── FlexLexer.h │ │ ├── c++ │ │ └── v1 │ │ │ ├── __bit_reference │ │ │ ├── __bsd_locale_defaults.h │ │ │ ├── __bsd_locale_fallbacks.h │ │ │ ├── __config │ │ │ ├── __debug │ │ │ ├── __functional_03 │ │ │ ├── __functional_base │ │ │ ├── __functional_base_03 │ │ │ ├── __hash_table │ │ │ ├── __libcpp_version │ │ │ ├── __locale │ │ │ ├── __mutex_base │ │ │ ├── __nullptr │ │ │ ├── __split_buffer │ │ │ ├── __sso_allocator │ │ │ ├── __std_stream │ │ │ ├── __string │ │ │ ├── __threading_support │ │ │ ├── __tree │ │ │ ├── __tuple │ │ │ ├── __undef_macros │ │ │ ├── algorithm │ │ │ ├── array │ │ │ ├── atomic │ │ │ ├── bitset │ │ │ ├── cassert │ │ │ ├── ccomplex │ │ │ ├── cctype │ │ │ ├── cerrno │ │ │ ├── cfenv │ │ │ ├── cfloat │ │ │ ├── chrono │ │ │ ├── cinttypes │ │ │ ├── ciso646 │ │ │ ├── climits │ │ │ ├── clocale │ │ │ ├── cmath │ │ │ ├── codecvt │ │ │ ├── complex │ │ │ ├── complex.h │ │ │ ├── condition_variable │ │ │ ├── csetjmp │ │ │ ├── csignal │ │ │ ├── cstdarg │ │ │ ├── cstdbool │ │ │ ├── cstddef │ │ │ ├── cstdint │ │ │ ├── cstdio │ │ │ ├── cstdlib │ │ │ ├── cstring │ │ │ ├── ctgmath │ │ │ ├── ctime │ │ │ ├── ctype.h │ │ │ ├── cwchar │ │ │ ├── cwctype │ │ │ ├── deque │ │ │ ├── errno.h │ │ │ ├── exception │ │ │ ├── experimental │ │ │ ├── __config │ │ │ ├── __memory │ │ │ ├── algorithm │ │ │ ├── any │ │ │ ├── chrono │ │ │ ├── coroutine │ │ │ ├── deque │ │ │ ├── dynarray │ │ │ ├── forward_list │ │ │ ├── functional │ │ │ ├── iterator │ │ │ ├── list │ │ │ ├── map │ │ │ ├── memory_resource │ │ │ ├── numeric │ │ │ ├── optional │ │ │ ├── propagate_const │ │ │ ├── ratio │ │ │ ├── regex │ │ │ ├── set │ │ │ ├── string │ │ │ ├── string_view │ │ │ ├── system_error │ │ │ ├── tuple │ │ │ ├── type_traits │ │ │ ├── unordered_map │ │ │ ├── unordered_set │ │ │ ├── utility │ │ │ └── vector │ │ │ ├── ext │ │ │ ├── __hash │ │ │ ├── hash_map │ │ │ └── hash_set │ │ │ ├── float.h │ │ │ ├── forward_list │ │ │ ├── fstream │ │ │ ├── functional │ │ │ ├── future │ │ │ ├── initializer_list │ │ │ ├── inttypes.h │ │ │ ├── iomanip │ │ │ ├── ios │ │ │ ├── iosfwd │ │ │ ├── iostream │ │ │ ├── istream │ │ │ ├── iterator │ │ │ ├── limits │ │ │ ├── limits.h │ │ │ ├── list │ │ │ ├── locale │ │ │ ├── locale.h │ │ │ ├── map │ │ │ ├── math.h │ │ │ ├── memory │ │ │ ├── module.modulemap │ │ │ ├── mutex │ │ │ ├── new │ │ │ ├── numeric │ │ │ ├── ostream │ │ │ ├── queue │ │ │ ├── random │ │ │ ├── ratio │ │ │ ├── regex │ │ │ ├── scoped_allocator │ │ │ ├── set │ │ │ ├── setjmp.h │ │ │ ├── shared_mutex │ │ │ ├── sstream │ │ │ ├── stack │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdexcept │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── streambuf │ │ │ ├── string │ │ │ ├── string.h │ │ │ ├── string_view │ │ │ ├── strstream │ │ │ ├── system_error │ │ │ ├── tgmath.h │ │ │ ├── thread │ │ │ ├── tuple │ │ │ ├── type_traits │ │ │ ├── typeindex │ │ │ ├── typeinfo │ │ │ ├── unordered_map │ │ │ ├── unordered_set │ │ │ ├── utility │ │ │ ├── valarray │ │ │ ├── vector │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ └── swift │ │ └── SwiftRemoteMirror │ │ ├── MemoryReaderInterface.h │ │ ├── SwiftRemoteMirror.h │ │ └── SwiftRemoteMirrorTypes.h ├── symlinks.sh └── usr │ └── bin │ ├── git │ ├── xcodebuild │ └── xcrun ├── LICENSE ├── README.md ├── basic-headers ├── AssertMacros.h ├── Availability.h ├── AvailabilityInternal.h ├── AvailabilityMacros.h ├── AvailabilityVersions.h ├── ConditionalMacros.h ├── MacTypes.h ├── TargetConditionals.h └── architecture ├── ci ├── Debian.Dockerfile ├── Jenkinsfile ├── RPM.Dockerfile └── top.Dockerfile ├── cmake ├── FindFFmpeg.cmake ├── FindPulseAudio.cmake ├── FindSetcap.cmake ├── InstallSymlink.cmake ├── MacroEnsureOutOfSourceBuild.cmake ├── architecture.cmake ├── clang_version_check.cmake ├── compiler_include.cmake ├── create_symlink.cmake ├── darling_bundle.cmake ├── darling_exe.cmake ├── darling_framework.cmake ├── darling_lib.cmake ├── darling_open_source_sdk.cmake ├── darling_parse_components.cmake ├── darling_static_lib.cmake ├── dsym.cmake ├── mig.cmake ├── pyc.cmake ├── setcap.cmake ├── use_ld64.cmake ├── versioner.cmake ├── wrap_elf.cmake └── xcproj.cmake ├── debian ├── compat ├── control ├── copyright ├── darling-cli-devenv-gui-common.install ├── darling-cli-devenv-gui-stubs-common.install ├── darling-cli-devenv.install ├── darling-cli-extra.install ├── darling-cli-gui-common.install ├── darling-cli-python-common.install ├── darling-cli.install ├── darling-core.install ├── darling-core.postinst ├── darling-core.prerm ├── darling-ffi.install ├── darling-gui-stubs.install ├── darling-gui.install ├── darling-iokitd-cli-devenv-gui-common.install ├── darling-iokitd.install ├── darling-iosurface.install ├── darling-jsc-webkit-common.install ├── darling-jsc.install ├── darling-perl.install ├── darling-pyobjc.install ├── darling-python2.install ├── darling-ruby.install ├── darling-system.install ├── darling.lintian-overrides ├── rules └── source │ └── format ├── etc └── resolv.conf ├── framework-include ├── AE ├── AGL ├── ATS ├── AVFoundation ├── AVKit ├── Accelerate ├── Accounts ├── AddressBook ├── AppKit ├── ApplicationServices ├── AudioToolbox ├── AudioUnit ├── AudioVideoBridging ├── AuthenticationServices ├── Automator ├── CFNetwork ├── CFOpenDirectory ├── CalendarStore ├── Carbon ├── CarbonCore ├── CloudKit ├── Cocoa ├── Collaboration ├── ColorSync ├── ColorSyncLegacy ├── CommonPanels ├── Contacts ├── ContactsUI ├── CoreAudio ├── CoreAudioKit ├── CoreBluetooth ├── CoreData ├── CoreFoundation ├── CoreGraphics ├── CoreImage ├── CoreLocation ├── CoreMIDI ├── CoreMedia ├── CoreMediaIO ├── CoreServices ├── CoreTelephony ├── CoreText ├── CoreVideo ├── CoreWLAN ├── CryptoTokenKit ├── DictionaryServices ├── DirectoryService ├── DiscRecording ├── DiscRecordingUI ├── DiskArbitration ├── DrawSprocket ├── EventKit ├── ExceptionHandling ├── FSEvents ├── ForceFeedback ├── Foundation ├── GLKit ├── GSS ├── GameController ├── HIServices ├── HIToolbox ├── Help ├── IOBluetooth ├── IOBluetoothUI ├── IOKit ├── IOSurface ├── ImageCapture ├── ImageCaptureCore ├── ImageIO ├── ImageKit ├── Ink ├── InputMethodKit ├── InstantMessage ├── JavaNativeFoundation ├── JavaRuntimeSupport ├── JavaScriptCore ├── JavaVM ├── Kerberos ├── Kernel ├── LDAP ├── LangAnalysis ├── LaunchServices ├── LocalAuthentication ├── MapKit ├── MediaAccessibility ├── MediaToolbox ├── Metadata ├── Metal ├── MetalKit ├── MetalPerformanceShaders ├── ModelIO ├── MultipeerConnectivity ├── NetFS ├── Network ├── OSAKit ├── OSServices ├── Onyx2D ├── OpenAL ├── OpenCL ├── OpenDirectory ├── OpenGL ├── OpenScripting ├── PCSC ├── PDFKit ├── Photos ├── Print ├── PrintCore ├── QD ├── QTKit ├── Quartz ├── QuartzComposer ├── QuartzCore ├── QuartzFilters ├── QuickLook ├── Ruby ├── SceneKit ├── ScreenSaver ├── ScriptingBridge ├── SearchKit ├── Security ├── SecurityFoundation ├── SecurityHI ├── SecurityInterface ├── ServiceManagement ├── SharedFileList ├── ShazamKit ├── Speech ├── SpeechRecognition ├── SpeechSynthesis ├── SpriteKit ├── StoreKit ├── SyncServices ├── System ├── SystemConfiguration ├── UniformTypeIdentifiers ├── UserNotifications ├── VideoDecodeAcceleration ├── VideoToolbox ├── Vision └── WebKit ├── framework-private-include ├── AppleAccount ├── AppleFSCompression ├── AppleSauce ├── AppleSystemInfo ├── AssertionServices ├── AssetCacheServices ├── AssistantServices ├── AuthKit ├── AuthKitUI ├── Bom ├── CommonAuth ├── ConfigurationProfiles ├── CoreAnalytics ├── CoreSimulator ├── CoreSymbolication ├── CoreUI ├── CoreUtils ├── CrashReporterSupport ├── DataDetectors ├── DataDetectorsCore ├── DataDetectorsNaturalLanguage ├── DebugSymbols ├── DeviceLink ├── DiskImages ├── DiskManagement ├── Espresso ├── Heimdal ├── IOPlatformPluginFamily ├── IconServices ├── InternationalSupport ├── LoggingSupport ├── MobileAsset ├── MobileDevice ├── NetworkStatistics ├── PackageKit ├── PerformanceAnalysis ├── PlugInKit ├── PowerLog ├── ProtocolBuffer ├── SecurityTokend ├── ServerInformation ├── ShazamCore ├── ShazamEvents ├── ShazamInsights ├── ShazamKitUI ├── SkyLight ├── Spotlight ├── SpotlightDaemon ├── SpotlightIndex ├── SpotlightReceiver ├── SpotlightServerKit ├── SpotlightServices ├── StreamingZip ├── TCC ├── TrustedPeers ├── UIFoundation ├── ViewBridge ├── kperf └── login ├── misc └── darling.svg ├── rpm ├── .dockerignore ├── Dockerfile ├── SPECS │ ├── darling-cli-devenv.spec │ ├── darling-macho-deps.spec │ └── darling.spec ├── build.bsh ├── darling.repo ├── docker-compose.yml └── tarup.bsh ├── src ├── CMakeLists.txt ├── CoreAudio │ ├── AFAVFormatComponent │ │ ├── AFPublic │ │ ├── AUPublic │ │ ├── AVFormatFileObject.cpp │ │ ├── AVFormatFileObject.h │ │ ├── AudioFileFormatGeneric.cpp │ │ ├── AudioFileFormatGeneric.h │ │ ├── AudioFileMP3.cpp │ │ ├── AudioFileMP3.h │ │ ├── AudioFileWAV.cpp │ │ ├── AudioFileWAV.h │ │ ├── CMakeLists.txt │ │ ├── PublicUtility │ │ └── README │ ├── AudioFileTools │ │ ├── AudioFileTools.xcodeproj │ │ │ └── project.pbxproj │ │ ├── CMakeLists.txt │ │ ├── PublicUtility │ │ │ ├── CAAudioFile.cpp │ │ │ ├── CAAudioFile.h │ │ │ ├── CAAudioFilePlayer.cpp │ │ │ ├── CAAudioFilePlayer.h │ │ │ ├── CAAudioFileRecorder.cpp │ │ │ ├── CAAudioFileRecorder.h │ │ │ ├── CAAudioFileStreamer.cpp │ │ │ ├── CAAudioFileStreamer.h │ │ │ ├── CABufferQueue.cpp │ │ │ ├── CABufferQueue.h │ │ │ ├── CAChannelMapper.cpp │ │ │ ├── CAChannelMapper.h │ │ │ ├── CAChannelMappingPlayer.cpp │ │ │ ├── CAChannelMappingPlayer.h │ │ │ ├── CAGuard.cpp │ │ │ ├── CAGuard.h │ │ │ ├── CAPThread.cpp │ │ │ ├── CAPThread.h │ │ │ └── ReadMe.rtf │ │ ├── ReadMe.rtf │ │ ├── Utility │ │ │ ├── AFToolsCommon.cpp │ │ │ ├── AFToolsCommon.h │ │ │ ├── CAAudioFileConverter.cpp │ │ │ ├── CAAudioFileConverter.h │ │ │ ├── CAChannelLayouts.cpp │ │ │ ├── CAChannelLayouts.h │ │ │ ├── CAFilePathUtils.cpp │ │ │ ├── CAFilePathUtils.h │ │ │ ├── QTAACFile.cpp │ │ │ └── QTAACFile.h │ │ ├── afconvert.cpp │ │ ├── afconvert.h │ │ ├── afconvert_main.cpp │ │ ├── afinfo.cpp │ │ ├── afinterleave.cpp │ │ ├── afplay.cpp │ │ ├── afrecord.cpp │ │ ├── audioformats.cpp │ │ ├── auprocess.cpp │ │ └── auprofile.cpp │ ├── AudioToolbox │ │ ├── AUComponent.cpp │ │ ├── AUGraph.cpp │ │ ├── AudioComponent.mm │ │ ├── AudioComponentManager.h │ │ ├── AudioComponentManager.mm │ │ ├── AudioConverter.cpp │ │ ├── AudioConverterImpl.cpp │ │ ├── AudioConverterImpl.h │ │ ├── AudioFile.cpp │ │ ├── AudioFileComponent.cpp │ │ ├── AudioFileFormatManager.cpp │ │ ├── AudioFileFormatManager.h │ │ ├── AudioFormat.cpp │ │ ├── AudioHardwareService.cpp │ │ ├── AudioOutputUnitComponent.cpp │ │ ├── AudioOutputUnitComponent.h │ │ ├── AudioQueue.cpp │ │ ├── AudioQueueBase.cpp │ │ ├── AudioQueueBase.h │ │ ├── AudioQueueOutput.cpp │ │ ├── AudioQueueOutput.h │ │ ├── AudioToolbox.cpp │ │ ├── CMakeLists.txt │ │ ├── ComponentDispatch.h │ │ ├── ConsumableBuffer.h │ │ ├── ExtendedAudioFile.cpp │ │ ├── MusicDevice.cpp │ │ ├── empty.c │ │ └── stub.h │ ├── CMakeLists.txt │ ├── CoreAudio │ │ ├── AudioHardware.cpp │ │ ├── AudioHardwareImpl.cpp │ │ ├── AudioHardwareImpl.h │ │ ├── AudioHardwareStream.cpp │ │ ├── AudioHardwareStream.h │ │ ├── CMakeLists.txt │ │ ├── HostTime.mm │ │ ├── pulse │ │ │ ├── AudioHardwareImplPA.cpp │ │ │ ├── AudioHardwareImplPA.h │ │ │ ├── AudioHardwareImplPAInput.cpp │ │ │ ├── AudioHardwareImplPAInput.h │ │ │ ├── AudioHardwareImplPAOutput.cpp │ │ │ ├── AudioHardwareImplPAOutput.h │ │ │ ├── AudioHardwareStreamPA.cpp │ │ │ ├── AudioHardwareStreamPA.h │ │ │ ├── AudioHardwareStreamPAInput.cpp │ │ │ ├── AudioHardwareStreamPAInput.h │ │ │ ├── AudioHardwareStreamPAOutput.cpp │ │ │ ├── AudioHardwareStreamPAOutput.h │ │ │ ├── PADispatchMainLoop.cpp │ │ │ └── PADispatchMainLoop.h │ │ └── stub.h │ ├── CoreAudioComponent │ │ ├── AUHAL.cpp │ │ ├── AUHAL.h │ │ ├── AUPublic │ │ ├── CMakeLists.txt │ │ ├── CoreAudio.rsrc │ │ ├── CoreAudioComponent.r │ │ ├── DefaultOutputAU.cpp │ │ ├── DefaultOutputAU.h │ │ ├── Info.plist │ │ ├── PublicUtility │ │ ├── README │ │ ├── SystemOutputAU.cpp │ │ └── SystemOutputAU.h │ ├── CoreAudioUtilityClasses │ │ ├── CoreAudio │ │ │ ├── AudioCodecs │ │ │ │ └── ACPublic │ │ │ │ │ ├── ACBaseCodec.cpp │ │ │ │ │ ├── ACBaseCodec.h │ │ │ │ │ ├── ACCodec.cpp │ │ │ │ │ ├── ACCodec.h │ │ │ │ │ ├── ACCodecDispatchTypes.h │ │ │ │ │ ├── ACComponentResources.r │ │ │ │ │ ├── ACConditionalMacros.h │ │ │ │ │ ├── ACPlugInDispatch.cpp │ │ │ │ │ ├── ACPlugInDispatch.h │ │ │ │ │ ├── ACSimpleCodec.cpp │ │ │ │ │ ├── ACSimpleCodec.h │ │ │ │ │ ├── GetCodecBundle.cpp │ │ │ │ │ └── GetCodecBundle.h │ │ │ ├── AudioFile │ │ │ │ └── AFPublic │ │ │ │ │ ├── AudioFileComponentBase.cpp │ │ │ │ │ ├── AudioFileComponentBase.h │ │ │ │ │ ├── AudioFileFormat.cpp │ │ │ │ │ ├── AudioFileFormat.h │ │ │ │ │ ├── AudioFileObject.cpp │ │ │ │ │ ├── AudioFileObject.h │ │ │ │ │ ├── CompressedPacketTable.cpp │ │ │ │ │ ├── CompressedPacketTable.h │ │ │ │ │ ├── DataSource.cpp │ │ │ │ │ └── DataSource.h │ │ │ ├── AudioUnits │ │ │ │ └── AUPublic │ │ │ │ │ ├── AUBase │ │ │ │ │ ├── AUBase.cpp │ │ │ │ │ ├── AUBase.h │ │ │ │ │ ├── AUDispatch.cpp │ │ │ │ │ ├── AUDispatch.h │ │ │ │ │ ├── AUInputElement.cpp │ │ │ │ │ ├── AUInputElement.h │ │ │ │ │ ├── AUOutputElement.cpp │ │ │ │ │ ├── AUOutputElement.h │ │ │ │ │ ├── AUPlugInDispatch.cpp │ │ │ │ │ ├── AUPlugInDispatch.h │ │ │ │ │ ├── AUResources.r │ │ │ │ │ ├── AUScopeElement.cpp │ │ │ │ │ ├── AUScopeElement.h │ │ │ │ │ ├── ComponentBase.cpp │ │ │ │ │ └── ComponentBase.h │ │ │ │ │ ├── AUCarbonViewBase │ │ │ │ │ ├── AUCarbonViewBase.cpp │ │ │ │ │ ├── AUCarbonViewBase.h │ │ │ │ │ ├── AUCarbonViewControl.cpp │ │ │ │ │ ├── AUCarbonViewControl.h │ │ │ │ │ ├── AUCarbonViewDispatch.cpp │ │ │ │ │ ├── AUControlGroup.cpp │ │ │ │ │ ├── AUControlGroup.h │ │ │ │ │ ├── CarbonEventHandler.cpp │ │ │ │ │ └── CarbonEventHandler.h │ │ │ │ │ ├── AUInstrumentBase │ │ │ │ │ ├── AUInstrumentBase.cpp │ │ │ │ │ ├── AUInstrumentBase.h │ │ │ │ │ ├── LockFreeFIFO.h │ │ │ │ │ ├── MIDIControlHandler.h │ │ │ │ │ ├── SynthElement.cpp │ │ │ │ │ ├── SynthElement.h │ │ │ │ │ ├── SynthEvent.h │ │ │ │ │ ├── SynthNote.cpp │ │ │ │ │ ├── SynthNote.h │ │ │ │ │ ├── SynthNoteList.cpp │ │ │ │ │ └── SynthNoteList.h │ │ │ │ │ ├── AUViewBase │ │ │ │ │ └── AUViewLocalizedStringKeys.h │ │ │ │ │ ├── OtherBases │ │ │ │ │ ├── AUEffectBase.cpp │ │ │ │ │ ├── AUEffectBase.h │ │ │ │ │ ├── AUMIDIBase.cpp │ │ │ │ │ ├── AUMIDIBase.h │ │ │ │ │ ├── AUMIDIEffectBase.cpp │ │ │ │ │ ├── AUMIDIEffectBase.h │ │ │ │ │ ├── AUOutputBase.cpp │ │ │ │ │ ├── AUOutputBase.h │ │ │ │ │ ├── AUPannerBase.cpp │ │ │ │ │ ├── AUPannerBase.h │ │ │ │ │ ├── MusicDeviceBase.cpp │ │ │ │ │ └── MusicDeviceBase.h │ │ │ │ │ └── Utility │ │ │ │ │ ├── AUBaseHelper.cpp │ │ │ │ │ ├── AUBaseHelper.h │ │ │ │ │ ├── AUBuffer.cpp │ │ │ │ │ ├── AUBuffer.h │ │ │ │ │ ├── AUInputFormatConverter.h │ │ │ │ │ ├── AUMIDIDefs.h │ │ │ │ │ ├── AUSilentTimeout.h │ │ │ │ │ ├── AUTimestampGenerator.cpp │ │ │ │ │ └── AUTimestampGenerator.h │ │ │ └── PublicUtility │ │ │ │ ├── AUOutputBL.cpp │ │ │ │ ├── AUOutputBL.h │ │ │ │ ├── AUParamInfo.cpp │ │ │ │ ├── AUParamInfo.h │ │ │ │ ├── CAAUMIDIMap.cpp │ │ │ │ ├── CAAUMIDIMap.h │ │ │ │ ├── CAAUMIDIMapManager.cpp │ │ │ │ ├── CAAUMIDIMapManager.h │ │ │ │ ├── CAAUParameter.cpp │ │ │ │ ├── CAAUParameter.h │ │ │ │ ├── CAAUProcessor.cpp │ │ │ │ ├── CAAUProcessor.h │ │ │ │ ├── CAAtomic.h │ │ │ │ ├── CAAtomicStack.h │ │ │ │ ├── CAAudioBufferList.cpp │ │ │ │ ├── CAAudioBufferList.h │ │ │ │ ├── CAAudioChannelLayout.cpp │ │ │ │ ├── CAAudioChannelLayout.h │ │ │ │ ├── CAAudioChannelLayoutObject.cpp │ │ │ │ ├── CAAudioFileFormats.cpp │ │ │ │ ├── CAAudioFileFormats.h │ │ │ │ ├── CAAudioTimeStamp.cpp │ │ │ │ ├── CAAudioTimeStamp.h │ │ │ │ ├── CAAudioUnit.cpp │ │ │ │ ├── CAAudioUnit.h │ │ │ │ ├── CAAudioUnitOutputCapturer.h │ │ │ │ ├── CAAudioValueRange.cpp │ │ │ │ ├── CAAudioValueRange.h │ │ │ │ ├── CAAutoDisposer.h │ │ │ │ ├── CABitOperations.h │ │ │ │ ├── CABool.h │ │ │ │ ├── CABufferList.cpp │ │ │ │ ├── CABufferList.h │ │ │ │ ├── CABundleLocker.cpp │ │ │ │ ├── CABundleLocker.h │ │ │ │ ├── CAByteOrder.h │ │ │ │ ├── CACFArray.cpp │ │ │ │ ├── CACFArray.h │ │ │ │ ├── CACFData.h │ │ │ │ ├── CACFDictionary.cpp │ │ │ │ ├── CACFDictionary.h │ │ │ │ ├── CACFDistributedNotification.cpp │ │ │ │ ├── CACFDistributedNotification.h │ │ │ │ ├── CACFMachPort.cpp │ │ │ │ ├── CACFMachPort.h │ │ │ │ ├── CACFMessagePort.cpp │ │ │ │ ├── CACFMessagePort.h │ │ │ │ ├── CACFNumber.cpp │ │ │ │ ├── CACFNumber.h │ │ │ │ ├── CACFObject.h │ │ │ │ ├── CACFPlugIn.h │ │ │ │ ├── CACFPreferences.cpp │ │ │ │ ├── CACFPreferences.h │ │ │ │ ├── CACFString.cpp │ │ │ │ ├── CACFString.h │ │ │ │ ├── CAComponent.cpp │ │ │ │ ├── CAComponent.h │ │ │ │ ├── CAComponentDescription.cpp │ │ │ │ ├── CAComponentDescription.h │ │ │ │ ├── CADebugMacros.cpp │ │ │ │ ├── CADebugMacros.h │ │ │ │ ├── CADebugPrintf.cpp │ │ │ │ ├── CADebugPrintf.h │ │ │ │ ├── CADebugger.cpp │ │ │ │ ├── CADebugger.h │ │ │ │ ├── CAException.h │ │ │ │ ├── CAExtAudioFile.h │ │ │ │ ├── CAFilePathUtils.cpp │ │ │ │ ├── CAFilePathUtils.h │ │ │ │ ├── CAGuard.cpp │ │ │ │ ├── CAGuard.h │ │ │ │ ├── CAHALAudioDevice.cpp │ │ │ │ ├── CAHALAudioDevice.h │ │ │ │ ├── CAHALAudioObject.cpp │ │ │ │ ├── CAHALAudioObject.h │ │ │ │ ├── CAHALAudioStream.cpp │ │ │ │ ├── CAHALAudioStream.h │ │ │ │ ├── CAHALAudioSystemObject.cpp │ │ │ │ ├── CAHALAudioSystemObject.h │ │ │ │ ├── CAHostTimeBase.cpp │ │ │ │ ├── CAHostTimeBase.h │ │ │ │ ├── CALogMacros.h │ │ │ │ ├── CAMath.h │ │ │ │ ├── CAMixMap.h │ │ │ │ ├── CAMutex.cpp │ │ │ │ ├── CAMutex.h │ │ │ │ ├── CAPThread.cpp │ │ │ │ ├── CAPThread.h │ │ │ │ ├── CAPersistence.cpp │ │ │ │ ├── CAProcess.cpp │ │ │ │ ├── CAProcess.h │ │ │ │ ├── CAPropertyAddress.h │ │ │ │ ├── CAReferenceCounted.h │ │ │ │ ├── CARingBuffer.cpp │ │ │ │ ├── CARingBuffer.h │ │ │ │ ├── CASettingsStorage.cpp │ │ │ │ ├── CASettingsStorage.h │ │ │ │ ├── CASharedLibrary.cpp │ │ │ │ ├── CASharedLibrary.h │ │ │ │ ├── CASpectralProcessor.cpp │ │ │ │ ├── CASpectralProcessor.h │ │ │ │ ├── CAStreamBasicDescription.cpp │ │ │ │ ├── CAStreamBasicDescription.h │ │ │ │ ├── CAStreamRangedDescription.cpp │ │ │ │ ├── CAStreamRangedDescription.h │ │ │ │ ├── CAThreadSafeList.h │ │ │ │ ├── CATink.h │ │ │ │ ├── CATokenMap.h │ │ │ │ ├── CAVectorUnit.cpp │ │ │ │ ├── CAVectorUnit.h │ │ │ │ ├── CAVectorUnitTypes.h │ │ │ │ ├── CAVolumeCurve.cpp │ │ │ │ ├── CAVolumeCurve.h │ │ │ │ ├── CAXException.cpp │ │ │ │ ├── CAXException.h │ │ │ │ ├── MatrixMixerVolumes.cpp │ │ │ │ └── MatrixMixerVolumes.h │ │ └── Readme.rtf │ ├── include │ │ ├── AudioToolbox │ │ │ ├── AUComponent.h │ │ │ ├── AUGraph.h │ │ │ ├── AudioCodec.h │ │ │ ├── AudioComponent.h │ │ │ ├── AudioConverter.h │ │ │ ├── AudioFile.h │ │ │ ├── AudioFileComponent.h │ │ │ ├── AudioFormat.h │ │ │ ├── AudioHardwareService.h │ │ │ ├── AudioOutputUnit.h │ │ │ ├── AudioQueue.h │ │ │ ├── AudioToolbox.h │ │ │ ├── AudioUnit.h │ │ │ ├── AudioUnitParameters.h │ │ │ ├── AudioUnitProperties.h │ │ │ ├── ExtendedAudioFile.h │ │ │ └── MusicDevice.h │ │ ├── AudioUnit │ │ └── CoreAudio │ │ │ ├── AudioHardware.h │ │ │ ├── AudioHardwareBase.h │ │ │ ├── CoreAudio.h │ │ │ ├── CoreAudioTypes.h │ │ │ ├── HostTime.h │ │ │ └── stub │ │ │ └── CoreAudio.h │ └── notes.txt ├── MobileKeyBag │ ├── CMakeLists.txt │ ├── include │ │ └── MobileKeyBag │ │ │ └── MobileKeyBag.h │ └── src │ │ └── MobileKeyBag.c ├── OpenDirectoryOld │ ├── CFOpenDirectory │ │ ├── CFOpenDirectory │ │ └── Headers │ │ │ ├── CFODContext.h │ │ │ ├── CFODNode.h │ │ │ ├── CFODQuery.h │ │ │ ├── CFODRecord.h │ │ │ ├── CFODSession.h │ │ │ ├── CFOpenDirectory.h │ │ │ └── CFOpenDirectoryConstants.h │ ├── Headers │ │ ├── NSOpenDirectory.h │ │ ├── ODAttributeMap.h │ │ ├── ODConfiguration.h │ │ ├── ODMappings.h │ │ ├── ODModuleEntry.h │ │ ├── ODNode.h │ │ ├── ODQuery.h │ │ ├── ODRecord.h │ │ ├── ODRecordMap.h │ │ ├── ODSession.h │ │ └── OpenDirectory.h │ └── OpenDirectory ├── OpenScripting │ └── include │ │ └── OpenScriptingUtilPriv.h ├── PlistBuddy │ ├── CMakeLists.txt │ ├── PlistBuddy.8 │ └── PlistBuddy.c ├── VideoDecodeAcceleration │ ├── CMakeLists.txt │ └── dummy.c ├── bsdln │ ├── CMakeLists.txt │ └── ln.c ├── buildtools │ ├── CMakeLists.txt │ ├── Rez │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Diagnostic.cc │ │ ├── Diagnostic.h │ │ ├── Expression.cc │ │ ├── Expression.h │ │ ├── README.md │ │ ├── ResSpec.h │ │ ├── ResourceCompiler.cc │ │ ├── ResourceCompiler.h │ │ ├── ResourceDefinitions.cc │ │ ├── ResourceDefinitions.h │ │ ├── ResourceFiles │ │ │ ├── BinaryIO.cc │ │ │ ├── BinaryIO.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ResInfo.cc │ │ │ ├── ResType.cc │ │ │ ├── ResType.h │ │ │ ├── ResourceFile.cc │ │ │ ├── ResourceFile.h │ │ │ ├── ResourceFork.cc │ │ │ └── ResourceFork.h │ │ ├── Rez.cc │ │ ├── RezLexer.cc │ │ ├── RezLexer.h │ │ ├── RezLexerNextToken.cc │ │ ├── RezLexerWaveToken.h │ │ ├── RezParser.yy │ │ ├── RezWorld.cc │ │ ├── RezWorld.h │ │ └── Test.r │ ├── elfdep.c │ └── getuuid.c ├── clt │ ├── CMakeLists.txt │ └── xcrun.c ├── configd │ ├── APPLE_LICENSE │ ├── EventFactory │ │ ├── EventFactory.h │ │ ├── EventFactory.m │ │ ├── IPConfigurationParser.h │ │ ├── IPConfigurationParser.m │ │ ├── IPMonitorParser.h │ │ ├── IPMonitorParser.m │ │ ├── Info.plist │ │ ├── InterfaceNamerParser.h │ │ ├── InterfaceNamerParser.m │ │ ├── KernelEventMonitorParser.h │ │ ├── KernelEventMonitorParser.m │ │ ├── PreferencesMonitorParser.h │ │ ├── PreferencesMonitorParser.m │ │ ├── SCLogParser.h │ │ ├── SCLogParser.m │ │ ├── StateDumpParser.h │ │ └── StateDumpParser.m │ ├── IPMonitorControl │ │ ├── AWD │ │ │ ├── AWDIPMonitorGlobalEnums.h │ │ │ ├── AWDIPMonitorInterfaceAdvisoryReport.h │ │ │ ├── AWDIPMonitorInterfaceAdvisoryReport.m │ │ │ ├── AWDMetricIds_IPMonitor.h │ │ │ └── AwdMetadata-0x81-IPMonitor.bin │ │ ├── IPMonitorAWDReport.h │ │ ├── IPMonitorAWDReport.m │ │ ├── IPMonitorControl.c │ │ ├── IPMonitorControl.h │ │ ├── IPMonitorControlPrivate.h │ │ ├── IPMonitorControlServer.c │ │ ├── IPMonitorControlServer.h │ │ ├── awdgen.yaml │ │ ├── main.c │ │ ├── symbol_scope.h │ │ └── test_rank.sh │ ├── IPMonitorLogging.mobileconfig │ ├── Plugins │ │ ├── IPMonitor │ │ │ ├── Info-EmbeddedSimulator.plist │ │ │ ├── Info.plist │ │ │ ├── agent-monitor.h │ │ │ ├── agent-monitor.m │ │ │ ├── configAgent.h │ │ │ ├── configAgent.m │ │ │ ├── configAgentDefines.h │ │ │ ├── controller.h │ │ │ ├── controller.m │ │ │ ├── dns-configuration.c │ │ │ ├── dns-configuration.h │ │ │ ├── dnsAgent.h │ │ │ ├── dnsAgent.m │ │ │ ├── ip_plugin.c │ │ │ ├── ip_plugin.h │ │ │ ├── nat64-configuration.c │ │ │ ├── nat64-configuration.h │ │ │ ├── proxy-configuration.c │ │ │ ├── proxy-configuration.h │ │ │ ├── proxyAgent.h │ │ │ ├── proxyAgent.m │ │ │ ├── routelist_output_filter.sh │ │ │ ├── serviceIDNumber.c │ │ │ ├── serviceIDNumber.h │ │ │ ├── set-hostname.c │ │ │ ├── set-hostname.h │ │ │ ├── smb-configuration.c │ │ │ ├── smb-configuration.h │ │ │ ├── test_ipv4_routelist_reference.txt │ │ │ ├── test_ipv6_routelist_reference.txt │ │ │ └── test_reference.sh │ │ ├── InterfaceNamer │ │ │ ├── Info.plist │ │ │ └── ifnamer.c │ │ ├── KernelEventMonitor │ │ │ ├── Info.plist │ │ │ ├── ev_dlil.c │ │ │ ├── ev_dlil.h │ │ │ ├── ev_extra.h │ │ │ ├── ev_extra.m │ │ │ ├── ev_ipv4.c │ │ │ ├── ev_ipv4.h │ │ │ ├── ev_ipv6.c │ │ │ ├── ev_ipv6.h │ │ │ ├── eventmon.c │ │ │ └── eventmon.h │ │ ├── LinkConfiguration │ │ │ ├── Info.plist │ │ │ └── linkconfig.c │ │ ├── PreferencesMonitor │ │ │ ├── Info.plist │ │ │ └── prefsmon.c │ │ ├── QoSMarking │ │ │ ├── Info-Embedded.plist │ │ │ ├── Info.plist │ │ │ └── qos-marking.m │ │ ├── SimulatorSupport │ │ │ ├── Info.plist │ │ │ └── simulator_support.c │ │ └── common │ │ │ ├── IPMonitorControlPrefs.c │ │ │ ├── IPMonitorControlPrefs.h │ │ │ ├── InterfaceNamerControlPrefs.c │ │ │ ├── InterfaceNamerControlPrefs.h │ │ │ └── plugin_shared.h │ ├── SCMonitor │ │ ├── Info.plist │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ └── monitor.c │ ├── SCTest-ObjC │ │ └── test-objC.m │ ├── SCTest-Swift │ │ └── main.swift │ ├── SystemConfiguration.fproj │ │ ├── BondConfiguration.c │ │ ├── BridgeConfiguration.c │ │ ├── CaptiveNetwork.c │ │ ├── CaptiveNetwork.h │ │ ├── DHCP.c │ │ ├── DHCPClientPreferences.h │ │ ├── Info-Embedded.plist │ │ ├── Info.plist │ │ ├── LinkConfiguration.c │ │ ├── Modules │ │ │ ├── SystemConfiguration.modulemap │ │ │ └── SystemConfiguration.private.modulemap │ │ ├── NetworkConfiguration.plist │ │ ├── SCD.c │ │ ├── SCD.h │ │ ├── SCDAdd.c │ │ ├── SCDCache.c │ │ ├── SCDConsoleUser.c │ │ ├── SCDGet.c │ │ ├── SCDHostName.c │ │ ├── SCDKeys.c │ │ ├── SCDList.c │ │ ├── SCDNotifierAdd.c │ │ ├── SCDNotifierCancel.c │ │ ├── SCDNotifierGetChanges.c │ │ ├── SCDNotifierInformViaCallback.c │ │ ├── SCDNotifierInformViaFD.c │ │ ├── SCDNotifierRemove.c │ │ ├── SCDNotifierSetKeys.c │ │ ├── SCDNotifierWait.c │ │ ├── SCDNotify.c │ │ ├── SCDOpen.c │ │ ├── SCDPlugin.c │ │ ├── SCDPlugin.h │ │ ├── SCDPrivate.c │ │ ├── SCDRemove.c │ │ ├── SCDSet.c │ │ ├── SCDSnapshot.c │ │ ├── SCDynamicStore.h │ │ ├── SCDynamicStoreCopyDHCPInfo.h │ │ ├── SCDynamicStoreCopySpecific.h │ │ ├── SCDynamicStoreCopySpecificPrivate.h │ │ ├── SCDynamicStoreInternal.h │ │ ├── SCDynamicStoreKey.h │ │ ├── SCDynamicStorePrivate.h │ │ ├── SCDynamicStoreSetSpecificPrivate.h │ │ ├── SCLocation.c │ │ ├── SCNetwork.c │ │ ├── SCNetwork.h │ │ ├── SCNetworkConfiguration.h │ │ ├── SCNetworkConfigurationInternal.c │ │ ├── SCNetworkConfigurationInternal.h │ │ ├── SCNetworkConfigurationPrivate.h │ │ ├── SCNetworkConnection.c │ │ ├── SCNetworkConnection.h │ │ ├── SCNetworkConnectionInternal.h │ │ ├── SCNetworkConnectionPrivate.c │ │ ├── SCNetworkConnectionPrivate.h │ │ ├── SCNetworkInterface.c │ │ ├── SCNetworkInterfaceProvider.c │ │ ├── SCNetworkInterfaceProvider.h │ │ ├── SCNetworkMigration.c │ │ ├── SCNetworkProtocol.c │ │ ├── SCNetworkReachability.c │ │ ├── SCNetworkReachability.h │ │ ├── SCNetworkReachabilityInternal.h │ │ ├── SCNetworkReachabilityLogging.h │ │ ├── SCNetworkService.c │ │ ├── SCNetworkSet.c │ │ ├── SCNetworkSignature.c │ │ ├── SCNetworkSignature.h │ │ ├── SCNetworkSignaturePrivate.h │ │ ├── SCP.c │ │ ├── SCPAdd.c │ │ ├── SCPApply.c │ │ ├── SCPCommit.c │ │ ├── SCPGet.c │ │ ├── SCPList.c │ │ ├── SCPLock.c │ │ ├── SCPOpen.c │ │ ├── SCPPath.c │ │ ├── SCPRemove.c │ │ ├── SCPSet.c │ │ ├── SCPUnlock.c │ │ ├── SCPreferences.h │ │ ├── SCPreferencesGetSpecificPrivate.h │ │ ├── SCPreferencesInternal.h │ │ ├── SCPreferencesKeychainPrivate.c │ │ ├── SCPreferencesKeychainPrivate.h │ │ ├── SCPreferencesPath.h │ │ ├── SCPreferencesPathKey.c │ │ ├── SCPreferencesPathKey.h │ │ ├── SCPreferencesPrivate.h │ │ ├── SCPreferencesSetSpecific.h │ │ ├── SCPreferencesSetSpecificPrivate.h │ │ ├── SCPrivate.h │ │ ├── SCProxies.c │ │ ├── SCSchemaDefinitions.c │ │ ├── SCSchemaDefinitions.h │ │ ├── SCSchemaDefinitionsPrivate.h │ │ ├── SCValidation.h │ │ ├── SNHelper.c │ │ ├── SNHelperPrivate.h │ │ ├── SystemConfiguration.h │ │ ├── SystemConfigurationInternal.h │ │ ├── VLANConfiguration.c │ │ ├── VPNAppLayer.c │ │ ├── VPNAppLayerPrivate.h │ │ ├── VPNConfiguration.c │ │ ├── VPNConfiguration.h │ │ ├── VPNFlow.c │ │ ├── VPNFlow.h │ │ ├── VPNPrivate.c │ │ ├── VPNPrivate.h │ │ ├── VPNService.c │ │ ├── VPNTunnel.c │ │ ├── VPNTunnel.h │ │ ├── VPNTunnelPrivate.h │ │ ├── com.apple.SystemConfiguration.plist │ │ ├── config.defs │ │ ├── config_types.h │ │ ├── dy_framework.c │ │ ├── dy_framework.h │ │ ├── en.lproj │ │ │ ├── Localizable.strings │ │ │ └── NetworkInterface.strings │ │ ├── genSCPreferences.c │ │ ├── helper │ │ │ ├── SCHelper_client.c │ │ │ ├── SCHelper_client.h │ │ │ ├── SCHelper_server.c │ │ │ ├── com.apple.SCHelper-embedded.plist │ │ │ ├── com.apple.SCHelper.plist │ │ │ ├── helper.defs │ │ │ └── helper_types.h │ │ ├── pppcontroller.defs │ │ ├── restore-temporary-headers │ │ ├── scprefs_observer.c │ │ └── scprefs_observer.h │ ├── common │ │ └── reference_output.sh │ ├── config-agent-info │ │ ├── config_agent_info.c │ │ └── config_agent_info.h │ ├── configd.tproj │ │ ├── _SCD.c │ │ ├── _SCD.h │ │ ├── _configadd.c │ │ ├── _configclose.c │ │ ├── _configget.c │ │ ├── _configlist.c │ │ ├── _confignotify.c │ │ ├── _configopen.c │ │ ├── _configremove.c │ │ ├── _configset.c │ │ ├── _configunlock.c │ │ ├── _notifyadd.c │ │ ├── _notifycancel.c │ │ ├── _notifychanges.c │ │ ├── _notifyremove.c │ │ ├── _notifyviafd.c │ │ ├── _notifyviaport.c │ │ ├── _snapshot.c │ │ ├── com.apple.configd.plist │ │ ├── com.apple.configd_sim.plist │ │ ├── configd.8 │ │ ├── configd.h │ │ ├── configd.m │ │ ├── configd_server.c │ │ ├── configd_server.h │ │ ├── entitlements-ios.plist │ │ ├── pattern.c │ │ ├── pattern.h │ │ ├── plugin_support.c │ │ ├── plugin_support.h │ │ ├── session.c │ │ ├── session.h │ │ └── update-mach-services │ ├── configd.xcodeproj │ │ └── project.pbxproj │ ├── dnsinfo │ │ ├── dnsinfo.h │ │ ├── dnsinfo_copy.c │ │ ├── dnsinfo_create.c │ │ ├── dnsinfo_create.h │ │ ├── dnsinfo_flatfile.c │ │ ├── dnsinfo_internal.h │ │ ├── dnsinfo_logging.h │ │ ├── dnsinfo_private.h │ │ ├── dnsinfo_server.c │ │ └── dnsinfo_server.h │ ├── get-mobility-info │ ├── get-network-info │ ├── libSystemConfiguration │ │ ├── libSystemConfiguration_client.c │ │ ├── libSystemConfiguration_client.h │ │ ├── libSystemConfiguration_internal.h │ │ ├── libSystemConfiguration_server.c │ │ └── libSystemConfiguration_server.h │ ├── logging │ │ ├── liblog_SystemConfiguration.m │ │ └── liblog_SystemConfiguration_internal.h │ ├── nwi │ │ ├── network_config_agent_info_priv.h │ │ ├── network_information.c │ │ ├── network_information.h │ │ ├── network_information_internal.h │ │ ├── network_information_server.c │ │ ├── network_information_server.h │ │ ├── network_state_information_logging.h │ │ ├── network_state_information_priv.c │ │ ├── network_state_information_priv.h │ │ └── test_nwi_reference.txt │ ├── scselect.tproj │ │ ├── scselect.8 │ │ └── scselect.c │ ├── sctest │ │ ├── SCTest.h │ │ ├── SCTest.m │ │ ├── SCTestConfigAgents.m │ │ ├── SCTestDynamicStore.m │ │ ├── SCTestOptions.h │ │ ├── SCTestOptions.m │ │ ├── SCTestPreferences.m │ │ ├── SCTestReachability.m │ │ ├── SCTestUnitTest.m │ │ ├── SCTestUtils.h │ │ ├── SCTestUtils.m │ │ ├── genSCTestOptions.c │ │ ├── main.m │ │ ├── npt_configd.plist │ │ └── sctest-entitlements.plist │ ├── scutil.tproj │ │ ├── cache.c │ │ ├── cache.h │ │ ├── commands.c │ │ ├── commands.h │ │ ├── dictionary.c │ │ ├── dictionary.h │ │ ├── entitlements.plist │ │ ├── nc.c │ │ ├── nc.h │ │ ├── net.c │ │ ├── net.h │ │ ├── net_interface.c │ │ ├── net_interface.h │ │ ├── net_protocol.c │ │ ├── net_protocol.h │ │ ├── net_service.c │ │ ├── net_service.h │ │ ├── net_set.c │ │ ├── net_set.h │ │ ├── notifications.c │ │ ├── notifications.h │ │ ├── prefs.c │ │ ├── prefs.h │ │ ├── scutil.8 │ │ ├── scutil.c │ │ ├── scutil.h │ │ ├── session.c │ │ ├── session.h │ │ ├── tests.c │ │ └── tests.h │ └── update-sanitizer-dylib-references ├── crash │ ├── AppController.h │ ├── AppController.m │ ├── CMakeLists.txt │ ├── CrashManager.h │ ├── CrashManager.m │ ├── Resources │ │ ├── Info-gnustep.plist │ │ ├── Main.gsmarkup │ │ └── crash.gorm │ │ │ ├── Warning.png │ │ │ ├── data.classes │ │ │ ├── data.info │ │ │ └── objects.gorm │ └── crash_main.m ├── diskutil │ ├── CMakeLists.txt │ └── diskutil ├── ditto │ ├── CMakeLists.txt │ └── ditto ├── duct │ ├── include │ │ ├── CrashReporterClient.h │ │ └── magmallocProvider.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── CRGetCrashLogMessage.c │ │ ├── acl.c │ │ ├── commpage.c │ │ ├── dns_sd.c │ │ ├── libnotify.c │ │ ├── numcpus.c │ │ ├── os_log.c │ │ └── sa_dst_compare.c ├── external │ ├── libpthread_workqueue │ └── libpthread_workqueue-0.8.2 │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── config.inc │ │ ├── configure │ │ ├── include │ │ └── pthread_workqueue.h │ │ ├── pthread_workqueue.3 │ │ ├── src │ │ ├── api.c │ │ ├── debug.h │ │ ├── posix │ │ │ ├── manager.c │ │ │ ├── platform.h │ │ │ ├── thread_info.c │ │ │ └── thread_rt.c │ │ ├── private.h │ │ ├── thread_info.h │ │ ├── thread_rt.h │ │ ├── windows │ │ │ ├── manager.c │ │ │ ├── platform.c │ │ │ ├── platform.h │ │ │ ├── pthread_cond.h │ │ │ ├── queue.h │ │ │ ├── thread_info.c │ │ │ ├── thread_rt.c │ │ │ └── winpthreads.h │ │ └── witem_cache.c │ │ └── testing │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── api │ │ ├── Makefile │ │ ├── posix_semaphore.h │ │ ├── test.c │ │ └── test_api.vcxproj │ │ ├── idle │ │ ├── Makefile │ │ └── main.c │ │ ├── latency │ │ ├── Makefile │ │ ├── latency.c │ │ └── latency.h │ │ ├── libdispatch │ │ ├── Makefile │ │ └── dispatch_api.c │ │ └── witem_cache │ │ ├── Makefile │ │ └── test.c ├── frameworks │ ├── AGL │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AGL │ │ │ │ └── AGL.h │ │ └── src │ │ │ └── AGL.c │ ├── AVFoundation │ │ ├── CMakeLists.txt │ │ ├── constants.m │ │ ├── include │ │ │ └── AVFoundation │ │ │ │ ├── AVAIFCOutputSettingsValidator.h │ │ │ │ ├── AVAIFFOutputSettingsValidator.h │ │ │ │ ├── AVAVAudioSettingsAudioOutputSettings.h │ │ │ │ ├── AVAVVideoSettingsVideoOutputSettings.h │ │ │ │ ├── AVAggregateAssetDownloadTask.h │ │ │ │ ├── AVAnimation.h │ │ │ │ ├── AVAsset.h │ │ │ │ ├── AVAssetAnalysisMessage.h │ │ │ │ ├── AVAssetAnalysisReporter.h │ │ │ │ ├── AVAssetAnalysisTextParsingMessage.h │ │ │ │ ├── AVAssetCache.h │ │ │ │ ├── AVAssetClientURLRequestHelper.h │ │ │ │ ├── AVAssetCollection.h │ │ │ │ ├── AVAssetCollectionFactory.h │ │ │ │ ├── AVAssetCollectionInspector.h │ │ │ │ ├── AVAssetCollectionInspectorLoader.h │ │ │ │ ├── AVAssetCollectionInternal.h │ │ │ │ ├── AVAssetCustomURLBridgeForNSURLProtocol.h │ │ │ │ ├── AVAssetCustomURLBridgeForNSURLSession.h │ │ │ │ ├── AVAssetCustomURLRequest.h │ │ │ │ ├── AVAssetDownloadCache.h │ │ │ │ ├── AVAssetDownloadCacheInternal.h │ │ │ │ ├── AVAssetDownloadSession.h │ │ │ │ ├── AVAssetDownloadSessionInternal.h │ │ │ │ ├── AVAssetExportSession.h │ │ │ │ ├── AVAssetExportSessionInternal.h │ │ │ │ ├── AVAssetImageGenerator.h │ │ │ │ ├── AVAssetImageGeneratorInternal.h │ │ │ │ ├── AVAssetInspector.h │ │ │ │ ├── AVAssetInspectorLoader.h │ │ │ │ ├── AVAssetInternal.h │ │ │ │ ├── AVAssetMakeReadyForInspectionLoader.h │ │ │ │ ├── AVAssetMediaSelectionGroup.h │ │ │ │ ├── AVAssetProxy.h │ │ │ │ ├── AVAssetProxyInternal.h │ │ │ │ ├── AVAssetReader.h │ │ │ │ ├── AVAssetReaderAudioMixOutput.h │ │ │ │ ├── AVAssetReaderAudioMixOutputInternal.h │ │ │ │ ├── AVAssetReaderInternal.h │ │ │ │ ├── AVAssetReaderOutput.h │ │ │ │ ├── AVAssetReaderOutputAdaptor.h │ │ │ │ ├── AVAssetReaderOutputCaptionAdaptor.h │ │ │ │ ├── AVAssetReaderOutputCaptionAdaptorInternal.h │ │ │ │ ├── AVAssetReaderOutputInternal.h │ │ │ │ ├── AVAssetReaderOutputMetadataAdaptor.h │ │ │ │ ├── AVAssetReaderOutputMetadataAdaptorInternal.h │ │ │ │ ├── AVAssetReaderSampleReferenceOutput.h │ │ │ │ ├── AVAssetReaderSampleReferenceOutputInternal.h │ │ │ │ ├── AVAssetReaderTrackOutput.h │ │ │ │ ├── AVAssetReaderTrackOutputInternal.h │ │ │ │ ├── AVAssetReaderVideoCompositionOutput.h │ │ │ │ ├── AVAssetReaderVideoCompositionOutputInternal.h │ │ │ │ ├── AVAssetResourceLoader.h │ │ │ │ ├── AVAssetResourceLoaderInternal.h │ │ │ │ ├── AVAssetResourceLoaderRequest.h │ │ │ │ ├── AVAssetResourceLoaderURLSessionDataDelegate.h │ │ │ │ ├── AVAssetResourceLoaderURLSessionDataDelegateForCustomURLLoader.h │ │ │ │ ├── AVAssetResourceLoadingContentInformationRequest.h │ │ │ │ ├── AVAssetResourceLoadingContentInformationRequestInternal.h │ │ │ │ ├── AVAssetResourceLoadingDataRequest.h │ │ │ │ ├── AVAssetResourceLoadingDataRequestInternal.h │ │ │ │ ├── AVAssetResourceLoadingRequest.h │ │ │ │ ├── AVAssetResourceLoadingRequestInternal.h │ │ │ │ ├── AVAssetResourceRenewalRequest.h │ │ │ │ ├── AVAssetSynchronousInspectorLoader.h │ │ │ │ ├── AVAssetTrack.h │ │ │ │ ├── AVAssetTrackEnumerator.h │ │ │ │ ├── AVAssetTrackGroup.h │ │ │ │ ├── AVAssetTrackGroupInternal.h │ │ │ │ ├── AVAssetTrackInspector.h │ │ │ │ ├── AVAssetTrackInternal.h │ │ │ │ ├── AVAssetTrackSegment.h │ │ │ │ ├── AVAssetWriter.h │ │ │ │ ├── AVAssetWriterClientInitiatedTerminalHelper.h │ │ │ │ ├── AVAssetWriterConfigurationState.h │ │ │ │ ├── AVAssetWriterFailedTerminalHelper.h │ │ │ │ ├── AVAssetWriterFigAssetWriterNotificationHandler.h │ │ │ │ ├── AVAssetWriterFigAssetWriterNotificationHandlerDelegate.h │ │ │ │ ├── AVAssetWriterFinishWritingHelper.h │ │ │ │ ├── AVAssetWriterHelper.h │ │ │ │ ├── AVAssetWriterInput.h │ │ │ │ ├── AVAssetWriterInputCaptionAdaptor.h │ │ │ │ ├── AVAssetWriterInputCaptionAdaptorInternal.h │ │ │ │ ├── AVAssetWriterInputConfigurationState.h │ │ │ │ ├── AVAssetWriterInputFigAssetWriterEndPassOperation.h │ │ │ │ ├── AVAssetWriterInputGroup.h │ │ │ │ ├── AVAssetWriterInputGroupInternal.h │ │ │ │ ├── AVAssetWriterInputHelper.h │ │ │ │ ├── AVAssetWriterInputInterPassAnalysisHelper.h │ │ │ │ ├── AVAssetWriterInputInternal.h │ │ │ │ ├── AVAssetWriterInputMediaDataRequester.h │ │ │ │ ├── AVAssetWriterInputMediaDataRequesterDelegate.h │ │ │ │ ├── AVAssetWriterInputMetadataAdaptor.h │ │ │ │ ├── AVAssetWriterInputMetadataAdaptorInternal.h │ │ │ │ ├── AVAssetWriterInputNoMorePassesHelper.h │ │ │ │ ├── AVAssetWriterInputPassDescription.h │ │ │ │ ├── AVAssetWriterInputPassDescriptionInternal.h │ │ │ │ ├── AVAssetWriterInputPassDescriptionResponder.h │ │ │ │ ├── AVAssetWriterInputPixelBufferAdaptor.h │ │ │ │ ├── AVAssetWriterInputPixelBufferAdaptorInternal.h │ │ │ │ ├── AVAssetWriterInputSelectionOption.h │ │ │ │ ├── AVAssetWriterInputTerminalHelper.h │ │ │ │ ├── AVAssetWriterInputUnknownHelper.h │ │ │ │ ├── AVAssetWriterInputWritingHelper.h │ │ │ │ ├── AVAssetWriterInternal.h │ │ │ │ ├── AVAssetWriterTerminalHelper.h │ │ │ │ ├── AVAssetWriterUnknownHelper.h │ │ │ │ ├── AVAssetWriterWritingHelper.h │ │ │ │ ├── AVAsynchronousCIImageFilteringRequest.h │ │ │ │ ├── AVAsynchronousCIImageFilteringRequestInternal.h │ │ │ │ ├── AVAsynchronousKeyValueLoading.h │ │ │ │ ├── AVAsynchronousVideoCompositionRequest.h │ │ │ │ ├── AVAsynchronousVideoCompositionRequestInternal.h │ │ │ │ ├── AVAudioMix.h │ │ │ │ ├── AVAudioMixEffectParameters.h │ │ │ │ ├── AVAudioMixInputParameters.h │ │ │ │ ├── AVAudioMixInputParametersInternal.h │ │ │ │ ├── AVAudioMixInternal.h │ │ │ │ ├── AVAudioMixSweepFilterEffectParameters.h │ │ │ │ ├── AVAudioMixSweepFilterEffectParametersInternal.h │ │ │ │ ├── AVAudioOutputSettings.h │ │ │ │ ├── AVAudioSettings.h │ │ │ │ ├── AVAudioSettingsValueConstrainer.h │ │ │ │ ├── AVBlockOperation.h │ │ │ │ ├── AVCMNotificationDispatcher.h │ │ │ │ ├── AVCMNotificationDispatcherListenerAndCallback.h │ │ │ │ ├── AVCMNotificationDispatcherListenerKey.h │ │ │ │ ├── AVCallbackCancellation.h │ │ │ │ ├── AVCallbackContextRegistry.h │ │ │ │ ├── AVCameraCalibrationData.h │ │ │ │ ├── AVCameraCalibrationDataInternal.h │ │ │ │ ├── AVCaption.h │ │ │ │ ├── AVCaptionConversionAdjustment.h │ │ │ │ ├── AVCaptionConversionTimeRangeAdjustment.h │ │ │ │ ├── AVCaptionConversionValidator.h │ │ │ │ ├── AVCaptionConversionWarning.h │ │ │ │ ├── AVCaptionFormatConformer.h │ │ │ │ ├── AVCaptionGroup.h │ │ │ │ ├── AVCaptionGroupInternal.h │ │ │ │ ├── AVCaptionGrouper.h │ │ │ │ ├── AVCaptionInternal.h │ │ │ │ ├── AVCaptionLength.h │ │ │ │ ├── AVCaptionLengthInternal.h │ │ │ │ ├── AVCaptionOutputSettings.h │ │ │ │ ├── AVCaptionPosition.h │ │ │ │ ├── AVCaptionPositionInternal.h │ │ │ │ ├── AVCaptionRegion.h │ │ │ │ ├── AVCaptionRegionInternal.h │ │ │ │ ├── AVCaptionRenderer.h │ │ │ │ ├── AVCaptionRendererInternal.h │ │ │ │ ├── AVCaptionRendererScene.h │ │ │ │ ├── AVCaptionRendererSceneInternal.h │ │ │ │ ├── AVCaptionRuby.h │ │ │ │ ├── AVCaptionRubyInternal.h │ │ │ │ ├── AVCaptureAudioChannel.h │ │ │ │ ├── AVCaptureAudioChannelInternal.h │ │ │ │ ├── AVCaptureAudioDataOutput.h │ │ │ │ ├── AVCaptureAudioDataOutputCallbackData.h │ │ │ │ ├── AVCaptureAudioDataOutputInternal.h │ │ │ │ ├── AVCaptureAudioFileOutput.h │ │ │ │ ├── AVCaptureAudioFileOutputInternal.h │ │ │ │ ├── AVCaptureAudioPreviewOutput.h │ │ │ │ ├── AVCaptureAudioPreviewOutputInternal.h │ │ │ │ ├── AVCaptureAudioSettings.h │ │ │ │ ├── AVCaptureConnection.h │ │ │ │ ├── AVCaptureConnectionInternal.h │ │ │ │ ├── AVCaptureDALDevice.h │ │ │ │ ├── AVCaptureDevice.h │ │ │ │ ├── AVCaptureDeviceFormat.h │ │ │ │ ├── AVCaptureDeviceFormatInternal.h │ │ │ │ ├── AVCaptureDeviceInput.h │ │ │ │ ├── AVCaptureDeviceInputInternal.h │ │ │ │ ├── AVCaptureDeviceInputSource.h │ │ │ │ ├── AVCaptureDeviceInputSourceInternal.h │ │ │ │ ├── AVCaptureDeviceInternal.h │ │ │ │ ├── AVCaptureFileOutput.h │ │ │ │ ├── AVCaptureFileOutputInternal.h │ │ │ │ ├── AVCaptureFileOutputPauseOperationDescriptor.h │ │ │ │ ├── AVCaptureFileOutputRecordingOperationDescriptor.h │ │ │ │ ├── AVCaptureHALDevice.h │ │ │ │ ├── AVCaptureInput.h │ │ │ │ ├── AVCaptureInputInternal.h │ │ │ │ ├── AVCaptureInputPort.h │ │ │ │ ├── AVCaptureInputPortInternal.h │ │ │ │ ├── AVCaptureMovieFileOutput.h │ │ │ │ ├── AVCaptureMovieFileOutputInternal.h │ │ │ │ ├── AVCaptureOperationDescriptor.h │ │ │ │ ├── AVCaptureOperationDescriptorQueue.h │ │ │ │ ├── AVCaptureOperationDescriptorQueueItem.h │ │ │ │ ├── AVCaptureOutput.h │ │ │ │ ├── AVCaptureOutputInternal.h │ │ │ │ ├── AVCaptureOutputSettings.h │ │ │ │ ├── AVCaptureScreenInput.h │ │ │ │ ├── AVCaptureScreenInputInternal.h │ │ │ │ ├── AVCaptureSession.h │ │ │ │ ├── AVCaptureSessionInternal.h │ │ │ │ ├── AVCaptureSessionInternalState.h │ │ │ │ ├── AVCaptureStillImageOutput.h │ │ │ │ ├── AVCaptureStillImageOutputInternal.h │ │ │ │ ├── AVCaptureStillImageOutputUtils.h │ │ │ │ ├── AVCaptureStillImageRequest.h │ │ │ │ ├── AVCaptureStillImageTransform.h │ │ │ │ ├── AVCaptureVideoDataOutput.h │ │ │ │ ├── AVCaptureVideoDataOutputCallbackData.h │ │ │ │ ├── AVCaptureVideoDataOutputInternal.h │ │ │ │ ├── AVCaptureVideoPreviewLayer.h │ │ │ │ ├── AVCaptureVideoPreviewLayerInternal.h │ │ │ │ ├── AVCaptureVideoSettings.h │ │ │ │ ├── AVChapterMetadataItem.h │ │ │ │ ├── AVChapterMetadataItemInternal.h │ │ │ │ ├── AVClientBlockKVONotifier.h │ │ │ │ ├── AVComposition.h │ │ │ │ ├── AVCompositionFormatReaderInspector.h │ │ │ │ ├── AVCompositionInternal.h │ │ │ │ ├── AVCompositionTrack.h │ │ │ │ ├── AVCompositionTrackInternal.h │ │ │ │ ├── AVCompositionTrackReaderInspector.h │ │ │ │ ├── AVCompositionTrackSegment.h │ │ │ │ ├── AVCompositionTrackSegmentInternal.h │ │ │ │ ├── AVContentKeyRecipient.h │ │ │ │ ├── AVContentKeyRequest.h │ │ │ │ ├── AVContentKeyRequestInternal.h │ │ │ │ ├── AVContentKeyResponse.h │ │ │ │ ├── AVContentKeyResponseClearKey.h │ │ │ │ ├── AVContentKeyResponseFairPlayStreaming.h │ │ │ │ ├── AVContentKeyResponseInternal.h │ │ │ │ ├── AVContentKeySession.h │ │ │ │ ├── AVContentKeySessionDelegate.h │ │ │ │ ├── AVContentKeySessionInternal.h │ │ │ │ ├── AVCoreImageFilterCustomVideoCompositor.h │ │ │ │ ├── AVCoreImageFilterVideoCompositionInstruction.h │ │ │ │ ├── AVCustomVideoCompositorSession.h │ │ │ │ ├── AVDataAsset.h │ │ │ │ ├── AVDataDelegateAsset.h │ │ │ │ ├── AVDataDelegateAssetInternal.h │ │ │ │ ├── AVDateRangeMetadataGroup.h │ │ │ │ ├── AVDateRangeMetadataGroupInternal.h │ │ │ │ ├── AVDecodedAudioSettingsForFig.h │ │ │ │ ├── AVDecodedVideoSettingsForFig.h │ │ │ │ ├── AVDelegateStorage.h │ │ │ │ ├── AVDepartureAnnouncingObjectMonitor.h │ │ │ │ ├── AVDepthData.h │ │ │ │ ├── AVDepthDataInternal.h │ │ │ │ ├── AVDestinationChangeResultSource.h │ │ │ │ ├── AVDispatchGroup.h │ │ │ │ ├── AVEmptyOutputDeviceDiscoverySessionAvailableOutputDevices.h │ │ │ │ ├── AVError.h │ │ │ │ ├── AVEventWaiter.h │ │ │ │ ├── AVExecutionEnvironment.h │ │ │ │ ├── AVExportSettingsOutputSettingsAssistantBaseSettings.h │ │ │ │ ├── AVExportSettingsOutputSettingsAssistantVideoSettingsAdjuster.h │ │ │ │ ├── AVFigAssetInspector.h │ │ │ │ ├── AVFigAssetInspectorLoader.h │ │ │ │ ├── AVFigAssetTrackInspector.h │ │ │ │ ├── AVFigAssetWriterAudioTrack.h │ │ │ │ ├── AVFigAssetWriterCaptionTrack.h │ │ │ │ ├── AVFigAssetWriterFinishWritingAsyncOperation.h │ │ │ │ ├── AVFigAssetWriterGenericTrack.h │ │ │ │ ├── AVFigAssetWriterTrack.h │ │ │ │ ├── AVFigAssetWriterVideoTrack.h │ │ │ │ ├── AVFigCommChannelUUIDCommunicationChannelManager.h │ │ │ │ ├── AVFigCommChannelUUIDOutputContextCommunicationChannelImpl.h │ │ │ │ ├── AVFigEndpointFigRoutingContextOutputDeviceTranslator.h │ │ │ │ ├── AVFigEndpointOutputDeviceDiscoverySessionAvailableOutputDevicesImpl.h │ │ │ │ ├── AVFigEndpointOutputDeviceImpl.h │ │ │ │ ├── AVFigEndpointPickerOutputContextImpl.h │ │ │ │ ├── AVFigEndpointPickerOutputDeviceDiscoverySessionFactory.h │ │ │ │ ├── AVFigEndpointPickerOutputDeviceDiscoverySessionImpl.h │ │ │ │ ├── AVFigEndpointUIAgentOutputContextManagerImpl.h │ │ │ │ ├── AVFigEndpointUIAgentOutputDeviceAuthorizationRequestImpl.h │ │ │ │ ├── AVFigEndpointUIAgentOutputDeviceAuthorizationSessionImpl.h │ │ │ │ ├── AVFigObjectInspector.h │ │ │ │ ├── AVFigRemoteRouteDiscovererFactory.h │ │ │ │ ├── AVFigRouteDescriptorFigRoutingContextOutputDeviceTranslator.h │ │ │ │ ├── AVFigRouteDescriptorOutputDeviceDiscoverySessionAvailableOutputDevicesImpl.h │ │ │ │ ├── AVFigRouteDescriptorOutputDeviceImpl.h │ │ │ │ ├── AVFigRouteDiscovererFactory.h │ │ │ │ ├── AVFigRouteDiscovererOutputDeviceDiscoverySessionFactory.h │ │ │ │ ├── AVFigRouteDiscovererOutputDeviceDiscoverySessionImpl.h │ │ │ │ ├── AVFigRoutingContextCommandOutputDeviceConfiguration.h │ │ │ │ ├── AVFigRoutingContextCommandOutputDeviceConfigurationModification.h │ │ │ │ ├── AVFigRoutingContextCommunicationChannelManager.h │ │ │ │ ├── AVFigRoutingContextFactory.h │ │ │ │ ├── AVFigRoutingContextOutputContextImpl.h │ │ │ │ ├── AVFigRoutingContextOutputDeviceTranslator.h │ │ │ │ ├── AVFigRoutingContextRouteChangeOperation.h │ │ │ │ ├── AVFigRoutingContextSendConfigureDeviceCommandOperation.h │ │ │ │ ├── AVFloat64Range.h │ │ │ │ ├── AVFormatReaderInspector.h │ │ │ │ ├── AVFormatSpecification.h │ │ │ │ ├── AVFoundation.h │ │ │ │ ├── AVFragmentMinding.h │ │ │ │ ├── AVFragmentedAsset.h │ │ │ │ ├── AVFragmentedAssetInternal.h │ │ │ │ ├── AVFragmentedAssetMinder.h │ │ │ │ ├── AVFragmentedAssetMinderInternal.h │ │ │ │ ├── AVFragmentedAssetTrack.h │ │ │ │ ├── AVFragmentedAssetTrackInternal.h │ │ │ │ ├── AVFragmentedMovie.h │ │ │ │ ├── AVFragmentedMovieInternal.h │ │ │ │ ├── AVFragmentedMovieMinder.h │ │ │ │ ├── AVFragmentedMovieTrack.h │ │ │ │ ├── AVFragmentedMovieTrackInternal.h │ │ │ │ ├── AVFrameRateRange.h │ │ │ │ ├── AVFrameRateRangeInternal.h │ │ │ │ ├── AVGenericMediaFileOutputSettingsValidator.h │ │ │ │ ├── AVGlobalOperationQueue.h │ │ │ │ ├── AVIOKitOutputSettingsAssistantVideoEncoderCapabilities.h │ │ │ │ ├── AVISOOutputSettingsValidator.h │ │ │ │ ├── AVKVODispatcher.h │ │ │ │ ├── AVKVOIntrospection.h │ │ │ │ ├── AVKVONotifier.h │ │ │ │ ├── AVKeyPath.h │ │ │ │ ├── AVKeyPathDependency.h │ │ │ │ ├── AVKeyPathDependencyHost.h │ │ │ │ ├── AVKeyPathDependencyManager.h │ │ │ │ ├── AVKeyPathDependencyRegistration.h │ │ │ │ ├── AVKeyPathFlattener.h │ │ │ │ ├── AVKeyPathFlattenerKVOIntrospectionShim.h │ │ │ │ ├── AVLazyValueLoadingMetadataItem.h │ │ │ │ ├── AVLazyValueLoadingMetadataItemInternal.h │ │ │ │ ├── AVLocalOutputDeviceImpl.h │ │ │ │ ├── AVManagedAssetCache.h │ │ │ │ ├── AVManagedAssetCacheInternal.h │ │ │ │ ├── AVMediaDataRequester.h │ │ │ │ ├── AVMediaDataRequesterConsumer.h │ │ │ │ ├── AVMediaDataStorage.h │ │ │ │ ├── AVMediaDataStorageInternal.h │ │ │ │ ├── AVMediaFileOutputSettingsValidator.h │ │ │ │ ├── AVMediaFileSegmenter.h │ │ │ │ ├── AVMediaFileType.h │ │ │ │ ├── AVMediaFormat.h │ │ │ │ ├── AVMediaSelection.h │ │ │ │ ├── AVMediaSelectionGroup.h │ │ │ │ ├── AVMediaSelectionGroupInternal.h │ │ │ │ ├── AVMediaSelectionInternal.h │ │ │ │ ├── AVMediaSelectionKeyValueOption.h │ │ │ │ ├── AVMediaSelectionOption.h │ │ │ │ ├── AVMediaSelectionOptionInternal.h │ │ │ │ ├── AVMediaSelectionTrackOption.h │ │ │ │ ├── AVMetadataEnumerator.h │ │ │ │ ├── AVMetadataFaceObject.h │ │ │ │ ├── AVMetadataFaceObjectInternal.h │ │ │ │ ├── AVMetadataGroup.h │ │ │ │ ├── AVMetadataItem.h │ │ │ │ ├── AVMetadataItemFilter.h │ │ │ │ ├── AVMetadataItemFilterForSharing.h │ │ │ │ ├── AVMetadataItemFilterInternal.h │ │ │ │ ├── AVMetadataItemInternal.h │ │ │ │ ├── AVMetadataItemValueRequest.h │ │ │ │ ├── AVMetadataItemValueRequestInternal.h │ │ │ │ ├── AVMetadataObject.h │ │ │ │ ├── AVMetadataObjectInternal.h │ │ │ │ ├── AVMovie.h │ │ │ │ ├── AVMovieInternal.h │ │ │ │ ├── AVMovieTrack.h │ │ │ │ ├── AVMovieTrackInternal.h │ │ │ │ ├── AVMutableAudioMix.h │ │ │ │ ├── AVMutableAudioMixInputParameters.h │ │ │ │ ├── AVMutableCaption.h │ │ │ │ ├── AVMutableCaptionRegion.h │ │ │ │ ├── AVMutableComposition.h │ │ │ │ ├── AVMutableCompositionInternal.h │ │ │ │ ├── AVMutableCompositionTrack.h │ │ │ │ ├── AVMutableCompositionTrackInternal.h │ │ │ │ ├── AVMutableDateRangeMetadataGroup.h │ │ │ │ ├── AVMutableMediaSelection.h │ │ │ │ ├── AVMutableMetadataItem.h │ │ │ │ ├── AVMutableMovie.h │ │ │ │ ├── AVMutableMovieInternal.h │ │ │ │ ├── AVMutableMovieTrack.h │ │ │ │ ├── AVMutableMovieTrackInternal.h │ │ │ │ ├── AVMutableScheduledAudioParameters.h │ │ │ │ ├── AVMutableTimedMetadataGroup.h │ │ │ │ ├── AVMutableVideoComposition.h │ │ │ │ ├── AVMutableVideoCompositionInstruction.h │ │ │ │ ├── AVMutableVideoCompositionLayerInstruction.h │ │ │ │ ├── AVNSURLProtocolRequest.h │ │ │ │ ├── AVNetworkPlaybackPerfHUDLayer.h │ │ │ │ ├── AVObjectMonitoring.h │ │ │ │ ├── AVObservationBlockFactory.h │ │ │ │ ├── AVOccasionalTimebaseObserver.h │ │ │ │ ├── AVOnceTimebaseObserver.h │ │ │ │ ├── AVOperation.h │ │ │ │ ├── AVOperationQueueWithFundamentalDependency.h │ │ │ │ ├── AVOutputContext.h │ │ │ │ ├── AVOutputContextCommunicationChannel.h │ │ │ │ ├── AVOutputContextCommunicationChannelImpl.h │ │ │ │ ├── AVOutputContextCommunicationChannelInternal.h │ │ │ │ ├── AVOutputContextDestinationChange.h │ │ │ │ ├── AVOutputContextDestinationChangeInternal.h │ │ │ │ ├── AVOutputContextImpl.h │ │ │ │ ├── AVOutputContextInternal.h │ │ │ │ ├── AVOutputContextManager.h │ │ │ │ ├── AVOutputContextManagerImpl.h │ │ │ │ ├── AVOutputContextManagerInternal.h │ │ │ │ ├── AVOutputDevice.h │ │ │ │ ├── AVOutputDeviceAuthorizationRequest.h │ │ │ │ ├── AVOutputDeviceAuthorizationRequestImpl.h │ │ │ │ ├── AVOutputDeviceAuthorizationRequestInternal.h │ │ │ │ ├── AVOutputDeviceAuthorizationSession.h │ │ │ │ ├── AVOutputDeviceAuthorizationSessionImpl.h │ │ │ │ ├── AVOutputDeviceAuthorizationSessionInternal.h │ │ │ │ ├── AVOutputDeviceAuthorizedPeer.h │ │ │ │ ├── AVOutputDeviceAuthorizedPeerInternal.h │ │ │ │ ├── AVOutputDeviceConfigurationModification.h │ │ │ │ ├── AVOutputDeviceConfigurationRetrieval.h │ │ │ │ ├── AVOutputDeviceDiscoverySession.h │ │ │ │ ├── AVOutputDeviceDiscoverySessionAvailableOutputDevices.h │ │ │ │ ├── AVOutputDeviceDiscoverySessionAvailableOutputDevicesImpl.h │ │ │ │ ├── AVOutputDeviceDiscoverySessionAvailableOutputDevicesInternal.h │ │ │ │ ├── AVOutputDeviceDiscoverySessionFactory.h │ │ │ │ ├── AVOutputDeviceDiscoverySessionImpl.h │ │ │ │ ├── AVOutputDeviceDiscoverySessionInternal.h │ │ │ │ ├── AVOutputDeviceFrecencyManager.h │ │ │ │ ├── AVOutputDeviceImpl.h │ │ │ │ ├── AVOutputDeviceInternal.h │ │ │ │ ├── AVOutputSettings.h │ │ │ │ ├── AVOutputSettingsAssistant.h │ │ │ │ ├── AVOutputSettingsAssistantBaseSettingsProvider.h │ │ │ │ ├── AVOutputSettingsAssistantInternal.h │ │ │ │ ├── AVOutputSettingsAssistantVideoEncoderCapabilities.h │ │ │ │ ├── AVOutputSettingsAssistantVideoSettingsAdjuster.h │ │ │ │ ├── AVOutputSettingsValidation.h │ │ │ │ ├── AVPairedDevice.h │ │ │ │ ├── AVPairedDeviceInternal.h │ │ │ │ ├── AVPeriodicTimebaseObserver.h │ │ │ │ ├── AVPersistableContentKeyRequest.h │ │ │ │ ├── AVPixelBufferAttributeMediator.h │ │ │ │ ├── AVPixelBufferAttributesVideoOutputSettings.h │ │ │ │ ├── AVPlaybackItemInspector.h │ │ │ │ ├── AVPlaybackItemInspectorLoader.h │ │ │ │ ├── AVPlaybackItemTrackInspector.h │ │ │ │ ├── AVPlayer.h │ │ │ │ ├── AVPlayerConnection.h │ │ │ │ ├── AVPlayerInternal.h │ │ │ │ ├── AVPlayerItem.h │ │ │ │ ├── AVPlayerItemAccessLog.h │ │ │ │ ├── AVPlayerItemAccessLogEvent.h │ │ │ │ ├── AVPlayerItemAccessLogEventInternal.h │ │ │ │ ├── AVPlayerItemAccessLogInternal.h │ │ │ │ ├── AVPlayerItemErrorLog.h │ │ │ │ ├── AVPlayerItemErrorLogEvent.h │ │ │ │ ├── AVPlayerItemErrorLogEventInternal.h │ │ │ │ ├── AVPlayerItemErrorLogInternal.h │ │ │ │ ├── AVPlayerItemInternal.h │ │ │ │ ├── AVPlayerItemLegibleOutput.h │ │ │ │ ├── AVPlayerItemLegibleOutputDependencyFactory.h │ │ │ │ ├── AVPlayerItemLegibleOutputInternal.h │ │ │ │ ├── AVPlayerItemLegibleOutputRealDependencyFactory.h │ │ │ │ ├── AVPlayerItemMediaDataCollector.h │ │ │ │ ├── AVPlayerItemMediaDataCollectorInternal.h │ │ │ │ ├── AVPlayerItemMetadataCollector.h │ │ │ │ ├── AVPlayerItemMetadataCollectorInternal.h │ │ │ │ ├── AVPlayerItemMetadataOutput.h │ │ │ │ ├── AVPlayerItemMetadataOutputInternal.h │ │ │ │ ├── AVPlayerItemOutput.h │ │ │ │ ├── AVPlayerItemOutputInternal.h │ │ │ │ ├── AVPlayerItemTrack.h │ │ │ │ ├── AVPlayerItemTrackInternal.h │ │ │ │ ├── AVPlayerItemVideoOutput.h │ │ │ │ ├── AVPlayerItemVideoOutputInternal.h │ │ │ │ ├── AVPlayerLayer.h │ │ │ │ ├── AVPlayerLayerIntermediateLayer.h │ │ │ │ ├── AVPlayerLayerInternal.h │ │ │ │ ├── AVPlayerLooper.h │ │ │ │ ├── AVPlayerLooperInternal.h │ │ │ │ ├── AVPlayerMediaSelectionCriteria.h │ │ │ │ ├── AVPlayerQueueModificationDescription.h │ │ │ │ ├── AVPropertyStorage.h │ │ │ │ ├── AVQueuePlayer.h │ │ │ │ ├── AVQueuePlayerInternal.h │ │ │ │ ├── AVQueuedSampleBufferRendering.h │ │ │ │ ├── AVQueuedSampleBufferRenderingInternal.h │ │ │ │ ├── AVReencodedAudioSettingsForFig.h │ │ │ │ ├── AVReencodedVideoSettingsForFig.h │ │ │ │ ├── AVRemoteFigRoutingContextFactory.h │ │ │ │ ├── AVResolvedDecompressionSettings.h │ │ │ │ ├── AVRetainReleaseWeakReference.h │ │ │ │ ├── AVRouteConfigUpdatedFigRoutingContextRouteChangeOperation.h │ │ │ │ ├── AVRouteDetector.h │ │ │ │ ├── AVRouteDetectorInternal.h │ │ │ │ ├── AVRunLoopCondition.h │ │ │ │ ├── AVRunLoopConditionRunLoopState.h │ │ │ │ ├── AVSampleBufferAudioRenderer.h │ │ │ │ ├── AVSampleBufferAudioRendererInternal.h │ │ │ │ ├── AVSampleBufferDisplayLayer.h │ │ │ │ ├── AVSampleBufferDisplayLayerContentLayer.h │ │ │ │ ├── AVSampleBufferDisplayLayerInternal.h │ │ │ │ ├── AVSampleBufferGenerator.h │ │ │ │ ├── AVSampleBufferGeneratorInternal.h │ │ │ │ ├── AVSampleBufferRenderSynchronizer.h │ │ │ │ ├── AVSampleBufferRenderSynchronizerInternal.h │ │ │ │ ├── AVSampleBufferRequest.h │ │ │ │ ├── AVSampleBufferRequestInternal.h │ │ │ │ ├── AVSampleCursor.h │ │ │ │ ├── AVSampleCursorInternal.h │ │ │ │ ├── AVScheduledAudioParameters.h │ │ │ │ ├── AVScheduledAudioParametersInternal.h │ │ │ │ ├── AVSegmentedMediaClosedCaptionReport.h │ │ │ │ ├── AVSegmentedMediaReport.h │ │ │ │ ├── AVStreamDataAsset.h │ │ │ │ ├── AVStreamDataAssetInspector.h │ │ │ │ ├── AVStreamDataAssetTrackInspector.h │ │ │ │ ├── AVStreamDataInspectionOnlyAsset.h │ │ │ │ ├── AVStreamDataParser.h │ │ │ │ ├── AVStreamDataParserInternal.h │ │ │ │ ├── AVStreamSession.h │ │ │ │ ├── AVStreamSessionInternal.h │ │ │ │ ├── AVStreamingResourceInspector.h │ │ │ │ ├── AVSynchronizedLayer.h │ │ │ │ ├── AVSynchronizedLayerInternal.h │ │ │ │ ├── AVTextStyleRule.h │ │ │ │ ├── AVTextStyleRuleInternal.h │ │ │ │ ├── AVTimeFormatter.h │ │ │ │ ├── AVTimeFormatterInternal.h │ │ │ │ ├── AVTimebaseObserver.h │ │ │ │ ├── AVTimedMetadataGroup.h │ │ │ │ ├── AVTimedMetadataGroupInternal.h │ │ │ │ ├── AVTrackReaderInspector.h │ │ │ │ ├── AVTwoPartKeyPath.h │ │ │ │ ├── AVURLAsset.h │ │ │ │ ├── AVURLAssetInternal.h │ │ │ │ ├── AVURLAuthenticationChallenge.h │ │ │ │ ├── AVUnreachableAssetInspectorLoader.h │ │ │ │ ├── AVVideoCompositing.h │ │ │ │ ├── AVVideoComposition.h │ │ │ │ ├── AVVideoCompositionCoreAnimationTool.h │ │ │ │ ├── AVVideoCompositionCoreAnimationToolInternal.h │ │ │ │ ├── AVVideoCompositionInstruction.h │ │ │ │ ├── AVVideoCompositionInstructionInternal.h │ │ │ │ ├── AVVideoCompositionInternal.h │ │ │ │ ├── AVVideoCompositionLayerInstruction.h │ │ │ │ ├── AVVideoCompositionLayerInstructionInternal.h │ │ │ │ ├── AVVideoCompositionRenderContext.h │ │ │ │ ├── AVVideoCompositionRenderContextInternal.h │ │ │ │ ├── AVVideoOutputSettings.h │ │ │ │ ├── AVVideoPerformanceMetrics.h │ │ │ │ ├── AVVideoPerformanceMetricsInternal.h │ │ │ │ ├── AVVideoSettings.h │ │ │ │ ├── AVWAVEOutputSettingsValidator.h │ │ │ │ ├── AVWaitForNotificationOrDeallocationOperation.h │ │ │ │ ├── AVWeakObservable.h │ │ │ │ ├── AVWeakObservableCallbackCancellationHelper.h │ │ │ │ ├── AVWeakObservationBlockFactory.h │ │ │ │ ├── AVWeakReference.h │ │ │ │ ├── AVWeakReferencingDelegateStorage.h │ │ │ │ ├── AVWeaklyObservedObjectClientBlockKVONotifier.h │ │ │ │ ├── AVWorkaroundNSBlockOperation.h │ │ │ │ ├── CMTimeAsValue.h │ │ │ │ ├── CMTimeMappingAsValue.h │ │ │ │ ├── CMTimeRangeAsValue.h │ │ │ │ ├── MediaIOGraphNodeDescription.h │ │ │ │ └── MediaIOGraphNodeList.h │ │ └── src │ │ │ ├── AVAIFCOutputSettingsValidator.m │ │ │ ├── AVAIFFOutputSettingsValidator.m │ │ │ ├── AVAVAudioSettingsAudioOutputSettings.m │ │ │ ├── AVAVVideoSettingsVideoOutputSettings.m │ │ │ ├── AVAggregateAssetDownloadTask.m │ │ │ ├── AVAsset.m │ │ │ ├── AVAssetAnalysisMessage.m │ │ │ ├── AVAssetAnalysisReporter.m │ │ │ ├── AVAssetAnalysisTextParsingMessage.m │ │ │ ├── AVAssetCache.m │ │ │ ├── AVAssetClientURLRequestHelper.m │ │ │ ├── AVAssetCollection.m │ │ │ ├── AVAssetCollectionFactory.m │ │ │ ├── AVAssetCollectionInspector.m │ │ │ ├── AVAssetCollectionInspectorLoader.m │ │ │ ├── AVAssetCollectionInternal.m │ │ │ ├── AVAssetCustomURLBridgeForNSURLProtocol.m │ │ │ ├── AVAssetCustomURLBridgeForNSURLSession.m │ │ │ ├── AVAssetCustomURLRequest.m │ │ │ ├── AVAssetDownloadCache.m │ │ │ ├── AVAssetDownloadCacheInternal.m │ │ │ ├── AVAssetDownloadSession.m │ │ │ ├── AVAssetDownloadSessionInternal.m │ │ │ ├── AVAssetExportSession.m │ │ │ ├── AVAssetExportSessionInternal.m │ │ │ ├── AVAssetImageGenerator.m │ │ │ ├── AVAssetImageGeneratorInternal.m │ │ │ ├── AVAssetInspector.m │ │ │ ├── AVAssetInspectorLoader.m │ │ │ ├── AVAssetInternal.m │ │ │ ├── AVAssetMakeReadyForInspectionLoader.m │ │ │ ├── AVAssetMediaSelectionGroup.m │ │ │ ├── AVAssetProxy.m │ │ │ ├── AVAssetProxyInternal.m │ │ │ ├── AVAssetReader.m │ │ │ ├── AVAssetReaderAudioMixOutput.m │ │ │ ├── AVAssetReaderAudioMixOutputInternal.m │ │ │ ├── AVAssetReaderInternal.m │ │ │ ├── AVAssetReaderOutput.m │ │ │ ├── AVAssetReaderOutputCaptionAdaptor.m │ │ │ ├── AVAssetReaderOutputCaptionAdaptorInternal.m │ │ │ ├── AVAssetReaderOutputInternal.m │ │ │ ├── AVAssetReaderOutputMetadataAdaptor.m │ │ │ ├── AVAssetReaderOutputMetadataAdaptorInternal.m │ │ │ ├── AVAssetReaderSampleReferenceOutput.m │ │ │ ├── AVAssetReaderSampleReferenceOutputInternal.m │ │ │ ├── AVAssetReaderTrackOutput.m │ │ │ ├── AVAssetReaderTrackOutputInternal.m │ │ │ ├── AVAssetReaderVideoCompositionOutput.m │ │ │ ├── AVAssetReaderVideoCompositionOutputInternal.m │ │ │ ├── AVAssetResourceLoader.m │ │ │ ├── AVAssetResourceLoaderInternal.m │ │ │ ├── AVAssetResourceLoaderURLSessionDataDelegate.m │ │ │ ├── AVAssetResourceLoaderURLSessionDataDelegateForCustomURLLoader.m │ │ │ ├── AVAssetResourceLoadingContentInformationRequest.m │ │ │ ├── AVAssetResourceLoadingContentInformationRequestInternal.m │ │ │ ├── AVAssetResourceLoadingDataRequest.m │ │ │ ├── AVAssetResourceLoadingDataRequestInternal.m │ │ │ ├── AVAssetResourceLoadingRequest.m │ │ │ ├── AVAssetResourceLoadingRequestInternal.m │ │ │ ├── AVAssetResourceRenewalRequest.m │ │ │ ├── AVAssetSynchronousInspectorLoader.m │ │ │ ├── AVAssetTrack.m │ │ │ ├── AVAssetTrackEnumerator.m │ │ │ ├── AVAssetTrackGroup.m │ │ │ ├── AVAssetTrackGroupInternal.m │ │ │ ├── AVAssetTrackInspector.m │ │ │ ├── AVAssetTrackInternal.m │ │ │ ├── AVAssetTrackSegment.m │ │ │ ├── AVAssetWriter.m │ │ │ ├── AVAssetWriterClientInitiatedTerminalHelper.m │ │ │ ├── AVAssetWriterConfigurationState.m │ │ │ ├── AVAssetWriterFailedTerminalHelper.m │ │ │ ├── AVAssetWriterFigAssetWriterNotificationHandler.m │ │ │ ├── AVAssetWriterFinishWritingHelper.m │ │ │ ├── AVAssetWriterHelper.m │ │ │ ├── AVAssetWriterInput.m │ │ │ ├── AVAssetWriterInputCaptionAdaptor.m │ │ │ ├── AVAssetWriterInputCaptionAdaptorInternal.m │ │ │ ├── AVAssetWriterInputConfigurationState.m │ │ │ ├── AVAssetWriterInputFigAssetWriterEndPassOperation.m │ │ │ ├── AVAssetWriterInputGroup.m │ │ │ ├── AVAssetWriterInputGroupInternal.m │ │ │ ├── AVAssetWriterInputHelper.m │ │ │ ├── AVAssetWriterInputInterPassAnalysisHelper.m │ │ │ ├── AVAssetWriterInputInternal.m │ │ │ ├── AVAssetWriterInputMediaDataRequester.m │ │ │ ├── AVAssetWriterInputMetadataAdaptor.m │ │ │ ├── AVAssetWriterInputMetadataAdaptorInternal.m │ │ │ ├── AVAssetWriterInputNoMorePassesHelper.m │ │ │ ├── AVAssetWriterInputPassDescription.m │ │ │ ├── AVAssetWriterInputPassDescriptionInternal.m │ │ │ ├── AVAssetWriterInputPassDescriptionResponder.m │ │ │ ├── AVAssetWriterInputPixelBufferAdaptor.m │ │ │ ├── AVAssetWriterInputPixelBufferAdaptorInternal.m │ │ │ ├── AVAssetWriterInputSelectionOption.m │ │ │ ├── AVAssetWriterInputTerminalHelper.m │ │ │ ├── AVAssetWriterInputUnknownHelper.m │ │ │ ├── AVAssetWriterInputWritingHelper.m │ │ │ ├── AVAssetWriterInternal.m │ │ │ ├── AVAssetWriterTerminalHelper.m │ │ │ ├── AVAssetWriterUnknownHelper.m │ │ │ ├── AVAssetWriterWritingHelper.m │ │ │ ├── AVAsynchronousCIImageFilteringRequest.m │ │ │ ├── AVAsynchronousCIImageFilteringRequestInternal.m │ │ │ ├── AVAsynchronousVideoCompositionRequest.m │ │ │ ├── AVAsynchronousVideoCompositionRequestInternal.m │ │ │ ├── AVAudioMix.m │ │ │ ├── AVAudioMixEffectParameters.m │ │ │ ├── AVAudioMixInputParameters.m │ │ │ ├── AVAudioMixInputParametersInternal.m │ │ │ ├── AVAudioMixInternal.m │ │ │ ├── AVAudioMixSweepFilterEffectParameters.m │ │ │ ├── AVAudioMixSweepFilterEffectParametersInternal.m │ │ │ ├── AVAudioOutputSettings.m │ │ │ ├── AVAudioSettingsValueConstrainer.m │ │ │ ├── AVBlockOperation.m │ │ │ ├── AVCMNotificationDispatcher.m │ │ │ ├── AVCMNotificationDispatcherListenerAndCallback.m │ │ │ ├── AVCMNotificationDispatcherListenerKey.m │ │ │ ├── AVCallbackContextRegistry.m │ │ │ ├── AVCameraCalibrationData.m │ │ │ ├── AVCameraCalibrationDataInternal.m │ │ │ ├── AVCaption.m │ │ │ ├── AVCaptionConversionAdjustment.m │ │ │ ├── AVCaptionConversionTimeRangeAdjustment.m │ │ │ ├── AVCaptionConversionValidator.m │ │ │ ├── AVCaptionConversionWarning.m │ │ │ ├── AVCaptionFormatConformer.m │ │ │ ├── AVCaptionGroup.m │ │ │ ├── AVCaptionGroupInternal.m │ │ │ ├── AVCaptionGrouper.m │ │ │ ├── AVCaptionInternal.m │ │ │ ├── AVCaptionLength.m │ │ │ ├── AVCaptionLengthInternal.m │ │ │ ├── AVCaptionOutputSettings.m │ │ │ ├── AVCaptionPosition.m │ │ │ ├── AVCaptionPositionInternal.m │ │ │ ├── AVCaptionRegion.m │ │ │ ├── AVCaptionRegionInternal.m │ │ │ ├── AVCaptionRenderer.m │ │ │ ├── AVCaptionRendererInternal.m │ │ │ ├── AVCaptionRendererScene.m │ │ │ ├── AVCaptionRendererSceneInternal.m │ │ │ ├── AVCaptionRuby.m │ │ │ ├── AVCaptionRubyInternal.m │ │ │ ├── AVCaptureAudioChannel.m │ │ │ ├── AVCaptureAudioChannelInternal.m │ │ │ ├── AVCaptureAudioDataOutput.m │ │ │ ├── AVCaptureAudioDataOutputCallbackData.m │ │ │ ├── AVCaptureAudioDataOutputInternal.m │ │ │ ├── AVCaptureAudioFileOutput.m │ │ │ ├── AVCaptureAudioFileOutputInternal.m │ │ │ ├── AVCaptureAudioPreviewOutput.m │ │ │ ├── AVCaptureAudioPreviewOutputInternal.m │ │ │ ├── AVCaptureAudioSettings.m │ │ │ ├── AVCaptureConnection.m │ │ │ ├── AVCaptureConnectionInternal.m │ │ │ ├── AVCaptureDALDevice.m │ │ │ ├── AVCaptureDevice.m │ │ │ ├── AVCaptureDeviceFormat.m │ │ │ ├── AVCaptureDeviceFormatInternal.m │ │ │ ├── AVCaptureDeviceInput.m │ │ │ ├── AVCaptureDeviceInputInternal.m │ │ │ ├── AVCaptureDeviceInputSource.m │ │ │ ├── AVCaptureDeviceInputSourceInternal.m │ │ │ ├── AVCaptureDeviceInternal.m │ │ │ ├── AVCaptureFileOutput.m │ │ │ ├── AVCaptureFileOutputInternal.m │ │ │ ├── AVCaptureFileOutputPauseOperationDescriptor.m │ │ │ ├── AVCaptureFileOutputRecordingOperationDescriptor.m │ │ │ ├── AVCaptureHALDevice.m │ │ │ ├── AVCaptureInput.m │ │ │ ├── AVCaptureInputInternal.m │ │ │ ├── AVCaptureInputPort.m │ │ │ ├── AVCaptureInputPortInternal.m │ │ │ ├── AVCaptureMovieFileOutput.m │ │ │ ├── AVCaptureMovieFileOutputInternal.m │ │ │ ├── AVCaptureOperationDescriptorQueue.m │ │ │ ├── AVCaptureOperationDescriptorQueueItem.m │ │ │ ├── AVCaptureOutput.m │ │ │ ├── AVCaptureOutputInternal.m │ │ │ ├── AVCaptureOutputSettings.m │ │ │ ├── AVCaptureScreenInput.m │ │ │ ├── AVCaptureScreenInputInternal.m │ │ │ ├── AVCaptureSession.m │ │ │ ├── AVCaptureSessionInternal.m │ │ │ ├── AVCaptureSessionInternalState.m │ │ │ ├── AVCaptureStillImageOutput.m │ │ │ ├── AVCaptureStillImageOutputInternal.m │ │ │ ├── AVCaptureStillImageOutputUtils.m │ │ │ ├── AVCaptureStillImageRequest.m │ │ │ ├── AVCaptureStillImageTransform.m │ │ │ ├── AVCaptureVideoDataOutput.m │ │ │ ├── AVCaptureVideoDataOutputCallbackData.m │ │ │ ├── AVCaptureVideoDataOutputInternal.m │ │ │ ├── AVCaptureVideoPreviewLayer.m │ │ │ ├── AVCaptureVideoPreviewLayerInternal.m │ │ │ ├── AVCaptureVideoSettings.m │ │ │ ├── AVChapterMetadataItem.m │ │ │ ├── AVChapterMetadataItemInternal.m │ │ │ ├── AVClientBlockKVONotifier.m │ │ │ ├── AVComposition.m │ │ │ ├── AVCompositionFormatReaderInspector.m │ │ │ ├── AVCompositionInternal.m │ │ │ ├── AVCompositionTrack.m │ │ │ ├── AVCompositionTrackInternal.m │ │ │ ├── AVCompositionTrackReaderInspector.m │ │ │ ├── AVCompositionTrackSegment.m │ │ │ ├── AVCompositionTrackSegmentInternal.m │ │ │ ├── AVContentKeyRequest.m │ │ │ ├── AVContentKeyRequestInternal.m │ │ │ ├── AVContentKeyResponse.m │ │ │ ├── AVContentKeyResponseClearKey.m │ │ │ ├── AVContentKeyResponseFairPlayStreaming.m │ │ │ ├── AVContentKeyResponseInternal.m │ │ │ ├── AVContentKeySession.m │ │ │ ├── AVContentKeySessionInternal.m │ │ │ ├── AVCoreImageFilterCustomVideoCompositor.m │ │ │ ├── AVCoreImageFilterVideoCompositionInstruction.m │ │ │ ├── AVCustomVideoCompositorSession.m │ │ │ ├── AVDataAsset.m │ │ │ ├── AVDataDelegateAsset.m │ │ │ ├── AVDataDelegateAssetInternal.m │ │ │ ├── AVDateRangeMetadataGroup.m │ │ │ ├── AVDateRangeMetadataGroupInternal.m │ │ │ ├── AVDepartureAnnouncingObjectMonitor.m │ │ │ ├── AVDepthData.m │ │ │ ├── AVDepthDataInternal.m │ │ │ ├── AVDispatchGroup.m │ │ │ ├── AVEmptyOutputDeviceDiscoverySessionAvailableOutputDevices.m │ │ │ ├── AVEventWaiter.m │ │ │ ├── AVExecutionEnvironment.m │ │ │ ├── AVExportSettingsOutputSettingsAssistantBaseSettings.m │ │ │ ├── AVExportSettingsOutputSettingsAssistantVideoSettingsAdjuster.m │ │ │ ├── AVFigAssetInspector.m │ │ │ ├── AVFigAssetInspectorLoader.m │ │ │ ├── AVFigAssetTrackInspector.m │ │ │ ├── AVFigAssetWriterAudioTrack.m │ │ │ ├── AVFigAssetWriterCaptionTrack.m │ │ │ ├── AVFigAssetWriterFinishWritingAsyncOperation.m │ │ │ ├── AVFigAssetWriterGenericTrack.m │ │ │ ├── AVFigAssetWriterTrack.m │ │ │ ├── AVFigAssetWriterVideoTrack.m │ │ │ ├── AVFigCommChannelUUIDCommunicationChannelManager.m │ │ │ ├── AVFigCommChannelUUIDOutputContextCommunicationChannelImpl.m │ │ │ ├── AVFigEndpointFigRoutingContextOutputDeviceTranslator.m │ │ │ ├── AVFigEndpointOutputDeviceDiscoverySessionAvailableOutputDevicesImpl.m │ │ │ ├── AVFigEndpointOutputDeviceImpl.m │ │ │ ├── AVFigEndpointPickerOutputContextImpl.m │ │ │ ├── AVFigEndpointPickerOutputDeviceDiscoverySessionFactory.m │ │ │ ├── AVFigEndpointPickerOutputDeviceDiscoverySessionImpl.m │ │ │ ├── AVFigEndpointUIAgentOutputContextManagerImpl.m │ │ │ ├── AVFigEndpointUIAgentOutputDeviceAuthorizationRequestImpl.m │ │ │ ├── AVFigEndpointUIAgentOutputDeviceAuthorizationSessionImpl.m │ │ │ ├── AVFigObjectInspector.m │ │ │ ├── AVFigRemoteRouteDiscovererFactory.m │ │ │ ├── AVFigRouteDescriptorFigRoutingContextOutputDeviceTranslator.m │ │ │ ├── AVFigRouteDescriptorOutputDeviceDiscoverySessionAvailableOutputDevicesImpl.m │ │ │ ├── AVFigRouteDescriptorOutputDeviceImpl.m │ │ │ ├── AVFigRouteDiscovererOutputDeviceDiscoverySessionFactory.m │ │ │ ├── AVFigRouteDiscovererOutputDeviceDiscoverySessionImpl.m │ │ │ ├── AVFigRoutingContextCommandOutputDeviceConfiguration.m │ │ │ ├── AVFigRoutingContextCommandOutputDeviceConfigurationModification.m │ │ │ ├── AVFigRoutingContextOutputContextImpl.m │ │ │ ├── AVFigRoutingContextRouteChangeOperation.m │ │ │ ├── AVFigRoutingContextSendConfigureDeviceCommandOperation.m │ │ │ ├── AVFloat64Range.m │ │ │ ├── AVFormatReaderInspector.m │ │ │ ├── AVFormatSpecification.m │ │ │ ├── AVFoundation.m │ │ │ ├── AVFragmentedAsset.m │ │ │ ├── AVFragmentedAssetInternal.m │ │ │ ├── AVFragmentedAssetMinder.m │ │ │ ├── AVFragmentedAssetMinderInternal.m │ │ │ ├── AVFragmentedAssetTrack.m │ │ │ ├── AVFragmentedAssetTrackInternal.m │ │ │ ├── AVFragmentedMovie.m │ │ │ ├── AVFragmentedMovieInternal.m │ │ │ ├── AVFragmentedMovieMinder.m │ │ │ ├── AVFragmentedMovieTrack.m │ │ │ ├── AVFragmentedMovieTrackInternal.m │ │ │ ├── AVFrameRateRange.m │ │ │ ├── AVFrameRateRangeInternal.m │ │ │ ├── AVGenericMediaFileOutputSettingsValidator.m │ │ │ ├── AVGlobalOperationQueue.m │ │ │ ├── AVIOKitOutputSettingsAssistantVideoEncoderCapabilities.m │ │ │ ├── AVISOOutputSettingsValidator.m │ │ │ ├── AVKVODispatcher.m │ │ │ ├── AVKeyPathDependency.m │ │ │ ├── AVKeyPathDependencyManager.m │ │ │ ├── AVKeyPathFlattener.m │ │ │ ├── AVKeyPathFlattenerKVOIntrospectionShim.m │ │ │ ├── AVLazyValueLoadingMetadataItem.m │ │ │ ├── AVLazyValueLoadingMetadataItemInternal.m │ │ │ ├── AVLocalOutputDeviceImpl.m │ │ │ ├── AVManagedAssetCache.m │ │ │ ├── AVManagedAssetCacheInternal.m │ │ │ ├── AVMediaDataRequester.m │ │ │ ├── AVMediaDataStorage.m │ │ │ ├── AVMediaDataStorageInternal.m │ │ │ ├── AVMediaFileOutputSettingsValidator.m │ │ │ ├── AVMediaFileSegmenter.m │ │ │ ├── AVMediaFileType.m │ │ │ ├── AVMediaSelection.m │ │ │ ├── AVMediaSelectionGroup.m │ │ │ ├── AVMediaSelectionGroupInternal.m │ │ │ ├── AVMediaSelectionInternal.m │ │ │ ├── AVMediaSelectionKeyValueOption.m │ │ │ ├── AVMediaSelectionOption.m │ │ │ ├── AVMediaSelectionOptionInternal.m │ │ │ ├── AVMediaSelectionTrackOption.m │ │ │ ├── AVMetadataEnumerator.m │ │ │ ├── AVMetadataFaceObject.m │ │ │ ├── AVMetadataFaceObjectInternal.m │ │ │ ├── AVMetadataGroup.m │ │ │ ├── AVMetadataItem.m │ │ │ ├── AVMetadataItemFilter.m │ │ │ ├── AVMetadataItemFilterForSharing.m │ │ │ ├── AVMetadataItemFilterInternal.m │ │ │ ├── AVMetadataItemInternal.m │ │ │ ├── AVMetadataItemValueRequest.m │ │ │ ├── AVMetadataItemValueRequestInternal.m │ │ │ ├── AVMetadataObject.m │ │ │ ├── AVMetadataObjectInternal.m │ │ │ ├── AVMovie.m │ │ │ ├── AVMovieInternal.m │ │ │ ├── AVMovieTrack.m │ │ │ ├── AVMovieTrackInternal.m │ │ │ ├── AVMutableAudioMix.m │ │ │ ├── AVMutableAudioMixInputParameters.m │ │ │ ├── AVMutableCaption.m │ │ │ ├── AVMutableCaptionRegion.m │ │ │ ├── AVMutableComposition.m │ │ │ ├── AVMutableCompositionInternal.m │ │ │ ├── AVMutableCompositionTrack.m │ │ │ ├── AVMutableCompositionTrackInternal.m │ │ │ ├── AVMutableDateRangeMetadataGroup.m │ │ │ ├── AVMutableMediaSelection.m │ │ │ ├── AVMutableMetadataItem.m │ │ │ ├── AVMutableMovie.m │ │ │ ├── AVMutableMovieInternal.m │ │ │ ├── AVMutableMovieTrack.m │ │ │ ├── AVMutableMovieTrackInternal.m │ │ │ ├── AVMutableScheduledAudioParameters.m │ │ │ ├── AVMutableTimedMetadataGroup.m │ │ │ ├── AVMutableVideoComposition.m │ │ │ ├── AVMutableVideoCompositionInstruction.m │ │ │ ├── AVMutableVideoCompositionLayerInstruction.m │ │ │ ├── AVNSURLProtocolRequest.m │ │ │ ├── AVNetworkPlaybackPerfHUDLayer.m │ │ │ ├── AVObservationBlockFactory.m │ │ │ ├── AVOccasionalTimebaseObserver.m │ │ │ ├── AVOnceTimebaseObserver.m │ │ │ ├── AVOperation.m │ │ │ ├── AVOperationQueueWithFundamentalDependency.m │ │ │ ├── AVOutputContext.m │ │ │ ├── AVOutputContextCommunicationChannel.m │ │ │ ├── AVOutputContextCommunicationChannelInternal.m │ │ │ ├── AVOutputContextDestinationChange.m │ │ │ ├── AVOutputContextDestinationChangeInternal.m │ │ │ ├── AVOutputContextInternal.m │ │ │ ├── AVOutputContextManager.m │ │ │ ├── AVOutputContextManagerInternal.m │ │ │ ├── AVOutputDevice.m │ │ │ ├── AVOutputDeviceAuthorizationRequest.m │ │ │ ├── AVOutputDeviceAuthorizationRequestInternal.m │ │ │ ├── AVOutputDeviceAuthorizationSession.m │ │ │ ├── AVOutputDeviceAuthorizationSessionInternal.m │ │ │ ├── AVOutputDeviceAuthorizedPeer.m │ │ │ ├── AVOutputDeviceAuthorizedPeerInternal.m │ │ │ ├── AVOutputDeviceDiscoverySession.m │ │ │ ├── AVOutputDeviceDiscoverySessionAvailableOutputDevices.m │ │ │ ├── AVOutputDeviceDiscoverySessionAvailableOutputDevicesInternal.m │ │ │ ├── AVOutputDeviceDiscoverySessionInternal.m │ │ │ ├── AVOutputDeviceFrecencyManager.m │ │ │ ├── AVOutputDeviceInternal.m │ │ │ ├── AVOutputSettings.m │ │ │ ├── AVOutputSettingsAssistant.m │ │ │ ├── AVOutputSettingsAssistantInternal.m │ │ │ ├── AVPairedDevice.m │ │ │ ├── AVPairedDeviceInternal.m │ │ │ ├── AVPeriodicTimebaseObserver.m │ │ │ ├── AVPersistableContentKeyRequest.m │ │ │ ├── AVPixelBufferAttributeMediator.m │ │ │ ├── AVPixelBufferAttributesVideoOutputSettings.m │ │ │ ├── AVPlaybackItemInspector.m │ │ │ ├── AVPlaybackItemInspectorLoader.m │ │ │ ├── AVPlaybackItemTrackInspector.m │ │ │ ├── AVPlayer.m │ │ │ ├── AVPlayerConnection.m │ │ │ ├── AVPlayerInternal.m │ │ │ ├── AVPlayerItem.m │ │ │ ├── AVPlayerItemAccessLog.m │ │ │ ├── AVPlayerItemAccessLogEvent.m │ │ │ ├── AVPlayerItemAccessLogEventInternal.m │ │ │ ├── AVPlayerItemAccessLogInternal.m │ │ │ ├── AVPlayerItemErrorLog.m │ │ │ ├── AVPlayerItemErrorLogEvent.m │ │ │ ├── AVPlayerItemErrorLogEventInternal.m │ │ │ ├── AVPlayerItemErrorLogInternal.m │ │ │ ├── AVPlayerItemInternal.m │ │ │ ├── AVPlayerItemLegibleOutput.m │ │ │ ├── AVPlayerItemLegibleOutputInternal.m │ │ │ ├── AVPlayerItemLegibleOutputRealDependencyFactory.m │ │ │ ├── AVPlayerItemMediaDataCollector.m │ │ │ ├── AVPlayerItemMediaDataCollectorInternal.m │ │ │ ├── AVPlayerItemMetadataCollector.m │ │ │ ├── AVPlayerItemMetadataCollectorInternal.m │ │ │ ├── AVPlayerItemMetadataOutput.m │ │ │ ├── AVPlayerItemMetadataOutputInternal.m │ │ │ ├── AVPlayerItemOutput.m │ │ │ ├── AVPlayerItemOutputInternal.m │ │ │ ├── AVPlayerItemTrack.m │ │ │ ├── AVPlayerItemTrackInternal.m │ │ │ ├── AVPlayerItemVideoOutput.m │ │ │ ├── AVPlayerItemVideoOutputInternal.m │ │ │ ├── AVPlayerLayer.m │ │ │ ├── AVPlayerLayerIntermediateLayer.m │ │ │ ├── AVPlayerLayerInternal.m │ │ │ ├── AVPlayerLooper.m │ │ │ ├── AVPlayerLooperInternal.m │ │ │ ├── AVPlayerMediaSelectionCriteria.m │ │ │ ├── AVPlayerQueueModificationDescription.m │ │ │ ├── AVPropertyStorage.m │ │ │ ├── AVQueuePlayer.m │ │ │ ├── AVQueuePlayerInternal.m │ │ │ ├── AVRemoteFigRoutingContextFactory.m │ │ │ ├── AVResolvedDecompressionSettings.m │ │ │ ├── AVRetainReleaseWeakReference.m │ │ │ ├── AVRouteConfigUpdatedFigRoutingContextRouteChangeOperation.m │ │ │ ├── AVRouteDetector.m │ │ │ ├── AVRouteDetectorInternal.m │ │ │ ├── AVRunLoopCondition.m │ │ │ ├── AVRunLoopConditionRunLoopState.m │ │ │ ├── AVSampleBufferAudioRenderer.m │ │ │ ├── AVSampleBufferAudioRendererInternal.m │ │ │ ├── AVSampleBufferDisplayLayer.m │ │ │ ├── AVSampleBufferDisplayLayerContentLayer.m │ │ │ ├── AVSampleBufferDisplayLayerInternal.m │ │ │ ├── AVSampleBufferGenerator.m │ │ │ ├── AVSampleBufferGeneratorInternal.m │ │ │ ├── AVSampleBufferRenderSynchronizer.m │ │ │ ├── AVSampleBufferRenderSynchronizerInternal.m │ │ │ ├── AVSampleBufferRequest.m │ │ │ ├── AVSampleBufferRequestInternal.m │ │ │ ├── AVSampleCursor.m │ │ │ ├── AVSampleCursorInternal.m │ │ │ ├── AVScheduledAudioParameters.m │ │ │ ├── AVScheduledAudioParametersInternal.m │ │ │ ├── AVSegmentedMediaClosedCaptionReport.m │ │ │ ├── AVSegmentedMediaReport.m │ │ │ ├── AVStreamDataAsset.m │ │ │ ├── AVStreamDataAssetInspector.m │ │ │ ├── AVStreamDataAssetTrackInspector.m │ │ │ ├── AVStreamDataInspectionOnlyAsset.m │ │ │ ├── AVStreamDataParser.m │ │ │ ├── AVStreamDataParserInternal.m │ │ │ ├── AVStreamSession.m │ │ │ ├── AVStreamSessionInternal.m │ │ │ ├── AVStreamingResourceInspector.m │ │ │ ├── AVSynchronizedLayer.m │ │ │ ├── AVSynchronizedLayerInternal.m │ │ │ ├── AVTextStyleRule.m │ │ │ ├── AVTextStyleRuleInternal.m │ │ │ ├── AVTimeFormatter.m │ │ │ ├── AVTimeFormatterInternal.m │ │ │ ├── AVTimebaseObserver.m │ │ │ ├── AVTimedMetadataGroup.m │ │ │ ├── AVTimedMetadataGroupInternal.m │ │ │ ├── AVTrackReaderInspector.m │ │ │ ├── AVTwoPartKeyPath.m │ │ │ ├── AVURLAsset.m │ │ │ ├── AVURLAssetInternal.m │ │ │ ├── AVURLAuthenticationChallenge.m │ │ │ ├── AVUnreachableAssetInspectorLoader.m │ │ │ ├── AVVideoComposition.m │ │ │ ├── AVVideoCompositionCoreAnimationTool.m │ │ │ ├── AVVideoCompositionCoreAnimationToolInternal.m │ │ │ ├── AVVideoCompositionInstruction.m │ │ │ ├── AVVideoCompositionInstructionInternal.m │ │ │ ├── AVVideoCompositionInternal.m │ │ │ ├── AVVideoCompositionLayerInstruction.m │ │ │ ├── AVVideoCompositionLayerInstructionInternal.m │ │ │ ├── AVVideoCompositionRenderContext.m │ │ │ ├── AVVideoCompositionRenderContextInternal.m │ │ │ ├── AVVideoOutputSettings.m │ │ │ ├── AVVideoPerformanceMetrics.m │ │ │ ├── AVVideoPerformanceMetricsInternal.m │ │ │ ├── AVWAVEOutputSettingsValidator.m │ │ │ ├── AVWaitForNotificationOrDeallocationOperation.m │ │ │ ├── AVWeakObservableCallbackCancellationHelper.m │ │ │ ├── AVWeakObservationBlockFactory.m │ │ │ ├── AVWeakReference.m │ │ │ ├── AVWeakReferencingDelegateStorage.m │ │ │ ├── AVWeaklyObservedObjectClientBlockKVONotifier.m │ │ │ ├── AVWorkaroundNSBlockOperation.m │ │ │ ├── CMTimeAsValue.m │ │ │ ├── CMTimeMappingAsValue.m │ │ │ ├── CMTimeRangeAsValue.m │ │ │ ├── MediaIOGraphNodeDescription.m │ │ │ └── MediaIOGraphNodeList.m │ ├── AVKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AVKit │ │ │ │ ├── AVAnimator.h │ │ │ │ ├── AVAppendableData.h │ │ │ │ ├── AVAssetAudioExtractor.h │ │ │ │ ├── AVAtomicCancelationToken.h │ │ │ │ ├── AVAudioAmplitudeExtractionSession.h │ │ │ │ ├── AVAudioAmplitudeExtractionSessionHelper.h │ │ │ │ ├── AVAudioAmplitudeSampleExtractionHelper.h │ │ │ │ ├── AVAudioExtractor.h │ │ │ │ ├── AVAudioLevelIndicatorView.h │ │ │ │ ├── AVAudioOnlyIndicatorView.h │ │ │ │ ├── AVAudioPlaybackControlsViewController.h │ │ │ │ ├── AVAudioTrackView.h │ │ │ │ ├── AVAudioTrimControlsViewController.h │ │ │ │ ├── AVAudioView.h │ │ │ │ ├── AVBindingInfo.h │ │ │ │ ├── AVBindingInfoLegacy.h │ │ │ │ ├── AVButton.h │ │ │ │ ├── AVCameraDisabledView.h │ │ │ │ ├── AVCaptureController.h │ │ │ │ ├── AVCaptureControllerDelegate.h │ │ │ │ ├── AVCaptureControlsRecordingViewController.h │ │ │ │ ├── AVCaptureControlsViewController.h │ │ │ │ ├── AVCaptureDeviceInputSourceItem.h │ │ │ │ ├── AVCaptureDeviceSelectionController.h │ │ │ │ ├── AVCaptureQualityItem.h │ │ │ │ ├── AVCaptureView.h │ │ │ │ ├── AVChapter.h │ │ │ │ ├── AVChapterMenuController.h │ │ │ │ ├── AVCircularProgressIndicator.h │ │ │ │ ├── AVConcreteMutableValueTiming.h │ │ │ │ ├── AVConcreteValueTiming.h │ │ │ │ ├── AVControlsContainerViewController.h │ │ │ │ ├── AVControlsContainerViewControllerContent.h │ │ │ │ ├── AVControlsViewController.h │ │ │ │ ├── AVDataPool.h │ │ │ │ ├── AVDraggableImageView.h │ │ │ │ ├── AVEstimatedDurationFormatter.h │ │ │ │ ├── AVExportProgressWindowController.h │ │ │ │ ├── AVExportSessionHelper.h │ │ │ │ ├── AVExportSessionHelperDelegate.h │ │ │ │ ├── AVExternalPlaybackIndicatorView.h │ │ │ │ ├── AVFloatingCaptureControlsViewController.h │ │ │ │ ├── AVFloatingPlaybackControlsViewController.h │ │ │ │ ├── AVFloatingTrimControlsViewController.h │ │ │ │ ├── AVFoundationExportSession.h │ │ │ │ ├── AVFunctionBarAudioCaptureDeviceSelectionButtonViewController.h │ │ │ │ ├── AVFunctionBarAudioCaptureDeviceSelectionButtonViewControllerDelegate.h │ │ │ │ ├── AVFunctionBarAudioTrackView.h │ │ │ │ ├── AVFunctionBarCaptureInputSourceItem.h │ │ │ │ ├── AVFunctionBarCaptureInputSourceSelectionViewController.h │ │ │ │ ├── AVFunctionBarCaptureInputSourceSelectionViewControllerDelegate.h │ │ │ │ ├── AVFunctionBarMediaSelectionControlling.h │ │ │ │ ├── AVFunctionBarMediaSelectionOption.h │ │ │ │ ├── AVFunctionBarMediaSelectionViewController.h │ │ │ │ ├── AVFunctionBarMediaSelectionViewControllerDelegate.h │ │ │ │ ├── AVFunctionBarPlaybackControlsController.h │ │ │ │ ├── AVFunctionBarPlaybackControlsControlling.h │ │ │ │ ├── AVFunctionBarPlaybackControlsControllingInternal.h │ │ │ │ ├── AVFunctionBarPlaybackControlsProvider.h │ │ │ │ ├── AVFunctionBarPlaybackControlsViewController.h │ │ │ │ ├── AVFunctionBarRecordingControlsController.h │ │ │ │ ├── AVFunctionBarRecordingControlsControlling.h │ │ │ │ ├── AVFunctionBarRecordingControlsControllingInternal.h │ │ │ │ ├── AVFunctionBarRecordingControlsProvider.h │ │ │ │ ├── AVFunctionBarRecordingControlsViewController.h │ │ │ │ ├── AVFunctionBarScrubber.h │ │ │ │ ├── AVFunctionBarScrubberController.h │ │ │ │ ├── AVFunctionBarScrubberControlling.h │ │ │ │ ├── AVFunctionBarScrubberDelegateInternal.h │ │ │ │ ├── AVFunctionBarScrubberExpandButton.h │ │ │ │ ├── AVFunctionBarScrubberExpandButtonCell.h │ │ │ │ ├── AVFunctionBarScrubberInternal.h │ │ │ │ ├── AVFunctionBarScrubberKnobView.h │ │ │ │ ├── AVFunctionBarTrackControlling.h │ │ │ │ ├── AVFunctionBarTrackView.h │ │ │ │ ├── AVFunctionBarTrackViewController.h │ │ │ │ ├── AVFunctionBarVideoTrackView.h │ │ │ │ ├── AVInlineCaptureControlsViewController.h │ │ │ │ ├── AVInlineDeviceSelectionCaptureControlsViewController.h │ │ │ │ ├── AVInlinePlaybackControlsViewController.h │ │ │ │ ├── AVInlineTrimControlsViewController.h │ │ │ │ ├── AVIterableCache.h │ │ │ │ ├── AVKeyValueChange.h │ │ │ │ ├── AVKit.h │ │ │ │ ├── AVLoadingIndicatorView.h │ │ │ │ ├── AVMicaPackage.h │ │ │ │ ├── AVMinimalPlaybackControlsViewController.h │ │ │ │ ├── AVMovableView.h │ │ │ │ ├── AVMutableValueTiming.h │ │ │ │ ├── AVNowPlayingInfoController.h │ │ │ │ ├── AVObservationController.h │ │ │ │ ├── AVOutputContextController.h │ │ │ │ ├── AVOutputDeviceDiscoverySessionController.h │ │ │ │ ├── AVOutputDeviceMenuController.h │ │ │ │ ├── AVOutputDeviceMenuRemoteViewController.h │ │ │ │ ├── AVOutputDeviceMenuServiceInterface.h │ │ │ │ ├── AVOutputDevicePickerButton.h │ │ │ │ ├── AVPanoramicStretchHelper.h │ │ │ │ ├── AVPlayButtonLegacy.h │ │ │ │ ├── AVPlayerController.h │ │ │ │ ├── AVPlayerControllerTimeResolver.h │ │ │ │ ├── AVPlayerControlsViewController.h │ │ │ │ ├── AVPlayerView.h │ │ │ │ ├── AVPooledData.h │ │ │ │ ├── AVProgressEstimator.h │ │ │ │ ├── AVProxyKVOObserver.h │ │ │ │ ├── AVReadOnlyRangeOfAppendableData.h │ │ │ │ ├── AVRoutePickerRemoteViewController.h │ │ │ │ ├── AVRoutePickerView.h │ │ │ │ ├── AVRoutePickerViewHostInterface.h │ │ │ │ ├── AVRoutePickerViewRemoteViewControllerDelegate.h │ │ │ │ ├── AVRoutePickerViewServiceInterface.h │ │ │ │ ├── AVScanBackwardTextFieldHiddenValueTransformer.h │ │ │ │ ├── AVScanBackwardTextFieldValueValueTransformer.h │ │ │ │ ├── AVScanForwardTextFieldHiddenValueTransformer.h │ │ │ │ ├── AVScanForwardTextFieldValueValueTransformer.h │ │ │ │ ├── AVScrollSliderView.h │ │ │ │ ├── AVScrubber.h │ │ │ │ ├── AVScrubberCell.h │ │ │ │ ├── AVScrubberValueTransformer.h │ │ │ │ ├── AVScrubberValueTransformerDelegate.h │ │ │ │ ├── AVShadowTimeFormatter.h │ │ │ │ ├── AVShadowTimeFormatterLegacy.h │ │ │ │ ├── AVShareController.h │ │ │ │ ├── AVSlowMotionSlider.h │ │ │ │ ├── AVSlowMotionSliderDelegate.h │ │ │ │ ├── AVSlowMotionSliderHandleView.h │ │ │ │ ├── AVSlowMotionSliderTrackView.h │ │ │ │ ├── AVStatusOverlayView.h │ │ │ │ ├── AVThumbnail.h │ │ │ │ ├── AVThumbnailCache.h │ │ │ │ ├── AVThumbnailGenerationRequest.h │ │ │ │ ├── AVThumbnailGenerator.h │ │ │ │ ├── AVTimeControlling.h │ │ │ │ ├── AVTimeIndicatorPopover.h │ │ │ │ ├── AVTimeIndicatorPopoverContentViewController.h │ │ │ │ ├── AVTimer.h │ │ │ │ ├── AVTouchBarAudioCaptureDeviceSelectionButtonViewController.h │ │ │ │ ├── AVTouchBarAudioCaptureDeviceSelectionButtonViewControllerDelegate.h │ │ │ │ ├── AVTouchBarAudioTrackView.h │ │ │ │ ├── AVTouchBarCaptureInputSourceItem.h │ │ │ │ ├── AVTouchBarCaptureInputSourceSelectionViewController.h │ │ │ │ ├── AVTouchBarCaptureInputSourceSelectionViewControllerDelegate.h │ │ │ │ ├── AVTouchBarDescriptionBasedPlayerController.h │ │ │ │ ├── AVTouchBarMediaSelectionButtonViewController.h │ │ │ │ ├── AVTouchBarMediaSelectionButtonViewControllerDelegate.h │ │ │ │ ├── AVTouchBarMediaSelectionControlling.h │ │ │ │ ├── AVTouchBarMediaSelectionOption.h │ │ │ │ ├── AVTouchBarMediaSelectionOptionTwoLineButton.h │ │ │ │ ├── AVTouchBarMediaSelectionOptionTwoLineButtonCell.h │ │ │ │ ├── AVTouchBarMediaSelectionViewController.h │ │ │ │ ├── AVTouchBarMediaSelectionViewControllerDelegate.h │ │ │ │ ├── AVTouchBarPlaybackControlsController.h │ │ │ │ ├── AVTouchBarPlaybackControlsControlling.h │ │ │ │ ├── AVTouchBarPlaybackControlsControllingInternal.h │ │ │ │ ├── AVTouchBarPlaybackControlsItem.h │ │ │ │ ├── AVTouchBarPlaybackControlsProvider.h │ │ │ │ ├── AVTouchBarPlaybackControlsViewController.h │ │ │ │ ├── AVTouchBarRecordingControlsController.h │ │ │ │ ├── AVTouchBarRecordingControlsControlling.h │ │ │ │ ├── AVTouchBarRecordingControlsControllingInternal.h │ │ │ │ ├── AVTouchBarRecordingControlsProvider.h │ │ │ │ ├── AVTouchBarRecordingControlsViewController.h │ │ │ │ ├── AVTouchBarScrubber.h │ │ │ │ ├── AVTouchBarScrubberController.h │ │ │ │ ├── AVTouchBarScrubberControlling.h │ │ │ │ ├── AVTouchBarScrubberDelegateInternal.h │ │ │ │ ├── AVTouchBarScrubberExpandButton.h │ │ │ │ ├── AVTouchBarScrubberExpandButtonCell.h │ │ │ │ ├── AVTouchBarScrubberInternal.h │ │ │ │ ├── AVTouchBarScrubberKnobView.h │ │ │ │ ├── AVTouchBarTrackControlling.h │ │ │ │ ├── AVTouchBarTrackView.h │ │ │ │ ├── AVTouchBarTrackViewController.h │ │ │ │ ├── AVTouchBarTrimControlsViewController.h │ │ │ │ ├── AVTouchBarVideoTrackView.h │ │ │ │ ├── AVTrackView.h │ │ │ │ ├── AVTrackViewController.h │ │ │ │ ├── AVTrimClipView.h │ │ │ │ ├── AVTrimControlsViewController.h │ │ │ │ ├── AVTrimControlsViewControllerDelegate.h │ │ │ │ ├── AVTrimDimmerView.h │ │ │ │ ├── AVTrimIndicatorAccessibilityElement.h │ │ │ │ ├── AVTrimIndicatorFocusRingView.h │ │ │ │ ├── AVTrimIndicatorView.h │ │ │ │ ├── AVTrimSelectionEndFocusRingView.h │ │ │ │ ├── AVTrimSelectionStartFocusRingView.h │ │ │ │ ├── AVTrimSelectionView.h │ │ │ │ ├── AVTrimTracksView.h │ │ │ │ ├── AVTrimView.h │ │ │ │ ├── AVTrimViewDelegate.h │ │ │ │ ├── AVUnsupportedContentIndicatorView.h │ │ │ │ ├── AVValueTiming.h │ │ │ │ ├── AVVideoTrackThumbnail.h │ │ │ │ ├── AVVideoTrackThumbnailManager.h │ │ │ │ ├── AVVideoTrackView.h │ │ │ │ ├── AVVolumeButton.h │ │ │ │ ├── AVVolumeButtonContentView.h │ │ │ │ ├── AVVolumeButtonDelegate.h │ │ │ │ ├── AVVolumeImageValueTransformer.h │ │ │ │ ├── AVWaveformGenerator.h │ │ │ │ ├── CAAnimationDelegate.h │ │ │ │ ├── CALayerDelegate.h │ │ │ │ ├── CAMLParserDelegate.h │ │ │ │ ├── CAStateControllerDelegate.h │ │ │ │ ├── NSAccessibilityElement.h │ │ │ │ ├── NSAccessibilitySlider.h │ │ │ │ ├── NSDescriptionBasedTouchBarItem.h │ │ │ │ ├── NSDescriptionBasedTouchBarItemProvider.h │ │ │ │ ├── NSMenuDelegate.h │ │ │ │ ├── NSPopoverDelegate.h │ │ │ │ ├── NSSharingServiceDelegate.h │ │ │ │ ├── NSSharingServicePickerDelegate.h │ │ │ │ ├── NSStackViewDelegate.h │ │ │ │ ├── NSTouchBarDelegate.h │ │ │ │ ├── NSTouchBarProvider.h │ │ │ │ ├── NSUserInterfaceValidations.h │ │ │ │ └── _AVBundle.h │ │ └── src │ │ │ ├── AVAnimator.m │ │ │ ├── AVAppendableData.m │ │ │ ├── AVAssetAudioExtractor.m │ │ │ ├── AVAtomicCancelationToken.m │ │ │ ├── AVAudioAmplitudeExtractionSession.m │ │ │ ├── AVAudioAmplitudeExtractionSessionHelper.m │ │ │ ├── AVAudioAmplitudeSampleExtractionHelper.m │ │ │ ├── AVAudioExtractor.m │ │ │ ├── AVAudioLevelIndicatorView.m │ │ │ ├── AVAudioOnlyIndicatorView.m │ │ │ ├── AVAudioPlaybackControlsViewController.m │ │ │ ├── AVAudioTrackView.m │ │ │ ├── AVAudioTrimControlsViewController.m │ │ │ ├── AVAudioView.m │ │ │ ├── AVBindingInfo.m │ │ │ ├── AVBindingInfoLegacy.m │ │ │ ├── AVButton.m │ │ │ ├── AVCameraDisabledView.m │ │ │ ├── AVCaptureController.m │ │ │ ├── AVCaptureControlsRecordingViewController.m │ │ │ ├── AVCaptureControlsViewController.m │ │ │ ├── AVCaptureDeviceInputSourceItem.m │ │ │ ├── AVCaptureDeviceSelectionController.m │ │ │ ├── AVCaptureQualityItem.m │ │ │ ├── AVCaptureView.m │ │ │ ├── AVChapter.m │ │ │ ├── AVChapterMenuController.m │ │ │ ├── AVCircularProgressIndicator.m │ │ │ ├── AVConcreteMutableValueTiming.m │ │ │ ├── AVConcreteValueTiming.m │ │ │ ├── AVControlsContainerViewController.m │ │ │ ├── AVControlsViewController.m │ │ │ ├── AVDataPool.m │ │ │ ├── AVDraggableImageView.m │ │ │ ├── AVEstimatedDurationFormatter.m │ │ │ ├── AVExportProgressWindowController.m │ │ │ ├── AVExternalPlaybackIndicatorView.m │ │ │ ├── AVFloatingCaptureControlsViewController.m │ │ │ ├── AVFloatingPlaybackControlsViewController.m │ │ │ ├── AVFloatingTrimControlsViewController.m │ │ │ ├── AVFoundationExportSession.m │ │ │ ├── AVFunctionBarAudioCaptureDeviceSelectionButtonViewController.m │ │ │ ├── AVFunctionBarAudioTrackView.m │ │ │ ├── AVFunctionBarCaptureInputSourceItem.m │ │ │ ├── AVFunctionBarCaptureInputSourceSelectionViewController.m │ │ │ ├── AVFunctionBarMediaSelectionOption.m │ │ │ ├── AVFunctionBarMediaSelectionViewController.m │ │ │ ├── AVFunctionBarPlaybackControlsController.m │ │ │ ├── AVFunctionBarPlaybackControlsProvider.m │ │ │ ├── AVFunctionBarPlaybackControlsViewController.m │ │ │ ├── AVFunctionBarRecordingControlsController.m │ │ │ ├── AVFunctionBarRecordingControlsProvider.m │ │ │ ├── AVFunctionBarRecordingControlsViewController.m │ │ │ ├── AVFunctionBarScrubber.m │ │ │ ├── AVFunctionBarScrubberController.m │ │ │ ├── AVFunctionBarScrubberExpandButton.m │ │ │ ├── AVFunctionBarScrubberExpandButtonCell.m │ │ │ ├── AVFunctionBarScrubberInternal.m │ │ │ ├── AVFunctionBarScrubberKnobView.m │ │ │ ├── AVFunctionBarTrackView.m │ │ │ ├── AVFunctionBarTrackViewController.m │ │ │ ├── AVFunctionBarVideoTrackView.m │ │ │ ├── AVInlineCaptureControlsViewController.m │ │ │ ├── AVInlineDeviceSelectionCaptureControlsViewController.m │ │ │ ├── AVInlinePlaybackControlsViewController.m │ │ │ ├── AVInlineTrimControlsViewController.m │ │ │ ├── AVIterableCache.m │ │ │ ├── AVKeyValueChange.m │ │ │ ├── AVKit.m │ │ │ ├── AVLoadingIndicatorView.m │ │ │ ├── AVMicaPackage.m │ │ │ ├── AVMinimalPlaybackControlsViewController.m │ │ │ ├── AVMovableView.m │ │ │ ├── AVMutableValueTiming.m │ │ │ ├── AVNowPlayingInfoController.m │ │ │ ├── AVObservationController.m │ │ │ ├── AVOutputContextController.m │ │ │ ├── AVOutputDeviceDiscoverySessionController.m │ │ │ ├── AVOutputDeviceMenuController.m │ │ │ ├── AVOutputDeviceMenuRemoteViewController.m │ │ │ ├── AVOutputDevicePickerButton.m │ │ │ ├── AVPanoramicStretchHelper.m │ │ │ ├── AVPlayButtonLegacy.m │ │ │ ├── AVPlayerController.m │ │ │ ├── AVPlayerControllerTimeResolver.m │ │ │ ├── AVPlayerControlsViewController.m │ │ │ ├── AVPlayerView.m │ │ │ ├── AVPooledData.m │ │ │ ├── AVProgressEstimator.m │ │ │ ├── AVProxyKVOObserver.m │ │ │ ├── AVReadOnlyRangeOfAppendableData.m │ │ │ ├── AVRoutePickerRemoteViewController.m │ │ │ ├── AVRoutePickerView.m │ │ │ ├── AVScanBackwardTextFieldHiddenValueTransformer.m │ │ │ ├── AVScanBackwardTextFieldValueValueTransformer.m │ │ │ ├── AVScanForwardTextFieldHiddenValueTransformer.m │ │ │ ├── AVScanForwardTextFieldValueValueTransformer.m │ │ │ ├── AVScrollSliderView.m │ │ │ ├── AVScrubber.m │ │ │ ├── AVScrubberCell.m │ │ │ ├── AVScrubberValueTransformer.m │ │ │ ├── AVShadowTimeFormatter.m │ │ │ ├── AVShadowTimeFormatterLegacy.m │ │ │ ├── AVShareController.m │ │ │ ├── AVSlowMotionSlider.m │ │ │ ├── AVSlowMotionSliderHandleView.m │ │ │ ├── AVSlowMotionSliderTrackView.m │ │ │ ├── AVStatusOverlayView.m │ │ │ ├── AVThumbnail.m │ │ │ ├── AVThumbnailCache.m │ │ │ ├── AVThumbnailGenerationRequest.m │ │ │ ├── AVThumbnailGenerator.m │ │ │ ├── AVTimeIndicatorPopover.m │ │ │ ├── AVTimeIndicatorPopoverContentViewController.m │ │ │ ├── AVTimer.m │ │ │ ├── AVTouchBarAudioCaptureDeviceSelectionButtonViewController.m │ │ │ ├── AVTouchBarAudioTrackView.m │ │ │ ├── AVTouchBarCaptureInputSourceItem.m │ │ │ ├── AVTouchBarCaptureInputSourceSelectionViewController.m │ │ │ ├── AVTouchBarDescriptionBasedPlayerController.m │ │ │ ├── AVTouchBarMediaSelectionButtonViewController.m │ │ │ ├── AVTouchBarMediaSelectionOption.m │ │ │ ├── AVTouchBarMediaSelectionOptionTwoLineButton.m │ │ │ ├── AVTouchBarMediaSelectionOptionTwoLineButtonCell.m │ │ │ ├── AVTouchBarMediaSelectionViewController.m │ │ │ ├── AVTouchBarPlaybackControlsController.m │ │ │ ├── AVTouchBarPlaybackControlsItem.m │ │ │ ├── AVTouchBarPlaybackControlsProvider.m │ │ │ ├── AVTouchBarPlaybackControlsViewController.m │ │ │ ├── AVTouchBarRecordingControlsController.m │ │ │ ├── AVTouchBarRecordingControlsProvider.m │ │ │ ├── AVTouchBarRecordingControlsViewController.m │ │ │ ├── AVTouchBarScrubber.m │ │ │ ├── AVTouchBarScrubberController.m │ │ │ ├── AVTouchBarScrubberExpandButton.m │ │ │ ├── AVTouchBarScrubberExpandButtonCell.m │ │ │ ├── AVTouchBarScrubberInternal.m │ │ │ ├── AVTouchBarScrubberKnobView.m │ │ │ ├── AVTouchBarTrackView.m │ │ │ ├── AVTouchBarTrackViewController.m │ │ │ ├── AVTouchBarTrimControlsViewController.m │ │ │ ├── AVTouchBarVideoTrackView.m │ │ │ ├── AVTrackView.m │ │ │ ├── AVTrackViewController.m │ │ │ ├── AVTrimClipView.m │ │ │ ├── AVTrimControlsViewController.m │ │ │ ├── AVTrimDimmerView.m │ │ │ ├── AVTrimIndicatorAccessibilityElement.m │ │ │ ├── AVTrimIndicatorFocusRingView.m │ │ │ ├── AVTrimIndicatorView.m │ │ │ ├── AVTrimSelectionEndFocusRingView.m │ │ │ ├── AVTrimSelectionStartFocusRingView.m │ │ │ ├── AVTrimSelectionView.m │ │ │ ├── AVTrimTracksView.m │ │ │ ├── AVTrimView.m │ │ │ ├── AVUnsupportedContentIndicatorView.m │ │ │ ├── AVValueTiming.m │ │ │ ├── AVVideoTrackThumbnail.m │ │ │ ├── AVVideoTrackThumbnailManager.m │ │ │ ├── AVVideoTrackView.m │ │ │ ├── AVVolumeButton.m │ │ │ ├── AVVolumeButtonContentView.m │ │ │ ├── AVVolumeImageValueTransformer.m │ │ │ ├── AVWaveformGenerator.m │ │ │ └── _AVBundle.m │ ├── Accelerate │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Accelerate │ │ │ │ └── Accelerate.h │ │ ├── src │ │ │ └── Accelerate.c │ │ └── vecLib │ │ │ ├── BLAS │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── BLAS │ │ │ │ │ └── BLAS.h │ │ │ └── src │ │ │ │ └── BLAS.c │ │ │ ├── BNNS │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── BNNS │ │ │ │ │ └── BNNS.h │ │ │ └── src │ │ │ │ └── BNNS.c │ │ │ ├── CMakeLists.txt │ │ │ ├── LAPACK │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── LAPACK │ │ │ │ │ └── LAPACK.h │ │ │ └── src │ │ │ │ └── LAPACK.c │ │ │ ├── LinearAlgebra │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── LinearAlgebra │ │ │ │ │ ├── LinearAlgebra.h │ │ │ │ │ └── OS_la_object.h │ │ │ └── src │ │ │ │ ├── LinearAlgebra.m │ │ │ │ └── OS_la_object.m │ │ │ ├── Quadrature │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── Quadrature │ │ │ │ │ └── Quadrature.h │ │ │ └── src │ │ │ │ └── Quadrature.c │ │ │ ├── Sparse │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── Sparse │ │ │ │ │ └── Sparse.h │ │ │ └── src │ │ │ │ └── Sparse.c │ │ │ ├── SparseBLAS │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── SparseBLAS │ │ │ │ │ └── SparseBLAS.h │ │ │ └── src │ │ │ │ └── SparseBLAS.c │ │ │ ├── empty.c │ │ │ ├── vDSP │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── vDSP │ │ │ │ │ └── vDSP.h │ │ │ └── src │ │ │ │ ├── basic.c │ │ │ │ ├── extrema.c │ │ │ │ └── vDSP.c │ │ │ └── vMisc │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ └── libvMisc │ │ │ │ └── libvMisc.h │ │ │ └── src │ │ │ └── libvMisc.c │ ├── Accounts │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Accounts │ │ │ │ ├── ACAccount.h │ │ │ │ ├── ACAccountCredential.h │ │ │ │ ├── ACAccountMigrationLock.h │ │ │ │ ├── ACAccountStore.h │ │ │ │ ├── ACAccountStoreClientSideListener.h │ │ │ │ ├── ACAccountStoreProtocol.h │ │ │ │ ├── ACAccountType.h │ │ │ │ ├── ACCredentialItem.h │ │ │ │ ├── ACDManagedAccessOptionsKey.h │ │ │ │ ├── ACDManagedAccount.h │ │ │ │ ├── ACDManagedAccountProperty.h │ │ │ │ ├── ACDManagedAccountType.h │ │ │ │ ├── ACDManagedAuthorization.h │ │ │ │ ├── ACDManagedCredentialItem.h │ │ │ │ ├── ACDManagedDataclass.h │ │ │ │ ├── ACDOAuthSignerProtocol.h │ │ │ │ ├── ACDPropertyEncryption.h │ │ │ │ ├── ACDataclassAction.h │ │ │ │ ├── ACDispatchCerberus.h │ │ │ │ ├── ACManagedDefaults.h │ │ │ │ ├── ACMutableTrackedSet.h │ │ │ │ ├── ACNotificationRebroadcaster.h │ │ │ │ ├── ACOAuthSigner.h │ │ │ │ ├── ACPersonaManager.h │ │ │ │ ├── ACProtobufAccount.h │ │ │ │ ├── ACProtobufAccountCredential.h │ │ │ │ ├── ACProtobufAccountType.h │ │ │ │ ├── ACProtobufCoding.h │ │ │ │ ├── ACProtobufCredentialItem.h │ │ │ │ ├── ACProtobufDataclassAction.h │ │ │ │ ├── ACProtobufDate.h │ │ │ │ ├── ACProtobufKeyValuePair.h │ │ │ │ ├── ACProtobufURL.h │ │ │ │ ├── ACProtobufUUID.h │ │ │ │ ├── ACProtobufVariableKeyValuePair.h │ │ │ │ ├── ACProtobufVariableValue.h │ │ │ │ ├── ACProtobufVariableValueDictionary.h │ │ │ │ ├── ACProtobufVariableValueList.h │ │ │ │ ├── ACRateLimiter.h │ │ │ │ ├── ACRemoteAccountStoreInterface.h │ │ │ │ ├── ACRemoteAccountStoreProtocol.h │ │ │ │ ├── ACRemoteAccountStoreSession.h │ │ │ │ ├── ACSimpleRateLimiter.h │ │ │ │ ├── ACSystemConfigManager.h │ │ │ │ ├── ACTrackedSet.h │ │ │ │ ├── ACZeroingString.h │ │ │ │ ├── Accounts.h │ │ │ │ ├── Accounts_Private.h │ │ │ │ ├── NSXPCProxyCreating.h │ │ │ │ └── UMUserPersonaUpdateObserver.h │ │ └── src │ │ │ ├── ACAccount.m │ │ │ ├── ACAccountCredential.m │ │ │ ├── ACAccountMigrationLock.m │ │ │ ├── ACAccountStore.m │ │ │ ├── ACAccountStoreClientSideListener.m │ │ │ ├── ACAccountType.m │ │ │ ├── ACCredentialItem.m │ │ │ ├── ACDManagedAccessOptionsKey.m │ │ │ ├── ACDManagedAccount.m │ │ │ ├── ACDManagedAccountProperty.m │ │ │ ├── ACDManagedAccountType.m │ │ │ ├── ACDManagedAuthorization.m │ │ │ ├── ACDManagedCredentialItem.m │ │ │ ├── ACDManagedDataclass.m │ │ │ ├── ACDPropertyEncryption.m │ │ │ ├── ACDataclassAction.m │ │ │ ├── ACDispatchCerberus.m │ │ │ ├── ACManagedDefaults.m │ │ │ ├── ACMutableTrackedSet.m │ │ │ ├── ACNotificationRebroadcaster.m │ │ │ ├── ACOAuthSigner.m │ │ │ ├── ACPersonaManager.m │ │ │ ├── ACProtobufAccount.m │ │ │ ├── ACProtobufAccountCredential.m │ │ │ ├── ACProtobufAccountType.m │ │ │ ├── ACProtobufCredentialItem.m │ │ │ ├── ACProtobufDataclassAction.m │ │ │ ├── ACProtobufDate.m │ │ │ ├── ACProtobufKeyValuePair.m │ │ │ ├── ACProtobufURL.m │ │ │ ├── ACProtobufUUID.m │ │ │ ├── ACProtobufVariableKeyValuePair.m │ │ │ ├── ACProtobufVariableValue.m │ │ │ ├── ACProtobufVariableValueDictionary.m │ │ │ ├── ACProtobufVariableValueList.m │ │ │ ├── ACRateLimiter.m │ │ │ ├── ACRemoteAccountStoreInterface.m │ │ │ ├── ACRemoteAccountStoreSession.m │ │ │ ├── ACSimpleRateLimiter.m │ │ │ ├── ACSystemConfigManager.m │ │ │ ├── ACTrackedSet.m │ │ │ ├── ACZeroingString.m │ │ │ └── Accounts.m │ ├── AddressBook │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AddressBook │ │ │ │ ├── ABAPIAdapter.h │ │ │ │ ├── ABAbstractGroupEntriesFactory.h │ │ │ │ ├── ABAbstractGroupListAction.h │ │ │ │ ├── ABAccessibleTextFieldCell.h │ │ │ │ ├── ABAccessoryViewProvider.h │ │ │ │ ├── ABAccountBrowsingGroupEntry.h │ │ │ │ ├── ABAccountGroupEntries.h │ │ │ │ ├── ABAccountGroupEntriesBuilder.h │ │ │ │ ├── ABAccountHeaderGroupEntry.h │ │ │ │ ├── ABActionAddSuggestedValue.h │ │ │ │ ├── ABActionAddressCopyMailingLabel.h │ │ │ │ ├── ABActionAddressCopyMapURL.h │ │ │ │ ├── ABActionAddressGetDirections.h │ │ │ │ ├── ABActionAddressMapsHelper.h │ │ │ │ ├── ABActionAddressShowMap.h │ │ │ │ ├── ABActionAutovalidator.h │ │ │ │ ├── ABActionAutovalidatorCache.h │ │ │ │ ├── ABActionAutovalidatorCacheEntry.h │ │ │ │ ├── ABActionAutovalidatorCacheMenuEntry.h │ │ │ │ ├── ABActionAutovalidatorCacheSimpleEntry.h │ │ │ │ ├── ABActionBeginChat.h │ │ │ │ ├── ABActionDelegate.h │ │ │ │ ├── ABActionDispatcher.h │ │ │ │ ├── ABActionEmailSearchSpotlight.h │ │ │ │ ├── ABActionEmailSendMessage.h │ │ │ │ ├── ABActionEmailSendUpdate.h │ │ │ │ ├── ABActionIgnoreSuggestedValue.h │ │ │ │ ├── ABActionLinkedSetPreferredCard.h │ │ │ │ ├── ABActionManager.h │ │ │ │ ├── ABActionManagerDelegate.h │ │ │ │ ├── ABActionMenuItemFactory.h │ │ │ │ ├── ABActionPhoneDial.h │ │ │ │ ├── ABActionPhoneLargeType.h │ │ │ │ ├── ABActionRelatedShowCard.h │ │ │ │ ├── ABActionSocialProfile.h │ │ │ │ ├── ABActionSocialProfileSendMessage.h │ │ │ │ ├── ABActionSocialProfileViewPhotos.h │ │ │ │ ├── ABActionSocialProfileViewProfile.h │ │ │ │ ├── ABActionURLsOpenURL.h │ │ │ │ ├── ABAddSuggestedValueTask.h │ │ │ │ ├── ABAddressBook.h │ │ │ │ ├── ABAddressBookAPIAdapter.h │ │ │ │ ├── ABAddressBookCommandExecutionPolicy.h │ │ │ │ ├── ABAddressFieldBuilder.h │ │ │ │ ├── ABAddressFieldValuePopulator.h │ │ │ │ ├── ABAggregateSearchOperationsFactory.h │ │ │ │ ├── ABAlert.h │ │ │ │ ├── ABAlertToneCollectionViewItem.h │ │ │ │ ├── ABAllSmartGroup.h │ │ │ │ ├── ABAlternateBirthdayCollectionViewItem.h │ │ │ │ ├── ABAppDeprecations.h │ │ │ │ ├── ABAppearance.h │ │ │ │ ├── ABAttributedString.h │ │ │ │ ├── ABAttributedStringTransformer.h │ │ │ │ ├── ABAuthenticationInfo.h │ │ │ │ ├── ABBestEntryFinder.h │ │ │ │ ├── ABBidirectionalDictionary.h │ │ │ │ ├── ABBindingsLabelTransformer.h │ │ │ │ ├── ABBindingsURLTransformer.h │ │ │ │ ├── ABBirthdayCollectionViewItem.h │ │ │ │ ├── ABBirthdayConversionUIAction.h │ │ │ │ ├── ABBookAggregateUndoableCommand.h │ │ │ │ ├── ABBookAggregateUndoableCommandBuilder.h │ │ │ │ ├── ABBookCreateGroupCommand.h │ │ │ │ ├── ABBookCreateGroupWithMembersCommand.h │ │ │ │ ├── ABBookCreateSmartGroupCommand.h │ │ │ │ ├── ABBookEditSmartGroupCommand.h │ │ │ │ ├── ABBookGroupAddMembersCommand.h │ │ │ │ ├── ABBookGroupAddRecordsCommand.h │ │ │ │ ├── ABBookGroupAddSubgroupsCommand.h │ │ │ │ ├── ABBookGroupCopyCommand.h │ │ │ │ ├── ABBookGroupCutCommand.h │ │ │ │ ├── ABBookGroupDeleteCommand.h │ │ │ │ ├── ABBookGroupImportCommand.h │ │ │ │ ├── ABBookPastePeopleCommand.h │ │ │ │ ├── ABBookRenameGroupCommand.h │ │ │ │ ├── ABBookSearchField.h │ │ │ │ ├── ABBookSearchFieldCell.h │ │ │ │ ├── ABBookStateSaving.h │ │ │ │ ├── ABBrowsingGroupEntry.h │ │ │ │ ├── ABBrowsingSearchConfiguration.h │ │ │ │ ├── ABBuddyStatus.h │ │ │ │ ├── ABBuddyStatusImageCell.h │ │ │ │ ├── ABButtonCell.h │ │ │ │ ├── ABCNAddressDetector.h │ │ │ │ ├── ABCNContactPhotoStore.h │ │ │ │ ├── ABCNContactRemotePhotoStore.h │ │ │ │ ├── ABCNContactThumbnailPhotoStore.h │ │ │ │ ├── ABCNContactUncroppedPhotoStore.h │ │ │ │ ├── ABCNDDScanner.h │ │ │ │ ├── ABCNPhoneDialer.h │ │ │ │ ├── ABCNPhoneNumberDetector.h │ │ │ │ ├── ABCallbackCardAction.h │ │ │ │ ├── ABCardActionProvider.h │ │ │ │ ├── ABCardCollectionLinkedPeopleRowView.h │ │ │ │ ├── ABCardCollectionMessagingRowView.h │ │ │ │ ├── ABCardCollectionNoteRowView.h │ │ │ │ ├── ABCardCollectionPostalAddressRowView.h │ │ │ │ ├── ABCardCollectionPreferredNameRowView.h │ │ │ │ ├── ABCardCollectionRowLayout.h │ │ │ │ ├── ABCardCollectionRowScope.h │ │ │ │ ├── ABCardCollectionRowSeparatorView.h │ │ │ │ ├── ABCardCollectionRowView.h │ │ │ │ ├── ABCardCollectionStackViewController.h │ │ │ │ ├── ABCardCollectionTableRowView.h │ │ │ │ ├── ABCardCollectionTableViewController.h │ │ │ │ ├── ABCardCollectionURLRowView.h │ │ │ │ ├── ABCardCollectionView.h │ │ │ │ ├── ABCardCollectionViewController.h │ │ │ │ ├── ABCardCollectionViewDataSource.h │ │ │ │ ├── ABCardCollectionViewDelegate.h │ │ │ │ ├── ABCardCollectionViewPresentation.h │ │ │ │ ├── ABCardCollectionViewPresentationDelegate.h │ │ │ │ ├── ABCardViewAKSingleValueConverter.h │ │ │ │ ├── ABCardViewActionDataSource.h │ │ │ │ ├── ABCardViewAlertTonesProperty.h │ │ │ │ ├── ABCardViewAlternateBirthdayProperty.h │ │ │ │ ├── ABCardViewBirthdayProperty.h │ │ │ │ ├── ABCardViewCNLabeledValueConverter.h │ │ │ │ ├── ABCardViewDataSource.h │ │ │ │ ├── ABCardViewDataSourceProvider.h │ │ │ │ ├── ABCardViewDateProperty.h │ │ │ │ ├── ABCardViewDictionaryTransformer.h │ │ │ │ ├── ABCardViewEditDisplayStyleCommand.h │ │ │ │ ├── ABCardViewEditPropertyCommand.h │ │ │ │ ├── ABCardViewEmailProperty.h │ │ │ │ ├── ABCardViewHelpers.h │ │ │ │ ├── ABCardViewImage.h │ │ │ │ ├── ABCardViewImageDataSource.h │ │ │ │ ├── ABCardViewImageResult.h │ │ │ │ ├── ABCardViewInstantMessageProperty.h │ │ │ │ ├── ABCardViewInstantMessageServiceGenerator.h │ │ │ │ ├── ABCardViewLabelGenerator.h │ │ │ │ ├── ABCardViewLinkedPeopleProperty.h │ │ │ │ ├── ABCardViewLinkedPerson.h │ │ │ │ ├── ABCardViewLinkedPersonValueTransformer.h │ │ │ │ ├── ABCardViewMaidenNameProperty.h │ │ │ │ ├── ABCardViewMetrics.h │ │ │ │ ├── ABCardViewMultiValue.h │ │ │ │ ├── ABCardViewMultiValueAccountNameTransformer.h │ │ │ │ ├── ABCardViewMultiValueConverter.h │ │ │ │ ├── ABCardViewMultiValueConverterBuilder.h │ │ │ │ ├── ABCardViewMultiValueEntry.h │ │ │ │ ├── ABCardViewMultiValuePrivateFieldTransformer.h │ │ │ │ ├── ABCardViewMultiValueReadOnlyTransformer.h │ │ │ │ ├── ABCardViewMultiValueTransformer.h │ │ │ │ ├── ABCardViewMutableMultiValue.h │ │ │ │ ├── ABCardViewNoteProperty.h │ │ │ │ ├── ABCardViewNotificationHandler.h │ │ │ │ ├── ABCardViewPersonMapper.h │ │ │ │ ├── ABCardViewPhoneProperty.h │ │ │ │ ├── ABCardViewPostalAddressFormatter.h │ │ │ │ ├── ABCardViewPostalAddressProperty.h │ │ │ │ ├── ABCardViewPreferredForNameProperty.h │ │ │ │ ├── ABCardViewPreferredForNameValueTransformer.h │ │ │ │ ├── ABCardViewProperty.h │ │ │ │ ├── ABCardViewPropertyProvider.h │ │ │ │ ├── ABCardViewRelatedNamesProperty.h │ │ │ │ ├── ABCardViewSaveHelper.h │ │ │ │ ├── ABCardViewSeparator.h │ │ │ │ ├── ABCardViewSingleValueProperty.h │ │ │ │ ├── ABCardViewSocialProfileProperty.h │ │ │ │ ├── ABCardViewStyle.h │ │ │ │ ├── ABCardViewStyleInternalProvider.h │ │ │ │ ├── ABCardViewStyleProvider.h │ │ │ │ ├── ABCardViewTransformingMultiValueConverter.h │ │ │ │ ├── ABCardViewURLProperty.h │ │ │ │ ├── ABCardViewUndoableDataSource.h │ │ │ │ ├── ABCardViewerController.h │ │ │ │ ├── ABCertificatePanelController.h │ │ │ │ ├── ABChangePropertiesCommand.h │ │ │ │ ├── ABChangePropertyCommand.h │ │ │ │ ├── ABChoosingForwarder.h │ │ │ │ ├── ABCleanGroupEntryListCellView.h │ │ │ │ ├── ABCleanGroupHeaderEntryListCellView.h │ │ │ │ ├── ABCleanGroupListRowView.h │ │ │ │ ├── ABClickableImageView.h │ │ │ │ ├── ABClickableTextView.h │ │ │ │ ├── ABCollectionAbstractAction.h │ │ │ │ ├── ABCollectionAction.h │ │ │ │ ├── ABCollectionDialAction.h │ │ │ │ ├── ABCollectionFaceTimeRowView.h │ │ │ │ ├── ABCollectionItemMessagingAvailabilityHelper.h │ │ │ │ ├── ABCollectionItemMessagingAvailabilityHelperDelegate.h │ │ │ │ ├── ABCollectionMessageAction.h │ │ │ │ ├── ABCollectionMultiPropertyAction.h │ │ │ │ ├── ABCollectionOpenURLAction.h │ │ │ │ ├── ABCollectionReviewSuggestionAction.h │ │ │ │ ├── ABCollectionRowViewEditModeFactory.h │ │ │ │ ├── ABCollectionRowViewFactory.h │ │ │ │ ├── ABCollectionSendMailAction.h │ │ │ │ ├── ABCollectionShowMapAction.h │ │ │ │ ├── ABCollectionTTYAction.h │ │ │ │ ├── ABCollectionViewImageButton.h │ │ │ │ ├── ABCollectionViewItem.h │ │ │ │ ├── ABCollectionViewItemFactory.h │ │ │ │ ├── ABCollectionViewSeparatorItem.h │ │ │ │ ├── ABColor.h │ │ │ │ ├── ABCommand.h │ │ │ │ ├── ABCommandExecutionPolicy.h │ │ │ │ ├── ABCommandExecutor.h │ │ │ │ ├── ABCommandHookExecutionPolicy.h │ │ │ │ ├── ABCommandVisitor.h │ │ │ │ ├── ABCommunicationButtonsController.h │ │ │ │ ├── ABConstraintDescription.h │ │ │ │ ├── ABConstraintsBuilder.h │ │ │ │ ├── ABContactDeletionTracing.h │ │ │ │ ├── ABContactFetcher.h │ │ │ │ ├── ABContactPickerDelegateWrapper.h │ │ │ │ ├── ABContactPickerFactory.h │ │ │ │ ├── ABContactSearching.h │ │ │ │ ├── ABCopyOnWriteSet.h │ │ │ │ ├── ABCountTableEntry.h │ │ │ │ ├── ABCreatePersonCommand.h │ │ │ │ ├── ABCustomLabelController.h │ │ │ │ ├── ABDAVQuery.h │ │ │ │ ├── ABDSuggestionLogPairBuilder.h │ │ │ │ ├── ABDataSourceOperation.h │ │ │ │ ├── ABDateCollectionViewItem.h │ │ │ │ ├── ABDateComponentsFormatter.h │ │ │ │ ├── ABDateComponentsValueTransformer.h │ │ │ │ ├── ABDateFormatter.h │ │ │ │ ├── ABDateProvider.h │ │ │ │ ├── ABDefaultCardViewStyleProvider.h │ │ │ │ ├── ABDefaultGroupEntriesFactory.h │ │ │ │ ├── ABDefaultStopWatchTimeIntervalProvider.h │ │ │ │ ├── ABDelegateCardAction.h │ │ │ │ ├── ABDeleteGroupSheet.h │ │ │ │ ├── ABDeleteRecordsCommandBuilder.h │ │ │ │ ├── ABDeprecatedObject.h │ │ │ │ ├── ABDirectoriesHeaderGroupEntry.h │ │ │ │ ├── ABDistributionKeyValueCell.h │ │ │ │ ├── ABDistributionListController.h │ │ │ │ ├── ABDistributionListPeoplePickerController.h │ │ │ │ ├── ABDistributionListPeoplePickerView.h │ │ │ │ ├── ABDropDownMenuUIAction.h │ │ │ │ ├── ABEditButton.h │ │ │ │ ├── ABEditSmartGroupCommand.h │ │ │ │ ├── ABEmailCertificateController.h │ │ │ │ ├── ABEmailCertificateSearchOperation.h │ │ │ │ ├── ABEmailCollectionViewItem.h │ │ │ │ ├── ABEvent.h │ │ │ │ ├── ABExchangeSetup.h │ │ │ │ ├── ABExecuteRedoUndoableCommandVisitor.h │ │ │ │ ├── ABExecuteUndoUndoableCommandVisitor.h │ │ │ │ ├── ABExecuteUndoableCommandVisitor.h │ │ │ │ ├── ABFaceTimeActionsCollectionViewItem.h │ │ │ │ ├── ABFaceTimeCommunicationsBridge.h │ │ │ │ ├── ABFaceTimeCommunicationsBridgeDelegate.h │ │ │ │ ├── ABFaceTimeDataSource.h │ │ │ │ ├── ABFakeSuggestedData.h │ │ │ │ ├── ABFlippedStackView.h │ │ │ │ ├── ABFont.h │ │ │ │ ├── ABGlobals.h │ │ │ │ ├── ABGroupActionScope.h │ │ │ │ ├── ABGroupBrowsingContext.h │ │ │ │ ├── ABGroupBrowsingGroupEntry.h │ │ │ │ ├── ABGroupCommand.h │ │ │ │ ├── ABGroupCopyPasteboardData.h │ │ │ │ ├── ABGroupDragPasteboardData.h │ │ │ │ ├── ABGroupDragScope.h │ │ │ │ ├── ABGroupDragSource.h │ │ │ │ ├── ABGroupDropDestination.h │ │ │ │ ├── ABGroupDropPasteboardData.h │ │ │ │ ├── ABGroupDropPasteboardDataCategorizer.h │ │ │ │ ├── ABGroupDropScope.h │ │ │ │ ├── ABGroupDropSource.h │ │ │ │ ├── ABGroupEntriesAnalyzer.h │ │ │ │ ├── ABGroupEntriesBuilder.h │ │ │ │ ├── ABGroupEntriesFactory.h │ │ │ │ ├── ABGroupEntriesList.h │ │ │ │ ├── ABGroupEntriesResult.h │ │ │ │ ├── ABGroupEntry.h │ │ │ │ ├── ABGroupHelperFactory.h │ │ │ │ ├── ABGroupImportFilesScope.h │ │ │ │ ├── ABGroupListAccessoryViewProvider.h │ │ │ │ ├── ABGroupListActionDispatcher.h │ │ │ │ ├── ABGroupListActions.h │ │ │ │ ├── ABGroupListCellViewStyle.h │ │ │ │ ├── ABGroupListController.h │ │ │ │ ├── ABGroupListCreateGroupUIAction.h │ │ │ │ ├── ABGroupListCreateSmartGroupUIAction.h │ │ │ │ ├── ABGroupListNotificationHandler.h │ │ │ │ ├── ABGroupListResponder.h │ │ │ │ ├── ABGroupListRowView.h │ │ │ │ ├── ABGroupListStyleProvider.h │ │ │ │ ├── ABGroupListTransformer.h │ │ │ │ ├── ABGroupListView.h │ │ │ │ ├── ABGroupPastePasteboardData.h │ │ │ │ ├── ABGroupSearchingContext.h │ │ │ │ ├── ABGroupSelectHelper.h │ │ │ │ ├── ABHeaderGroupEntry.h │ │ │ │ ├── ABImmediateActionGestureAdapter.h │ │ │ │ ├── ABImportRecordFactory.h │ │ │ │ ├── ABInstantMessageCollectionViewItem.h │ │ │ │ ├── ABKeyValueCoding.h │ │ │ │ ├── ABKeystrokeForwarder.h │ │ │ │ ├── ABKeystrokeForwardingEntry.h │ │ │ │ ├── ABLabelPopUpButton.h │ │ │ │ ├── ABLargeTypeView.h │ │ │ │ ├── ABLargeTypeWindow.h │ │ │ │ ├── ABLastImportBrowsingGroupEntry.h │ │ │ │ ├── ABLastImportGroup.h │ │ │ │ ├── ABLazyGroup.h │ │ │ │ ├── ABLinkTextField.h │ │ │ │ ├── ABLinkedPersonCollectionViewItem.h │ │ │ │ ├── ABMainListOutlineView.h │ │ │ │ ├── ABMainWindowGroupListCellView.h │ │ │ │ ├── ABMapsLaunchRequest.h │ │ │ │ ├── ABMapsLauncher.h │ │ │ │ ├── ABMeCommand.h │ │ │ │ ├── ABMiniGridView.h │ │ │ │ ├── ABMonogramFactory.h │ │ │ │ ├── ABMonogramImageLoading.h │ │ │ │ ├── ABMonogramImageTask.h │ │ │ │ ├── ABMonogramInitialsTask.h │ │ │ │ ├── ABMonogramOptions.h │ │ │ │ ├── ABMonogramPhotoTask.h │ │ │ │ ├── ABMonogramSilhouetteTask.h │ │ │ │ ├── ABMutableBidirectionalDictionary.h │ │ │ │ ├── ABMutableKeyValueCoding.h │ │ │ │ ├── ABMutablePackedImage.h │ │ │ │ ├── ABNameView.h │ │ │ │ ├── ABNameViewCompanyCheckBox.h │ │ │ │ ├── ABNameViewCompanyCheckBoxDelegate.h │ │ │ │ ├── ABNameViewDataSource.h │ │ │ │ ├── ABNamedImageWrapper.h │ │ │ │ ├── ABNewGroupCommand.h │ │ │ │ ├── ABNicknameFormatter.h │ │ │ │ ├── ABNoSelectionTableView.h │ │ │ │ ├── ABNoWindowDragTextField.h │ │ │ │ ├── ABNoteCollectionViewItem.h │ │ │ │ ├── ABNoteTextView.h │ │ │ │ ├── ABNoteTextViewDelegate.h │ │ │ │ ├── ABObjectDeathWatcher.h │ │ │ │ ├── ABOnBlueButton.h │ │ │ │ ├── ABOverlayView.h │ │ │ │ ├── ABPackedImage.h │ │ │ │ ├── ABPasswordPanelController.h │ │ │ │ ├── ABPastePeopleCommand.h │ │ │ │ ├── ABPasteboardData.h │ │ │ │ ├── ABPasteboardWriteCommand.h │ │ │ │ ├── ABPeopleListTransformer.h │ │ │ │ ├── ABPeoplePickerBrowsingSelectHelper.h │ │ │ │ ├── ABPeoplePickerController.h │ │ │ │ ├── ABPeoplePickerExternalNotificationWatcher.h │ │ │ │ ├── ABPeoplePickerGroupEntriesFactory.h │ │ │ │ ├── ABPeoplePickerGroupHelperFactory.h │ │ │ │ ├── ABPeoplePickerGroupListController.h │ │ │ │ ├── ABPeoplePickerGroupListStyleProvider.h │ │ │ │ ├── ABPeoplePickerGroupListView.h │ │ │ │ ├── ABPeoplePickerLocalNotificationWatcher.h │ │ │ │ ├── ABPeoplePickerNameCell.h │ │ │ │ ├── ABPeoplePickerProperty.h │ │ │ │ ├── ABPeoplePickerPropertyCell.h │ │ │ │ ├── ABPeoplePickerScope.h │ │ │ │ ├── ABPeoplePickerSearchingSelectHelper.h │ │ │ │ ├── ABPeoplePickerSubrowGroupElement.h │ │ │ │ ├── ABPeoplePickerSubrowObject.h │ │ │ │ ├── ABPeoplePickerSubrowObjectBuilder.h │ │ │ │ ├── ABPeoplePickerTableColumn.h │ │ │ │ ├── ABPeoplePickerTableRow.h │ │ │ │ ├── ABPeoplePickerTableView.h │ │ │ │ ├── ABPeoplePickerTableViewDataSource.h │ │ │ │ ├── ABPeoplePickerTableViewDelegate.h │ │ │ │ ├── ABPeoplePickerView.h │ │ │ │ ├── ABPeriodicTask.h │ │ │ │ ├── ABPeriodicUITask.h │ │ │ │ ├── ABPerson.h │ │ │ │ ├── ABPersonContactConverter.h │ │ │ │ ├── ABPersonEntriesFetcher.h │ │ │ │ ├── ABPersonEntriesList.h │ │ │ │ ├── ABPersonEntry.h │ │ │ │ ├── ABPersonEntryFactory.h │ │ │ │ ├── ABPersonInitials.h │ │ │ │ ├── ABPersonListAttributedName.h │ │ │ │ ├── ABPersonListController.h │ │ │ │ ├── ABPersonListControllerDelegateWrapper.h │ │ │ │ ├── ABPersonListControllerProtocol.h │ │ │ │ ├── ABPersonListControllerTracing.h │ │ │ │ ├── ABPersonListDelegate.h │ │ │ │ ├── ABPersonListDragExportHelper.h │ │ │ │ ├── ABPersonListHeadliner.h │ │ │ │ ├── ABPersonListHeadlining.h │ │ │ │ ├── ABPersonListMenuHelper.h │ │ │ │ ├── ABPersonListRowView.h │ │ │ │ ├── ABPersonListSearchController.h │ │ │ │ ├── ABPersonListSearchHelper.h │ │ │ │ ├── ABPersonListSharingHelper.h │ │ │ │ ├── ABPersonListUIReflector.h │ │ │ │ ├── ABPersonPicker.h │ │ │ │ ├── ABPersonSearchConfiguration.h │ │ │ │ ├── ABPersonSearchControllerDelegate.h │ │ │ │ ├── ABPersonView.h │ │ │ │ ├── ABPersonViewAPIAdapter.h │ │ │ │ ├── ABPersonViewClientProtocol.h │ │ │ │ ├── ABPersonViewNotificationWatcher.h │ │ │ │ ├── ABPersonViewProtocol.h │ │ │ │ ├── ABPersonViewStyleProvider.h │ │ │ │ ├── ABPhoneCollectionViewItem.h │ │ │ │ ├── ABPhoneFormatter.h │ │ │ │ ├── ABPopUpButton.h │ │ │ │ ├── ABPopUpButtonCell.h │ │ │ │ ├── ABPopUpButtonDelegate.h │ │ │ │ ├── ABPopupTableHeaderCell.h │ │ │ │ ├── ABPopupTableHeaderView.h │ │ │ │ ├── ABPostalAddressCollectionViewItem.h │ │ │ │ ├── ABPostalAddressFormatSubmenuGenerator.h │ │ │ │ ├── ABPreferredNameCollectionViewItem.h │ │ │ │ ├── ABPropertyHeaderCell.h │ │ │ │ ├── ABQuerySearchConfiguration.h │ │ │ │ ├── ABRTTServices.h │ │ │ │ ├── ABRecord.h │ │ │ │ ├── ABRecordContext.h │ │ │ │ ├── ABRectObject.h │ │ │ │ ├── ABRemotePersonView.h │ │ │ │ ├── ABRemoveMembersCommand.h │ │ │ │ ├── ABRemoveMembersCommandBuilder.h │ │ │ │ ├── ABRemovesEmptyCardViewData.h │ │ │ │ ├── ABRenameGroupCommand.h │ │ │ │ ├── ABRolloverButton.h │ │ │ │ ├── ABSaveRequestCommand.h │ │ │ │ ├── ABSearchController.h │ │ │ │ ├── ABSearchElement.h │ │ │ │ ├── ABSearchElementOrderManager.h │ │ │ │ ├── ABSearchElementOrderManagerProtocol.h │ │ │ │ ├── ABSearchElementRepresentationBuilder.h │ │ │ │ ├── ABSearchElementSetView.h │ │ │ │ ├── ABSearchElementUIController.h │ │ │ │ ├── ABSearchElementView.h │ │ │ │ ├── ABSearchHighlightFormatter.h │ │ │ │ ├── ABSearchOperationsFactory.h │ │ │ │ ├── ABSearchingGroupEntry.h │ │ │ │ ├── ABSectionGroupEntry.h │ │ │ │ ├── ABSectionTableEntry.h │ │ │ │ ├── ABShadowTextField.h │ │ │ │ ├── ABShadowTextFieldCell.h │ │ │ │ ├── ABShadowTextView.h │ │ │ │ ├── ABShadowTextViewMultipleValuePasteHelper.h │ │ │ │ ├── ABShadowTextViewPostalAddressValuePasteHelper.h │ │ │ │ ├── ABShowAsCommand.h │ │ │ │ ├── ABSimpleLinkTextField.h │ │ │ │ ├── ABSmartGroupBrowsingGroupEntry.h │ │ │ │ ├── ABSmartGroupsHeaderGroupEntry.h │ │ │ │ ├── ABSocialProfileCollectionViewItem.h │ │ │ │ ├── ABSourceSyncPeriodicTaskScheduler.h │ │ │ │ ├── ABSpaceFormatter.h │ │ │ │ ├── ABStopWatch.h │ │ │ │ ├── ABStopWatchTimeIntervalProvider.h │ │ │ │ ├── ABSuggestedEntriesFetcher.h │ │ │ │ ├── ABSuggestedValueDataSource.h │ │ │ │ ├── ABSuggestedValueSnippet.h │ │ │ │ ├── ABSuggestedValueViewController.h │ │ │ │ ├── ABSuggestedValueViewControllerDelegate.h │ │ │ │ ├── ABSuggestedValueViewControllerSnippetHelper.h │ │ │ │ ├── ABSuggestionsTracing.h │ │ │ │ ├── ABTableEntry.h │ │ │ │ ├── ABTableHeaderView.h │ │ │ │ ├── ABTelURLHelper.h │ │ │ │ ├── ABTemplatePreferencesSaving.h │ │ │ │ ├── ABTemplateViewStyleProvider.h │ │ │ │ ├── ABTextContainer.h │ │ │ │ ├── ABTextStorage.h │ │ │ │ ├── ABThrottledTrackingAreaMonitor.h │ │ │ │ ├── ABTrackingArea.h │ │ │ │ ├── ABTypesetter.h │ │ │ │ ├── ABURLCollectionViewItem.h │ │ │ │ ├── ABUndoableCommand.h │ │ │ │ ├── ABUndoableCommandVisitor.h │ │ │ │ ├── ABUnlinkPeopleCommand.h │ │ │ │ ├── ABUserActivityRestoration.h │ │ │ │ ├── ABUserActivityScore.h │ │ │ │ ├── ABUserActivityScoring.h │ │ │ │ ├── ABUserActivitySerialization.h │ │ │ │ ├── ABUserDefaultsCNAdapter.h │ │ │ │ ├── ABUserInterfaceAction.h │ │ │ │ ├── ABVCardFilenameExpander.h │ │ │ │ ├── ABView.h │ │ │ │ ├── ABWhiteView.h │ │ │ │ ├── ABWidthLimitingStackView.h │ │ │ │ ├── ABWindowController.h │ │ │ │ ├── ABXMLParseNode.h │ │ │ │ ├── AKCardViewDataSource.h │ │ │ │ ├── AKCardViewDataSourceFactory.h │ │ │ │ ├── AKCardViewImageDataSource.h │ │ │ │ ├── AKInstantMessageAddressValueTransformer.h │ │ │ │ ├── AKSocialProfileValueTransformer.h │ │ │ │ ├── AddressBook.h │ │ │ │ ├── AsyncABPersonViewProtocol.h │ │ │ │ ├── CNCollectionUserActionItem.h │ │ │ │ ├── CNCollectionViewTouchBarDelegate.h │ │ │ │ ├── CNContactCardViewControllerDelegate.h │ │ │ │ ├── CNContactLabelSanitizer.h │ │ │ │ ├── CNContactPickerDelegate.h │ │ │ │ ├── CNFoundationUserDefaults.h │ │ │ │ ├── CNPrivateContactPickerDelegate.h │ │ │ │ ├── CNUIAddContactCommand.h │ │ │ │ ├── CNUIAddressBookToContactsConversions.h │ │ │ │ ├── CNUIAggregateUndoableCommand.h │ │ │ │ ├── CNUIAggregateUndoableCommandBuilder.h │ │ │ │ ├── CNUICommandContactHelper.h │ │ │ │ ├── CNUIContactNameOrder.h │ │ │ │ ├── CNUIContactRelationsValueTransformer.h │ │ │ │ ├── CNUIDeleteCommandHelper.h │ │ │ │ ├── CNUIDeleteContactCommand.h │ │ │ │ ├── CNUIEditContactCommand.h │ │ │ │ ├── CNUIPhoneNumerValueTransformer.h │ │ │ │ ├── CNUIRejectDonatedValueCommand.h │ │ │ │ ├── CNUIRejectNonCuratedValueCommand.h │ │ │ │ ├── CNUIRejectNonCuratedValueCommandFactory.h │ │ │ │ ├── CNUIRejectSugggestedValueCommand.h │ │ │ │ ├── CNUISaveNonCuratedContactCommand.h │ │ │ │ ├── CNUISaveNonCuratedContactCommandFactory.h │ │ │ │ ├── CNUISaveNonCuratedValueCommandFactory.h │ │ │ │ ├── CNUISaveNonCuratedValueOntoContactCommand.h │ │ │ │ ├── CNUISaveNonCuratedValueOntoExistingContactCommand.h │ │ │ │ ├── CNUISaveNonCuratedValueOntoNonExistingContactCommand.h │ │ │ │ ├── CNUISaveNonCuratedValueOntoReadOnlyContactCommand.h │ │ │ │ ├── CNUISaveRequestCommand.h │ │ │ │ ├── CNUISaveSuggestedContactCommand.h │ │ │ │ ├── CNUISaveSuggestedMeContactCommand.h │ │ │ │ ├── CNUISetImageCommand.h │ │ │ │ ├── CNUISetMeCardCommand.h │ │ │ │ ├── CNUISetMultipleImagesCommand.h │ │ │ │ ├── CNUIUndoableCommand.h │ │ │ │ ├── NSAccessibilityButton.h │ │ │ │ ├── NSAccessibilityElement.h │ │ │ │ ├── NSAccessibilityStaticText.h │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ ├── NSImmediateActionAnimationController.h │ │ │ │ ├── NSMenuDelegate.h │ │ │ │ ├── NSOutlineViewDataSource.h │ │ │ │ ├── NSOutlineViewDelegate.h │ │ │ │ ├── NSPopoverDelegate.h │ │ │ │ ├── NSRemoteViewDelegate.h │ │ │ │ ├── NSSearchFieldDelegate.h │ │ │ │ ├── NSSharingServiceDelegate.h │ │ │ │ ├── NSSharingServicePickerDelegate.h │ │ │ │ ├── NSTableViewDataSource.h │ │ │ │ ├── NSTableViewDelegate.h │ │ │ │ ├── NSTextDelegate.h │ │ │ │ ├── NSTextFieldDelegate.h │ │ │ │ ├── NSTextViewDelegate.h │ │ │ │ ├── NSWindowDelegate.h │ │ │ │ ├── NSWindowRestoration.h │ │ │ │ ├── PHXTableView.h │ │ │ │ ├── TKTonePickerViewControllerDelegate.h │ │ │ │ ├── _ABBookUndoableCommandAdapter.h │ │ │ │ ├── _ABGeocodingMapsLauncher.h │ │ │ │ ├── _ABMonogramOptions.h │ │ │ │ ├── _ABPersonView.h │ │ │ │ ├── _ABURLMapsLauncher.h │ │ │ │ ├── _CNUIDefaultContactNameOrder.h │ │ │ │ ├── _CNUIFamilyNameFirstNameOrder.h │ │ │ │ ├── _CNUIGivenNameFirstNameOrder.h │ │ │ │ ├── _CNUINamelessContactNameOrder.h │ │ │ │ └── _SGSuggestionsServiceMetricsProtocol.h │ │ └── src │ │ │ ├── ABAPIAdapter.m │ │ │ ├── ABAbstractGroupEntriesFactory.m │ │ │ ├── ABAbstractGroupListAction.m │ │ │ ├── ABAccessibleTextFieldCell.m │ │ │ ├── ABAccountBrowsingGroupEntry.m │ │ │ ├── ABAccountGroupEntries.m │ │ │ ├── ABAccountGroupEntriesBuilder.m │ │ │ ├── ABAccountHeaderGroupEntry.m │ │ │ ├── ABActionAddSuggestedValue.m │ │ │ ├── ABActionAddressCopyMailingLabel.m │ │ │ ├── ABActionAddressCopyMapURL.m │ │ │ ├── ABActionAddressGetDirections.m │ │ │ ├── ABActionAddressMapsHelper.m │ │ │ ├── ABActionAddressShowMap.m │ │ │ ├── ABActionAutovalidator.m │ │ │ ├── ABActionAutovalidatorCache.m │ │ │ ├── ABActionAutovalidatorCacheEntry.m │ │ │ ├── ABActionAutovalidatorCacheMenuEntry.m │ │ │ ├── ABActionAutovalidatorCacheSimpleEntry.m │ │ │ ├── ABActionBeginChat.m │ │ │ ├── ABActionDispatcher.m │ │ │ ├── ABActionEmailSearchSpotlight.m │ │ │ ├── ABActionEmailSendMessage.m │ │ │ ├── ABActionEmailSendUpdate.m │ │ │ ├── ABActionIgnoreSuggestedValue.m │ │ │ ├── ABActionLinkedSetPreferredCard.m │ │ │ ├── ABActionManager.m │ │ │ ├── ABActionMenuItemFactory.m │ │ │ ├── ABActionPhoneDial.m │ │ │ ├── ABActionPhoneLargeType.m │ │ │ ├── ABActionRelatedShowCard.m │ │ │ ├── ABActionSocialProfile.m │ │ │ ├── ABActionSocialProfileSendMessage.m │ │ │ ├── ABActionSocialProfileViewPhotos.m │ │ │ ├── ABActionSocialProfileViewProfile.m │ │ │ ├── ABActionURLsOpenURL.m │ │ │ ├── ABAddSuggestedValueTask.m │ │ │ ├── ABAddressBook.m │ │ │ ├── ABAddressBookAPIAdapter.m │ │ │ ├── ABAddressBookCommandExecutionPolicy.m │ │ │ ├── ABAddressFieldBuilder.m │ │ │ ├── ABAddressFieldValuePopulator.m │ │ │ ├── ABAggregateSearchOperationsFactory.m │ │ │ ├── ABAlert.m │ │ │ ├── ABAlertToneCollectionViewItem.m │ │ │ ├── ABAllSmartGroup.m │ │ │ ├── ABAlternateBirthdayCollectionViewItem.m │ │ │ ├── ABAppDeprecations.m │ │ │ ├── ABAppearance.m │ │ │ ├── ABAttributedString.m │ │ │ ├── ABAttributedStringTransformer.m │ │ │ ├── ABAuthenticationInfo.m │ │ │ ├── ABBestEntryFinder.m │ │ │ ├── ABBidirectionalDictionary.m │ │ │ ├── ABBindingsLabelTransformer.m │ │ │ ├── ABBindingsURLTransformer.m │ │ │ ├── ABBirthdayCollectionViewItem.m │ │ │ ├── ABBirthdayConversionUIAction.m │ │ │ ├── ABBookAggregateUndoableCommand.m │ │ │ ├── ABBookAggregateUndoableCommandBuilder.m │ │ │ ├── ABBookCreateGroupCommand.m │ │ │ ├── ABBookCreateGroupWithMembersCommand.m │ │ │ ├── ABBookCreateSmartGroupCommand.m │ │ │ ├── ABBookEditSmartGroupCommand.m │ │ │ ├── ABBookGroupAddMembersCommand.m │ │ │ ├── ABBookGroupAddRecordsCommand.m │ │ │ ├── ABBookGroupAddSubgroupsCommand.m │ │ │ ├── ABBookGroupCopyCommand.m │ │ │ ├── ABBookGroupCutCommand.m │ │ │ ├── ABBookGroupDeleteCommand.m │ │ │ ├── ABBookGroupImportCommand.m │ │ │ ├── ABBookPastePeopleCommand.m │ │ │ ├── ABBookRenameGroupCommand.m │ │ │ ├── ABBookSearchField.m │ │ │ ├── ABBookSearchFieldCell.m │ │ │ ├── ABBrowsingGroupEntry.m │ │ │ ├── ABBrowsingSearchConfiguration.m │ │ │ ├── ABBuddyStatus.m │ │ │ ├── ABBuddyStatusImageCell.m │ │ │ ├── ABButtonCell.m │ │ │ ├── ABCNAddressDetector.m │ │ │ ├── ABCNContactPhotoStore.m │ │ │ ├── ABCNContactRemotePhotoStore.m │ │ │ ├── ABCNContactThumbnailPhotoStore.m │ │ │ ├── ABCNContactUncroppedPhotoStore.m │ │ │ ├── ABCNDDScanner.m │ │ │ ├── ABCNPhoneDialer.m │ │ │ ├── ABCNPhoneNumberDetector.m │ │ │ ├── ABCallbackCardAction.m │ │ │ ├── ABCardActionProvider.m │ │ │ ├── ABCardCollectionLinkedPeopleRowView.m │ │ │ ├── ABCardCollectionMessagingRowView.m │ │ │ ├── ABCardCollectionNoteRowView.m │ │ │ ├── ABCardCollectionPostalAddressRowView.m │ │ │ ├── ABCardCollectionPreferredNameRowView.m │ │ │ ├── ABCardCollectionRowLayout.m │ │ │ ├── ABCardCollectionRowScope.m │ │ │ ├── ABCardCollectionRowSeparatorView.m │ │ │ ├── ABCardCollectionRowView.m │ │ │ ├── ABCardCollectionStackViewController.m │ │ │ ├── ABCardCollectionTableRowView.m │ │ │ ├── ABCardCollectionTableViewController.m │ │ │ ├── ABCardCollectionURLRowView.m │ │ │ ├── ABCardCollectionView.m │ │ │ ├── ABCardCollectionViewController.m │ │ │ ├── ABCardViewAKSingleValueConverter.m │ │ │ ├── ABCardViewAlertTonesProperty.m │ │ │ ├── ABCardViewAlternateBirthdayProperty.m │ │ │ ├── ABCardViewBirthdayProperty.m │ │ │ ├── ABCardViewCNLabeledValueConverter.m │ │ │ ├── ABCardViewDateProperty.m │ │ │ ├── ABCardViewDictionaryTransformer.m │ │ │ ├── ABCardViewEditDisplayStyleCommand.m │ │ │ ├── ABCardViewEditPropertyCommand.m │ │ │ ├── ABCardViewEmailProperty.m │ │ │ ├── ABCardViewHelpers.m │ │ │ ├── ABCardViewImage.m │ │ │ ├── ABCardViewImageResult.m │ │ │ ├── ABCardViewInstantMessageProperty.m │ │ │ ├── ABCardViewInstantMessageServiceGenerator.m │ │ │ ├── ABCardViewLabelGenerator.m │ │ │ ├── ABCardViewLinkedPeopleProperty.m │ │ │ ├── ABCardViewLinkedPerson.m │ │ │ ├── ABCardViewLinkedPersonValueTransformer.m │ │ │ ├── ABCardViewMaidenNameProperty.m │ │ │ ├── ABCardViewMetrics.m │ │ │ ├── ABCardViewMultiValue.m │ │ │ ├── ABCardViewMultiValueAccountNameTransformer.m │ │ │ ├── ABCardViewMultiValueConverterBuilder.m │ │ │ ├── ABCardViewMultiValueEntry.m │ │ │ ├── ABCardViewMultiValuePrivateFieldTransformer.m │ │ │ ├── ABCardViewMultiValueReadOnlyTransformer.m │ │ │ ├── ABCardViewMutableMultiValue.m │ │ │ ├── ABCardViewNoteProperty.m │ │ │ ├── ABCardViewNotificationHandler.m │ │ │ ├── ABCardViewPersonMapper.m │ │ │ ├── ABCardViewPhoneProperty.m │ │ │ ├── ABCardViewPostalAddressFormatter.m │ │ │ ├── ABCardViewPostalAddressProperty.m │ │ │ ├── ABCardViewPreferredForNameProperty.m │ │ │ ├── ABCardViewPreferredForNameValueTransformer.m │ │ │ ├── ABCardViewProperty.m │ │ │ ├── ABCardViewPropertyProvider.m │ │ │ ├── ABCardViewRelatedNamesProperty.m │ │ │ ├── ABCardViewSaveHelper.m │ │ │ ├── ABCardViewSeparator.m │ │ │ ├── ABCardViewSingleValueProperty.m │ │ │ ├── ABCardViewSocialProfileProperty.m │ │ │ ├── ABCardViewStyle.m │ │ │ ├── ABCardViewStyleInternalProvider.m │ │ │ ├── ABCardViewStyleProvider.m │ │ │ ├── ABCardViewTransformingMultiValueConverter.m │ │ │ ├── ABCardViewURLProperty.m │ │ │ ├── ABCardViewUndoableDataSource.m │ │ │ ├── ABCardViewerController.m │ │ │ ├── ABCertificatePanelController.m │ │ │ ├── ABChangePropertiesCommand.m │ │ │ ├── ABChangePropertyCommand.m │ │ │ ├── ABChoosingForwarder.m │ │ │ ├── ABCleanGroupEntryListCellView.m │ │ │ ├── ABCleanGroupHeaderEntryListCellView.m │ │ │ ├── ABCleanGroupListRowView.m │ │ │ ├── ABClickableImageView.m │ │ │ ├── ABClickableTextView.m │ │ │ ├── ABCollectionAbstractAction.m │ │ │ ├── ABCollectionDialAction.m │ │ │ ├── ABCollectionFaceTimeRowView.m │ │ │ ├── ABCollectionItemMessagingAvailabilityHelper.m │ │ │ ├── ABCollectionMessageAction.m │ │ │ ├── ABCollectionOpenURLAction.m │ │ │ ├── ABCollectionReviewSuggestionAction.m │ │ │ ├── ABCollectionRowViewEditModeFactory.m │ │ │ ├── ABCollectionRowViewFactory.m │ │ │ ├── ABCollectionSendMailAction.m │ │ │ ├── ABCollectionShowMapAction.m │ │ │ ├── ABCollectionTTYAction.m │ │ │ ├── ABCollectionViewImageButton.m │ │ │ ├── ABCollectionViewItem.m │ │ │ ├── ABCollectionViewItemFactory.m │ │ │ ├── ABCollectionViewSeparatorItem.m │ │ │ ├── ABColor.m │ │ │ ├── ABCommandExecutionPolicy.m │ │ │ ├── ABCommandExecutor.m │ │ │ ├── ABCommandHookExecutionPolicy.m │ │ │ ├── ABCommunicationButtonsController.m │ │ │ ├── ABConstraintDescription.m │ │ │ ├── ABConstraintsBuilder.m │ │ │ ├── ABContactDeletionTracing.m │ │ │ ├── ABContactFetcher.m │ │ │ ├── ABContactPickerDelegateWrapper.m │ │ │ ├── ABContactPickerFactory.m │ │ │ ├── ABCopyOnWriteSet.m │ │ │ ├── ABCountTableEntry.m │ │ │ ├── ABCreatePersonCommand.m │ │ │ ├── ABCustomLabelController.m │ │ │ ├── ABDAVQuery.m │ │ │ ├── ABDSuggestionLogPairBuilder.m │ │ │ ├── ABDataSourceOperation.m │ │ │ ├── ABDateCollectionViewItem.m │ │ │ ├── ABDateComponentsFormatter.m │ │ │ ├── ABDateComponentsValueTransformer.m │ │ │ ├── ABDateFormatter.m │ │ │ ├── ABDateProvider.m │ │ │ ├── ABDefaultCardViewStyleProvider.m │ │ │ ├── ABDefaultGroupEntriesFactory.m │ │ │ ├── ABDefaultStopWatchTimeIntervalProvider.m │ │ │ ├── ABDelegateCardAction.m │ │ │ ├── ABDeleteGroupSheet.m │ │ │ ├── ABDeleteRecordsCommandBuilder.m │ │ │ ├── ABDeprecatedObject.m │ │ │ ├── ABDirectoriesHeaderGroupEntry.m │ │ │ ├── ABDistributionKeyValueCell.m │ │ │ ├── ABDistributionListController.m │ │ │ ├── ABDistributionListPeoplePickerController.m │ │ │ ├── ABDistributionListPeoplePickerView.m │ │ │ ├── ABDropDownMenuUIAction.m │ │ │ ├── ABEditButton.m │ │ │ ├── ABEditSmartGroupCommand.m │ │ │ ├── ABEmailCertificateController.m │ │ │ ├── ABEmailCertificateSearchOperation.m │ │ │ ├── ABEmailCollectionViewItem.m │ │ │ ├── ABEvent.m │ │ │ ├── ABExchangeSetup.m │ │ │ ├── ABExecuteRedoUndoableCommandVisitor.m │ │ │ ├── ABExecuteUndoUndoableCommandVisitor.m │ │ │ ├── ABExecuteUndoableCommandVisitor.m │ │ │ ├── ABFaceTimeActionsCollectionViewItem.m │ │ │ ├── ABFaceTimeCommunicationsBridge.m │ │ │ ├── ABFakeSuggestedData.m │ │ │ ├── ABFlippedStackView.m │ │ │ ├── ABFont.m │ │ │ ├── ABGlobals.m │ │ │ ├── ABGroupActionScope.m │ │ │ ├── ABGroupBrowsingContext.m │ │ │ ├── ABGroupBrowsingGroupEntry.m │ │ │ ├── ABGroupCommand.m │ │ │ ├── ABGroupCopyPasteboardData.m │ │ │ ├── ABGroupDragPasteboardData.m │ │ │ ├── ABGroupDragScope.m │ │ │ ├── ABGroupDragSource.m │ │ │ ├── ABGroupDropDestination.m │ │ │ ├── ABGroupDropPasteboardData.m │ │ │ ├── ABGroupDropPasteboardDataCategorizer.m │ │ │ ├── ABGroupDropScope.m │ │ │ ├── ABGroupDropSource.m │ │ │ ├── ABGroupEntriesAnalyzer.m │ │ │ ├── ABGroupEntriesBuilder.m │ │ │ ├── ABGroupEntriesList.m │ │ │ ├── ABGroupEntriesResult.m │ │ │ ├── ABGroupEntry.m │ │ │ ├── ABGroupImportFilesScope.m │ │ │ ├── ABGroupListAccessoryViewProvider.m │ │ │ ├── ABGroupListActionDispatcher.m │ │ │ ├── ABGroupListActions.m │ │ │ ├── ABGroupListCellViewStyle.m │ │ │ ├── ABGroupListController.m │ │ │ ├── ABGroupListCreateGroupUIAction.m │ │ │ ├── ABGroupListCreateSmartGroupUIAction.m │ │ │ ├── ABGroupListNotificationHandler.m │ │ │ ├── ABGroupListResponder.m │ │ │ ├── ABGroupListStyleProvider.m │ │ │ ├── ABGroupListTransformer.m │ │ │ ├── ABGroupListView.m │ │ │ ├── ABGroupPastePasteboardData.m │ │ │ ├── ABGroupSearchingContext.m │ │ │ ├── ABHeaderGroupEntry.m │ │ │ ├── ABImmediateActionGestureAdapter.m │ │ │ ├── ABImportRecordFactory.m │ │ │ ├── ABInstantMessageCollectionViewItem.m │ │ │ ├── ABKeystrokeForwarder.m │ │ │ ├── ABKeystrokeForwardingEntry.m │ │ │ ├── ABLabelPopUpButton.m │ │ │ ├── ABLargeTypeView.m │ │ │ ├── ABLargeTypeWindow.m │ │ │ ├── ABLastImportBrowsingGroupEntry.m │ │ │ ├── ABLastImportGroup.m │ │ │ ├── ABLazyGroup.m │ │ │ ├── ABLinkTextField.m │ │ │ ├── ABLinkedPersonCollectionViewItem.m │ │ │ ├── ABMainListOutlineView.m │ │ │ ├── ABMapsLaunchRequest.m │ │ │ ├── ABMapsLauncher.m │ │ │ ├── ABMeCommand.m │ │ │ ├── ABMiniGridView.m │ │ │ ├── ABMonogramFactory.m │ │ │ ├── ABMonogramImageLoading.m │ │ │ ├── ABMonogramImageTask.m │ │ │ ├── ABMonogramInitialsTask.m │ │ │ ├── ABMonogramOptions.m │ │ │ ├── ABMonogramPhotoTask.m │ │ │ ├── ABMonogramSilhouetteTask.m │ │ │ ├── ABMutableBidirectionalDictionary.m │ │ │ ├── ABMutablePackedImage.m │ │ │ ├── ABNameView.m │ │ │ ├── ABNameViewCompanyCheckBox.m │ │ │ ├── ABNamedImageWrapper.m │ │ │ ├── ABNewGroupCommand.m │ │ │ ├── ABNicknameFormatter.m │ │ │ ├── ABNoSelectionTableView.m │ │ │ ├── ABNoWindowDragTextField.m │ │ │ ├── ABNoteCollectionViewItem.m │ │ │ ├── ABNoteTextView.m │ │ │ ├── ABObjectDeathWatcher.m │ │ │ ├── ABOnBlueButton.m │ │ │ ├── ABOverlayView.m │ │ │ ├── ABPackedImage.m │ │ │ ├── ABPasswordPanelController.m │ │ │ ├── ABPastePeopleCommand.m │ │ │ ├── ABPasteboardWriteCommand.m │ │ │ ├── ABPeopleListTransformer.m │ │ │ ├── ABPeoplePickerBrowsingSelectHelper.m │ │ │ ├── ABPeoplePickerController.m │ │ │ ├── ABPeoplePickerExternalNotificationWatcher.m │ │ │ ├── ABPeoplePickerGroupEntriesFactory.m │ │ │ ├── ABPeoplePickerGroupHelperFactory.m │ │ │ ├── ABPeoplePickerGroupListController.m │ │ │ ├── ABPeoplePickerGroupListStyleProvider.m │ │ │ ├── ABPeoplePickerGroupListView.m │ │ │ ├── ABPeoplePickerLocalNotificationWatcher.m │ │ │ ├── ABPeoplePickerNameCell.m │ │ │ ├── ABPeoplePickerProperty.m │ │ │ ├── ABPeoplePickerPropertyCell.m │ │ │ ├── ABPeoplePickerScope.m │ │ │ ├── ABPeoplePickerSearchingSelectHelper.m │ │ │ ├── ABPeoplePickerSubrowGroupElement.m │ │ │ ├── ABPeoplePickerSubrowObject.m │ │ │ ├── ABPeoplePickerSubrowObjectBuilder.m │ │ │ ├── ABPeoplePickerTableColumn.m │ │ │ ├── ABPeoplePickerTableRow.m │ │ │ ├── ABPeoplePickerTableView.m │ │ │ ├── ABPeoplePickerView.m │ │ │ ├── ABPeriodicTask.m │ │ │ ├── ABPeriodicUITask.m │ │ │ ├── ABPerson.m │ │ │ ├── ABPersonContactConverter.m │ │ │ ├── ABPersonEntriesFetcher.m │ │ │ ├── ABPersonEntriesList.m │ │ │ ├── ABPersonEntry.m │ │ │ ├── ABPersonEntryFactory.m │ │ │ ├── ABPersonInitials.m │ │ │ ├── ABPersonListAttributedName.m │ │ │ ├── ABPersonListController.m │ │ │ ├── ABPersonListControllerDelegateWrapper.m │ │ │ ├── ABPersonListControllerTracing.m │ │ │ ├── ABPersonListDragExportHelper.m │ │ │ ├── ABPersonListHeadliner.m │ │ │ ├── ABPersonListMenuHelper.m │ │ │ ├── ABPersonListRowView.m │ │ │ ├── ABPersonListSearchController.m │ │ │ ├── ABPersonListSearchHelper.m │ │ │ ├── ABPersonListSharingHelper.m │ │ │ ├── ABPersonListUIReflector.m │ │ │ ├── ABPersonPicker.m │ │ │ ├── ABPersonSearchConfiguration.m │ │ │ ├── ABPersonView.m │ │ │ ├── ABPersonViewAPIAdapter.m │ │ │ ├── ABPersonViewNotificationWatcher.m │ │ │ ├── ABPersonViewStyleProvider.m │ │ │ ├── ABPhoneCollectionViewItem.m │ │ │ ├── ABPhoneFormatter.m │ │ │ ├── ABPopUpButton.m │ │ │ ├── ABPopUpButtonCell.m │ │ │ ├── ABPopupTableHeaderCell.m │ │ │ ├── ABPopupTableHeaderView.m │ │ │ ├── ABPostalAddressCollectionViewItem.m │ │ │ ├── ABPostalAddressFormatSubmenuGenerator.m │ │ │ ├── ABPreferredNameCollectionViewItem.m │ │ │ ├── ABPropertyHeaderCell.m │ │ │ ├── ABQuerySearchConfiguration.m │ │ │ ├── ABRTTServices.m │ │ │ ├── ABRecord.m │ │ │ ├── ABRecordContext.m │ │ │ ├── ABRectObject.m │ │ │ ├── ABRemotePersonView.m │ │ │ ├── ABRemoveMembersCommand.m │ │ │ ├── ABRemoveMembersCommandBuilder.m │ │ │ ├── ABRemovesEmptyCardViewData.m │ │ │ ├── ABRenameGroupCommand.m │ │ │ ├── ABRolloverButton.m │ │ │ ├── ABSearchController.m │ │ │ ├── ABSearchElement.m │ │ │ ├── ABSearchElementOrderManager.m │ │ │ ├── ABSearchElementSetView.m │ │ │ ├── ABSearchElementUIController.m │ │ │ ├── ABSearchElementView.m │ │ │ ├── ABSearchHighlightFormatter.m │ │ │ ├── ABSearchingGroupEntry.m │ │ │ ├── ABSectionGroupEntry.m │ │ │ ├── ABSectionTableEntry.m │ │ │ ├── ABShadowTextField.m │ │ │ ├── ABShadowTextFieldCell.m │ │ │ ├── ABShadowTextView.m │ │ │ ├── ABShadowTextViewMultipleValuePasteHelper.m │ │ │ ├── ABShadowTextViewPostalAddressValuePasteHelper.m │ │ │ ├── ABShowAsCommand.m │ │ │ ├── ABSimpleLinkTextField.m │ │ │ ├── ABSmartGroupBrowsingGroupEntry.m │ │ │ ├── ABSmartGroupsHeaderGroupEntry.m │ │ │ ├── ABSocialProfileCollectionViewItem.m │ │ │ ├── ABSourceSyncPeriodicTaskScheduler.m │ │ │ ├── ABSpaceFormatter.m │ │ │ ├── ABStopWatch.m │ │ │ ├── ABSuggestedEntriesFetcher.m │ │ │ ├── ABSuggestedValueSnippet.m │ │ │ ├── ABSuggestedValueViewController.m │ │ │ ├── ABSuggestedValueViewControllerSnippetHelper.m │ │ │ ├── ABSuggestionsTracing.m │ │ │ ├── ABTableEntry.m │ │ │ ├── ABTableHeaderView.m │ │ │ ├── ABTelURLHelper.m │ │ │ ├── ABTemplatePreferencesSaving.m │ │ │ ├── ABTemplateViewStyleProvider.m │ │ │ ├── ABTextContainer.m │ │ │ ├── ABTextStorage.m │ │ │ ├── ABThrottledTrackingAreaMonitor.m │ │ │ ├── ABTrackingArea.m │ │ │ ├── ABTypesetter.m │ │ │ ├── ABURLCollectionViewItem.m │ │ │ ├── ABUndoableCommandVisitor.m │ │ │ ├── ABUnlinkPeopleCommand.m │ │ │ ├── ABUserActivityRestoration.m │ │ │ ├── ABUserActivityScore.m │ │ │ ├── ABUserActivityScoring.m │ │ │ ├── ABUserActivitySerialization.m │ │ │ ├── ABUserDefaultsCNAdapter.m │ │ │ ├── ABVCardFilenameExpander.m │ │ │ ├── ABView.m │ │ │ ├── ABWhiteView.m │ │ │ ├── ABWidthLimitingStackView.m │ │ │ ├── ABWindowController.m │ │ │ ├── ABXMLParseNode.m │ │ │ ├── AKCardViewDataSource.m │ │ │ ├── AKCardViewDataSourceFactory.m │ │ │ ├── AKCardViewImageDataSource.m │ │ │ ├── AKInstantMessageAddressValueTransformer.m │ │ │ ├── AKSocialProfileValueTransformer.m │ │ │ ├── AddressBook.m │ │ │ ├── CNCollectionUserActionItem.m │ │ │ ├── CNContactLabelSanitizer.m │ │ │ ├── CNUIAddContactCommand.m │ │ │ ├── CNUIAddressBookToContactsConversions.m │ │ │ ├── CNUIAggregateUndoableCommand.m │ │ │ ├── CNUIAggregateUndoableCommandBuilder.m │ │ │ ├── CNUICommandContactHelper.m │ │ │ ├── CNUIContactNameOrder.m │ │ │ ├── CNUIContactRelationsValueTransformer.m │ │ │ ├── CNUIDeleteCommandHelper.m │ │ │ ├── CNUIDeleteContactCommand.m │ │ │ ├── CNUIEditContactCommand.m │ │ │ ├── CNUIPhoneNumerValueTransformer.m │ │ │ ├── CNUIRejectDonatedValueCommand.m │ │ │ ├── CNUIRejectNonCuratedValueCommand.m │ │ │ ├── CNUIRejectNonCuratedValueCommandFactory.m │ │ │ ├── CNUIRejectSugggestedValueCommand.m │ │ │ ├── CNUISaveNonCuratedContactCommand.m │ │ │ ├── CNUISaveNonCuratedContactCommandFactory.m │ │ │ ├── CNUISaveNonCuratedValueCommandFactory.m │ │ │ ├── CNUISaveNonCuratedValueOntoContactCommand.m │ │ │ ├── CNUISaveNonCuratedValueOntoExistingContactCommand.m │ │ │ ├── CNUISaveNonCuratedValueOntoNonExistingContactCommand.m │ │ │ ├── CNUISaveNonCuratedValueOntoReadOnlyContactCommand.m │ │ │ ├── CNUISaveSuggestedContactCommand.m │ │ │ ├── CNUISaveSuggestedMeContactCommand.m │ │ │ ├── CNUISetImageCommand.m │ │ │ ├── CNUISetMeCardCommand.m │ │ │ ├── CNUISetMultipleImagesCommand.m │ │ │ ├── CNUIUndoableCommand.m │ │ │ ├── PHXTableView.m │ │ │ ├── _ABBookUndoableCommandAdapter.m │ │ │ ├── _ABGeocodingMapsLauncher.m │ │ │ ├── _ABMonogramOptions.m │ │ │ ├── _ABPersonView.m │ │ │ ├── _ABURLMapsLauncher.m │ │ │ ├── _CNUIDefaultContactNameOrder.m │ │ │ ├── _CNUIFamilyNameFirstNameOrder.m │ │ │ ├── _CNUIGivenNameFirstNameOrder.m │ │ │ └── _CNUINamelessContactNameOrder.m │ ├── ApplicationServices │ │ ├── ATS │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── ATS │ │ │ │ │ └── ATS.h │ │ │ └── src │ │ │ │ └── ATS.c │ │ ├── ApplicationServices.c │ │ ├── CMakeLists.txt │ │ ├── ColorSyncLegacy │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── ColorSyncLegacy │ │ │ │ │ └── ColorSyncLegacy.h │ │ │ └── src │ │ │ │ └── ColorSyncLegacy.c │ │ ├── HIServices │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── HIServices │ │ │ │ │ ├── HIServices.h │ │ │ │ │ └── Processes.h │ │ │ └── src │ │ │ │ ├── HIServices.c │ │ │ │ └── Processes.cpp │ │ ├── LangAnalysis │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── LangAnalysis │ │ │ │ │ └── LangAnalysis.h │ │ │ └── src │ │ │ │ └── LangAnalysis.c │ │ ├── PrintCore │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── PrintCore │ │ │ │ │ ├── PMInkChecker.h │ │ │ │ │ └── PrintCore.h │ │ │ └── src │ │ │ │ ├── PMInkChecker.m │ │ │ │ └── PrintCore.m │ │ ├── QD │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── QD │ │ │ │ │ └── QD.h │ │ │ └── src │ │ │ │ └── QD.c │ │ ├── README │ │ ├── SpeechSynthesis │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── SpeechSynthesis │ │ │ │ │ └── SpeechSynthesis.h │ │ │ └── src │ │ │ │ └── SpeechSynthesis.c │ │ └── include │ │ │ └── ApplicationServices │ │ │ └── ApplicationServices.h │ ├── AudioVideoBridging │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AudioVideoBridging │ │ │ │ ├── ADDDeviceService.h │ │ │ │ ├── ALServiceProtocol.h │ │ │ │ ├── ASACoreAudioClient.h │ │ │ │ ├── AVB17221ACMPClient.h │ │ │ │ ├── AVB17221ACMPInterface.h │ │ │ │ ├── AVB17221ACMPMessage.h │ │ │ │ ├── AVB17221ACMPPendingResponse.h │ │ │ │ ├── AVB17221AECPAEMMessage.h │ │ │ │ ├── AVB17221AECPAVCMessage.h │ │ │ │ ├── AVB17221AECPAddressAccessMessage.h │ │ │ │ ├── AVB17221AECPAddressAccessTLV.h │ │ │ │ ├── AVB17221AECPClient.h │ │ │ │ ├── AVB17221AECPInterface.h │ │ │ │ ├── AVB17221AECPMessage.h │ │ │ │ ├── AVB17221AECPPendingResponse.h │ │ │ │ ├── AVB17221AECPVendorMessage.h │ │ │ │ ├── AVB17221AEM618834StreamFormat.h │ │ │ │ ├── AVB17221AEM61883632BitStreamFormat.h │ │ │ │ ├── AVB17221AEM618836AM824StreamFormat.h │ │ │ │ ├── AVB17221AEM618836FloatStreamFormat.h │ │ │ │ ├── AVB17221AEM618836StreamFormat.h │ │ │ │ ├── AVB17221AEM618837StreamFormat.h │ │ │ │ ├── AVB17221AEM618838StreamFormat.h │ │ │ │ ├── AVB17221AEM61883StreamFormat.h │ │ │ │ ├── AVB17221AEMAAFAES3StreamFormat.h │ │ │ │ ├── AVB17221AEMAAFPCMStreamFormat.h │ │ │ │ ├── AVB17221AEMAAFStreamFormat.h │ │ │ │ ├── AVB17221AEMAVBInterface.h │ │ │ │ ├── AVB17221AEMAVCaptureDeviceModelMaker.h │ │ │ │ ├── AVB17221AEMAudioCluster.h │ │ │ │ ├── AVB17221AEMAudioMap.h │ │ │ │ ├── AVB17221AEMAudioMapping.h │ │ │ │ ├── AVB17221AEMAudioUnit.h │ │ │ │ ├── AVB17221AEMBaseControl.h │ │ │ │ ├── AVB17221AEMBodePlotEntry.h │ │ │ │ ├── AVB17221AEMCRFStreamFormat.h │ │ │ │ ├── AVB17221AEMCVFH264StreamFormat.h │ │ │ │ ├── AVB17221AEMCVFJPEG2000StreamFormat.h │ │ │ │ ├── AVB17221AEMCVFMJPEGStreamForamt.h │ │ │ │ ├── AVB17221AEMCVFStreamFormat.h │ │ │ │ ├── AVB17221AEMClockDomain.h │ │ │ │ ├── AVB17221AEMClockDomainedModelObject.h │ │ │ │ ├── AVB17221AEMClockSource.h │ │ │ │ ├── AVB17221AEMCluster.h │ │ │ │ ├── AVB17221AEMConfiguration.h │ │ │ │ ├── AVB17221AEMControl.h │ │ │ │ ├── AVB17221AEMControlBlock.h │ │ │ │ ├── AVB17221AEMControlDescriptorArrayValue.h │ │ │ │ ├── AVB17221AEMControlDescriptorBodePlotValue.h │ │ │ │ ├── AVB17221AEMControlDescriptorGPTPValue.h │ │ │ │ ├── AVB17221AEMControlDescriptorLinearSet.h │ │ │ │ ├── AVB17221AEMControlDescriptorLinearValue.h │ │ │ │ ├── AVB17221AEMControlDescriptorSMPTETimeValue.h │ │ │ │ ├── AVB17221AEMControlDescriptorSamplingRateValue.h │ │ │ │ ├── AVB17221AEMControlDescriptorSelectorStringValue.h │ │ │ │ ├── AVB17221AEMControlDescriptorSelectorValue.h │ │ │ │ ├── AVB17221AEMControlDescriptorUTF8Value.h │ │ │ │ ├── AVB17221AEMControlDescriptorValue.h │ │ │ │ ├── AVB17221AEMControlDescriptorVendorValue.h │ │ │ │ ├── AVB17221AEMCoreAudioDeviceModelMaker.h │ │ │ │ ├── AVB17221AEMDescriptorCount.h │ │ │ │ ├── AVB17221AEMEntity.h │ │ │ │ ├── AVB17221AEMEntityEnumerator.h │ │ │ │ ├── AVB17221AEMExternalPort.h │ │ │ │ ├── AVB17221AEMIIDCStreamFormat.h │ │ │ │ ├── AVB17221AEMInternalPort.h │ │ │ │ ├── AVB17221AEMJack.h │ │ │ │ ├── AVB17221AEMLMMMapping.h │ │ │ │ ├── AVB17221AEMLocalModelMaker.h │ │ │ │ ├── AVB17221AEMLocalRemoteMapping.h │ │ │ │ ├── AVB17221AEMLocale.h │ │ │ │ ├── AVB17221AEMLocalizedStringReference.h │ │ │ │ ├── AVB17221AEMMMAStreamFormat.h │ │ │ │ ├── AVB17221AEMMSRPMapping.h │ │ │ │ ├── AVB17221AEMMatrix.h │ │ │ │ ├── AVB17221AEMMatrixSignal.h │ │ │ │ ├── AVB17221AEMMemoryObject.h │ │ │ │ ├── AVB17221AEMMemoryObjectData.h │ │ │ │ ├── AVB17221AEMMixer.h │ │ │ │ ├── AVB17221AEMModelMaker.h │ │ │ │ ├── AVB17221AEMModelObject.h │ │ │ │ ├── AVB17221AEMNamedClockDomainedModelObject.h │ │ │ │ ├── AVB17221AEMNamedModelObject.h │ │ │ │ ├── AVB17221AEMObject.h │ │ │ │ ├── AVB17221AEMPort.h │ │ │ │ ├── AVB17221AEMRVFStreamFormat.h │ │ │ │ ├── AVB17221AEMSVFStreamFormat.h │ │ │ │ ├── AVB17221AEMSampleRateTransformer.h │ │ │ │ ├── AVB17221AEMSamplingRate.h │ │ │ │ ├── AVB17221AEMSamplingRateRange.h │ │ │ │ ├── AVB17221AEMSensorCluster.h │ │ │ │ ├── AVB17221AEMSensorFormat.h │ │ │ │ ├── AVB17221AEMSensorMap.h │ │ │ │ ├── AVB17221AEMSensorMapping.h │ │ │ │ ├── AVB17221AEMSensorUnit.h │ │ │ │ ├── AVB17221AEMSignal.h │ │ │ │ ├── AVB17221AEMSignalCombiner.h │ │ │ │ ├── AVB17221AEMSignalCombinerMapping.h │ │ │ │ ├── AVB17221AEMSignalDemultiplexer.h │ │ │ │ ├── AVB17221AEMSignalDemultiplexerMapping.h │ │ │ │ ├── AVB17221AEMSignalMultiplexer.h │ │ │ │ ├── AVB17221AEMSignalMultiplexerMapping.h │ │ │ │ ├── AVB17221AEMSignalPort.h │ │ │ │ ├── AVB17221AEMSignalSelector.h │ │ │ │ ├── AVB17221AEMSignalSplitter.h │ │ │ │ ├── AVB17221AEMSignalSplitterMapping.h │ │ │ │ ├── AVB17221AEMSignalTranscoder.h │ │ │ │ ├── AVB17221AEMStandardStreamFormat.h │ │ │ │ ├── AVB17221AEMStream.h │ │ │ │ ├── AVB17221AEMStreamFormat.h │ │ │ │ ├── AVB17221AEMStreamFormatTransformer.h │ │ │ │ ├── AVB17221AEMStreamPort.h │ │ │ │ ├── AVB17221AEMStrings.h │ │ │ │ ├── AVB17221AEMTSCFStreamFormat.h │ │ │ │ ├── AVB17221AEMUnit.h │ │ │ │ ├── AVB17221AEMVSFStreamFormat.h │ │ │ │ ├── AVB17221AEMVendorStreamFormat.h │ │ │ │ ├── AVB17221AEMVideoAspectRatio.h │ │ │ │ ├── AVB17221AEMVideoCluster.h │ │ │ │ ├── AVB17221AEMVideoColorSpaceTransformer.h │ │ │ │ ├── AVB17221AEMVideoFormatSpecific.h │ │ │ │ ├── AVB17221AEMVideoMap.h │ │ │ │ ├── AVB17221AEMVideoMapping.h │ │ │ │ ├── AVB17221AEMVideoSize.h │ │ │ │ ├── AVB17221AEMVideoUnit.h │ │ │ │ ├── AVB17221Entity.h │ │ │ │ ├── AVB17221EntityDiscovery.h │ │ │ │ ├── AVB17221EntityDiscoveryDelegate.h │ │ │ │ ├── AVB17221EntityPublisher.h │ │ │ │ ├── AVB1722ControlInterface.h │ │ │ │ ├── AVB1722MAAP.h │ │ │ │ ├── AVBAVDECCController.h │ │ │ │ ├── AVBAVDECCEntity.h │ │ │ │ ├── AVBAVDECCEntityInterface.h │ │ │ │ ├── AVBAudioDeviceSharing.h │ │ │ │ ├── AVBAudioDriverManager.h │ │ │ │ ├── AVBBuiltInAVDECCController.h │ │ │ │ ├── AVBBuiltInAVDECCEntity.h │ │ │ │ ├── AVBCentralManager.h │ │ │ │ ├── AVBConnectedTransformer.h │ │ │ │ ├── AVBCustomVirtualAudioEntityAEMValidator.h │ │ │ │ ├── AVBEUI64Transformer.h │ │ │ │ ├── AVBEthernetInterface.h │ │ │ │ ├── AVBIIDCIOSurfaceOutputStream.h │ │ │ │ ├── AVBIIDCIOSurfaceStream.h │ │ │ │ ├── AVBIIDCStreamConfiguration.h │ │ │ │ ├── AVBIIDCUserInputStream.h │ │ │ │ ├── AVBIIDCUserOutputStream.h │ │ │ │ ├── AVBInputStream.h │ │ │ │ ├── AVBInterface.h │ │ │ │ ├── AVBInterfaceDelegate.h │ │ │ │ ├── AVBInterfaceStreamingManager.h │ │ │ │ ├── AVBMAAPMACAddress.h │ │ │ │ ├── AVBMACAddress.h │ │ │ │ ├── AVBMACAddressFormatter.h │ │ │ │ ├── AVBMRP.h │ │ │ │ ├── AVBMSRPDomain.h │ │ │ │ ├── AVBMSRPDomainInfo.h │ │ │ │ ├── AVBMSRPListener.h │ │ │ │ ├── AVBMSRPListenerClient.h │ │ │ │ ├── AVBMSRPTalker.h │ │ │ │ ├── AVBMSRPTalkerAttribute.h │ │ │ │ ├── AVBMSRPTalkerClient.h │ │ │ │ ├── AVBMVRP.h │ │ │ │ ├── AVBMutableBool.h │ │ │ │ ├── AVBNub.h │ │ │ │ ├── AVBOutputStream.h │ │ │ │ ├── AVBSimpleVirtualAudio.h │ │ │ │ ├── AVBStream.h │ │ │ │ ├── AVBVirtualEntity.h │ │ │ │ ├── AVBVirtualStream.h │ │ │ │ ├── AVBVirtualStreamConnection.h │ │ │ │ ├── AVBWiFiInterface.h │ │ │ │ ├── AVBgPTPEthernetPort.h │ │ │ │ ├── AudioVideoBridging.h │ │ │ │ └── TSClockClient.h │ │ └── src │ │ │ ├── AVB17221ACMPInterface.m │ │ │ ├── AVB17221ACMPMessage.m │ │ │ ├── AVB17221ACMPPendingResponse.m │ │ │ ├── AVB17221AECPAEMMessage.m │ │ │ ├── AVB17221AECPAVCMessage.m │ │ │ ├── AVB17221AECPAddressAccessMessage.m │ │ │ ├── AVB17221AECPAddressAccessTLV.m │ │ │ ├── AVB17221AECPInterface.m │ │ │ ├── AVB17221AECPMessage.m │ │ │ ├── AVB17221AECPPendingResponse.m │ │ │ ├── AVB17221AECPVendorMessage.m │ │ │ ├── AVB17221AEM618834StreamFormat.m │ │ │ ├── AVB17221AEM61883632BitStreamFormat.m │ │ │ ├── AVB17221AEM618836AM824StreamFormat.m │ │ │ ├── AVB17221AEM618836FloatStreamFormat.m │ │ │ ├── AVB17221AEM618836StreamFormat.m │ │ │ ├── AVB17221AEM618837StreamFormat.m │ │ │ ├── AVB17221AEM618838StreamFormat.m │ │ │ ├── AVB17221AEM61883StreamFormat.m │ │ │ ├── AVB17221AEMAAFAES3StreamFormat.m │ │ │ ├── AVB17221AEMAAFPCMStreamFormat.m │ │ │ ├── AVB17221AEMAAFStreamFormat.m │ │ │ ├── AVB17221AEMAVBInterface.m │ │ │ ├── AVB17221AEMAVCaptureDeviceModelMaker.m │ │ │ ├── AVB17221AEMAudioCluster.m │ │ │ ├── AVB17221AEMAudioMap.m │ │ │ ├── AVB17221AEMAudioMapping.m │ │ │ ├── AVB17221AEMAudioUnit.m │ │ │ ├── AVB17221AEMBaseControl.m │ │ │ ├── AVB17221AEMBodePlotEntry.m │ │ │ ├── AVB17221AEMCRFStreamFormat.m │ │ │ ├── AVB17221AEMCVFH264StreamFormat.m │ │ │ ├── AVB17221AEMCVFJPEG2000StreamFormat.m │ │ │ ├── AVB17221AEMCVFMJPEGStreamForamt.m │ │ │ ├── AVB17221AEMCVFStreamFormat.m │ │ │ ├── AVB17221AEMClockDomain.m │ │ │ ├── AVB17221AEMClockDomainedModelObject.m │ │ │ ├── AVB17221AEMClockSource.m │ │ │ ├── AVB17221AEMCluster.m │ │ │ ├── AVB17221AEMConfiguration.m │ │ │ ├── AVB17221AEMControl.m │ │ │ ├── AVB17221AEMControlBlock.m │ │ │ ├── AVB17221AEMControlDescriptorArrayValue.m │ │ │ ├── AVB17221AEMControlDescriptorBodePlotValue.m │ │ │ ├── AVB17221AEMControlDescriptorGPTPValue.m │ │ │ ├── AVB17221AEMControlDescriptorLinearSet.m │ │ │ ├── AVB17221AEMControlDescriptorLinearValue.m │ │ │ ├── AVB17221AEMControlDescriptorSMPTETimeValue.m │ │ │ ├── AVB17221AEMControlDescriptorSamplingRateValue.m │ │ │ ├── AVB17221AEMControlDescriptorSelectorStringValue.m │ │ │ ├── AVB17221AEMControlDescriptorSelectorValue.m │ │ │ ├── AVB17221AEMControlDescriptorUTF8Value.m │ │ │ ├── AVB17221AEMControlDescriptorValue.m │ │ │ ├── AVB17221AEMControlDescriptorVendorValue.m │ │ │ ├── AVB17221AEMCoreAudioDeviceModelMaker.m │ │ │ ├── AVB17221AEMDescriptorCount.m │ │ │ ├── AVB17221AEMEntity.m │ │ │ ├── AVB17221AEMEntityEnumerator.m │ │ │ ├── AVB17221AEMExternalPort.m │ │ │ ├── AVB17221AEMIIDCStreamFormat.m │ │ │ ├── AVB17221AEMInternalPort.m │ │ │ ├── AVB17221AEMJack.m │ │ │ ├── AVB17221AEMLMMMapping.m │ │ │ ├── AVB17221AEMLocalModelMaker.m │ │ │ ├── AVB17221AEMLocalRemoteMapping.m │ │ │ ├── AVB17221AEMLocale.m │ │ │ ├── AVB17221AEMLocalizedStringReference.m │ │ │ ├── AVB17221AEMMMAStreamFormat.m │ │ │ ├── AVB17221AEMMSRPMapping.m │ │ │ ├── AVB17221AEMMatrix.m │ │ │ ├── AVB17221AEMMatrixSignal.m │ │ │ ├── AVB17221AEMMemoryObject.m │ │ │ ├── AVB17221AEMMemoryObjectData.m │ │ │ ├── AVB17221AEMMixer.m │ │ │ ├── AVB17221AEMModelMaker.m │ │ │ ├── AVB17221AEMModelObject.m │ │ │ ├── AVB17221AEMNamedClockDomainedModelObject.m │ │ │ ├── AVB17221AEMNamedModelObject.m │ │ │ ├── AVB17221AEMObject.m │ │ │ ├── AVB17221AEMPort.m │ │ │ ├── AVB17221AEMRVFStreamFormat.m │ │ │ ├── AVB17221AEMSVFStreamFormat.m │ │ │ ├── AVB17221AEMSampleRateTransformer.m │ │ │ ├── AVB17221AEMSamplingRate.m │ │ │ ├── AVB17221AEMSamplingRateRange.m │ │ │ ├── AVB17221AEMSensorCluster.m │ │ │ ├── AVB17221AEMSensorFormat.m │ │ │ ├── AVB17221AEMSensorMap.m │ │ │ ├── AVB17221AEMSensorMapping.m │ │ │ ├── AVB17221AEMSensorUnit.m │ │ │ ├── AVB17221AEMSignal.m │ │ │ ├── AVB17221AEMSignalCombiner.m │ │ │ ├── AVB17221AEMSignalCombinerMapping.m │ │ │ ├── AVB17221AEMSignalDemultiplexer.m │ │ │ ├── AVB17221AEMSignalDemultiplexerMapping.m │ │ │ ├── AVB17221AEMSignalMultiplexer.m │ │ │ ├── AVB17221AEMSignalMultiplexerMapping.m │ │ │ ├── AVB17221AEMSignalPort.m │ │ │ ├── AVB17221AEMSignalSelector.m │ │ │ ├── AVB17221AEMSignalSplitter.m │ │ │ ├── AVB17221AEMSignalSplitterMapping.m │ │ │ ├── AVB17221AEMSignalTranscoder.m │ │ │ ├── AVB17221AEMStandardStreamFormat.m │ │ │ ├── AVB17221AEMStream.m │ │ │ ├── AVB17221AEMStreamFormat.m │ │ │ ├── AVB17221AEMStreamFormatTransformer.m │ │ │ ├── AVB17221AEMStreamPort.m │ │ │ ├── AVB17221AEMStrings.m │ │ │ ├── AVB17221AEMTSCFStreamFormat.m │ │ │ ├── AVB17221AEMUnit.m │ │ │ ├── AVB17221AEMVSFStreamFormat.m │ │ │ ├── AVB17221AEMVendorStreamFormat.m │ │ │ ├── AVB17221AEMVideoAspectRatio.m │ │ │ ├── AVB17221AEMVideoCluster.m │ │ │ ├── AVB17221AEMVideoColorSpaceTransformer.m │ │ │ ├── AVB17221AEMVideoFormatSpecific.m │ │ │ ├── AVB17221AEMVideoMap.m │ │ │ ├── AVB17221AEMVideoMapping.m │ │ │ ├── AVB17221AEMVideoSize.m │ │ │ ├── AVB17221AEMVideoUnit.m │ │ │ ├── AVB17221Entity.m │ │ │ ├── AVB17221EntityDiscovery.m │ │ │ ├── AVB1722ControlInterface.m │ │ │ ├── AVB1722MAAP.m │ │ │ ├── AVBAVDECCController.m │ │ │ ├── AVBAVDECCEntity.m │ │ │ ├── AVBAVDECCEntityInterface.m │ │ │ ├── AVBAudioDeviceSharing.m │ │ │ ├── AVBAudioDriverManager.m │ │ │ ├── AVBBuiltInAVDECCController.m │ │ │ ├── AVBBuiltInAVDECCEntity.m │ │ │ ├── AVBCentralManager.m │ │ │ ├── AVBConnectedTransformer.m │ │ │ ├── AVBCustomVirtualAudioEntityAEMValidator.m │ │ │ ├── AVBEUI64Transformer.m │ │ │ ├── AVBEthernetInterface.m │ │ │ ├── AVBIIDCIOSurfaceOutputStream.m │ │ │ ├── AVBIIDCIOSurfaceStream.m │ │ │ ├── AVBIIDCStreamConfiguration.m │ │ │ ├── AVBIIDCUserInputStream.m │ │ │ ├── AVBIIDCUserOutputStream.m │ │ │ ├── AVBInputStream.m │ │ │ ├── AVBInterface.m │ │ │ ├── AVBInterfaceStreamingManager.m │ │ │ ├── AVBMAAPMACAddress.m │ │ │ ├── AVBMACAddress.m │ │ │ ├── AVBMACAddressFormatter.m │ │ │ ├── AVBMRP.m │ │ │ ├── AVBMSRPDomain.m │ │ │ ├── AVBMSRPDomainInfo.m │ │ │ ├── AVBMSRPListener.m │ │ │ ├── AVBMSRPTalker.m │ │ │ ├── AVBMSRPTalkerAttribute.m │ │ │ ├── AVBMVRP.m │ │ │ ├── AVBMutableBool.m │ │ │ ├── AVBNub.m │ │ │ ├── AVBOutputStream.m │ │ │ ├── AVBSimpleVirtualAudio.m │ │ │ ├── AVBStream.m │ │ │ ├── AVBVirtualEntity.m │ │ │ ├── AVBVirtualStream.m │ │ │ ├── AVBVirtualStreamConnection.m │ │ │ ├── AVBWiFiInterface.m │ │ │ ├── AVBgPTPEthernetPort.m │ │ │ └── AudioVideoBridging.m │ ├── AuthenticationServices │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AuthenticationServices │ │ │ │ ├── AKAdaptiveServiceInterface.h │ │ │ │ ├── AKAuthorizationCredential+AuthenticationServicesExtras.h │ │ │ │ ├── AKAuthorizationNotificationHandler.h │ │ │ │ ├── ASAuthorization.h │ │ │ │ ├── ASAuthorizationAppleIDButton.h │ │ │ │ ├── ASAuthorizationAppleIDCredential.h │ │ │ │ ├── ASAuthorizationAppleIDProvider.h │ │ │ │ ├── ASAuthorizationAppleIDRequest.h │ │ │ │ ├── ASAuthorizationController.h │ │ │ │ ├── ASAuthorizationControllerDelegate.h │ │ │ │ ├── ASAuthorizationControllerPresentationContextProviding.h │ │ │ │ ├── ASAuthorizationCredential.h │ │ │ │ ├── ASAuthorizationOpenIDRequest.h │ │ │ │ ├── ASAuthorizationPasswordProvider.h │ │ │ │ ├── ASAuthorizationPasswordRequest.h │ │ │ │ ├── ASAuthorizationPlatformPublicKeyCredentialAssertion.h │ │ │ │ ├── ASAuthorizationPlatformPublicKeyCredentialAssertionRequest.h │ │ │ │ ├── ASAuthorizationPlatformPublicKeyCredentialDescriptor.h │ │ │ │ ├── ASAuthorizationPlatformPublicKeyCredentialProvider.h │ │ │ │ ├── ASAuthorizationPlatformPublicKeyCredentialRegistration.h │ │ │ │ ├── ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest.h │ │ │ │ ├── ASAuthorizationProvider.h │ │ │ │ ├── ASAuthorizationProviderExtensionAuthorizationRequest.h │ │ │ │ ├── ASAuthorizationProviderExtensionAuthorizationResult.h │ │ │ │ ├── ASAuthorizationProviderExtensionKerberosMapping.h │ │ │ │ ├── ASAuthorizationProviderExtensionLoginConfiguration.h │ │ │ │ ├── ASAuthorizationProviderExtensionLoginManager.h │ │ │ │ ├── ASAuthorizationPublicKeyCredentialAssertion.h │ │ │ │ ├── ASAuthorizationPublicKeyCredentialAssertionRequest.h │ │ │ │ ├── ASAuthorizationPublicKeyCredentialDescriptor.h │ │ │ │ ├── ASAuthorizationPublicKeyCredentialParameters.h │ │ │ │ ├── ASAuthorizationPublicKeyCredentialRegistration.h │ │ │ │ ├── ASAuthorizationPublicKeyCredentialRegistrationRequest.h │ │ │ │ ├── ASAuthorizationRequest.h │ │ │ │ ├── ASAuthorizationSecurityKeyPublicKeyCredentialAssertion.h │ │ │ │ ├── ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest.h │ │ │ │ ├── ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor.h │ │ │ │ ├── ASAuthorizationSecurityKeyPublicKeyCredentialProvider.h │ │ │ │ ├── ASAuthorizationSecurityKeyPublicKeyCredentialRegistration.h │ │ │ │ ├── ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest.h │ │ │ │ ├── ASAuthorizationServiceViewController.h │ │ │ │ ├── ASAuthorizationSingleSignOnCredential.h │ │ │ │ ├── ASAuthorizationSingleSignOnProvider.h │ │ │ │ ├── ASAuthorizationSingleSignOnRequest.h │ │ │ │ ├── ASAuthorizationViewController.h │ │ │ │ ├── ASAuthorizationViewControllerDelegate.h │ │ │ │ ├── ASBarButtonItem.h │ │ │ │ ├── ASCAuthorizationPresenterHostProtocol.h │ │ │ │ ├── ASCViewServiceProtocol.h │ │ │ │ ├── ASCredentialIdentityStore.h │ │ │ │ ├── ASCredentialIdentityStoreState.h │ │ │ │ ├── ASCredentialPickerPaneViewController.h │ │ │ │ ├── ASCredentialProviderExtensionContext.h │ │ │ │ ├── ASCredentialProviderViewController.h │ │ │ │ ├── ASCredentialRequestBasicPaneViewController.h │ │ │ │ ├── ASCredentialRequestButton.h │ │ │ │ ├── ASCredentialRequestButtonContinue.h │ │ │ │ ├── ASCredentialRequestCABLEClientViewController.h │ │ │ │ ├── ASCredentialRequestCABLEConnectingViewController.h │ │ │ │ ├── ASCredentialRequestConfirmButtonSubPane.h │ │ │ │ ├── ASCredentialRequestContainerViewController.h │ │ │ │ ├── ASCredentialRequestContainerViewControllerDelegate.h │ │ │ │ ├── ASCredentialRequestEnableBluetoothViewController.h │ │ │ │ ├── ASCredentialRequestIconGenerator.h │ │ │ │ ├── ASCredentialRequestImageSubPane.h │ │ │ │ ├── ASCredentialRequestInfoLabelSubPane.h │ │ │ │ ├── ASCredentialRequestLoginChoiceCell.h │ │ │ │ ├── ASCredentialRequestPaneContext.h │ │ │ │ ├── ASCredentialRequestPaneViewController.h │ │ │ │ ├── ASCredentialRequestPaneViewControllerDelegate.h │ │ │ │ ├── ASCredentialRequestSecondaryButton.h │ │ │ │ ├── ASCredentialRequestSecurityKeyStringUtilities.h │ │ │ │ ├── ASCredentialRequestSubPane.h │ │ │ │ ├── ASCredentialRequestSubPaneConfirmButtonDelegate.h │ │ │ │ ├── ASCredentialServiceIdentifier.h │ │ │ │ ├── ASExtensionRemoteViewController.h │ │ │ │ ├── ASExtensionServiceProtocol.h │ │ │ │ ├── ASExtensionServiceViewController.h │ │ │ │ ├── ASNavigationController.h │ │ │ │ ├── ASNavigationControllerDelegate.h │ │ │ │ ├── ASNavigationItem.h │ │ │ │ ├── ASPasswordAuthenticationPaneViewController.h │ │ │ │ ├── ASPasswordAuthenticationPaneViewControllerDelegate.h │ │ │ │ ├── ASPasswordCredential.h │ │ │ │ ├── ASPasswordCredentialIdentity.h │ │ │ │ ├── ASPublicKeyCredential.h │ │ │ │ ├── ASPublicKeyCredentialBase.h │ │ │ │ ├── ASPublicKeyCredentialManager.h │ │ │ │ ├── ASPublicKeyCredentialManagerInterface.h │ │ │ │ ├── ASPublicKeyCredentialOperation.h │ │ │ │ ├── ASViewServiceInterfaceUtilities.h │ │ │ │ ├── ASWebAuthenticationSession.h │ │ │ │ ├── ASWebAuthenticationSessionController.h │ │ │ │ ├── ASWebAuthenticationSessionLaunchAgentProxy.h │ │ │ │ ├── ASWebAuthenticationSessionRequest.h │ │ │ │ ├── ASWebAuthenticationSessionRequestClient.h │ │ │ │ ├── ASWebAuthenticationSessionRequestDelegate.h │ │ │ │ ├── ASWebAuthenticationSessionRequestServing.h │ │ │ │ ├── ASWebAuthenticationSessionWebBrowserSessionManager.h │ │ │ │ ├── AuthenticationServices.h │ │ │ │ ├── AuthenticationServicesHelperProtocol.h │ │ │ │ ├── LAUIAuthenticationDelegate.h │ │ │ │ ├── LAUIAuthenticationViewController+AuthenticationServicesExtras.h │ │ │ │ ├── NSAccessibilityButton.h │ │ │ │ ├── NSAccessibilityElement.h │ │ │ │ ├── NSBundle+ASNSBundleExtras.h │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ ├── NSExtension+AuthenticationServicesExtras.h │ │ │ │ ├── NSImage+ASImageExtras.h │ │ │ │ ├── NSLayoutConstraint+ASNSLayoutConstraintExtras.h │ │ │ │ ├── NSPasteboard+AuthenticationServicesExtras.h │ │ │ │ ├── NSStackView+ASCredentialPickerPaneViewController.h │ │ │ │ ├── NSTableViewDataSource.h │ │ │ │ ├── NSTableViewDelegate.h │ │ │ │ ├── NSViewController+AuthenticationServicesExtras.h │ │ │ │ ├── NSXPCInterface+AuthenticationServicesExtras.h │ │ │ │ ├── NSXPCListenerDelegate.h │ │ │ │ ├── SOAuthorizationDelegate.h │ │ │ │ ├── WBSSavedAccountStore+PasskeyExtras.h │ │ │ │ ├── WBSSavedAccountStorePasskeyExtras.h │ │ │ │ ├── _ASAuthenticationPresentationProvider.h │ │ │ │ ├── _ASCABLEQRCodeBadgePlatterView.h │ │ │ │ ├── _ASCABLEQRCodeBadgeView.h │ │ │ │ ├── _ASCABLEQRCodeImageView.h │ │ │ │ ├── _ASCABLEQRCodeView.h │ │ │ │ ├── _ASCredentialListViewController.h │ │ │ │ ├── _ASCredentialProviderExtensionConfigurationViewController.h │ │ │ │ ├── _ASCredentialProviderExtensionContextProtocol.h │ │ │ │ ├── _ASCredentialProviderExtensionHostContext.h │ │ │ │ ├── _ASCredentialProviderExtensionHostContextDelegate.h │ │ │ │ ├── _ASCredentialProviderExtensionHostContextProtocol.h │ │ │ │ ├── _ASExtensionHostContext.h │ │ │ │ ├── _ASExtensionHostContextDelegate.h │ │ │ │ ├── _ASExtensionViewController.h │ │ │ │ ├── _ASIncomingCallObserver.h │ │ │ │ ├── _ASPasskeysLearnMoreContent.h │ │ │ │ ├── _ASPasswordCredentialAuthenticationViewController.h │ │ │ │ ├── _ASPasswordManagerDeleteAlertConfiguration.h │ │ │ │ ├── _ASPasswordManagerIconController.h │ │ │ │ ├── _ASPasswordManagerMacFrameworksTrampoline.h │ │ │ │ ├── _ASStackSpacerView.h │ │ │ │ ├── _ASWebAuthenticationSessionRequestHandling.h │ │ │ │ ├── _ASWebAuthenticationSessionRequestServer.h │ │ │ │ ├── _SafariLaunchAgentProtocol.h │ │ │ │ └── _WKWebAuthenticationPanelDelegate.h │ │ └── src │ │ │ ├── AKAuthorizationCredential+AuthenticationServicesExtras.m │ │ │ ├── ASAuthorization.m │ │ │ ├── ASAuthorizationAppleIDButton.m │ │ │ ├── ASAuthorizationAppleIDCredential.m │ │ │ ├── ASAuthorizationAppleIDProvider.m │ │ │ ├── ASAuthorizationAppleIDRequest.m │ │ │ ├── ASAuthorizationController.m │ │ │ ├── ASAuthorizationOpenIDRequest.m │ │ │ ├── ASAuthorizationPasswordProvider.m │ │ │ ├── ASAuthorizationPasswordRequest.m │ │ │ ├── ASAuthorizationPlatformPublicKeyCredentialAssertion.m │ │ │ ├── ASAuthorizationPlatformPublicKeyCredentialAssertionRequest.m │ │ │ ├── ASAuthorizationPlatformPublicKeyCredentialDescriptor.m │ │ │ ├── ASAuthorizationPlatformPublicKeyCredentialProvider.m │ │ │ ├── ASAuthorizationPlatformPublicKeyCredentialRegistration.m │ │ │ ├── ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest.m │ │ │ ├── ASAuthorizationProviderExtensionAuthorizationRequest.m │ │ │ ├── ASAuthorizationProviderExtensionAuthorizationResult.m │ │ │ ├── ASAuthorizationProviderExtensionKerberosMapping.m │ │ │ ├── ASAuthorizationProviderExtensionLoginConfiguration.m │ │ │ ├── ASAuthorizationProviderExtensionLoginManager.m │ │ │ ├── ASAuthorizationPublicKeyCredentialParameters.m │ │ │ ├── ASAuthorizationRequest.m │ │ │ ├── ASAuthorizationSecurityKeyPublicKeyCredentialAssertion.m │ │ │ ├── ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest.m │ │ │ ├── ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor.m │ │ │ ├── ASAuthorizationSecurityKeyPublicKeyCredentialProvider.m │ │ │ ├── ASAuthorizationSecurityKeyPublicKeyCredentialRegistration.m │ │ │ ├── ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest.m │ │ │ ├── ASAuthorizationServiceViewController.m │ │ │ ├── ASAuthorizationSingleSignOnCredential.m │ │ │ ├── ASAuthorizationSingleSignOnProvider.m │ │ │ ├── ASAuthorizationSingleSignOnRequest.m │ │ │ ├── ASAuthorizationViewController.m │ │ │ ├── ASBarButtonItem.m │ │ │ ├── ASCredentialIdentityStore.m │ │ │ ├── ASCredentialIdentityStoreState.m │ │ │ ├── ASCredentialPickerPaneViewController.m │ │ │ ├── ASCredentialProviderExtensionContext.m │ │ │ ├── ASCredentialProviderViewController.m │ │ │ ├── ASCredentialRequestBasicPaneViewController.m │ │ │ ├── ASCredentialRequestButton.m │ │ │ ├── ASCredentialRequestButtonContinue.m │ │ │ ├── ASCredentialRequestCABLEClientViewController.m │ │ │ ├── ASCredentialRequestCABLEConnectingViewController.m │ │ │ ├── ASCredentialRequestConfirmButtonSubPane.m │ │ │ ├── ASCredentialRequestContainerViewController.m │ │ │ ├── ASCredentialRequestEnableBluetoothViewController.m │ │ │ ├── ASCredentialRequestIconGenerator.m │ │ │ ├── ASCredentialRequestImageSubPane.m │ │ │ ├── ASCredentialRequestInfoLabelSubPane.m │ │ │ ├── ASCredentialRequestLoginChoiceCell.m │ │ │ ├── ASCredentialRequestPaneContext.m │ │ │ ├── ASCredentialRequestPaneViewController.m │ │ │ ├── ASCredentialRequestSecondaryButton.m │ │ │ ├── ASCredentialRequestSecurityKeyStringUtilities.m │ │ │ ├── ASCredentialRequestSubPane.m │ │ │ ├── ASCredentialServiceIdentifier.m │ │ │ ├── ASExtensionRemoteViewController.m │ │ │ ├── ASExtensionServiceViewController.m │ │ │ ├── ASNavigationController.m │ │ │ ├── ASNavigationItem.m │ │ │ ├── ASPasswordAuthenticationPaneViewController.m │ │ │ ├── ASPasswordCredential.m │ │ │ ├── ASPasswordCredentialIdentity.m │ │ │ ├── ASPublicKeyCredentialBase.m │ │ │ ├── ASPublicKeyCredentialManager.m │ │ │ ├── ASPublicKeyCredentialOperation.m │ │ │ ├── ASViewServiceInterfaceUtilities.m │ │ │ ├── ASWebAuthenticationSession.m │ │ │ ├── ASWebAuthenticationSessionController.m │ │ │ ├── ASWebAuthenticationSessionLaunchAgentProxy.m │ │ │ ├── ASWebAuthenticationSessionRequest.m │ │ │ ├── ASWebAuthenticationSessionRequestClient.m │ │ │ ├── ASWebAuthenticationSessionWebBrowserSessionManager.m │ │ │ ├── LAUIAuthenticationViewController+AuthenticationServicesExtras.m │ │ │ ├── NSBundle+ASNSBundleExtras.m │ │ │ ├── NSExtension+AuthenticationServicesExtras.m │ │ │ ├── NSImage+ASImageExtras.m │ │ │ ├── NSLayoutConstraint+ASNSLayoutConstraintExtras.m │ │ │ ├── NSPasteboard+AuthenticationServicesExtras.m │ │ │ ├── NSStackView+ASCredentialPickerPaneViewController.m │ │ │ ├── NSViewController+AuthenticationServicesExtras.m │ │ │ ├── NSXPCInterface+AuthenticationServicesExtras.m │ │ │ ├── WBSSavedAccountStore+PasskeyExtras.m │ │ │ ├── _ASCABLEQRCodeBadgePlatterView.m │ │ │ ├── _ASCABLEQRCodeBadgeView.m │ │ │ ├── _ASCABLEQRCodeImageView.m │ │ │ ├── _ASCABLEQRCodeView.m │ │ │ ├── _ASCredentialListViewController.m │ │ │ ├── _ASCredentialProviderExtensionConfigurationViewController.m │ │ │ ├── _ASCredentialProviderExtensionHostContext.m │ │ │ ├── _ASExtensionViewController.m │ │ │ ├── _ASIncomingCallObserver.m │ │ │ ├── _ASPasskeysLearnMoreContent.m │ │ │ ├── _ASPasswordCredentialAuthenticationViewController.m │ │ │ ├── _ASPasswordManagerDeleteAlertConfiguration.m │ │ │ ├── _ASPasswordManagerIconController.m │ │ │ ├── _ASPasswordManagerMacFrameworksTrampoline.m │ │ │ ├── _ASStackSpacerView.m │ │ │ └── _ASWebAuthenticationSessionRequestServer.m │ ├── Automator │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Automator │ │ │ │ ├── AMAction.h │ │ │ │ ├── AMActionAnyOfCollectionRowTemplate.h │ │ │ │ ├── AMActionCompletionResults.h │ │ │ │ ├── AMActionConnector.h │ │ │ │ ├── AMActionDateAddedRelativeRowTemplate.h │ │ │ │ ├── AMActionDateAddedSpecificRowTemplate.h │ │ │ │ ├── AMActionDateAddedWithinLastRowTemplate.h │ │ │ │ ├── AMActionDelegate.h │ │ │ │ ├── AMActionInWorkflowXPCToken.h │ │ │ │ ├── AMActionInstallerController.h │ │ │ │ ├── AMActionLoader.h │ │ │ │ ├── AMActionMetadataStore.h │ │ │ │ ├── AMActionPanelActionView.h │ │ │ │ ├── AMActionPanelController.h │ │ │ │ ├── AMActionPropertyListXPCToken.h │ │ │ │ ├── AMActionRegistry.h │ │ │ │ ├── AMActionRelevanceRowTemplate.h │ │ │ │ ├── AMActionSecAssess.h │ │ │ │ ├── AMActionShowWhenRunOverlayView.h │ │ │ │ ├── AMActionTextField.h │ │ │ │ ├── AMActionView.h │ │ │ │ ├── AMActionViewController.h │ │ │ │ ├── AMActionsUserGroup.h │ │ │ │ ├── AMActiveProc.h │ │ │ │ ├── AMAddressBookSoftLinking.h │ │ │ │ ├── AMAliasToSBObjectConversionAction.h │ │ │ │ ├── AMAppDefinitionProxyAction.h │ │ │ │ ├── AMAppleScriptAction.h │ │ │ │ ├── AMAppleScriptKitSoftLinking.h │ │ │ │ ├── AMApplicationDefinition.h │ │ │ │ ├── AMApplicationPickerPopUpButton.h │ │ │ │ ├── AMApplicationRegistry.h │ │ │ │ ├── AMApplicationStub.h │ │ │ │ ├── AMApplicationStubController.h │ │ │ │ ├── AMApplicationWorkflowPersonality.h │ │ │ │ ├── AMAutoConversionAction.h │ │ │ │ ├── AMBundleAction.h │ │ │ │ ├── AMCache.h │ │ │ │ ├── AMCacheLocationEntry.h │ │ │ │ ├── AMConnectionPoint.h │ │ │ │ ├── AMConversion.h │ │ │ │ ├── AMConvertAliasToPath.h │ │ │ │ ├── AMConvertAliasToString.h │ │ │ │ ├── AMConvertAliasToSubType.h │ │ │ │ ├── AMConvertAliasToURL.h │ │ │ │ ├── AMConvertAppleScriptObjectToAppleScriptDataObject.h │ │ │ │ ├── AMConvertAppleScriptObjectToAppleScriptTextObject.h │ │ │ │ ├── AMConvertAppleScriptObjectToString.h │ │ │ │ ├── AMConvertAppleScriptObjectToSubtype.h │ │ │ │ ├── AMConvertAppleScriptObjectToURL.h │ │ │ │ ├── AMConvertAppleScriptTextObjectToAlias.h │ │ │ │ ├── AMConvertAppleScriptTextObjectToAppleScriptURLObject.h │ │ │ │ ├── AMConvertAppleScriptURLToURL.h │ │ │ │ ├── AMConvertAttributedStringToString.h │ │ │ │ ├── AMConvertCocoaStringToAppleScriptAliasObject.h │ │ │ │ ├── AMConvertEventKitCalendarToEventKitEvent.h │ │ │ │ ├── AMConvertEventKitCalendarToEventKitReminder.h │ │ │ │ ├── AMConvertEventKitCalendarToiCalCalendarObject.h │ │ │ │ ├── AMConvertEventKitEventToiCalEventObject.h │ │ │ │ ├── AMConvertEventKitItemToEventKitCalendar.h │ │ │ │ ├── AMConvertEventKitItemToEventKitEvent.h │ │ │ │ ├── AMConvertEventKitItemToiCalItemObject.h │ │ │ │ ├── AMConvertEventKitObject.h │ │ │ │ ├── AMConvertEventKitObjectToiCalObject.h │ │ │ │ ├── AMConvertEventKitReminderToiCalToDoObject.h │ │ │ │ ├── AMConvertPathToAlias.h │ │ │ │ ├── AMConvertPathToAppleScriptTextObject.h │ │ │ │ ├── AMConvertPathToPublicItem.h │ │ │ │ ├── AMConvertPathTypeToSubType.h │ │ │ │ ├── AMConvertPublicItemToCocoaPath.h │ │ │ │ ├── AMConvertPublicItemToSpotlightItem.h │ │ │ │ ├── AMConvertStringToAppleScriptTextObject.h │ │ │ │ ├── AMConvertStringToAttributedString.h │ │ │ │ ├── AMConvertStringToPath.h │ │ │ │ ├── AMConvertStringToURL.h │ │ │ │ ├── AMConvertURLToAlias.h │ │ │ │ ├── AMConvertURLToAppleScriptTextObject.h │ │ │ │ ├── AMConvertURLToAppleScriptURL.h │ │ │ │ ├── AMConvertURLToPath.h │ │ │ │ ├── AMConvertURLToString.h │ │ │ │ ├── AMConverter.h │ │ │ │ ├── AMConvertiCalCalendarObjectToEventKitCalendar.h │ │ │ │ ├── AMConvertiCalEventObjectToEventKitEvent.h │ │ │ │ ├── AMConvertiCalItemObjectToEventKitItem.h │ │ │ │ ├── AMConvertiCalToDoObjectToEventKitReminder.h │ │ │ │ ├── AMDelayedUpdateManager.h │ │ │ │ ├── AMDelayedUpdaterInfo.h │ │ │ │ ├── AMDescriptionImageTextCell.h │ │ │ │ ├── AMDescriptionLineItemView.h │ │ │ │ ├── AMDescriptionViewController.h │ │ │ │ ├── AMDescriptionViewItem.h │ │ │ │ ├── AMDictationCommandWorkflowMetaData.h │ │ │ │ ├── AMDictationCommandWorkflowPersonality.h │ │ │ │ ├── AMDictationServicesSoftLinking.h │ │ │ │ ├── AMDiskBasedCacheLocationEntry.h │ │ │ │ ├── AMDotMacSyncSoftLinking.h │ │ │ │ ├── AMEventKitCalendarItemXPCToken.h │ │ │ │ ├── AMEventKitCalendarXPCToken.h │ │ │ │ ├── AMEventKitSoftLinking.h │ │ │ │ ├── AMFCompletionFeedParserDelegate.h │ │ │ │ ├── AMFFeed.h │ │ │ │ ├── AMFFeedContent.h │ │ │ │ ├── AMFFeedController.h │ │ │ │ ├── AMFFeedElement.h │ │ │ │ ├── AMFFeedEnclosure.h │ │ │ │ ├── AMFFeedEntry.h │ │ │ │ ├── AMFFeedFinder.h │ │ │ │ ├── AMFFeedMetadata.h │ │ │ │ ├── AMFFeedParser.h │ │ │ │ ├── AMFFeedParserDelegate.h │ │ │ │ ├── AMFFeedPerson.h │ │ │ │ ├── AMFilterItemsAction.h │ │ │ │ ├── AMFindItemsAction.h │ │ │ │ ├── AMFolderActionWorkflowMetaData.h │ │ │ │ ├── AMFolderActionWorkflowPersonality.h │ │ │ │ ├── AMFolderActionsKitSoftLinking.h │ │ │ │ ├── AMGeneralWorkflowPersonality.h │ │ │ │ ├── AMGenericAction.h │ │ │ │ ├── AMGenericActionLoader.h │ │ │ │ ├── AMGetItemsAction.h │ │ │ │ ├── AMGetItemsPanelController.h │ │ │ │ ├── AMGetItemsTableView.h │ │ │ │ ├── AMGlossyStatusView.h │ │ │ │ ├── AMGradientBackgroundView.h │ │ │ │ ├── AMGroup.h │ │ │ │ ├── AMGroupBox.h │ │ │ │ ├── AMHeaderViewController.h │ │ │ │ ├── AMICalPluginWorkflowPersonality.h │ │ │ │ ├── AMILMediaBrowserSoftLinking.h │ │ │ │ ├── AMImageCaptureWorkflowPersonality.h │ │ │ │ ├── AMImageRegistry.h │ │ │ │ ├── AMImageTextCell.h │ │ │ │ ├── AMImageView.h │ │ │ │ ├── AMInputOuptutPluginHeaderViewController.h │ │ │ │ ├── AMInputOutputWorkflowMetadata.h │ │ │ │ ├── AMInputOutputWorkflowPersonality.h │ │ │ │ ├── AMLevelIndicator.h │ │ │ │ ├── AMLevelIndicatorCell.h │ │ │ │ ├── AMLibrary.h │ │ │ │ ├── AMLibraryOutlineView.h │ │ │ │ ├── AMLibraryTableView.h │ │ │ │ ├── AMLibraryViewController.h │ │ │ │ ├── AMLocalRunnerController.h │ │ │ │ ├── AMMediaPanel.h │ │ │ │ ├── AMModernApplicationStubApplication.h │ │ │ │ ├── AMModernApplicationStubDelegate.h │ │ │ │ ├── AMNewFindItemsAction.h │ │ │ │ ├── AMNibView.h │ │ │ │ ├── AMOpenAutomatorRecoveryAttempter.h │ │ │ │ ├── AMPathPopUpButton.h │ │ │ │ ├── AMPlaceholderAction.h │ │ │ │ ├── AMPluginHeaderViewController.h │ │ │ │ ├── AMPluginInstallerController.h │ │ │ │ ├── AMPopUpButton.h │ │ │ │ ├── AMPrintWorkflowPersonality.h │ │ │ │ ├── AMProxyAction.h │ │ │ │ ├── AMRelativeDateRowTemplate.h │ │ │ │ ├── AMRemoteRunnerController.h │ │ │ │ ├── AMRemoteRunnerXPCDelegate.h │ │ │ │ ├── AMRemoteRunnerXPCDelegateProtocol.h │ │ │ │ ├── AMRemoteRunnerXPCProtocol.h │ │ │ │ ├── AMRemoveQuarantineRecoveryAttempter.h │ │ │ │ ├── AMResultsItem.h │ │ │ │ ├── AMResultsTableView.h │ │ │ │ ├── AMResultsViewController.h │ │ │ │ ├── AMResultsViewOverlayView.h │ │ │ │ ├── AMRunActionAsyncOperation.h │ │ │ │ ├── AMRunActionOperation.h │ │ │ │ ├── AMRunnerControl.h │ │ │ │ ├── AMRunnerController.h │ │ │ │ ├── AMRunnerControllerDelegate.h │ │ │ │ ├── AMRunnerState.h │ │ │ │ ├── AMSBObjectToAliasConversionAction.h │ │ │ │ ├── AMSBObjectToSBObjectConversionAction.h │ │ │ │ ├── AMScriptMenuWorkflowPersonality.h │ │ │ │ ├── AMScriptingBridgeAppRegistry.h │ │ │ │ ├── AMScriptingBridgeConversionAction.h │ │ │ │ ├── AMSecurityHelperWindowController.h │ │ │ │ ├── AMSecurityHelperWindowControllerRecoveryAttempter.h │ │ │ │ ├── AMSendProc.h │ │ │ │ ├── AMServicePluginHeaderViewController.h │ │ │ │ ├── AMServiceWorkflowMetaData.h │ │ │ │ ├── AMServiceWorkflowPersonality.h │ │ │ │ ├── AMServicesController.h │ │ │ │ ├── AMShellScriptAction.h │ │ │ │ ├── AMShowWhenRunController.h │ │ │ │ ├── AMShowWhenRunPanel.h │ │ │ │ ├── AMSimpleStringPluginHeaderViewController.h │ │ │ │ ├── AMSmartGroup.h │ │ │ │ ├── AMSmartGroupsController.h │ │ │ │ ├── AMSmartGroupsPredicateViewController.h │ │ │ │ ├── AMSmartTokenAttachmentCell.h │ │ │ │ ├── AMSpecificDateRowTemplate.h │ │ │ │ ├── AMSplitView.h │ │ │ │ ├── AMTemplateChooserItem.h │ │ │ │ ├── AMTextDetector.h │ │ │ │ ├── AMTextFieldCell.h │ │ │ │ ├── AMTokenAttachmentCell.h │ │ │ │ ├── AMTokenField.h │ │ │ │ ├── AMTokenFieldCell.h │ │ │ │ ├── AMType.h │ │ │ │ ├── AMTypeRegistry.h │ │ │ │ ├── AMUnknownXPCToken.h │ │ │ │ ├── AMValidatedCacheLocationEntry.h │ │ │ │ ├── AMVariable.h │ │ │ │ ├── AMVariablesEditorController.h │ │ │ │ ├── AMVariablesEditorDateFormatDelegate.h │ │ │ │ ├── AMVariablesEditorEventDelegateWindow.h │ │ │ │ ├── AMVariablesEditorProxyController.h │ │ │ │ ├── AMVariablesEditorView.h │ │ │ │ ├── AMVariablesEditorWindow.h │ │ │ │ ├── AMVariablesRegistry.h │ │ │ │ ├── AMVariablesUserGroup.h │ │ │ │ ├── AMView.h │ │ │ │ ├── AMWebArchiveXPCToken.h │ │ │ │ ├── AMWebKitSoftLinking.h │ │ │ │ ├── AMWhoseListView.h │ │ │ │ ├── AMWhoseViewItem.h │ │ │ │ ├── AMWithinLastDateRowTemplate.h │ │ │ │ ├── AMWorkflow.h │ │ │ │ ├── AMWorkflowCompletionResults.h │ │ │ │ ├── AMWorkflowController.h │ │ │ │ ├── AMWorkflowControllerDelegate.h │ │ │ │ ├── AMWorkflowControllerDelegatePrivate.h │ │ │ │ ├── AMWorkflowHeaderView.h │ │ │ │ ├── AMWorkflowMetaData.h │ │ │ │ ├── AMWorkflowPersonality.h │ │ │ │ ├── AMWorkflowPersonalityInstallerController.h │ │ │ │ ├── AMWorkflowRunner.h │ │ │ │ ├── AMWorkflowRunnerDelegate.h │ │ │ │ ├── AMWorkflowServiceRunner.h │ │ │ │ ├── AMWorkflowUnknownPersonality.h │ │ │ │ ├── AMWorkflowView.h │ │ │ │ ├── AMWorkspace.h │ │ │ │ ├── AMXPCToken.h │ │ │ │ ├── Automator.h │ │ │ │ ├── AutomatorSecurityHelperHostViewController.h │ │ │ │ ├── AutomatorSecurityHelperServiceViewController.h │ │ │ │ ├── EditorWindowCloseAnimation.h │ │ │ │ ├── EditorWindowOpenAnimation.h │ │ │ │ ├── EditorWindowRelocateAnimation.h │ │ │ │ ├── NSAnimationDelegate.h │ │ │ │ ├── NSApplicationDelegate.h │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ ├── NSDraggingSource.h │ │ │ │ ├── NSOpenSavePanelDelegate.h │ │ │ │ ├── NSPrivateAutomatorFrameworkClassForFindingBundle.h │ │ │ │ ├── NSProgressReporting.h │ │ │ │ ├── NSServicesMonitorObserver.h │ │ │ │ ├── NSSplitViewDelegate.h │ │ │ │ ├── NSTextFieldDelegate.h │ │ │ │ ├── NSTokenFieldDelegate.h │ │ │ │ ├── NSTouchBarDelegate.h │ │ │ │ ├── NSWindowDelegate.h │ │ │ │ ├── NSXMLParserDelegate.h │ │ │ │ ├── NSXPCConnectionDelegate.h │ │ │ │ ├── SBApplicationDelegate.h │ │ │ │ ├── WebFrameLoadDelegate.h │ │ │ │ ├── _AMActionAuxiliary.h │ │ │ │ ├── _AMAddressBookAIMHandle.h │ │ │ │ ├── _AMAddressBookAddress.h │ │ │ │ ├── _AMAddressBookApplication.h │ │ │ │ ├── _AMAddressBookContactInfo.h │ │ │ │ ├── _AMAddressBookCustomDate.h │ │ │ │ ├── _AMAddressBookDocument.h │ │ │ │ ├── _AMAddressBookEmail.h │ │ │ │ ├── _AMAddressBookEntry.h │ │ │ │ ├── _AMAddressBookGroup.h │ │ │ │ ├── _AMAddressBookICQHandle.h │ │ │ │ ├── _AMAddressBookItemsRowTemplateFactory.h │ │ │ │ ├── _AMAddressBookJabberHandle.h │ │ │ │ ├── _AMAddressBookMSNHandle.h │ │ │ │ ├── _AMAddressBookPerson.h │ │ │ │ ├── _AMAddressBookPhone.h │ │ │ │ ├── _AMAddressBookRelatedName.h │ │ │ │ ├── _AMAddressBookUrl.h │ │ │ │ ├── _AMAddressBookUtilities.h │ │ │ │ ├── _AMAddressBookWindow.h │ │ │ │ ├── _AMAddressBookYahooHandle.h │ │ │ │ ├── _AMBoolRowTemplate.h │ │ │ │ ├── _AMDateRelativeToCalendarUnitsRowTemplate.h │ │ │ │ ├── _AMDaysRelativeToCalendarUnitsRowTemplate.h │ │ │ │ ├── _AMDaysRelativeToSpecificDateRowTemplate.h │ │ │ │ ├── _AMFileLabelRowTemplate.h │ │ │ │ ├── _AMFileSizeRowTemplate.h │ │ │ │ ├── _AMFinderAliasFile.h │ │ │ │ ├── _AMFinderAliasList.h │ │ │ │ ├── _AMFinderApplication.h │ │ │ │ ├── _AMFinderApplicationFile.h │ │ │ │ ├── _AMFinderApplicationProcess.h │ │ │ │ ├── _AMFinderClipping.h │ │ │ │ ├── _AMFinderClippingWindow.h │ │ │ │ ├── _AMFinderColumn.h │ │ │ │ ├── _AMFinderColumnViewOptions.h │ │ │ │ ├── _AMFinderComputerObject.h │ │ │ │ ├── _AMFinderContainer.h │ │ │ │ ├── _AMFinderDeskAccessoryProcess.h │ │ │ │ ├── _AMFinderDesktopObject.h │ │ │ │ ├── _AMFinderDesktopWindow.h │ │ │ │ ├── _AMFinderDisk.h │ │ │ │ ├── _AMFinderDocumentFile.h │ │ │ │ ├── _AMFinderFile.h │ │ │ │ ├── _AMFinderFinderWindow.h │ │ │ │ ├── _AMFinderFolder.h │ │ │ │ ├── _AMFinderIconFamily.h │ │ │ │ ├── _AMFinderIconViewOptions.h │ │ │ │ ├── _AMFinderInformationWindow.h │ │ │ │ ├── _AMFinderInternetLocationFile.h │ │ │ │ ├── _AMFinderItem.h │ │ │ │ ├── _AMFinderItemsRowTemplateFactory.h │ │ │ │ ├── _AMFinderLabel.h │ │ │ │ ├── _AMFinderListViewOptions.h │ │ │ │ ├── _AMFinderPackage.h │ │ │ │ ├── _AMFinderPreferences.h │ │ │ │ ├── _AMFinderPreferencesWindow.h │ │ │ │ ├── _AMFinderProcess.h │ │ │ │ ├── _AMFinderTrashObject.h │ │ │ │ ├── _AMFinderWindow.h │ │ │ │ ├── _AMGetSetVariablePopUpButton.h │ │ │ │ ├── _AMKeynote5AppTheme.h │ │ │ │ ├── _AMKeynote5AppTransition.h │ │ │ │ ├── _AMKeynote5Application.h │ │ │ │ ├── _AMKeynote5Attachment.h │ │ │ │ ├── _AMKeynote5AttributeRun.h │ │ │ │ ├── _AMKeynote5Character.h │ │ │ │ ├── _AMKeynote5Color.h │ │ │ │ ├── _AMKeynote5DocTheme.h │ │ │ │ ├── _AMKeynote5Item.h │ │ │ │ ├── _AMKeynote5MasterSlide.h │ │ │ │ ├── _AMKeynote5Paragraph.h │ │ │ │ ├── _AMKeynote5PrintSettings.h │ │ │ │ ├── _AMKeynote5Slide.h │ │ │ │ ├── _AMKeynote5SlideTransition.h │ │ │ │ ├── _AMKeynote5Slideshow.h │ │ │ │ ├── _AMKeynote5Text.h │ │ │ │ ├── _AMKeynote5Window.h │ │ │ │ ├── _AMKeynote5Word.h │ │ │ │ ├── _AMMailAccount.h │ │ │ │ ├── _AMMailApplication.h │ │ │ │ ├── _AMMailAttachment.h │ │ │ │ ├── _AMMailAttributeRun.h │ │ │ │ ├── _AMMailBccRecipient.h │ │ │ │ ├── _AMMailCcRecipient.h │ │ │ │ ├── _AMMailCharacter.h │ │ │ │ ├── _AMMailContainer.h │ │ │ │ ├── _AMMailDocument.h │ │ │ │ ├── _AMMailHeader.h │ │ │ │ ├── _AMMailImapAccount.h │ │ │ │ ├── _AMMailItemsRowTemplateFactory.h │ │ │ │ ├── _AMMailLdapServer.h │ │ │ │ ├── _AMMailMailAttachment.h │ │ │ │ ├── _AMMailMailbox.h │ │ │ │ ├── _AMMailMessage.h │ │ │ │ ├── _AMMailMessageViewer.h │ │ │ │ ├── _AMMailMobileMeAccount.h │ │ │ │ ├── _AMMailOLDMessageEditor.h │ │ │ │ ├── _AMMailOutgoingMessage.h │ │ │ │ ├── _AMMailParagraph.h │ │ │ │ ├── _AMMailPopAccount.h │ │ │ │ ├── _AMMailRecipient.h │ │ │ │ ├── _AMMailRichText.h │ │ │ │ ├── _AMMailRule.h │ │ │ │ ├── _AMMailRuleCondition.h │ │ │ │ ├── _AMMailSignature.h │ │ │ │ ├── _AMMailSmtpServer.h │ │ │ │ ├── _AMMailToRecipient.h │ │ │ │ ├── _AMMailWindow.h │ │ │ │ ├── _AMMailWord.h │ │ │ │ ├── _AMMessageTracerUtilities.h │ │ │ │ ├── _AMPredicateEditor.h │ │ │ │ ├── _AMPredicateEditorAction.h │ │ │ │ ├── _AMPredicateUtilities.h │ │ │ │ ├── _AMPrefixLabeledRowTemplate.h │ │ │ │ ├── _AMRatingRowTemplate.h │ │ │ │ ├── _AMRowTemplateFactory.h │ │ │ │ ├── _AMSBApplicationDelegate.h │ │ │ │ ├── _AMSBRetainingApplicationDelegate.h │ │ │ │ ├── _AMSafariApplication.h │ │ │ │ ├── _AMSafariAttachment.h │ │ │ │ ├── _AMSafariAttributeRun.h │ │ │ │ ├── _AMSafariCharacter.h │ │ │ │ ├── _AMSafariColor.h │ │ │ │ ├── _AMSafariDocument.h │ │ │ │ ├── _AMSafariItem.h │ │ │ │ ├── _AMSafariParagraph.h │ │ │ │ ├── _AMSafariPrintSettings.h │ │ │ │ ├── _AMSafariTab.h │ │ │ │ ├── _AMSafariText.h │ │ │ │ ├── _AMSafariWindow.h │ │ │ │ ├── _AMSafariWord.h │ │ │ │ ├── _AMSpecificDateRangeRowTemplate.h │ │ │ │ ├── _AMSpecificYearRowTemplate.h │ │ │ │ ├── _AMSuffixLabeledRowTemplate.h │ │ │ │ ├── _AMSystemEventsAction.h │ │ │ │ ├── _AMSystemEventsAlias.h │ │ │ │ ├── _AMSystemEventsAnnotation.h │ │ │ │ ├── _AMSystemEventsAppearancePreferencesObject.h │ │ │ │ ├── _AMSystemEventsApplication.h │ │ │ │ ├── _AMSystemEventsApplicationProcess.h │ │ │ │ ├── _AMSystemEventsAttribute.h │ │ │ │ ├── _AMSystemEventsAudioData.h │ │ │ │ ├── _AMSystemEventsAudioFile.h │ │ │ │ ├── _AMSystemEventsBrowser.h │ │ │ │ ├── _AMSystemEventsBusyIndicator.h │ │ │ │ ├── _AMSystemEventsButton.h │ │ │ │ ├── _AMSystemEventsCDAndDVDPreferencesObject.h │ │ │ │ ├── _AMSystemEventsCheckbox.h │ │ │ │ ├── _AMSystemEventsClassicDomainObject.h │ │ │ │ ├── _AMSystemEventsColorWell.h │ │ │ │ ├── _AMSystemEventsColumn.h │ │ │ │ ├── _AMSystemEventsComboBox.h │ │ │ │ ├── _AMSystemEventsConfiguration.h │ │ │ │ ├── _AMSystemEventsDeskAccessoryProcess.h │ │ │ │ ├── _AMSystemEventsDesktop.h │ │ │ │ ├── _AMSystemEventsDisk.h │ │ │ │ ├── _AMSystemEventsDiskItem.h │ │ │ │ ├── _AMSystemEventsDockPreferencesObject.h │ │ │ │ ├── _AMSystemEventsDocument.h │ │ │ │ ├── _AMSystemEventsDomain.h │ │ │ │ ├── _AMSystemEventsDrawer.h │ │ │ │ ├── _AMSystemEventsFile.h │ │ │ │ ├── _AMSystemEventsFilePackage.h │ │ │ │ ├── _AMSystemEventsFolder.h │ │ │ │ ├── _AMSystemEventsFolderAction.h │ │ │ │ ├── _AMSystemEventsGenericMethods.h │ │ │ │ ├── _AMSystemEventsGroup.h │ │ │ │ ├── _AMSystemEventsGrowArea.h │ │ │ │ ├── _AMSystemEventsImage.h │ │ │ │ ├── _AMSystemEventsIncrementor.h │ │ │ │ ├── _AMSystemEventsInsertionPreference.h │ │ │ │ ├── _AMSystemEventsInterface.h │ │ │ │ ├── _AMSystemEventsList.h │ │ │ │ ├── _AMSystemEventsLocalDomainObject.h │ │ │ │ ├── _AMSystemEventsLocation.h │ │ │ │ ├── _AMSystemEventsLoginItem.h │ │ │ │ ├── _AMSystemEventsMenu.h │ │ │ │ ├── _AMSystemEventsMenuBar.h │ │ │ │ ├── _AMSystemEventsMenuBarItem.h │ │ │ │ ├── _AMSystemEventsMenuButton.h │ │ │ │ ├── _AMSystemEventsMenuItem.h │ │ │ │ ├── _AMSystemEventsMovieData.h │ │ │ │ ├── _AMSystemEventsMovieFile.h │ │ │ │ ├── _AMSystemEventsNetworkDomainObject.h │ │ │ │ ├── _AMSystemEventsNetworkPreferencesObject.h │ │ │ │ ├── _AMSystemEventsOutline.h │ │ │ │ ├── _AMSystemEventsPopOver.h │ │ │ │ ├── _AMSystemEventsPopUpButton.h │ │ │ │ ├── _AMSystemEventsPrintSettings.h │ │ │ │ ├── _AMSystemEventsProcess.h │ │ │ │ ├── _AMSystemEventsProgressIndicator.h │ │ │ │ ├── _AMSystemEventsPropertyListFile.h │ │ │ │ ├── _AMSystemEventsPropertyListItem.h │ │ │ │ ├── _AMSystemEventsQuickTimeData.h │ │ │ │ ├── _AMSystemEventsQuickTimeFile.h │ │ │ │ ├── _AMSystemEventsRadioButton.h │ │ │ │ ├── _AMSystemEventsRadioGroup.h │ │ │ │ ├── _AMSystemEventsRelevanceIndicator.h │ │ │ │ ├── _AMSystemEventsRow.h │ │ │ │ ├── _AMSystemEventsScreenSaver.h │ │ │ │ ├── _AMSystemEventsScreenSaverPreferencesObject.h │ │ │ │ ├── _AMSystemEventsScript.h │ │ │ │ ├── _AMSystemEventsScriptingClass.h │ │ │ │ ├── _AMSystemEventsScriptingCommand.h │ │ │ │ ├── _AMSystemEventsScriptingDefinitionObject.h │ │ │ │ ├── _AMSystemEventsScriptingElement.h │ │ │ │ ├── _AMSystemEventsScriptingEnumeration.h │ │ │ │ ├── _AMSystemEventsScriptingEnumerator.h │ │ │ │ ├── _AMSystemEventsScriptingParameter.h │ │ │ │ ├── _AMSystemEventsScriptingProperty.h │ │ │ │ ├── _AMSystemEventsScriptingResultObject.h │ │ │ │ ├── _AMSystemEventsScriptingSuite.h │ │ │ │ ├── _AMSystemEventsScrollArea.h │ │ │ │ ├── _AMSystemEventsScrollBar.h │ │ │ │ ├── _AMSystemEventsSecurityPreferencesObject.h │ │ │ │ ├── _AMSystemEventsService.h │ │ │ │ ├── _AMSystemEventsSheet.h │ │ │ │ ├── _AMSystemEventsSlider.h │ │ │ │ ├── _AMSystemEventsSplitter.h │ │ │ │ ├── _AMSystemEventsSplitterGroup.h │ │ │ │ ├── _AMSystemEventsStaticText.h │ │ │ │ ├── _AMSystemEventsSystemDomainObject.h │ │ │ │ ├── _AMSystemEventsTabGroup.h │ │ │ │ ├── _AMSystemEventsTable.h │ │ │ │ ├── _AMSystemEventsTextArea.h │ │ │ │ ├── _AMSystemEventsTextField.h │ │ │ │ ├── _AMSystemEventsToolbar.h │ │ │ │ ├── _AMSystemEventsTrack.h │ │ │ │ ├── _AMSystemEventsUIElement.h │ │ │ │ ├── _AMSystemEventsUser.h │ │ │ │ ├── _AMSystemEventsUserDomainObject.h │ │ │ │ ├── _AMSystemEventsValueIndicator.h │ │ │ │ ├── _AMSystemEventsWindow.h │ │ │ │ ├── _AMSystemEventsXMLAttribute.h │ │ │ │ ├── _AMSystemEventsXMLData.h │ │ │ │ ├── _AMSystemEventsXMLElement.h │ │ │ │ ├── _AMSystemEventsXMLFile.h │ │ │ │ ├── _AMTextEditApplication.h │ │ │ │ ├── _AMTextEditAttachment.h │ │ │ │ ├── _AMTextEditAttributeRun.h │ │ │ │ ├── _AMTextEditCharacter.h │ │ │ │ ├── _AMTextEditColor.h │ │ │ │ ├── _AMTextEditDocument.h │ │ │ │ ├── _AMTextEditItem.h │ │ │ │ ├── _AMTextEditParagraph.h │ │ │ │ ├── _AMTextEditPrintSettings.h │ │ │ │ ├── _AMTextEditText.h │ │ │ │ ├── _AMTextEditWindow.h │ │ │ │ ├── _AMTextEditWord.h │ │ │ │ ├── _AMTimeIntervalRowTemplate.h │ │ │ │ ├── _AMVariablePopUpButton.h │ │ │ │ ├── _AMVariablePopUpButtonCell.h │ │ │ │ ├── _AMVariablePopUpButtonTokenField.h │ │ │ │ ├── _AMiCalApplication.h │ │ │ │ ├── _AMiCalAttachment.h │ │ │ │ ├── _AMiCalAttendee.h │ │ │ │ ├── _AMiCalAttributeRun.h │ │ │ │ ├── _AMiCalCalendar.h │ │ │ │ ├── _AMiCalCharacter.h │ │ │ │ ├── _AMiCalColor.h │ │ │ │ ├── _AMiCalDisplayAlarm.h │ │ │ │ ├── _AMiCalDocument.h │ │ │ │ ├── _AMiCalEvent.h │ │ │ │ ├── _AMiCalItem.h │ │ │ │ ├── _AMiCalItemsRowTemplateFactory.h │ │ │ │ ├── _AMiCalMailAlarm.h │ │ │ │ ├── _AMiCalOpenFileAlarm.h │ │ │ │ ├── _AMiCalParagraph.h │ │ │ │ ├── _AMiCalPredicateEditorAction.h │ │ │ │ ├── _AMiCalSoundAlarm.h │ │ │ │ ├── _AMiCalText.h │ │ │ │ ├── _AMiCalTodo.h │ │ │ │ ├── _AMiCalWindow.h │ │ │ │ ├── _AMiCalWord.h │ │ │ │ ├── _AMiDVDApplication.h │ │ │ │ ├── _AMiDVDApplicationTheme.h │ │ │ │ ├── _AMiDVDAttachment.h │ │ │ │ ├── _AMiDVDAttributeRun.h │ │ │ │ ├── _AMiDVDButton.h │ │ │ │ ├── _AMiDVDCharacter.h │ │ │ │ ├── _AMiDVDColor.h │ │ │ │ ├── _AMiDVDDocument.h │ │ │ │ ├── _AMiDVDDropzone.h │ │ │ │ ├── _AMiDVDImage.h │ │ │ │ ├── _AMiDVDItem.h │ │ │ │ ├── _AMiDVDMenu.h │ │ │ │ ├── _AMiDVDMovie.h │ │ │ │ ├── _AMiDVDParagraph.h │ │ │ │ ├── _AMiDVDPrintSettings.h │ │ │ │ ├── _AMiDVDProject.h │ │ │ │ ├── _AMiDVDSlideshow.h │ │ │ │ ├── _AMiDVDText.h │ │ │ │ ├── _AMiDVDTextObject.h │ │ │ │ ├── _AMiDVDWindow.h │ │ │ │ ├── _AMiDVDWord.h │ │ │ │ ├── _AMiPhoto5Album.h │ │ │ │ ├── _AMiPhoto5Application.h │ │ │ │ ├── _AMiPhoto5Attachment.h │ │ │ │ ├── _AMiPhoto5AttributeRun.h │ │ │ │ ├── _AMiPhoto5Character.h │ │ │ │ ├── _AMiPhoto5Color.h │ │ │ │ ├── _AMiPhoto5Document.h │ │ │ │ ├── _AMiPhoto5Item.h │ │ │ │ ├── _AMiPhoto5Keyword.h │ │ │ │ ├── _AMiPhoto5Paragraph.h │ │ │ │ ├── _AMiPhoto5Photo.h │ │ │ │ ├── _AMiPhoto5PrintSettings.h │ │ │ │ ├── _AMiPhoto5Text.h │ │ │ │ ├── _AMiPhoto5Window.h │ │ │ │ ├── _AMiPhoto5Word.h │ │ │ │ ├── _AMiPhoto6Album.h │ │ │ │ ├── _AMiPhoto6Application.h │ │ │ │ ├── _AMiPhoto6Attachment.h │ │ │ │ ├── _AMiPhoto6AttributeRun.h │ │ │ │ ├── _AMiPhoto6Character.h │ │ │ │ ├── _AMiPhoto6Color.h │ │ │ │ ├── _AMiPhoto6Document.h │ │ │ │ ├── _AMiPhoto6Item.h │ │ │ │ ├── _AMiPhoto6Keyword.h │ │ │ │ ├── _AMiPhoto6Paragraph.h │ │ │ │ ├── _AMiPhoto6Photo.h │ │ │ │ ├── _AMiPhoto6PrintSettings.h │ │ │ │ ├── _AMiPhoto6Text.h │ │ │ │ ├── _AMiPhoto6Window.h │ │ │ │ ├── _AMiPhoto6Word.h │ │ │ │ ├── _AMiPhotoItemsRowTemplateFactory.h │ │ │ │ ├── _AMiTunes7Application.h │ │ │ │ ├── _AMiTunes7Artwork.h │ │ │ │ ├── _AMiTunes7AudioCDPlaylist.h │ │ │ │ ├── _AMiTunes7AudioCDTrack.h │ │ │ │ ├── _AMiTunes7BrowserWindow.h │ │ │ │ ├── _AMiTunes7DevicePlaylist.h │ │ │ │ ├── _AMiTunes7DeviceTrack.h │ │ │ │ ├── _AMiTunes7EQPreset.h │ │ │ │ ├── _AMiTunes7EQWindow.h │ │ │ │ ├── _AMiTunes7Encoder.h │ │ │ │ ├── _AMiTunes7FileTrack.h │ │ │ │ ├── _AMiTunes7FolderPlaylist.h │ │ │ │ ├── _AMiTunes7Item.h │ │ │ │ ├── _AMiTunes7LibraryPlaylist.h │ │ │ │ ├── _AMiTunes7Playlist.h │ │ │ │ ├── _AMiTunes7PlaylistWindow.h │ │ │ │ ├── _AMiTunes7PrintSettings.h │ │ │ │ ├── _AMiTunes7RadioTunerPlaylist.h │ │ │ │ ├── _AMiTunes7SharedTrack.h │ │ │ │ ├── _AMiTunes7Source.h │ │ │ │ ├── _AMiTunes7Track.h │ │ │ │ ├── _AMiTunes7URLTrack.h │ │ │ │ ├── _AMiTunes7UserPlaylist.h │ │ │ │ ├── _AMiTunes7Visual.h │ │ │ │ ├── _AMiTunes7Window.h │ │ │ │ ├── _AMiTunes8Application.h │ │ │ │ ├── _AMiTunes8Artwork.h │ │ │ │ ├── _AMiTunes8AudioCDPlaylist.h │ │ │ │ ├── _AMiTunes8AudioCDTrack.h │ │ │ │ ├── _AMiTunes8BrowserWindow.h │ │ │ │ ├── _AMiTunes8DevicePlaylist.h │ │ │ │ ├── _AMiTunes8DeviceTrack.h │ │ │ │ ├── _AMiTunes8EQPreset.h │ │ │ │ ├── _AMiTunes8EQWindow.h │ │ │ │ ├── _AMiTunes8Encoder.h │ │ │ │ ├── _AMiTunes8FileTrack.h │ │ │ │ ├── _AMiTunes8FolderPlaylist.h │ │ │ │ ├── _AMiTunes8Item.h │ │ │ │ ├── _AMiTunes8LibraryPlaylist.h │ │ │ │ ├── _AMiTunes8Playlist.h │ │ │ │ ├── _AMiTunes8PlaylistWindow.h │ │ │ │ ├── _AMiTunes8PrintSettings.h │ │ │ │ ├── _AMiTunes8RadioTunerPlaylist.h │ │ │ │ ├── _AMiTunes8SharedTrack.h │ │ │ │ ├── _AMiTunes8Source.h │ │ │ │ ├── _AMiTunes8Track.h │ │ │ │ ├── _AMiTunes8URLTrack.h │ │ │ │ ├── _AMiTunes8UserPlaylist.h │ │ │ │ ├── _AMiTunes8Visual.h │ │ │ │ ├── _AMiTunes8Window.h │ │ │ │ └── _AMiTunesItemsRowTemplateFactory.h │ │ └── src │ │ │ ├── AMAction.m │ │ │ ├── AMActionAnyOfCollectionRowTemplate.m │ │ │ ├── AMActionCompletionResults.m │ │ │ ├── AMActionConnector.m │ │ │ ├── AMActionDateAddedRelativeRowTemplate.m │ │ │ ├── AMActionDateAddedSpecificRowTemplate.m │ │ │ ├── AMActionDateAddedWithinLastRowTemplate.m │ │ │ ├── AMActionInWorkflowXPCToken.m │ │ │ ├── AMActionInstallerController.m │ │ │ ├── AMActionLoader.m │ │ │ ├── AMActionMetadataStore.m │ │ │ ├── AMActionPanelActionView.m │ │ │ ├── AMActionPanelController.m │ │ │ ├── AMActionPropertyListXPCToken.m │ │ │ ├── AMActionRegistry.m │ │ │ ├── AMActionRelevanceRowTemplate.m │ │ │ ├── AMActionSecAssess.m │ │ │ ├── AMActionShowWhenRunOverlayView.m │ │ │ ├── AMActionTextField.m │ │ │ ├── AMActionView.m │ │ │ ├── AMActionViewController.m │ │ │ ├── AMActionsUserGroup.m │ │ │ ├── AMActiveProc.m │ │ │ ├── AMAddressBookSoftLinking.m │ │ │ ├── AMAliasToSBObjectConversionAction.m │ │ │ ├── AMAppDefinitionProxyAction.m │ │ │ ├── AMAppleScriptAction.m │ │ │ ├── AMAppleScriptKitSoftLinking.m │ │ │ ├── AMApplicationDefinition.m │ │ │ ├── AMApplicationPickerPopUpButton.m │ │ │ ├── AMApplicationRegistry.m │ │ │ ├── AMApplicationStub.m │ │ │ ├── AMApplicationStubController.m │ │ │ ├── AMApplicationWorkflowPersonality.m │ │ │ ├── AMAutoConversionAction.m │ │ │ ├── AMBundleAction.m │ │ │ ├── AMCache.m │ │ │ ├── AMCacheLocationEntry.m │ │ │ ├── AMConnectionPoint.m │ │ │ ├── AMConversion.m │ │ │ ├── AMConvertAliasToPath.m │ │ │ ├── AMConvertAliasToString.m │ │ │ ├── AMConvertAliasToSubType.m │ │ │ ├── AMConvertAliasToURL.m │ │ │ ├── AMConvertAppleScriptObjectToAppleScriptDataObject.m │ │ │ ├── AMConvertAppleScriptObjectToAppleScriptTextObject.m │ │ │ ├── AMConvertAppleScriptObjectToString.m │ │ │ ├── AMConvertAppleScriptObjectToSubtype.m │ │ │ ├── AMConvertAppleScriptObjectToURL.m │ │ │ ├── AMConvertAppleScriptTextObjectToAlias.m │ │ │ ├── AMConvertAppleScriptTextObjectToAppleScriptURLObject.m │ │ │ ├── AMConvertAppleScriptURLToURL.m │ │ │ ├── AMConvertAttributedStringToString.m │ │ │ ├── AMConvertCocoaStringToAppleScriptAliasObject.m │ │ │ ├── AMConvertEventKitCalendarToEventKitEvent.m │ │ │ ├── AMConvertEventKitCalendarToEventKitReminder.m │ │ │ ├── AMConvertEventKitCalendarToiCalCalendarObject.m │ │ │ ├── AMConvertEventKitEventToiCalEventObject.m │ │ │ ├── AMConvertEventKitItemToEventKitCalendar.m │ │ │ ├── AMConvertEventKitItemToEventKitEvent.m │ │ │ ├── AMConvertEventKitItemToiCalItemObject.m │ │ │ ├── AMConvertEventKitObject.m │ │ │ ├── AMConvertEventKitObjectToiCalObject.m │ │ │ ├── AMConvertEventKitReminderToiCalToDoObject.m │ │ │ ├── AMConvertPathToAlias.m │ │ │ ├── AMConvertPathToAppleScriptTextObject.m │ │ │ ├── AMConvertPathToPublicItem.m │ │ │ ├── AMConvertPathTypeToSubType.m │ │ │ ├── AMConvertPublicItemToCocoaPath.m │ │ │ ├── AMConvertPublicItemToSpotlightItem.m │ │ │ ├── AMConvertStringToAppleScriptTextObject.m │ │ │ ├── AMConvertStringToAttributedString.m │ │ │ ├── AMConvertStringToPath.m │ │ │ ├── AMConvertStringToURL.m │ │ │ ├── AMConvertURLToAlias.m │ │ │ ├── AMConvertURLToAppleScriptTextObject.m │ │ │ ├── AMConvertURLToAppleScriptURL.m │ │ │ ├── AMConvertURLToPath.m │ │ │ ├── AMConvertURLToString.m │ │ │ ├── AMConverter.m │ │ │ ├── AMConvertiCalCalendarObjectToEventKitCalendar.m │ │ │ ├── AMConvertiCalEventObjectToEventKitEvent.m │ │ │ ├── AMConvertiCalItemObjectToEventKitItem.m │ │ │ ├── AMConvertiCalToDoObjectToEventKitReminder.m │ │ │ ├── AMDelayedUpdateManager.m │ │ │ ├── AMDelayedUpdaterInfo.m │ │ │ ├── AMDescriptionImageTextCell.m │ │ │ ├── AMDescriptionLineItemView.m │ │ │ ├── AMDescriptionViewController.m │ │ │ ├── AMDescriptionViewItem.m │ │ │ ├── AMDictationCommandWorkflowMetaData.m │ │ │ ├── AMDictationCommandWorkflowPersonality.m │ │ │ ├── AMDictationServicesSoftLinking.m │ │ │ ├── AMDiskBasedCacheLocationEntry.m │ │ │ ├── AMDotMacSyncSoftLinking.m │ │ │ ├── AMEventKitCalendarItemXPCToken.m │ │ │ ├── AMEventKitCalendarXPCToken.m │ │ │ ├── AMEventKitSoftLinking.m │ │ │ ├── AMFCompletionFeedParserDelegate.m │ │ │ ├── AMFFeed.m │ │ │ ├── AMFFeedContent.m │ │ │ ├── AMFFeedController.m │ │ │ ├── AMFFeedElement.m │ │ │ ├── AMFFeedEnclosure.m │ │ │ ├── AMFFeedEntry.m │ │ │ ├── AMFFeedFinder.m │ │ │ ├── AMFFeedMetadata.m │ │ │ ├── AMFFeedParser.m │ │ │ ├── AMFFeedPerson.m │ │ │ ├── AMFilterItemsAction.m │ │ │ ├── AMFindItemsAction.m │ │ │ ├── AMFolderActionWorkflowMetaData.m │ │ │ ├── AMFolderActionWorkflowPersonality.m │ │ │ ├── AMFolderActionsKitSoftLinking.m │ │ │ ├── AMGeneralWorkflowPersonality.m │ │ │ ├── AMGenericAction.m │ │ │ ├── AMGenericActionLoader.m │ │ │ ├── AMGetItemsAction.m │ │ │ ├── AMGetItemsPanelController.m │ │ │ ├── AMGetItemsTableView.m │ │ │ ├── AMGlossyStatusView.m │ │ │ ├── AMGradientBackgroundView.m │ │ │ ├── AMGroup.m │ │ │ ├── AMGroupBox.m │ │ │ ├── AMHeaderViewController.m │ │ │ ├── AMICalPluginWorkflowPersonality.m │ │ │ ├── AMILMediaBrowserSoftLinking.m │ │ │ ├── AMImageCaptureWorkflowPersonality.m │ │ │ ├── AMImageRegistry.m │ │ │ ├── AMImageTextCell.m │ │ │ ├── AMImageView.m │ │ │ ├── AMInputOuptutPluginHeaderViewController.m │ │ │ ├── AMInputOutputWorkflowMetadata.m │ │ │ ├── AMInputOutputWorkflowPersonality.m │ │ │ ├── AMLevelIndicator.m │ │ │ ├── AMLevelIndicatorCell.m │ │ │ ├── AMLibrary.m │ │ │ ├── AMLibraryOutlineView.m │ │ │ ├── AMLibraryTableView.m │ │ │ ├── AMLibraryViewController.m │ │ │ ├── AMLocalRunnerController.m │ │ │ ├── AMMediaPanel.m │ │ │ ├── AMModernApplicationStubApplication.m │ │ │ ├── AMModernApplicationStubDelegate.m │ │ │ ├── AMNewFindItemsAction.m │ │ │ ├── AMNibView.m │ │ │ ├── AMOpenAutomatorRecoveryAttempter.m │ │ │ ├── AMPathPopUpButton.m │ │ │ ├── AMPlaceholderAction.m │ │ │ ├── AMPluginHeaderViewController.m │ │ │ ├── AMPluginInstallerController.m │ │ │ ├── AMPopUpButton.m │ │ │ ├── AMPrintWorkflowPersonality.m │ │ │ ├── AMProxyAction.m │ │ │ ├── AMRelativeDateRowTemplate.m │ │ │ ├── AMRemoteRunnerController.m │ │ │ ├── AMRemoteRunnerXPCDelegate.m │ │ │ ├── AMRemoveQuarantineRecoveryAttempter.m │ │ │ ├── AMResultsItem.m │ │ │ ├── AMResultsTableView.m │ │ │ ├── AMResultsViewController.m │ │ │ ├── AMResultsViewOverlayView.m │ │ │ ├── AMRunActionAsyncOperation.m │ │ │ ├── AMRunActionOperation.m │ │ │ ├── AMSBObjectToAliasConversionAction.m │ │ │ ├── AMSBObjectToSBObjectConversionAction.m │ │ │ ├── AMScriptMenuWorkflowPersonality.m │ │ │ ├── AMScriptingBridgeAppRegistry.m │ │ │ ├── AMScriptingBridgeConversionAction.m │ │ │ ├── AMSecurityHelperWindowController.m │ │ │ ├── AMSecurityHelperWindowControllerRecoveryAttempter.m │ │ │ ├── AMSendProc.m │ │ │ ├── AMServicePluginHeaderViewController.m │ │ │ ├── AMServiceWorkflowMetaData.m │ │ │ ├── AMServiceWorkflowPersonality.m │ │ │ ├── AMServicesController.m │ │ │ ├── AMShellScriptAction.m │ │ │ ├── AMShowWhenRunController.m │ │ │ ├── AMShowWhenRunPanel.m │ │ │ ├── AMSimpleStringPluginHeaderViewController.m │ │ │ ├── AMSmartGroup.m │ │ │ ├── AMSmartGroupsController.m │ │ │ ├── AMSmartGroupsPredicateViewController.m │ │ │ ├── AMSmartTokenAttachmentCell.m │ │ │ ├── AMSpecificDateRowTemplate.m │ │ │ ├── AMSplitView.m │ │ │ ├── AMTemplateChooserItem.m │ │ │ ├── AMTextDetector.m │ │ │ ├── AMTextFieldCell.m │ │ │ ├── AMTokenAttachmentCell.m │ │ │ ├── AMTokenField.m │ │ │ ├── AMTokenFieldCell.m │ │ │ ├── AMType.m │ │ │ ├── AMTypeRegistry.m │ │ │ ├── AMUnknownXPCToken.m │ │ │ ├── AMValidatedCacheLocationEntry.m │ │ │ ├── AMVariable.m │ │ │ ├── AMVariablesEditorController.m │ │ │ ├── AMVariablesEditorDateFormatDelegate.m │ │ │ ├── AMVariablesEditorEventDelegateWindow.m │ │ │ ├── AMVariablesEditorProxyController.m │ │ │ ├── AMVariablesEditorView.m │ │ │ ├── AMVariablesEditorWindow.m │ │ │ ├── AMVariablesRegistry.m │ │ │ ├── AMVariablesUserGroup.m │ │ │ ├── AMView.m │ │ │ ├── AMWebArchiveXPCToken.m │ │ │ ├── AMWebKitSoftLinking.m │ │ │ ├── AMWhoseListView.m │ │ │ ├── AMWhoseViewItem.m │ │ │ ├── AMWithinLastDateRowTemplate.m │ │ │ ├── AMWorkflow.m │ │ │ ├── AMWorkflowCompletionResults.m │ │ │ ├── AMWorkflowController.m │ │ │ ├── AMWorkflowHeaderView.m │ │ │ ├── AMWorkflowMetaData.m │ │ │ ├── AMWorkflowPersonality.m │ │ │ ├── AMWorkflowPersonalityInstallerController.m │ │ │ ├── AMWorkflowRunner.m │ │ │ ├── AMWorkflowServiceRunner.m │ │ │ ├── AMWorkflowUnknownPersonality.m │ │ │ ├── AMWorkflowView.m │ │ │ ├── AMWorkspace.m │ │ │ ├── AMXPCToken.m │ │ │ ├── Automator.m │ │ │ ├── AutomatorSecurityHelperHostViewController.m │ │ │ ├── EditorWindowCloseAnimation.m │ │ │ ├── EditorWindowOpenAnimation.m │ │ │ ├── EditorWindowRelocateAnimation.m │ │ │ ├── NSPrivateAutomatorFrameworkClassForFindingBundle.m │ │ │ ├── _AMActionAuxiliary.m │ │ │ ├── _AMAddressBookAIMHandle.m │ │ │ ├── _AMAddressBookAddress.m │ │ │ ├── _AMAddressBookApplication.m │ │ │ ├── _AMAddressBookContactInfo.m │ │ │ ├── _AMAddressBookCustomDate.m │ │ │ ├── _AMAddressBookDocument.m │ │ │ ├── _AMAddressBookEmail.m │ │ │ ├── _AMAddressBookEntry.m │ │ │ ├── _AMAddressBookGroup.m │ │ │ ├── _AMAddressBookICQHandle.m │ │ │ ├── _AMAddressBookItemsRowTemplateFactory.m │ │ │ ├── _AMAddressBookJabberHandle.m │ │ │ ├── _AMAddressBookMSNHandle.m │ │ │ ├── _AMAddressBookPerson.m │ │ │ ├── _AMAddressBookPhone.m │ │ │ ├── _AMAddressBookRelatedName.m │ │ │ ├── _AMAddressBookUrl.m │ │ │ ├── _AMAddressBookUtilities.m │ │ │ ├── _AMAddressBookWindow.m │ │ │ ├── _AMAddressBookYahooHandle.m │ │ │ ├── _AMBoolRowTemplate.m │ │ │ ├── _AMDateRelativeToCalendarUnitsRowTemplate.m │ │ │ ├── _AMDaysRelativeToCalendarUnitsRowTemplate.m │ │ │ ├── _AMDaysRelativeToSpecificDateRowTemplate.m │ │ │ ├── _AMFileLabelRowTemplate.m │ │ │ ├── _AMFileSizeRowTemplate.m │ │ │ ├── _AMFinderAliasFile.m │ │ │ ├── _AMFinderAliasList.m │ │ │ ├── _AMFinderApplication.m │ │ │ ├── _AMFinderApplicationFile.m │ │ │ ├── _AMFinderApplicationProcess.m │ │ │ ├── _AMFinderClipping.m │ │ │ ├── _AMFinderClippingWindow.m │ │ │ ├── _AMFinderColumn.m │ │ │ ├── _AMFinderColumnViewOptions.m │ │ │ ├── _AMFinderComputerObject.m │ │ │ ├── _AMFinderContainer.m │ │ │ ├── _AMFinderDeskAccessoryProcess.m │ │ │ ├── _AMFinderDesktopObject.m │ │ │ ├── _AMFinderDesktopWindow.m │ │ │ ├── _AMFinderDisk.m │ │ │ ├── _AMFinderDocumentFile.m │ │ │ ├── _AMFinderFile.m │ │ │ ├── _AMFinderFinderWindow.m │ │ │ ├── _AMFinderFolder.m │ │ │ ├── _AMFinderIconFamily.m │ │ │ ├── _AMFinderIconViewOptions.m │ │ │ ├── _AMFinderInformationWindow.m │ │ │ ├── _AMFinderInternetLocationFile.m │ │ │ ├── _AMFinderItem.m │ │ │ ├── _AMFinderItemsRowTemplateFactory.m │ │ │ ├── _AMFinderLabel.m │ │ │ ├── _AMFinderListViewOptions.m │ │ │ ├── _AMFinderPackage.m │ │ │ ├── _AMFinderPreferences.m │ │ │ ├── _AMFinderPreferencesWindow.m │ │ │ ├── _AMFinderProcess.m │ │ │ ├── _AMFinderTrashObject.m │ │ │ ├── _AMFinderWindow.m │ │ │ ├── _AMGetSetVariablePopUpButton.m │ │ │ ├── _AMKeynote5AppTheme.m │ │ │ ├── _AMKeynote5AppTransition.m │ │ │ ├── _AMKeynote5Application.m │ │ │ ├── _AMKeynote5Attachment.m │ │ │ ├── _AMKeynote5AttributeRun.m │ │ │ ├── _AMKeynote5Character.m │ │ │ ├── _AMKeynote5Color.m │ │ │ ├── _AMKeynote5DocTheme.m │ │ │ ├── _AMKeynote5Item.m │ │ │ ├── _AMKeynote5MasterSlide.m │ │ │ ├── _AMKeynote5Paragraph.m │ │ │ ├── _AMKeynote5PrintSettings.m │ │ │ ├── _AMKeynote5Slide.m │ │ │ ├── _AMKeynote5SlideTransition.m │ │ │ ├── _AMKeynote5Slideshow.m │ │ │ ├── _AMKeynote5Text.m │ │ │ ├── _AMKeynote5Window.m │ │ │ ├── _AMKeynote5Word.m │ │ │ ├── _AMMailAccount.m │ │ │ ├── _AMMailApplication.m │ │ │ ├── _AMMailAttachment.m │ │ │ ├── _AMMailAttributeRun.m │ │ │ ├── _AMMailBccRecipient.m │ │ │ ├── _AMMailCcRecipient.m │ │ │ ├── _AMMailCharacter.m │ │ │ ├── _AMMailContainer.m │ │ │ ├── _AMMailDocument.m │ │ │ ├── _AMMailHeader.m │ │ │ ├── _AMMailImapAccount.m │ │ │ ├── _AMMailItemsRowTemplateFactory.m │ │ │ ├── _AMMailLdapServer.m │ │ │ ├── _AMMailMailAttachment.m │ │ │ ├── _AMMailMailbox.m │ │ │ ├── _AMMailMessage.m │ │ │ ├── _AMMailMessageViewer.m │ │ │ ├── _AMMailMobileMeAccount.m │ │ │ ├── _AMMailOLDMessageEditor.m │ │ │ ├── _AMMailOutgoingMessage.m │ │ │ ├── _AMMailParagraph.m │ │ │ ├── _AMMailPopAccount.m │ │ │ ├── _AMMailRecipient.m │ │ │ ├── _AMMailRichText.m │ │ │ ├── _AMMailRule.m │ │ │ ├── _AMMailRuleCondition.m │ │ │ ├── _AMMailSignature.m │ │ │ ├── _AMMailSmtpServer.m │ │ │ ├── _AMMailToRecipient.m │ │ │ ├── _AMMailWindow.m │ │ │ ├── _AMMailWord.m │ │ │ ├── _AMMessageTracerUtilities.m │ │ │ ├── _AMPredicateEditor.m │ │ │ ├── _AMPredicateEditorAction.m │ │ │ ├── _AMPredicateUtilities.m │ │ │ ├── _AMPrefixLabeledRowTemplate.m │ │ │ ├── _AMRatingRowTemplate.m │ │ │ ├── _AMRowTemplateFactory.m │ │ │ ├── _AMSBApplicationDelegate.m │ │ │ ├── _AMSBRetainingApplicationDelegate.m │ │ │ ├── _AMSafariApplication.m │ │ │ ├── _AMSafariAttachment.m │ │ │ ├── _AMSafariAttributeRun.m │ │ │ ├── _AMSafariCharacter.m │ │ │ ├── _AMSafariColor.m │ │ │ ├── _AMSafariDocument.m │ │ │ ├── _AMSafariItem.m │ │ │ ├── _AMSafariParagraph.m │ │ │ ├── _AMSafariPrintSettings.m │ │ │ ├── _AMSafariTab.m │ │ │ ├── _AMSafariText.m │ │ │ ├── _AMSafariWindow.m │ │ │ ├── _AMSafariWord.m │ │ │ ├── _AMSpecificDateRangeRowTemplate.m │ │ │ ├── _AMSpecificYearRowTemplate.m │ │ │ ├── _AMSuffixLabeledRowTemplate.m │ │ │ ├── _AMSystemEventsAction.m │ │ │ ├── _AMSystemEventsAlias.m │ │ │ ├── _AMSystemEventsAnnotation.m │ │ │ ├── _AMSystemEventsAppearancePreferencesObject.m │ │ │ ├── _AMSystemEventsApplication.m │ │ │ ├── _AMSystemEventsApplicationProcess.m │ │ │ ├── _AMSystemEventsAttribute.m │ │ │ ├── _AMSystemEventsAudioData.m │ │ │ ├── _AMSystemEventsAudioFile.m │ │ │ ├── _AMSystemEventsBrowser.m │ │ │ ├── _AMSystemEventsBusyIndicator.m │ │ │ ├── _AMSystemEventsButton.m │ │ │ ├── _AMSystemEventsCDAndDVDPreferencesObject.m │ │ │ ├── _AMSystemEventsCheckbox.m │ │ │ ├── _AMSystemEventsClassicDomainObject.m │ │ │ ├── _AMSystemEventsColorWell.m │ │ │ ├── _AMSystemEventsColumn.m │ │ │ ├── _AMSystemEventsComboBox.m │ │ │ ├── _AMSystemEventsConfiguration.m │ │ │ ├── _AMSystemEventsDeskAccessoryProcess.m │ │ │ ├── _AMSystemEventsDesktop.m │ │ │ ├── _AMSystemEventsDisk.m │ │ │ ├── _AMSystemEventsDiskItem.m │ │ │ ├── _AMSystemEventsDockPreferencesObject.m │ │ │ ├── _AMSystemEventsDocument.m │ │ │ ├── _AMSystemEventsDomain.m │ │ │ ├── _AMSystemEventsDrawer.m │ │ │ ├── _AMSystemEventsFile.m │ │ │ ├── _AMSystemEventsFilePackage.m │ │ │ ├── _AMSystemEventsFolder.m │ │ │ ├── _AMSystemEventsFolderAction.m │ │ │ ├── _AMSystemEventsGroup.m │ │ │ ├── _AMSystemEventsGrowArea.m │ │ │ ├── _AMSystemEventsImage.m │ │ │ ├── _AMSystemEventsIncrementor.m │ │ │ ├── _AMSystemEventsInsertionPreference.m │ │ │ ├── _AMSystemEventsInterface.m │ │ │ ├── _AMSystemEventsList.m │ │ │ ├── _AMSystemEventsLocalDomainObject.m │ │ │ ├── _AMSystemEventsLocation.m │ │ │ ├── _AMSystemEventsLoginItem.m │ │ │ ├── _AMSystemEventsMenu.m │ │ │ ├── _AMSystemEventsMenuBar.m │ │ │ ├── _AMSystemEventsMenuBarItem.m │ │ │ ├── _AMSystemEventsMenuButton.m │ │ │ ├── _AMSystemEventsMenuItem.m │ │ │ ├── _AMSystemEventsMovieData.m │ │ │ ├── _AMSystemEventsMovieFile.m │ │ │ ├── _AMSystemEventsNetworkDomainObject.m │ │ │ ├── _AMSystemEventsNetworkPreferencesObject.m │ │ │ ├── _AMSystemEventsOutline.m │ │ │ ├── _AMSystemEventsPopOver.m │ │ │ ├── _AMSystemEventsPopUpButton.m │ │ │ ├── _AMSystemEventsPrintSettings.m │ │ │ ├── _AMSystemEventsProcess.m │ │ │ ├── _AMSystemEventsProgressIndicator.m │ │ │ ├── _AMSystemEventsPropertyListFile.m │ │ │ ├── _AMSystemEventsPropertyListItem.m │ │ │ ├── _AMSystemEventsQuickTimeData.m │ │ │ ├── _AMSystemEventsQuickTimeFile.m │ │ │ ├── _AMSystemEventsRadioButton.m │ │ │ ├── _AMSystemEventsRadioGroup.m │ │ │ ├── _AMSystemEventsRelevanceIndicator.m │ │ │ ├── _AMSystemEventsRow.m │ │ │ ├── _AMSystemEventsScreenSaver.m │ │ │ ├── _AMSystemEventsScreenSaverPreferencesObject.m │ │ │ ├── _AMSystemEventsScript.m │ │ │ ├── _AMSystemEventsScriptingClass.m │ │ │ ├── _AMSystemEventsScriptingCommand.m │ │ │ ├── _AMSystemEventsScriptingDefinitionObject.m │ │ │ ├── _AMSystemEventsScriptingElement.m │ │ │ ├── _AMSystemEventsScriptingEnumeration.m │ │ │ ├── _AMSystemEventsScriptingEnumerator.m │ │ │ ├── _AMSystemEventsScriptingParameter.m │ │ │ ├── _AMSystemEventsScriptingProperty.m │ │ │ ├── _AMSystemEventsScriptingResultObject.m │ │ │ ├── _AMSystemEventsScriptingSuite.m │ │ │ ├── _AMSystemEventsScrollArea.m │ │ │ ├── _AMSystemEventsScrollBar.m │ │ │ ├── _AMSystemEventsSecurityPreferencesObject.m │ │ │ ├── _AMSystemEventsService.m │ │ │ ├── _AMSystemEventsSheet.m │ │ │ ├── _AMSystemEventsSlider.m │ │ │ ├── _AMSystemEventsSplitter.m │ │ │ ├── _AMSystemEventsSplitterGroup.m │ │ │ ├── _AMSystemEventsStaticText.m │ │ │ ├── _AMSystemEventsSystemDomainObject.m │ │ │ ├── _AMSystemEventsTabGroup.m │ │ │ ├── _AMSystemEventsTable.m │ │ │ ├── _AMSystemEventsTextArea.m │ │ │ ├── _AMSystemEventsTextField.m │ │ │ ├── _AMSystemEventsToolbar.m │ │ │ ├── _AMSystemEventsTrack.m │ │ │ ├── _AMSystemEventsUIElement.m │ │ │ ├── _AMSystemEventsUser.m │ │ │ ├── _AMSystemEventsUserDomainObject.m │ │ │ ├── _AMSystemEventsValueIndicator.m │ │ │ ├── _AMSystemEventsWindow.m │ │ │ ├── _AMSystemEventsXMLAttribute.m │ │ │ ├── _AMSystemEventsXMLData.m │ │ │ ├── _AMSystemEventsXMLElement.m │ │ │ ├── _AMSystemEventsXMLFile.m │ │ │ ├── _AMTextEditApplication.m │ │ │ ├── _AMTextEditAttachment.m │ │ │ ├── _AMTextEditAttributeRun.m │ │ │ ├── _AMTextEditCharacter.m │ │ │ ├── _AMTextEditColor.m │ │ │ ├── _AMTextEditDocument.m │ │ │ ├── _AMTextEditItem.m │ │ │ ├── _AMTextEditParagraph.m │ │ │ ├── _AMTextEditPrintSettings.m │ │ │ ├── _AMTextEditText.m │ │ │ ├── _AMTextEditWindow.m │ │ │ ├── _AMTextEditWord.m │ │ │ ├── _AMTimeIntervalRowTemplate.m │ │ │ ├── _AMVariablePopUpButton.m │ │ │ ├── _AMVariablePopUpButtonCell.m │ │ │ ├── _AMVariablePopUpButtonTokenField.m │ │ │ ├── _AMiCalApplication.m │ │ │ ├── _AMiCalAttachment.m │ │ │ ├── _AMiCalAttendee.m │ │ │ ├── _AMiCalAttributeRun.m │ │ │ ├── _AMiCalCalendar.m │ │ │ ├── _AMiCalCharacter.m │ │ │ ├── _AMiCalColor.m │ │ │ ├── _AMiCalDisplayAlarm.m │ │ │ ├── _AMiCalDocument.m │ │ │ ├── _AMiCalEvent.m │ │ │ ├── _AMiCalItem.m │ │ │ ├── _AMiCalItemsRowTemplateFactory.m │ │ │ ├── _AMiCalMailAlarm.m │ │ │ ├── _AMiCalOpenFileAlarm.m │ │ │ ├── _AMiCalParagraph.m │ │ │ ├── _AMiCalPredicateEditorAction.m │ │ │ ├── _AMiCalSoundAlarm.m │ │ │ ├── _AMiCalText.m │ │ │ ├── _AMiCalTodo.m │ │ │ ├── _AMiCalWindow.m │ │ │ ├── _AMiCalWord.m │ │ │ ├── _AMiDVDApplication.m │ │ │ ├── _AMiDVDApplicationTheme.m │ │ │ ├── _AMiDVDAttachment.m │ │ │ ├── _AMiDVDAttributeRun.m │ │ │ ├── _AMiDVDButton.m │ │ │ ├── _AMiDVDCharacter.m │ │ │ ├── _AMiDVDColor.m │ │ │ ├── _AMiDVDDocument.m │ │ │ ├── _AMiDVDDropzone.m │ │ │ ├── _AMiDVDImage.m │ │ │ ├── _AMiDVDItem.m │ │ │ ├── _AMiDVDMenu.m │ │ │ ├── _AMiDVDMovie.m │ │ │ ├── _AMiDVDParagraph.m │ │ │ ├── _AMiDVDPrintSettings.m │ │ │ ├── _AMiDVDProject.m │ │ │ ├── _AMiDVDSlideshow.m │ │ │ ├── _AMiDVDText.m │ │ │ ├── _AMiDVDTextObject.m │ │ │ ├── _AMiDVDWindow.m │ │ │ ├── _AMiDVDWord.m │ │ │ ├── _AMiPhoto5Album.m │ │ │ ├── _AMiPhoto5Application.m │ │ │ ├── _AMiPhoto5Attachment.m │ │ │ ├── _AMiPhoto5AttributeRun.m │ │ │ ├── _AMiPhoto5Character.m │ │ │ ├── _AMiPhoto5Color.m │ │ │ ├── _AMiPhoto5Document.m │ │ │ ├── _AMiPhoto5Item.m │ │ │ ├── _AMiPhoto5Keyword.m │ │ │ ├── _AMiPhoto5Paragraph.m │ │ │ ├── _AMiPhoto5Photo.m │ │ │ ├── _AMiPhoto5PrintSettings.m │ │ │ ├── _AMiPhoto5Text.m │ │ │ ├── _AMiPhoto5Window.m │ │ │ ├── _AMiPhoto5Word.m │ │ │ ├── _AMiPhoto6Album.m │ │ │ ├── _AMiPhoto6Application.m │ │ │ ├── _AMiPhoto6Attachment.m │ │ │ ├── _AMiPhoto6AttributeRun.m │ │ │ ├── _AMiPhoto6Character.m │ │ │ ├── _AMiPhoto6Color.m │ │ │ ├── _AMiPhoto6Document.m │ │ │ ├── _AMiPhoto6Item.m │ │ │ ├── _AMiPhoto6Keyword.m │ │ │ ├── _AMiPhoto6Paragraph.m │ │ │ ├── _AMiPhoto6Photo.m │ │ │ ├── _AMiPhoto6PrintSettings.m │ │ │ ├── _AMiPhoto6Text.m │ │ │ ├── _AMiPhoto6Window.m │ │ │ ├── _AMiPhoto6Word.m │ │ │ ├── _AMiPhotoItemsRowTemplateFactory.m │ │ │ ├── _AMiTunes7Application.m │ │ │ ├── _AMiTunes7Artwork.m │ │ │ ├── _AMiTunes7AudioCDPlaylist.m │ │ │ ├── _AMiTunes7AudioCDTrack.m │ │ │ ├── _AMiTunes7BrowserWindow.m │ │ │ ├── _AMiTunes7DevicePlaylist.m │ │ │ ├── _AMiTunes7DeviceTrack.m │ │ │ ├── _AMiTunes7EQPreset.m │ │ │ ├── _AMiTunes7EQWindow.m │ │ │ ├── _AMiTunes7Encoder.m │ │ │ ├── _AMiTunes7FileTrack.m │ │ │ ├── _AMiTunes7FolderPlaylist.m │ │ │ ├── _AMiTunes7Item.m │ │ │ ├── _AMiTunes7LibraryPlaylist.m │ │ │ ├── _AMiTunes7Playlist.m │ │ │ ├── _AMiTunes7PlaylistWindow.m │ │ │ ├── _AMiTunes7PrintSettings.m │ │ │ ├── _AMiTunes7RadioTunerPlaylist.m │ │ │ ├── _AMiTunes7SharedTrack.m │ │ │ ├── _AMiTunes7Source.m │ │ │ ├── _AMiTunes7Track.m │ │ │ ├── _AMiTunes7URLTrack.m │ │ │ ├── _AMiTunes7UserPlaylist.m │ │ │ ├── _AMiTunes7Visual.m │ │ │ ├── _AMiTunes7Window.m │ │ │ ├── _AMiTunes8Application.m │ │ │ ├── _AMiTunes8Artwork.m │ │ │ ├── _AMiTunes8AudioCDPlaylist.m │ │ │ ├── _AMiTunes8AudioCDTrack.m │ │ │ ├── _AMiTunes8BrowserWindow.m │ │ │ ├── _AMiTunes8DevicePlaylist.m │ │ │ ├── _AMiTunes8DeviceTrack.m │ │ │ ├── _AMiTunes8EQPreset.m │ │ │ ├── _AMiTunes8EQWindow.m │ │ │ ├── _AMiTunes8Encoder.m │ │ │ ├── _AMiTunes8FileTrack.m │ │ │ ├── _AMiTunes8FolderPlaylist.m │ │ │ ├── _AMiTunes8Item.m │ │ │ ├── _AMiTunes8LibraryPlaylist.m │ │ │ ├── _AMiTunes8Playlist.m │ │ │ ├── _AMiTunes8PlaylistWindow.m │ │ │ ├── _AMiTunes8PrintSettings.m │ │ │ ├── _AMiTunes8RadioTunerPlaylist.m │ │ │ ├── _AMiTunes8SharedTrack.m │ │ │ ├── _AMiTunes8Source.m │ │ │ ├── _AMiTunes8Track.m │ │ │ ├── _AMiTunes8URLTrack.m │ │ │ ├── _AMiTunes8UserPlaylist.m │ │ │ ├── _AMiTunes8Visual.m │ │ │ ├── _AMiTunes8Window.m │ │ │ └── _AMiTunesItemsRowTemplateFactory.m │ ├── CMakeLists.txt │ ├── CalendarStore │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CalendarStore │ │ │ │ ├── CalAlarm.h │ │ │ │ ├── CalAttendee.h │ │ │ │ ├── CalCalendar.h │ │ │ │ ├── CalCalendarItem.h │ │ │ │ ├── CalCalendarItemPredicate.h │ │ │ │ ├── CalCalendarStore.h │ │ │ │ ├── CalEvent.h │ │ │ │ ├── CalEventPredicate.h │ │ │ │ ├── CalGroup.h │ │ │ │ ├── CalNthWeekDay.h │ │ │ │ ├── CalPredicate.h │ │ │ │ ├── CalRecurrenceEnd.h │ │ │ │ ├── CalRecurrenceRule.h │ │ │ │ ├── CalTask.h │ │ │ │ ├── CalTaskPredicate.h │ │ │ │ ├── CalendarAgentClient.h │ │ │ │ └── CalendarStore.h │ │ └── src │ │ │ ├── CalAlarm.m │ │ │ ├── CalAttendee.m │ │ │ ├── CalCalendar.m │ │ │ ├── CalCalendarItem.m │ │ │ ├── CalCalendarItemPredicate.m │ │ │ ├── CalCalendarStore.m │ │ │ ├── CalEvent.m │ │ │ ├── CalEventPredicate.m │ │ │ ├── CalGroup.m │ │ │ ├── CalNthWeekDay.m │ │ │ ├── CalPredicate.m │ │ │ ├── CalRecurrenceEnd.m │ │ │ ├── CalRecurrenceRule.m │ │ │ ├── CalTask.m │ │ │ ├── CalTaskPredicate.m │ │ │ └── CalendarStore.m │ ├── Carbon │ │ ├── CMakeLists.txt │ │ ├── CommonPanels │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── CommonPanels │ │ │ │ │ └── CommonPanels.h │ │ │ └── src │ │ │ │ └── CommonPanels.m │ │ ├── HIToolbox │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── HIToolbox │ │ │ │ │ ├── CarbonEvents.h │ │ │ │ │ ├── CarbonEventsCore.h │ │ │ │ │ ├── Dialogs.h │ │ │ │ │ ├── Drag.h │ │ │ │ │ ├── Events.h │ │ │ │ │ ├── HIObject.h │ │ │ │ │ ├── IBCarbonRuntime.h │ │ │ │ │ ├── Keyboards.h │ │ │ │ │ ├── Lists.h │ │ │ │ │ ├── MacWindows.h │ │ │ │ │ ├── Menus.h │ │ │ │ │ ├── Notification.h │ │ │ │ │ ├── Scrap.h │ │ │ │ │ ├── TextEdit.h │ │ │ │ │ ├── TextInputSources.h │ │ │ │ │ └── TextServices.h │ │ │ └── src │ │ │ │ ├── CarbonEventsCore.c │ │ │ │ ├── Events.cpp │ │ │ │ ├── IBCarbonRuntime.c │ │ │ │ ├── Keyboards.cpp │ │ │ │ ├── MacWindows.cpp │ │ │ │ ├── TextInputSources.mm │ │ │ │ └── constants.c │ │ ├── Help │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── Help │ │ │ │ │ └── Help.h │ │ │ └── src │ │ │ │ └── Help.c │ │ ├── ImageCapture │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── ImageCapture │ │ │ │ │ └── ImageCapture.h │ │ │ └── src │ │ │ │ └── ImageCapture.m │ │ ├── Ink │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── Ink │ │ │ │ │ └── Ink.h │ │ │ └── src │ │ │ │ └── Ink.c │ │ ├── OpenScripting │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── OpenScripting │ │ │ │ │ └── OpenScripting.h │ │ │ └── src │ │ │ │ └── OpenScripting.m │ │ ├── Print │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── Print │ │ │ │ │ └── Print.h │ │ │ └── src │ │ │ │ └── Print.c │ │ ├── SecurityHI │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── SecurityHI │ │ │ │ │ └── SecurityHI.h │ │ │ └── src │ │ │ │ └── SecurityHI.c │ │ ├── SpeechRecognition │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── SpeechRecognition │ │ │ │ │ └── SpeechRecognition.h │ │ │ └── src │ │ │ │ └── SpeechRecognition.c │ │ ├── include │ │ │ └── Carbon │ │ │ │ └── Carbon.h │ │ └── src │ │ │ └── Carbon.c │ ├── CloudKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CloudKit │ │ │ │ ├── APSConnectionDelegate.h │ │ │ │ ├── C2RequestDelegate.h │ │ │ │ ├── CKAPSMachServiceConnectionDelegate.h │ │ │ │ ├── CKAPSMachServiceConnectionKey.h │ │ │ │ ├── CKAcceptSharesOperation.h │ │ │ │ ├── CKAcceptSharesOperationInfo.h │ │ │ │ ├── CKAccountInfo.h │ │ │ │ ├── CKAccountOverrideInfo.h │ │ │ │ ├── CKAggregateExpressionValidator.h │ │ │ │ ├── CKAggregateZonePCSOperation.h │ │ │ │ ├── CKAggregateZonePCSOperationInfo.h │ │ │ │ ├── CKAllPredicateValidator.h │ │ │ │ ├── CKAnyPredicateValidator.h │ │ │ │ ├── CKApplicationPermissionGroup.h │ │ │ │ ├── CKArchiveRecordsOperation.h │ │ │ │ ├── CKArchiveRecordsOperationInfo.h │ │ │ │ ├── CKArchivedAnchoredPackage.h │ │ │ │ ├── CKAsset.h │ │ │ │ ├── CKAssetCopyInfo.h │ │ │ │ ├── CKAssetDownloadPreauthorization.h │ │ │ │ ├── CKAssetReference.h │ │ │ │ ├── CKAssetRepairOperationUtilities.h │ │ │ │ ├── CKAssetRepairScheduler.h │ │ │ │ ├── CKAssetRepairSchedulerDelegate.h │ │ │ │ ├── CKAssetRereferenceInfo.h │ │ │ │ ├── CKAssetReuploadExpectedProperties.h │ │ │ │ ├── CKAssetTransferOptions.h │ │ │ │ ├── CKAssetUploadRequestMetadata.h │ │ │ │ ├── CKAutoBugCaptureMetadata.h │ │ │ │ ├── CKBehaviorOptions.h │ │ │ │ ├── CKBlockingAsyncQueue.h │ │ │ │ ├── CKCodeFunctionInvokeOperation.h │ │ │ │ ├── CKCodeFunctionInvokeOperationInfo.h │ │ │ │ ├── CKComparisonModifierValidator.h │ │ │ │ ├── CKComparisonOperatorValidator.h │ │ │ │ ├── CKComparisonOptionsValidator.h │ │ │ │ ├── CKComparisonPredicateValidator.h │ │ │ │ ├── CKCompleteParticipantVettingOperation.h │ │ │ │ ├── CKCompleteParticipantVettingOperationInfo.h │ │ │ │ ├── CKCompoundSubpredicateValidator.h │ │ │ │ ├── CKCompoundTypePredicateValidator.h │ │ │ │ ├── CKConstantValueExpressionValidator.h │ │ │ │ ├── CKContactsSupport.h │ │ │ │ ├── CKContainer.h │ │ │ │ ├── CKContainerID.h │ │ │ │ ├── CKContainerOptions.h │ │ │ │ ├── CKContainerSetupInfo.h │ │ │ │ ├── CKContainerXPCProxy.h │ │ │ │ ├── CKContainer_Private.h │ │ │ │ ├── CKCustomBlockValidator.h │ │ │ │ ├── CKDCancelToken.h │ │ │ │ ├── CKDCancelling.h │ │ │ │ ├── CKDPDate.h │ │ │ │ ├── CKDPIdentifier.h │ │ │ │ ├── CKDPLocationCoordinate.h │ │ │ │ ├── CKDPRecordFieldValueEncryptedValue.h │ │ │ │ ├── CKDPRecordIdentifier.h │ │ │ │ ├── CKDPRecordReference.h │ │ │ │ ├── CKDPRecordZoneIdentifier.h │ │ │ │ ├── CKDPStreamingAssetFooter.h │ │ │ │ ├── CKDatabase.h │ │ │ │ ├── CKDatabaseNotification.h │ │ │ │ ├── CKDatabaseOperation.h │ │ │ │ ├── CKDatabaseOperationInfo.h │ │ │ │ ├── CKDatabaseSubscription.h │ │ │ │ ├── CKDeclarativePredicateValidator.h │ │ │ │ ├── CKDeviceToDeviceShareInvitationToken.h │ │ │ │ ├── CKDiscoverAllContactsOperation.h │ │ │ │ ├── CKDiscoverAllUserIdentitiesOperation.h │ │ │ │ ├── CKDiscoverUserIdentitiesOperation.h │ │ │ │ ├── CKDiscoverUserIdentitiesOperationInfo.h │ │ │ │ ├── CKDiscoverUserInfosOperation.h │ │ │ │ ├── CKDiscoveredUserInfo.h │ │ │ │ ├── CKDiscretionaryOptions.h │ │ │ │ ├── CKEncryptedData.h │ │ │ │ ├── CKEncryptedDate.h │ │ │ │ ├── CKEncryptedDateArray.h │ │ │ │ ├── CKEncryptedDouble.h │ │ │ │ ├── CKEncryptedDoubleArray.h │ │ │ │ ├── CKEncryptedEmptyArray.h │ │ │ │ ├── CKEncryptedLocation.h │ │ │ │ ├── CKEncryptedLocationArray.h │ │ │ │ ├── CKEncryptedLongLong.h │ │ │ │ ├── CKEncryptedLongLongArray.h │ │ │ │ ├── CKEncryptedRecordValueStore.h │ │ │ │ ├── CKEncryptedReference.h │ │ │ │ ├── CKEncryptedString.h │ │ │ │ ├── CKEncryptedStringArray.h │ │ │ │ ├── CKEvaluatedObjectExpressionValidator.h │ │ │ │ ├── CKEventMetric.h │ │ │ │ ├── CKEventMetricInfo.h │ │ │ │ ├── CKEventOperationGroupInfo.h │ │ │ │ ├── CKEventOperationInfo.h │ │ │ │ ├── CKException.h │ │ │ │ ├── CKFetchArchivedRecordsOperation.h │ │ │ │ ├── CKFetchArchivedRecordsOperationInfo.h │ │ │ │ ├── CKFetchArchivedRecordsOptions.h │ │ │ │ ├── CKFetchDatabaseChangesOperation.h │ │ │ │ ├── CKFetchDatabaseChangesOperationInfo.h │ │ │ │ ├── CKFetchDatabaseChangesOperationResult.h │ │ │ │ ├── CKFetchNotificationChangesOperation.h │ │ │ │ ├── CKFetchNotificationChangesOperationInfo.h │ │ │ │ ├── CKFetchNotificationChangesOperationResult.h │ │ │ │ ├── CKFetchRecordChangesOperation.h │ │ │ │ ├── CKFetchRecordChangesOperationResult.h │ │ │ │ ├── CKFetchRecordVersionsOperation.h │ │ │ │ ├── CKFetchRecordVersionsOperationInfo.h │ │ │ │ ├── CKFetchRecordZoneChangesConfiguration.h │ │ │ │ ├── CKFetchRecordZoneChangesOperation.h │ │ │ │ ├── CKFetchRecordZoneChangesOperationInfo.h │ │ │ │ ├── CKFetchRecordZoneChangesOptions.h │ │ │ │ ├── CKFetchRecordZonesOperation.h │ │ │ │ ├── CKFetchRecordZonesOperationInfo.h │ │ │ │ ├── CKFetchRecordsAssetInfo.h │ │ │ │ ├── CKFetchRecordsOperation.h │ │ │ │ ├── CKFetchRecordsOperationInfo.h │ │ │ │ ├── CKFetchShareMetadataOperation.h │ │ │ │ ├── CKFetchShareMetadataOperationInfo.h │ │ │ │ ├── CKFetchShareParticipantKeyOperation.h │ │ │ │ ├── CKFetchShareParticipantKeyOperationInfo.h │ │ │ │ ├── CKFetchShareParticipantsOperation.h │ │ │ │ ├── CKFetchShareParticipantsOperationInfo.h │ │ │ │ ├── CKFetchSubscriptionsOperation.h │ │ │ │ ├── CKFetchSubscriptionsOperationInfo.h │ │ │ │ ├── CKFetchUserQuotaOperation.h │ │ │ │ ├── CKFetchUserQuotaOperationResult.h │ │ │ │ ├── CKFetchWebAuthTokenOperation.h │ │ │ │ ├── CKFetchWebAuthTokenOperationInfo.h │ │ │ │ ├── CKFetchWebAuthTokenOperationResult.h │ │ │ │ ├── CKFetchWhitelistedBundleIDsOperation.h │ │ │ │ ├── CKFetchWhitelistedBundleIDsOperationResult.h │ │ │ │ ├── CKFileMetadata.h │ │ │ │ ├── CKFileOpenInfo.h │ │ │ │ ├── CKFileOpenResult.h │ │ │ │ ├── CKFlipFlopPredicateValidator.h │ │ │ │ ├── CKFlowControl.h │ │ │ │ ├── CKFunctionExpressionValidator.h │ │ │ │ ├── CKInitiateParticipantVettingOperation.h │ │ │ │ ├── CKInitiateParticipantVettingOperationInfo.h │ │ │ │ ├── CKInternalError.h │ │ │ │ ├── CKKeyPathExpressionValidator.h │ │ │ │ ├── CKKindOfClassValidator.h │ │ │ │ ├── CKKindOfCollectionClassValidator.h │ │ │ │ ├── CKLegacyPredicateValidator.h │ │ │ │ ├── CKLocationSortDescriptor.h │ │ │ │ ├── CKLogFacilityWrapper.h │ │ │ │ ├── CKMarkAssetBrokenOperation.h │ │ │ │ ├── CKMarkAssetBrokenOperationInfo.h │ │ │ │ ├── CKMarkNotificationsReadOperation.h │ │ │ │ ├── CKMarkNotificationsReadOperationInfo.h │ │ │ │ ├── CKMetric.h │ │ │ │ ├── CKModifyBadgeOperation.h │ │ │ │ ├── CKModifyBadgeOperationInfo.h │ │ │ │ ├── CKModifyRecordAccessOperation.h │ │ │ │ ├── CKModifyRecordAccessOperationInfo.h │ │ │ │ ├── CKModifyRecordZonesOperation.h │ │ │ │ ├── CKModifyRecordZonesOperationInfo.h │ │ │ │ ├── CKModifyRecordsOperation.h │ │ │ │ ├── CKModifyRecordsOperationInfo.h │ │ │ │ ├── CKModifySubscriptionsOperation.h │ │ │ │ ├── CKModifySubscriptionsOperationInfo.h │ │ │ │ ├── CKModifyWebSharingOperation.h │ │ │ │ ├── CKModifyWebSharingOperationInfo.h │ │ │ │ ├── CKNilValidator.h │ │ │ │ ├── CKNotification.h │ │ │ │ ├── CKNotificationID.h │ │ │ │ ├── CKNotificationInfo.h │ │ │ │ ├── CKNotificationListener.h │ │ │ │ ├── CKObjCClass.h │ │ │ │ ├── CKObjCProperty.h │ │ │ │ ├── CKObjCType.h │ │ │ │ ├── CKObject.h │ │ │ │ ├── CKObjectValidating.h │ │ │ │ ├── CKOperation.h │ │ │ │ ├── CKOperationCallbackManager.h │ │ │ │ ├── CKOperationConfiguration.h │ │ │ │ ├── CKOperationFlowControlInfo.h │ │ │ │ ├── CKOperationFlowControlManager.h │ │ │ │ ├── CKOperationGroup.h │ │ │ │ ├── CKOperationGroupSystemImposedInfo.h │ │ │ │ ├── CKOperationGroupSystemImposedInfoConfiguration.h │ │ │ │ ├── CKOperationInfo.h │ │ │ │ ├── CKOperationMMCSRequestOptions.h │ │ │ │ ├── CKOperationMetrics.h │ │ │ │ ├── CKOperationResult.h │ │ │ │ ├── CKPCSDiagnosticInformation.h │ │ │ │ ├── CKPackage.h │ │ │ │ ├── CKPackageDB.h │ │ │ │ ├── CKPackageDBDelegate.h │ │ │ │ ├── CKPackageItem.h │ │ │ │ ├── CKPackageSection.h │ │ │ │ ├── CKPackageUploadRequestMetadata.h │ │ │ │ ├── CKPlaceholderOperation.h │ │ │ │ ├── CKPredicateValidator.h │ │ │ │ ├── CKPredicateValidatorInstance.h │ │ │ │ ├── CKPrettyError.h │ │ │ │ ├── CKPropertyCoding.h │ │ │ │ ├── CKPublicKey.h │ │ │ │ ├── CKPublishAssetsOperation.h │ │ │ │ ├── CKPublishAssetsOperationInfo.h │ │ │ │ ├── CKQuery.h │ │ │ │ ├── CKQueryCursor.h │ │ │ │ ├── CKQueryNotification.h │ │ │ │ ├── CKQueryOperation.h │ │ │ │ ├── CKQueryOperationInfo.h │ │ │ │ ├── CKQueryOperationResult.h │ │ │ │ ├── CKQuerySubscription.h │ │ │ │ ├── CKRecord.h │ │ │ │ ├── CKRecordGraph.h │ │ │ │ ├── CKRecordGraphNode.h │ │ │ │ ├── CKRecordID.h │ │ │ │ ├── CKRecordKeyValueSetting.h │ │ │ │ ├── CKRecordValue.h │ │ │ │ ├── CKRecordValueStore.h │ │ │ │ ├── CKRecordZone.h │ │ │ │ ├── CKRecordZoneID.h │ │ │ │ ├── CKRecordZoneNotification.h │ │ │ │ ├── CKRecordZoneSubscription.h │ │ │ │ ├── CKRecursivePredicateValidator.h │ │ │ │ ├── CKReference.h │ │ │ │ ├── CKRepairAssetsOperation.h │ │ │ │ ├── CKRepairAssetsOperationInfo.h │ │ │ │ ├── CKRepairZonePCSOperation.h │ │ │ │ ├── CKRepairZonePCSOperationInfo.h │ │ │ │ ├── CKRequestAssetOperation.h │ │ │ │ ├── CKRequestInfo.h │ │ │ │ ├── CKSQLite.h │ │ │ │ ├── CKSQLiteDelegate.h │ │ │ │ ├── CKSQLiteError.h │ │ │ │ ├── CKSQLiteItem.h │ │ │ │ ├── CKSQLitePool.h │ │ │ │ ├── CKSQLiteStatement.h │ │ │ │ ├── CKSQLiteStatementEnumerator.h │ │ │ │ ├── CKScheduler.h │ │ │ │ ├── CKSchedulerActivity.h │ │ │ │ ├── CKServerChangeToken.h │ │ │ │ ├── CKShare.h │ │ │ │ ├── CKShareMetadata.h │ │ │ │ ├── CKShareParticipant.h │ │ │ │ ├── CKShortDescription.h │ │ │ │ ├── CKSignatureGenerator.h │ │ │ │ ├── CKStreamingAsset.h │ │ │ │ ├── CKStreamingAssetAppendContext.h │ │ │ │ ├── CKStringValueValidator.h │ │ │ │ ├── CKSubscription.h │ │ │ │ ├── CKSubscriptionInfo.h │ │ │ │ ├── CKSyncEngine.h │ │ │ │ ├── CKSyncEngineBatch.h │ │ │ │ ├── CKSyncEngineDataSource.h │ │ │ │ ├── CKSyncEngineDataSourcePrivate.h │ │ │ │ ├── CKSyncEngineFetchChangesOperation.h │ │ │ │ ├── CKSyncEngineMetadata.h │ │ │ │ ├── CKSyncEngineModifyRecordBatchesOperation.h │ │ │ │ ├── CKSyncEngineRecordModification.h │ │ │ │ ├── CKSyncRequestOperation.h │ │ │ │ ├── CKSyncingClientInfo.h │ │ │ │ ├── CKTruePredicateValidator.h │ │ │ │ ├── CKTrueValidator.h │ │ │ │ ├── CKUploadRequestConfiguration.h │ │ │ │ ├── CKUploadRequestManager.h │ │ │ │ ├── CKUploadRequestManagerInternals.h │ │ │ │ ├── CKUploadRequestManagerResponseActionThrottler.h │ │ │ │ ├── CKUploadRequestManagerResponseActionThrottlerMetadata.h │ │ │ │ ├── CKUploadRequestManagerStateMachine.h │ │ │ │ ├── CKUploadRequestMetadata.h │ │ │ │ ├── CKUploadRequestPersistentStore.h │ │ │ │ ├── CKUserIdentity.h │ │ │ │ ├── CKUserIdentityLookupInfo.h │ │ │ │ ├── CKUserNotificationUtilities.h │ │ │ │ ├── CKXPCClient.h │ │ │ │ ├── CKXPCDaemon.h │ │ │ │ ├── CKXPCDiscretionaryClient.h │ │ │ │ ├── CKXPCDiscretionaryDaemon.h │ │ │ │ ├── CKXPCSuitableString.h │ │ │ │ ├── CKZonePCSDiagnosticInformation.h │ │ │ │ ├── CloudKit.h │ │ │ │ └── PKPushRegistryDelegate.h │ │ └── src │ │ │ ├── CKAPSMachServiceConnectionDelegate.m │ │ │ ├── CKAPSMachServiceConnectionKey.m │ │ │ ├── CKAcceptSharesOperation.m │ │ │ ├── CKAcceptSharesOperationInfo.m │ │ │ ├── CKAccountInfo.m │ │ │ ├── CKAccountOverrideInfo.m │ │ │ ├── CKAggregateExpressionValidator.m │ │ │ ├── CKAggregateZonePCSOperation.m │ │ │ ├── CKAggregateZonePCSOperationInfo.m │ │ │ ├── CKAllPredicateValidator.m │ │ │ ├── CKAnyPredicateValidator.m │ │ │ ├── CKApplicationPermissionGroup.m │ │ │ ├── CKArchiveRecordsOperation.m │ │ │ ├── CKArchiveRecordsOperationInfo.m │ │ │ ├── CKArchivedAnchoredPackage.m │ │ │ ├── CKAsset.m │ │ │ ├── CKAssetCopyInfo.m │ │ │ ├── CKAssetDownloadPreauthorization.m │ │ │ ├── CKAssetReference.m │ │ │ ├── CKAssetRepairOperationUtilities.m │ │ │ ├── CKAssetRepairScheduler.m │ │ │ ├── CKAssetRereferenceInfo.m │ │ │ ├── CKAssetReuploadExpectedProperties.m │ │ │ ├── CKAssetTransferOptions.m │ │ │ ├── CKAssetUploadRequestMetadata.m │ │ │ ├── CKAutoBugCaptureMetadata.m │ │ │ ├── CKBehaviorOptions.m │ │ │ ├── CKBlockingAsyncQueue.m │ │ │ ├── CKCodeFunctionInvokeOperation.m │ │ │ ├── CKCodeFunctionInvokeOperationInfo.m │ │ │ ├── CKComparisonModifierValidator.m │ │ │ ├── CKComparisonOperatorValidator.m │ │ │ ├── CKComparisonOptionsValidator.m │ │ │ ├── CKComparisonPredicateValidator.m │ │ │ ├── CKCompleteParticipantVettingOperation.m │ │ │ ├── CKCompleteParticipantVettingOperationInfo.m │ │ │ ├── CKCompoundSubpredicateValidator.m │ │ │ ├── CKCompoundTypePredicateValidator.m │ │ │ ├── CKConstantValueExpressionValidator.m │ │ │ ├── CKContactsSupport.m │ │ │ ├── CKContainer.m │ │ │ ├── CKContainerID.m │ │ │ ├── CKContainerOptions.m │ │ │ ├── CKContainerSetupInfo.m │ │ │ ├── CKContainerXPCProxy.m │ │ │ ├── CKCustomBlockValidator.m │ │ │ ├── CKDCancelToken.m │ │ │ ├── CKDPDate.m │ │ │ ├── CKDPIdentifier.m │ │ │ ├── CKDPLocationCoordinate.m │ │ │ ├── CKDPRecordFieldValueEncryptedValue.m │ │ │ ├── CKDPRecordIdentifier.m │ │ │ ├── CKDPRecordReference.m │ │ │ ├── CKDPRecordZoneIdentifier.m │ │ │ ├── CKDPStreamingAssetFooter.m │ │ │ ├── CKDatabase.m │ │ │ ├── CKDatabaseNotification.m │ │ │ ├── CKDatabaseOperation.m │ │ │ ├── CKDatabaseOperationInfo.m │ │ │ ├── CKDatabaseSubscription.m │ │ │ ├── CKDeclarativePredicateValidator.m │ │ │ ├── CKDeviceToDeviceShareInvitationToken.m │ │ │ ├── CKDiscoverAllContactsOperation.m │ │ │ ├── CKDiscoverAllUserIdentitiesOperation.m │ │ │ ├── CKDiscoverUserIdentitiesOperation.m │ │ │ ├── CKDiscoverUserIdentitiesOperationInfo.m │ │ │ ├── CKDiscoverUserInfosOperation.m │ │ │ ├── CKDiscoveredUserInfo.m │ │ │ ├── CKDiscretionaryOptions.m │ │ │ ├── CKEncryptedData.m │ │ │ ├── CKEncryptedDate.m │ │ │ ├── CKEncryptedDateArray.m │ │ │ ├── CKEncryptedDouble.m │ │ │ ├── CKEncryptedDoubleArray.m │ │ │ ├── CKEncryptedEmptyArray.m │ │ │ ├── CKEncryptedLocation.m │ │ │ ├── CKEncryptedLocationArray.m │ │ │ ├── CKEncryptedLongLong.m │ │ │ ├── CKEncryptedLongLongArray.m │ │ │ ├── CKEncryptedRecordValueStore.m │ │ │ ├── CKEncryptedReference.m │ │ │ ├── CKEncryptedString.m │ │ │ ├── CKEncryptedStringArray.m │ │ │ ├── CKEvaluatedObjectExpressionValidator.m │ │ │ ├── CKEventMetric.m │ │ │ ├── CKEventMetricInfo.m │ │ │ ├── CKEventOperationGroupInfo.m │ │ │ ├── CKEventOperationInfo.m │ │ │ ├── CKException.m │ │ │ ├── CKFetchArchivedRecordsOperation.m │ │ │ ├── CKFetchArchivedRecordsOperationInfo.m │ │ │ ├── CKFetchArchivedRecordsOptions.m │ │ │ ├── CKFetchDatabaseChangesOperation.m │ │ │ ├── CKFetchDatabaseChangesOperationInfo.m │ │ │ ├── CKFetchDatabaseChangesOperationResult.m │ │ │ ├── CKFetchNotificationChangesOperation.m │ │ │ ├── CKFetchNotificationChangesOperationInfo.m │ │ │ ├── CKFetchNotificationChangesOperationResult.m │ │ │ ├── CKFetchRecordChangesOperation.m │ │ │ ├── CKFetchRecordChangesOperationResult.m │ │ │ ├── CKFetchRecordVersionsOperation.m │ │ │ ├── CKFetchRecordVersionsOperationInfo.m │ │ │ ├── CKFetchRecordZoneChangesConfiguration.m │ │ │ ├── CKFetchRecordZoneChangesOperation.m │ │ │ ├── CKFetchRecordZoneChangesOperationInfo.m │ │ │ ├── CKFetchRecordZoneChangesOptions.m │ │ │ ├── CKFetchRecordZonesOperation.m │ │ │ ├── CKFetchRecordZonesOperationInfo.m │ │ │ ├── CKFetchRecordsAssetInfo.m │ │ │ ├── CKFetchRecordsOperation.m │ │ │ ├── CKFetchRecordsOperationInfo.m │ │ │ ├── CKFetchShareMetadataOperation.m │ │ │ ├── CKFetchShareMetadataOperationInfo.m │ │ │ ├── CKFetchShareParticipantKeyOperation.m │ │ │ ├── CKFetchShareParticipantKeyOperationInfo.m │ │ │ ├── CKFetchShareParticipantsOperation.m │ │ │ ├── CKFetchShareParticipantsOperationInfo.m │ │ │ ├── CKFetchSubscriptionsOperation.m │ │ │ ├── CKFetchSubscriptionsOperationInfo.m │ │ │ ├── CKFetchUserQuotaOperation.m │ │ │ ├── CKFetchUserQuotaOperationResult.m │ │ │ ├── CKFetchWebAuthTokenOperation.m │ │ │ ├── CKFetchWebAuthTokenOperationInfo.m │ │ │ ├── CKFetchWebAuthTokenOperationResult.m │ │ │ ├── CKFetchWhitelistedBundleIDsOperation.m │ │ │ ├── CKFetchWhitelistedBundleIDsOperationResult.m │ │ │ ├── CKFileMetadata.m │ │ │ ├── CKFileOpenInfo.m │ │ │ ├── CKFileOpenResult.m │ │ │ ├── CKFlipFlopPredicateValidator.m │ │ │ ├── CKFlowControl.m │ │ │ ├── CKFunctionExpressionValidator.m │ │ │ ├── CKInitiateParticipantVettingOperation.m │ │ │ ├── CKInitiateParticipantVettingOperationInfo.m │ │ │ ├── CKInternalError.m │ │ │ ├── CKKeyPathExpressionValidator.m │ │ │ ├── CKKindOfClassValidator.m │ │ │ ├── CKKindOfCollectionClassValidator.m │ │ │ ├── CKLegacyPredicateValidator.m │ │ │ ├── CKLocationSortDescriptor.m │ │ │ ├── CKLogFacilityWrapper.m │ │ │ ├── CKMarkAssetBrokenOperation.m │ │ │ ├── CKMarkAssetBrokenOperationInfo.m │ │ │ ├── CKMarkNotificationsReadOperation.m │ │ │ ├── CKMarkNotificationsReadOperationInfo.m │ │ │ ├── CKMetric.m │ │ │ ├── CKModifyBadgeOperation.m │ │ │ ├── CKModifyBadgeOperationInfo.m │ │ │ ├── CKModifyRecordAccessOperation.m │ │ │ ├── CKModifyRecordAccessOperationInfo.m │ │ │ ├── CKModifyRecordZonesOperation.m │ │ │ ├── CKModifyRecordZonesOperationInfo.m │ │ │ ├── CKModifyRecordsOperation.m │ │ │ ├── CKModifyRecordsOperationInfo.m │ │ │ ├── CKModifySubscriptionsOperation.m │ │ │ ├── CKModifySubscriptionsOperationInfo.m │ │ │ ├── CKModifyWebSharingOperation.m │ │ │ ├── CKModifyWebSharingOperationInfo.m │ │ │ ├── CKNilValidator.m │ │ │ ├── CKNotification.m │ │ │ ├── CKNotificationID.m │ │ │ ├── CKNotificationInfo.m │ │ │ ├── CKNotificationListener.m │ │ │ ├── CKObjCClass.m │ │ │ ├── CKObjCProperty.m │ │ │ ├── CKObjCType.m │ │ │ ├── CKObject.m │ │ │ ├── CKOperation.m │ │ │ ├── CKOperationCallbackManager.m │ │ │ ├── CKOperationConfiguration.m │ │ │ ├── CKOperationFlowControlInfo.m │ │ │ ├── CKOperationFlowControlManager.m │ │ │ ├── CKOperationGroup.m │ │ │ ├── CKOperationGroupSystemImposedInfo.m │ │ │ ├── CKOperationGroupSystemImposedInfoConfiguration.m │ │ │ ├── CKOperationInfo.m │ │ │ ├── CKOperationMMCSRequestOptions.m │ │ │ ├── CKOperationMetrics.m │ │ │ ├── CKOperationResult.m │ │ │ ├── CKPCSDiagnosticInformation.m │ │ │ ├── CKPackage.m │ │ │ ├── CKPackageDB.m │ │ │ ├── CKPackageDBDelegate.m │ │ │ ├── CKPackageItem.m │ │ │ ├── CKPackageSection.m │ │ │ ├── CKPackageUploadRequestMetadata.m │ │ │ ├── CKPlaceholderOperation.m │ │ │ ├── CKPredicateValidator.m │ │ │ ├── CKPredicateValidatorInstance.m │ │ │ ├── CKPrettyError.m │ │ │ ├── CKPublicKey.m │ │ │ ├── CKPublishAssetsOperation.m │ │ │ ├── CKPublishAssetsOperationInfo.m │ │ │ ├── CKQuery.m │ │ │ ├── CKQueryCursor.m │ │ │ ├── CKQueryNotification.m │ │ │ ├── CKQueryOperation.m │ │ │ ├── CKQueryOperationInfo.m │ │ │ ├── CKQueryOperationResult.m │ │ │ ├── CKQuerySubscription.m │ │ │ ├── CKRecord.m │ │ │ ├── CKRecordGraph.m │ │ │ ├── CKRecordGraphNode.m │ │ │ ├── CKRecordID.m │ │ │ ├── CKRecordValueStore.m │ │ │ ├── CKRecordZone.m │ │ │ ├── CKRecordZoneID.m │ │ │ ├── CKRecordZoneNotification.m │ │ │ ├── CKRecordZoneSubscription.m │ │ │ ├── CKRecursivePredicateValidator.m │ │ │ ├── CKReference.m │ │ │ ├── CKRepairAssetsOperation.m │ │ │ ├── CKRepairAssetsOperationInfo.m │ │ │ ├── CKRepairZonePCSOperation.m │ │ │ ├── CKRepairZonePCSOperationInfo.m │ │ │ ├── CKRequestAssetOperation.m │ │ │ ├── CKRequestInfo.m │ │ │ ├── CKSQLite.m │ │ │ ├── CKSQLiteError.m │ │ │ ├── CKSQLitePool.m │ │ │ ├── CKSQLiteStatement.m │ │ │ ├── CKSQLiteStatementEnumerator.m │ │ │ ├── CKScheduler.m │ │ │ ├── CKSchedulerActivity.m │ │ │ ├── CKServerChangeToken.m │ │ │ ├── CKShare.m │ │ │ ├── CKShareMetadata.m │ │ │ ├── CKShareParticipant.m │ │ │ ├── CKSignatureGenerator.m │ │ │ ├── CKStreamingAsset.m │ │ │ ├── CKStreamingAssetAppendContext.m │ │ │ ├── CKStringValueValidator.m │ │ │ ├── CKSubscription.m │ │ │ ├── CKSubscriptionInfo.m │ │ │ ├── CKSyncEngine.m │ │ │ ├── CKSyncEngineBatch.m │ │ │ ├── CKSyncEngineFetchChangesOperation.m │ │ │ ├── CKSyncEngineMetadata.m │ │ │ ├── CKSyncEngineModifyRecordBatchesOperation.m │ │ │ ├── CKSyncEngineRecordModification.m │ │ │ ├── CKSyncRequestOperation.m │ │ │ ├── CKSyncingClientInfo.m │ │ │ ├── CKTruePredicateValidator.m │ │ │ ├── CKTrueValidator.m │ │ │ ├── CKUploadRequestConfiguration.m │ │ │ ├── CKUploadRequestManager.m │ │ │ ├── CKUploadRequestManagerInternals.m │ │ │ ├── CKUploadRequestManagerResponseActionThrottler.m │ │ │ ├── CKUploadRequestManagerResponseActionThrottlerMetadata.m │ │ │ ├── CKUploadRequestManagerStateMachine.m │ │ │ ├── CKUploadRequestMetadata.m │ │ │ ├── CKUploadRequestPersistentStore.m │ │ │ ├── CKUserIdentity.m │ │ │ ├── CKUserIdentityLookupInfo.m │ │ │ ├── CKUserNotificationUtilities.m │ │ │ ├── CKZonePCSDiagnosticInformation.m │ │ │ └── CloudKit.m │ ├── Collaboration │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Collaboration │ │ │ │ ├── CBGroupIdentity.h │ │ │ │ ├── CBIdentity.h │ │ │ │ ├── CBIdentityAuthority.h │ │ │ │ ├── CBIdentityPicker.h │ │ │ │ ├── CBIdentityQuery.h │ │ │ │ ├── CBUserIdentity.h │ │ │ │ ├── Collaboration.h │ │ │ │ ├── IdentityDataSource.h │ │ │ │ ├── IdentityPickerInternal.h │ │ │ │ ├── ListObject.h │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ ├── NSTableViewDataSource.h │ │ │ │ ├── NSTableViewDelegate.h │ │ │ │ └── SidebarDataSource.h │ │ └── src │ │ │ ├── CBGroupIdentity.m │ │ │ ├── CBIdentity.m │ │ │ ├── CBIdentityAuthority.m │ │ │ ├── CBIdentityPicker.m │ │ │ ├── CBIdentityQuery.m │ │ │ ├── CBUserIdentity.m │ │ │ ├── Collaboration.m │ │ │ ├── IdentityDataSource.m │ │ │ ├── IdentityPickerInternal.m │ │ │ ├── ListObject.m │ │ │ └── SidebarDataSource.m │ ├── ColorSync │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ColorSync │ │ │ │ └── ColorSync.h │ │ └── src │ │ │ └── ColorSync.c │ ├── Contacts │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Contacts │ │ │ │ ├── CN.h │ │ │ │ ├── CNABRemoteObjectsConverter.h │ │ │ │ ├── CNAbstractActivityAlertDescription.h │ │ │ │ ├── CNAbstractPropertyDescription.h │ │ │ │ ├── CNAccount.h │ │ │ │ ├── CNAccountIdentifierDescription.h │ │ │ │ ├── CNActivityAlert.h │ │ │ │ ├── CNAddressFormats.h │ │ │ │ ├── CNAggregateContactStore.h │ │ │ │ ├── CNAggregateKeyDescriptor.h │ │ │ │ ├── CNAuthorization.h │ │ │ │ ├── CNBirthdayDescription.h │ │ │ │ ├── CNCDAccessAuthorization.h │ │ │ │ ├── CNCDAllContactsPredicate.h │ │ │ │ ├── CNCDAllContainersPredicate.h │ │ │ │ ├── CNCDAllGroupsPredicate.h │ │ │ │ ├── CNCDContactFetchRequestBuilder.h │ │ │ │ ├── CNCDContactFetchRequestDescription.h │ │ │ │ ├── CNCDContactFetcher.h │ │ │ │ ├── CNCDContactPredicate.h │ │ │ │ ├── CNCDContactSaveExecutor.h │ │ │ │ ├── CNCDContactWithNamePredicate.h │ │ │ │ ├── CNCDContactsInContainerPredicate.h │ │ │ │ ├── CNCDContactsInGroupPredicate.h │ │ │ │ ├── CNCDContactsLinkedToContactPredicate.h │ │ │ │ ├── CNCDContactsMatchingPredicate.h │ │ │ │ ├── CNCDContainerFetcher.h │ │ │ │ ├── CNCDContainerPredicate.h │ │ │ │ ├── CNCDContainerScopedContactPredicate.h │ │ │ │ ├── CNCDContainerScopedGroupPredicate.h │ │ │ │ ├── CNCDCustomPropertySaveExecutor.h │ │ │ │ ├── CNCDCustomPropertyValueFetcher.h │ │ │ │ ├── CNCDGroupFetcher.h │ │ │ │ ├── CNCDGroupMembershipSaveExecutor.h │ │ │ │ ├── CNCDGroupNamePredicateCreationHelper.h │ │ │ │ ├── CNCDGroupPredicate.h │ │ │ │ ├── CNCDGroupSaveExecutor.h │ │ │ │ ├── CNCDGroupsInContainerPredicate.h │ │ │ │ ├── CNCDGroupsWithIdentifiersPredicate.h │ │ │ │ ├── CNCDInfoFetcher.h │ │ │ │ ├── CNCDInfoSaveExecutor.h │ │ │ │ ├── CNCDMeContactFetcher.h │ │ │ │ ├── CNCDRecordSaveCache.h │ │ │ │ ├── CNCDSaveContext.h │ │ │ │ ├── CNCDSaveRequestExecutor.h │ │ │ │ ├── CNCDSmartGroupFetcher.h │ │ │ │ ├── CNCDSubgroupsInGroupPredicate.h │ │ │ │ ├── CNCalculatesContactDiff.h │ │ │ │ ├── CNCalculatesMultiValueDiff.h │ │ │ │ ├── CNCalendarURIsDescription.h │ │ │ │ ├── CNCallAlertDescription.h │ │ │ │ ├── CNCancelable.h │ │ │ │ ├── CNChangeHistoryAnchor.h │ │ │ │ ├── CNChangeHistoryContactChange.h │ │ │ │ ├── CNChangeHistoryFetchRequest.h │ │ │ │ ├── CNChangeHistoryGroupChange.h │ │ │ │ ├── CNChangeHistoryResult.h │ │ │ │ ├── CNChangeNotificationReceiver.h │ │ │ │ ├── CNChangeNotifierDarwinWrapper.h │ │ │ │ ├── CNChangeNotifierDistributedCenterWrapper.h │ │ │ │ ├── CNChangeNotifierWrapper.h │ │ │ │ ├── CNChangesNotifier.h │ │ │ │ ├── CNChangesNotifierProxy.h │ │ │ │ ├── CNCompoundMultiValuePropertyDescription.h │ │ │ │ ├── CNContact.h │ │ │ │ ├── CNContactAugmentation.h │ │ │ │ ├── CNContactChangeRequest.h │ │ │ │ ├── CNContactChangesFetcher.h │ │ │ │ ├── CNContactChangesNotifier.h │ │ │ │ ├── CNContactChangesObserverProxy.h │ │ │ │ ├── CNContactCoreDataMultiValueProperty.h │ │ │ │ ├── CNContactCoreDataProperty.h │ │ │ │ ├── CNContactDiff.h │ │ │ │ ├── CNContactFetchRequest.h │ │ │ │ ├── CNContactFormatter.h │ │ │ │ ├── CNContactFormatterSmartFetcher.h │ │ │ │ ├── CNContactKeyValueUpdate.h │ │ │ │ ├── CNContactKeyVector.h │ │ │ │ ├── CNContactMatchInfo.h │ │ │ │ ├── CNContactMatchSummarizer.h │ │ │ │ ├── CNContactMultiValueDiffUpdate.h │ │ │ │ ├── CNContactNameOrderImpl.h │ │ │ │ ├── CNContactNameSorting.h │ │ │ │ ├── CNContactProperty.h │ │ │ │ ├── CNContactRelation.h │ │ │ │ ├── CNContactRelationsDescription.h │ │ │ │ ├── CNContactSearchIndexFormatter.h │ │ │ │ ├── CNContactStore.h │ │ │ │ ├── CNContactSuggestionMatch.h │ │ │ │ ├── CNContactTypeDescription.h │ │ │ │ ├── CNContactUpdate.h │ │ │ │ ├── CNContactVCardParsedResultBuilder.h │ │ │ │ ├── CNContactVCardParsedResultBuilderFactory.h │ │ │ │ ├── CNContactVCardSerialization.h │ │ │ │ ├── CNContactVCardWritingAdapter.h │ │ │ │ ├── CNContactWithNamePredicate.h │ │ │ │ ├── CNContactsEnvironment.h │ │ │ │ ├── CNContactsLogger.h │ │ │ │ ├── CNContactsLoggerProvider.h │ │ │ │ ├── CNContactsLogging.h │ │ │ │ ├── CNContactsUserDefaults.h │ │ │ │ ├── CNContactsUserDefaultsX.h │ │ │ │ ├── CNContactsWithIdentifiersPredicate.h │ │ │ │ ├── CNContainer.h │ │ │ │ ├── CNContainerEnabledDescription.h │ │ │ │ ├── CNContainerIdentifierDescription.h │ │ │ │ ├── CNContainerIdentifiersPredicate.h │ │ │ │ ├── CNContainerNameDescription.h │ │ │ │ ├── CNContainerOfContactPredicate.h │ │ │ │ ├── CNContainerOfGroupPredicate.h │ │ │ │ ├── CNContainerPermissions.h │ │ │ │ ├── CNContainerPropertyDescription.h │ │ │ │ ├── CNContainerTypeDescription.h │ │ │ │ ├── CNCoreDataMapperX.h │ │ │ │ ├── CNCoreDataPropertyMapping.h │ │ │ │ ├── CNCountryInformation.h │ │ │ │ ├── CNCreationDateDescription.h │ │ │ │ ├── CNCropRectDescription.h │ │ │ │ ├── CNDataMapper.h │ │ │ │ ├── CNDataMapperContactStore.h │ │ │ │ ├── CNDate.h │ │ │ │ ├── CNDateComponentsEquivalence.h │ │ │ │ ├── CNDatesDescription.h │ │ │ │ ├── CNDepartmentDescription.h │ │ │ │ ├── CNDictionaryPolicy.h │ │ │ │ ├── CNDisplayNameOrderDescription.h │ │ │ │ ├── CNDonatedContactSanitizer.h │ │ │ │ ├── CNDonatedContactsPredicate.h │ │ │ │ ├── CNDonationMapper.h │ │ │ │ ├── CNDraggingContact.h │ │ │ │ ├── CNEmailAddressContactPredicate.h │ │ │ │ ├── CNEmailAddressesDescription.h │ │ │ │ ├── CNEncodedFetchCursor.h │ │ │ │ ├── CNErrorFactory.h │ │ │ │ ├── CNFamilyNameDescription.h │ │ │ │ ├── CNFamilyNameFirstNameOrder.h │ │ │ │ ├── CNFromABCDConversions.h │ │ │ │ ├── CNFullTextSearchContactPredicate.h │ │ │ │ ├── CNGivenNameDescription.h │ │ │ │ ├── CNGivenNameFirstNameOrder.h │ │ │ │ ├── CNGroup.h │ │ │ │ ├── CNIdentifierProvider.h │ │ │ │ ├── CNImageDataAvailableDescription.h │ │ │ │ ├── CNImageDataDescription.h │ │ │ │ ├── CNInstantMessageAddress.h │ │ │ │ ├── CNInstantMessageAddressContactPredicate.h │ │ │ │ ├── CNInstantMessageAddressesDescription.h │ │ │ │ ├── CNInternalIdentifierDescription.h │ │ │ │ ├── CNJobTitleDescription.h │ │ │ │ ├── CNKeyDescriptor.h │ │ │ │ ├── CNKeyDescriptor_Private.h │ │ │ │ ├── CNLDAPConnection.h │ │ │ │ ├── CNLDAPFetchRequest.h │ │ │ │ ├── CNLDAPPostalAddressTransform.h │ │ │ │ ├── CNLDAPPredicateRemapper.h │ │ │ │ ├── CNLDAPPredicateRemapping.h │ │ │ │ ├── CNLDAPPropertyDescription.h │ │ │ │ ├── CNLDAPQueryFilter.h │ │ │ │ ├── CNLDAPSearchBase.h │ │ │ │ ├── CNLDAPServices.h │ │ │ │ ├── CNLDAPTransforms.h │ │ │ │ ├── CNLabelValuePair.h │ │ │ │ ├── CNLabeledValue.h │ │ │ │ ├── CNLaunchServicesAdapter.h │ │ │ │ ├── CNLaunchServicesRemoteAdapter.h │ │ │ │ ├── CNLinkIdentifierDescription.h │ │ │ │ ├── CNLinkedContactsPredicate.h │ │ │ │ ├── CNMapsDataDescription.h │ │ │ │ ├── CNMeContactsPredicate.h │ │ │ │ ├── CNMiddleNameDescription.h │ │ │ │ ├── CNMockContactsLogger.h │ │ │ │ ├── CNMockLoggerProvider.h │ │ │ │ ├── CNMockSpotlightIndexingLogger.h │ │ │ │ ├── CNModificationDateDescription.h │ │ │ │ ├── CNMultiValueAddUpdate.h │ │ │ │ ├── CNMultiValueDiff.h │ │ │ │ ├── CNMultiValuePropertyDescription.h │ │ │ │ ├── CNMultiValueRemoveUpdate.h │ │ │ │ ├── CNMultiValueReorderUpdate.h │ │ │ │ ├── CNMultiValueReplaceUpdate.h │ │ │ │ ├── CNMultiValueSingleUpdate.h │ │ │ │ ├── CNMultiValueUpdate.h │ │ │ │ ├── CNMutableActivityAlert.h │ │ │ │ ├── CNMutableContact.h │ │ │ │ ├── CNMutableContactKeyVector.h │ │ │ │ ├── CNMutableContainer.h │ │ │ │ ├── CNMutableGroup.h │ │ │ │ ├── CNMutableInstantMessageAddress.h │ │ │ │ ├── CNMutablePostalAddress.h │ │ │ │ ├── CNMutableSaveResponse.h │ │ │ │ ├── CNMutableSocialProfile.h │ │ │ │ ├── CNNamePrefixDescription.h │ │ │ │ ├── CNNameSuffixDescription.h │ │ │ │ ├── CNNicknameNameDescription.h │ │ │ │ ├── CNNonGregorianBirthdayDescription.h │ │ │ │ ├── CNNoteDescription.h │ │ │ │ ├── CNObjectValidation.h │ │ │ │ ├── CNOrganizationNameDescription.h │ │ │ │ ├── CNPerContactPropertyKeyDescriptor.h │ │ │ │ ├── CNPermissivePolicy.h │ │ │ │ ├── CNPhoneDialer.h │ │ │ │ ├── CNPhoneNumber.h │ │ │ │ ├── CNPhoneNumberContactPredicate.h │ │ │ │ ├── CNPhoneNumbersDescription.h │ │ │ │ ├── CNPhonemeDataDescription.h │ │ │ │ ├── CNPhoneticFamilyNameDescription.h │ │ │ │ ├── CNPhoneticGivenNameDescription.h │ │ │ │ ├── CNPhoneticMiddleNameDescription.h │ │ │ │ ├── CNPhoneticOrganizationNameDescription.h │ │ │ │ ├── CNPolicy.h │ │ │ │ ├── CNPostalAddress.h │ │ │ │ ├── CNPostalAddressContactPredicate.h │ │ │ │ ├── CNPostalAddressFormatter.h │ │ │ │ ├── CNPostalAddressFormattingSpecification.h │ │ │ │ ├── CNPostalAddressesDescription.h │ │ │ │ ├── CNPredicate.h │ │ │ │ ├── CNPredicateValidator.h │ │ │ │ ├── CNPreferredApplePersonaIdentifierDescription.h │ │ │ │ ├── CNPreferredForImageDescription.h │ │ │ │ ├── CNPreferredForNameDescription.h │ │ │ │ ├── CNPreferredLikenessSourceDescription.h │ │ │ │ ├── CNPreviousFamilyNameDescription.h │ │ │ │ ├── CNPropertyDescription.h │ │ │ │ ├── CNRecordCoreDataPredicateMapping.h │ │ │ │ ├── CNRegulatoryLogger.h │ │ │ │ ├── CNReputationContactsAdapter.h │ │ │ │ ├── CNReputationCoreRecentsAdapter.h │ │ │ │ ├── CNReputationFutureBuilder.h │ │ │ │ ├── CNReputationHandle.h │ │ │ │ ├── CNReputationLogger.h │ │ │ │ ├── CNReputationResult.h │ │ │ │ ├── CNReputationStore.h │ │ │ │ ├── CNSaveRequest.h │ │ │ │ ├── CNSaveResponse.h │ │ │ │ ├── CNSearchIndexDescription.h │ │ │ │ ├── CNSecureCodingClassSets.h │ │ │ │ ├── CNSmartPropertyFetcher.h │ │ │ │ ├── CNSocialProfile.h │ │ │ │ ├── CNSocialProfileContactPredicate.h │ │ │ │ ├── CNSocialProfilesDescription.h │ │ │ │ ├── CNSortingFamilyNameDescription.h │ │ │ │ ├── CNSortingGivenNameDescription.h │ │ │ │ ├── CNSpotlightIndexingLogger.h │ │ │ │ ├── CNSuggested.h │ │ │ │ ├── CNSuggestedContactIdentifierPredicate.h │ │ │ │ ├── CNSuggestedContactPredicate.h │ │ │ │ ├── CNSuggestedContactStore.h │ │ │ │ ├── CNSuggestedSaveRequest.h │ │ │ │ ├── CNTCC.h │ │ │ │ ├── CNTCCServices.h │ │ │ │ ├── CNTestSmartFetcher.h │ │ │ │ ├── CNTextAlertDescription.h │ │ │ │ ├── CNThumbnailImageDataDescription.h │ │ │ │ ├── CNUnifiedContacts.h │ │ │ │ ├── CNUrlAddressesDescription.h │ │ │ │ ├── CNUuidIdentifierProvider.h │ │ │ │ ├── CNVCardConstantsMapping.h │ │ │ │ ├── CNVCardNameDataSource.h │ │ │ │ ├── CNVCardParsedResultBuilder.h │ │ │ │ ├── CNVCardParsedResultBuilderFactory.h │ │ │ │ ├── CNVCardPerson.h │ │ │ │ ├── CNValueOrigin.h │ │ │ │ ├── CNXPCDataMapper.h │ │ │ │ ├── CNXPCDataMapperProgressiveHandler.h │ │ │ │ ├── CNXPCDataMapperService.h │ │ │ │ ├── Contacts.h │ │ │ │ ├── NSItemProviderReading.h │ │ │ │ ├── NSItemProviderWriting.h │ │ │ │ ├── NSPredicateVisitor.h │ │ │ │ ├── ProgressiveResultsCancellationProtocol.h │ │ │ │ ├── ProgressiveResultsHandlerProtocol.h │ │ │ │ ├── _CNContactMatchingFetchRequestInfos.h │ │ │ │ ├── _CNContactsLogger.h │ │ │ │ ├── _CNLDAPAccumulatingPropertyDescription.h │ │ │ │ ├── _CNRegulatoryLogger.h │ │ │ │ ├── _CNReputationEmailAddressHandle.h │ │ │ │ ├── _CNReputationGenericHandle.h │ │ │ │ ├── _CNReputationPhoneNumberHandle.h │ │ │ │ └── _CNSpotlightIndexingLogger.h │ │ ├── manual.m │ │ └── src │ │ │ ├── CN.m │ │ │ ├── CNABRemoteObjectsConverter.m │ │ │ ├── CNAbstractActivityAlertDescription.m │ │ │ ├── CNAccount.m │ │ │ ├── CNAccountIdentifierDescription.m │ │ │ ├── CNActivityAlert.m │ │ │ ├── CNAddressFormats.m │ │ │ ├── CNAggregateContactStore.m │ │ │ ├── CNAggregateKeyDescriptor.m │ │ │ ├── CNAuthorization.m │ │ │ ├── CNBirthdayDescription.m │ │ │ ├── CNCDAccessAuthorization.m │ │ │ ├── CNCDAllContactsPredicate.m │ │ │ ├── CNCDAllContainersPredicate.m │ │ │ ├── CNCDAllGroupsPredicate.m │ │ │ ├── CNCDContactFetchRequestBuilder.m │ │ │ ├── CNCDContactFetchRequestDescription.m │ │ │ ├── CNCDContactFetcher.m │ │ │ ├── CNCDContactSaveExecutor.m │ │ │ ├── CNCDContactWithNamePredicate.m │ │ │ ├── CNCDContactsInContainerPredicate.m │ │ │ ├── CNCDContactsInGroupPredicate.m │ │ │ ├── CNCDContactsLinkedToContactPredicate.m │ │ │ ├── CNCDContactsMatchingPredicate.m │ │ │ ├── CNCDContainerFetcher.m │ │ │ ├── CNCDCustomPropertySaveExecutor.m │ │ │ ├── CNCDCustomPropertyValueFetcher.m │ │ │ ├── CNCDGroupFetcher.m │ │ │ ├── CNCDGroupMembershipSaveExecutor.m │ │ │ ├── CNCDGroupNamePredicateCreationHelper.m │ │ │ ├── CNCDGroupPredicate.m │ │ │ ├── CNCDGroupSaveExecutor.m │ │ │ ├── CNCDGroupsInContainerPredicate.m │ │ │ ├── CNCDGroupsWithIdentifiersPredicate.m │ │ │ ├── CNCDInfoFetcher.m │ │ │ ├── CNCDInfoSaveExecutor.m │ │ │ ├── CNCDMeContactFetcher.m │ │ │ ├── CNCDRecordSaveCache.m │ │ │ ├── CNCDSaveContext.m │ │ │ ├── CNCDSaveRequestExecutor.m │ │ │ ├── CNCDSmartGroupFetcher.m │ │ │ ├── CNCDSubgroupsInGroupPredicate.m │ │ │ ├── CNCalculatesContactDiff.m │ │ │ ├── CNCalculatesMultiValueDiff.m │ │ │ ├── CNCalendarURIsDescription.m │ │ │ ├── CNCallAlertDescription.m │ │ │ ├── CNChangeHistoryAnchor.m │ │ │ ├── CNChangeHistoryContactChange.m │ │ │ ├── CNChangeHistoryFetchRequest.m │ │ │ ├── CNChangeHistoryGroupChange.m │ │ │ ├── CNChangeHistoryResult.m │ │ │ ├── CNChangeNotifierDarwinWrapper.m │ │ │ ├── CNChangeNotifierDistributedCenterWrapper.m │ │ │ ├── CNChangesNotifier.m │ │ │ ├── CNChangesNotifierProxy.m │ │ │ ├── CNCompoundMultiValuePropertyDescription.m │ │ │ ├── CNContact.m │ │ │ ├── CNContactChangeRequest.m │ │ │ ├── CNContactChangesFetcher.m │ │ │ ├── CNContactChangesNotifier.m │ │ │ ├── CNContactChangesObserverProxy.m │ │ │ ├── CNContactDiff.m │ │ │ ├── CNContactFetchRequest.m │ │ │ ├── CNContactFormatter.m │ │ │ ├── CNContactFormatterSmartFetcher.m │ │ │ ├── CNContactKeyValueUpdate.m │ │ │ ├── CNContactKeyVector.m │ │ │ ├── CNContactMatchInfo.m │ │ │ ├── CNContactMatchSummarizer.m │ │ │ ├── CNContactMultiValueDiffUpdate.m │ │ │ ├── CNContactNameOrderImpl.m │ │ │ ├── CNContactNameSorting.m │ │ │ ├── CNContactProperty.m │ │ │ ├── CNContactRelation.m │ │ │ ├── CNContactRelationsDescription.m │ │ │ ├── CNContactSearchIndexFormatter.m │ │ │ ├── CNContactStore.m │ │ │ ├── CNContactSuggestionMatch.m │ │ │ ├── CNContactTypeDescription.m │ │ │ ├── CNContactUpdate.m │ │ │ ├── CNContactVCardParsedResultBuilder.m │ │ │ ├── CNContactVCardParsedResultBuilderFactory.m │ │ │ ├── CNContactVCardSerialization.m │ │ │ ├── CNContactVCardWritingAdapter.m │ │ │ ├── CNContactWithNamePredicate.m │ │ │ ├── CNContactsEnvironment.m │ │ │ ├── CNContactsLoggerProvider.m │ │ │ ├── CNContactsLogging.m │ │ │ ├── CNContactsUserDefaults.m │ │ │ ├── CNContactsUserDefaultsX.m │ │ │ ├── CNContactsWithIdentifiersPredicate.m │ │ │ ├── CNContainer.m │ │ │ ├── CNContainerEnabledDescription.m │ │ │ ├── CNContainerIdentifierDescription.m │ │ │ ├── CNContainerIdentifiersPredicate.m │ │ │ ├── CNContainerNameDescription.m │ │ │ ├── CNContainerOfContactPredicate.m │ │ │ ├── CNContainerOfGroupPredicate.m │ │ │ ├── CNContainerPermissions.m │ │ │ ├── CNContainerPropertyDescription.m │ │ │ ├── CNContainerTypeDescription.m │ │ │ ├── CNCoreDataMapperX.m │ │ │ ├── CNCoreDataPropertyMapping.m │ │ │ ├── CNCountryInformation.m │ │ │ ├── CNCreationDateDescription.m │ │ │ ├── CNCropRectDescription.m │ │ │ ├── CNDataMapperContactStore.m │ │ │ ├── CNDate.m │ │ │ ├── CNDateComponentsEquivalence.m │ │ │ ├── CNDatesDescription.m │ │ │ ├── CNDepartmentDescription.m │ │ │ ├── CNDictionaryPolicy.m │ │ │ ├── CNDisplayNameOrderDescription.m │ │ │ ├── CNDonatedContactSanitizer.m │ │ │ ├── CNDonationMapper.m │ │ │ ├── CNDraggingContact.m │ │ │ ├── CNEmailAddressContactPredicate.m │ │ │ ├── CNEmailAddressesDescription.m │ │ │ ├── CNErrorFactory.m │ │ │ ├── CNFamilyNameDescription.m │ │ │ ├── CNFamilyNameFirstNameOrder.m │ │ │ ├── CNFromABCDConversions.m │ │ │ ├── CNFullTextSearchContactPredicate.m │ │ │ ├── CNGivenNameDescription.m │ │ │ ├── CNGivenNameFirstNameOrder.m │ │ │ ├── CNGroup.m │ │ │ ├── CNImageDataAvailableDescription.m │ │ │ ├── CNImageDataDescription.m │ │ │ ├── CNInstantMessageAddress.m │ │ │ ├── CNInstantMessageAddressContactPredicate.m │ │ │ ├── CNInstantMessageAddressesDescription.m │ │ │ ├── CNInternalIdentifierDescription.m │ │ │ ├── CNJobTitleDescription.m │ │ │ ├── CNLDAPConnection.m │ │ │ ├── CNLDAPFetchRequest.m │ │ │ ├── CNLDAPPostalAddressTransform.m │ │ │ ├── CNLDAPPredicateRemapper.m │ │ │ ├── CNLDAPPredicateRemapping.m │ │ │ ├── CNLDAPPropertyDescription.m │ │ │ ├── CNLDAPQueryFilter.m │ │ │ ├── CNLDAPSearchBase.m │ │ │ ├── CNLDAPServices.m │ │ │ ├── CNLDAPTransforms.m │ │ │ ├── CNLabelValuePair.m │ │ │ ├── CNLabeledValue.m │ │ │ ├── CNLaunchServicesRemoteAdapter.m │ │ │ ├── CNLinkIdentifierDescription.m │ │ │ ├── CNLinkedContactsPredicate.m │ │ │ ├── CNMapsDataDescription.m │ │ │ ├── CNMeContactsPredicate.m │ │ │ ├── CNMiddleNameDescription.m │ │ │ ├── CNMockContactsLogger.m │ │ │ ├── CNMockLoggerProvider.m │ │ │ ├── CNMockSpotlightIndexingLogger.m │ │ │ ├── CNModificationDateDescription.m │ │ │ ├── CNMultiValueAddUpdate.m │ │ │ ├── CNMultiValueDiff.m │ │ │ ├── CNMultiValuePropertyDescription.m │ │ │ ├── CNMultiValueRemoveUpdate.m │ │ │ ├── CNMultiValueReorderUpdate.m │ │ │ ├── CNMultiValueReplaceUpdate.m │ │ │ ├── CNMultiValueSingleUpdate.m │ │ │ ├── CNMultiValueUpdate.m │ │ │ ├── CNMutableActivityAlert.m │ │ │ ├── CNMutableContact.m │ │ │ ├── CNMutableContactKeyVector.m │ │ │ ├── CNMutableContainer.m │ │ │ ├── CNMutableGroup.m │ │ │ ├── CNMutableInstantMessageAddress.m │ │ │ ├── CNMutablePostalAddress.m │ │ │ ├── CNMutableSaveResponse.m │ │ │ ├── CNMutableSocialProfile.m │ │ │ ├── CNNamePrefixDescription.m │ │ │ ├── CNNameSuffixDescription.m │ │ │ ├── CNNicknameNameDescription.m │ │ │ ├── CNNonGregorianBirthdayDescription.m │ │ │ ├── CNNoteDescription.m │ │ │ ├── CNOrganizationNameDescription.m │ │ │ ├── CNPerContactPropertyKeyDescriptor.m │ │ │ ├── CNPermissivePolicy.m │ │ │ ├── CNPhoneDialer.m │ │ │ ├── CNPhoneNumber.m │ │ │ ├── CNPhoneNumberContactPredicate.m │ │ │ ├── CNPhoneNumbersDescription.m │ │ │ ├── CNPhonemeDataDescription.m │ │ │ ├── CNPhoneticFamilyNameDescription.m │ │ │ ├── CNPhoneticGivenNameDescription.m │ │ │ ├── CNPhoneticMiddleNameDescription.m │ │ │ ├── CNPhoneticOrganizationNameDescription.m │ │ │ ├── CNPolicy.m │ │ │ ├── CNPostalAddress.m │ │ │ ├── CNPostalAddressContactPredicate.m │ │ │ ├── CNPostalAddressFormatter.m │ │ │ ├── CNPostalAddressFormattingSpecification.m │ │ │ ├── CNPostalAddressesDescription.m │ │ │ ├── CNPredicate.m │ │ │ ├── CNPredicateValidator.m │ │ │ ├── CNPreferredApplePersonaIdentifierDescription.m │ │ │ ├── CNPreferredForImageDescription.m │ │ │ ├── CNPreferredForNameDescription.m │ │ │ ├── CNPreferredLikenessSourceDescription.m │ │ │ ├── CNPreviousFamilyNameDescription.m │ │ │ ├── CNPropertyDescription.m │ │ │ ├── CNReputationContactsAdapter.m │ │ │ ├── CNReputationCoreRecentsAdapter.m │ │ │ ├── CNReputationFutureBuilder.m │ │ │ ├── CNReputationHandle.m │ │ │ ├── CNReputationLogger.m │ │ │ ├── CNReputationResult.m │ │ │ ├── CNReputationStore.m │ │ │ ├── CNSaveRequest.m │ │ │ ├── CNSaveResponse.m │ │ │ ├── CNSearchIndexDescription.m │ │ │ ├── CNSecureCodingClassSets.m │ │ │ ├── CNSmartPropertyFetcher.m │ │ │ ├── CNSocialProfile.m │ │ │ ├── CNSocialProfileContactPredicate.m │ │ │ ├── CNSocialProfilesDescription.m │ │ │ ├── CNSortingFamilyNameDescription.m │ │ │ ├── CNSortingGivenNameDescription.m │ │ │ ├── CNSuggestedContactIdentifierPredicate.m │ │ │ ├── CNSuggestedContactStore.m │ │ │ ├── CNSuggestedSaveRequest.m │ │ │ ├── CNTCC.m │ │ │ ├── CNTCCServices.m │ │ │ ├── CNTestSmartFetcher.m │ │ │ ├── CNTextAlertDescription.m │ │ │ ├── CNThumbnailImageDataDescription.m │ │ │ ├── CNUnifiedContacts.m │ │ │ ├── CNUrlAddressesDescription.m │ │ │ ├── CNUuidIdentifierProvider.m │ │ │ ├── CNVCardConstantsMapping.m │ │ │ ├── CNValueOrigin.m │ │ │ ├── CNXPCDataMapper.m │ │ │ ├── CNXPCDataMapperProgressiveHandler.m │ │ │ ├── Contacts.m │ │ │ ├── _CNContactMatchingFetchRequestInfos.m │ │ │ ├── _CNContactsLogger.m │ │ │ ├── _CNLDAPAccumulatingPropertyDescription.m │ │ │ ├── _CNRegulatoryLogger.m │ │ │ ├── _CNReputationEmailAddressHandle.m │ │ │ ├── _CNReputationGenericHandle.m │ │ │ ├── _CNReputationPhoneNumberHandle.m │ │ │ └── _CNSpotlightIndexingLogger.m │ ├── ContactsUI │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ContactsUI │ │ │ │ ├── ABCNContactNameFormatter.h │ │ │ │ ├── ABCNContactShortNameFormatter.h │ │ │ │ ├── ABCNPickerGroupCellView.h │ │ │ │ ├── ABCardCollectionViewControllerDelegate.h │ │ │ │ ├── ABCardCollectionViewDataSource.h │ │ │ │ ├── ABCardCollectionViewDelegate.h │ │ │ │ ├── ABCardViewDataSourceDelegate.h │ │ │ │ ├── ABCardViewDelegate.h │ │ │ │ ├── ABGroupDropHelper.h │ │ │ │ ├── ABGroupHelperFactory.h │ │ │ │ ├── ABGroupListRowView.h │ │ │ │ ├── ABGroupSelectHelper.h │ │ │ │ ├── ABNameViewDelegate.h │ │ │ │ ├── ABPersonListControllerProtocol.h │ │ │ │ ├── ABPersonListSearchControllerUsageStatisticsHelper.h │ │ │ │ ├── ABPersonSearchControllerDelegate.h │ │ │ │ ├── ABPersonViewClientProtocol.h │ │ │ │ ├── ABPersonViewProtocol.h │ │ │ │ ├── AKCardViewDataSourceSupport.h │ │ │ │ ├── CNAddFieldTouchBar.h │ │ │ │ ├── CNAddFieldTouchBarDelegate.h │ │ │ │ ├── CNAntialiasedImageView.h │ │ │ │ ├── CNAvatarCache.h │ │ │ │ ├── CNAvatarCacheChangeAnalysis.h │ │ │ │ ├── CNAvatarCacheChangeHistoryAnalysisTask.h │ │ │ │ ├── CNAvatarCacheChangeListener.h │ │ │ │ ├── CNAvatarCacheChangeListenerDelegate.h │ │ │ │ ├── CNAvatarCacheDelegate.h │ │ │ │ ├── CNAvatarCacheDelegateObservable.h │ │ │ │ ├── CNAvatarCacheEntry.h │ │ │ │ ├── CNAvatarCacheFingerprintCollector.h │ │ │ │ ├── CNAvatarChangeHistoryReportingTask.h │ │ │ │ ├── CNAvatarEditOverlayView.h │ │ │ │ ├── CNAvatarEditorDelegate.h │ │ │ │ ├── CNAvatarEditorViewController.h │ │ │ │ ├── CNAvatarEditorViewControllerSettings.h │ │ │ │ ├── CNAvatarImageLoading.h │ │ │ │ ├── CNAvatarImageLoadingOptions.h │ │ │ │ ├── CNAvatarImageRenderer.h │ │ │ │ ├── CNAvatarImageRenderingScope.h │ │ │ │ ├── CNAvatarImageRenderingScopeInternal.h │ │ │ │ ├── CNAvatarUpdating.h │ │ │ │ ├── CNAvatarView.h │ │ │ │ ├── CNAvatarViewController.h │ │ │ │ ├── CNAvatarViewDelegate.h │ │ │ │ ├── CNAvatarViewModel.h │ │ │ │ ├── CNBadgeViewController.h │ │ │ │ ├── CNBadgingAvatarViewController.h │ │ │ │ ├── CNCameraChangeWatcher.h │ │ │ │ ├── CNChangeHistoryEventVisitor.h │ │ │ │ ├── CNCollectionViewTouchBar.h │ │ │ │ ├── CNContactActionsDisambiguationMenuGenerator.h │ │ │ │ ├── CNContactActionsGroupGenerator.h │ │ │ │ ├── CNContactActionsView.h │ │ │ │ ├── CNContactActionsViewController.h │ │ │ │ ├── CNContactAvatarNameCompositeViewController.h │ │ │ │ ├── CNContactAvatarViewController.h │ │ │ │ ├── CNContactCardHeightCalculator.h │ │ │ │ ├── CNContactCardViewControlContext.h │ │ │ │ ├── CNContactCardViewController.h │ │ │ │ ├── CNContactCardViewControllerABPersonViewMediator.h │ │ │ │ ├── CNContactCardViewControllerAction.h │ │ │ │ ├── CNContactCardViewControllerAfterLaunchContactFetcher.h │ │ │ │ ├── CNContactCardViewControllerContactFetcher.h │ │ │ │ ├── CNContactCardViewControllerDataSourceDelegate.h │ │ │ │ ├── CNContactCardViewControllerLogger.h │ │ │ │ ├── CNContactCardViewControllerOnLaunchContactFetcher.h │ │ │ │ ├── CNContactCardViewControllerWidgetProviderDelegate.h │ │ │ │ ├── CNContactCardWidget.h │ │ │ │ ├── CNContactCardWidgetProvider.h │ │ │ │ ├── CNContactCardWidgetProviderDelegate.h │ │ │ │ ├── CNContactCardWidgetProviderDelegateWrapper.h │ │ │ │ ├── CNContactDetailsViewController.h │ │ │ │ ├── CNContactDetailsViewControllerDelegate.h │ │ │ │ ├── CNContactEditViewTouchBar.h │ │ │ │ ├── CNContactEditViewTouchBarDelegate.h │ │ │ │ ├── CNContactEditingInterfaceElement.h │ │ │ │ ├── CNContactIconAppearance.h │ │ │ │ ├── CNContactIconImageFactory.h │ │ │ │ ├── CNContactIconUpdating.h │ │ │ │ ├── CNContactIconView.h │ │ │ │ ├── CNContactIconViewModel.h │ │ │ │ ├── CNContactLikenessABCardViewImageDataSourceMutator.h │ │ │ │ ├── CNContactLikenessAgreggateMutator.h │ │ │ │ ├── CNContactLikenessCardMutatorFactory.h │ │ │ │ ├── CNContactLikenessContactStoreMutator.h │ │ │ │ ├── CNContactLikenessDefaultMutatorFactory.h │ │ │ │ ├── CNContactLikenessImageFetchStrategy.h │ │ │ │ ├── CNContactLikenessLinkedContactsFetchStrategy.h │ │ │ │ ├── CNContactLikenessMutator.h │ │ │ │ ├── CNContactLikenessMutatorFactory.h │ │ │ │ ├── CNContactLikenessPersonaStoreMutator.h │ │ │ │ ├── CNContactLikenessPersonaStoreOriginalLikenessMutator.h │ │ │ │ ├── CNContactLikenessPickerViewController.h │ │ │ │ ├── CNContactLikenessView.h │ │ │ │ ├── CNContactLikenessesAggregateFetchStrategy.h │ │ │ │ ├── CNContactLikenessesFetchStrategy.h │ │ │ │ ├── CNContactLikenessesFetchStrategyDefaultFactory.h │ │ │ │ ├── CNContactLikenessesFetchStrategyFactory.h │ │ │ │ ├── CNContactLikenessesModel.h │ │ │ │ ├── CNContactLikenessesPersonaStoreFetchStrategy.h │ │ │ │ ├── CNContactListCellView.h │ │ │ │ ├── CNContactListCellViewController.h │ │ │ │ ├── CNContactListCellViewControllerDelegate.h │ │ │ │ ├── CNContactListController.h │ │ │ │ ├── CNContactListControllerDelegate.h │ │ │ │ ├── CNContactListCountCellView.h │ │ │ │ ├── CNContactListHeaderCellView.h │ │ │ │ ├── CNContactListHelperFactory.h │ │ │ │ ├── CNContactListHelperScope.h │ │ │ │ ├── CNContactListRowView.h │ │ │ │ ├── CNContactListSelectHelper.h │ │ │ │ ├── CNContactListSelectValueHelper.h │ │ │ │ ├── CNContactListShowSelectedContactHelper.h │ │ │ │ ├── CNContactListValueHelperScope.h │ │ │ │ ├── CNContactListView.h │ │ │ │ ├── CNContactNameViewController.h │ │ │ │ ├── CNContactNameViewControllerDelegate.h │ │ │ │ ├── CNContactPersistenceHelper.h │ │ │ │ ├── CNContactPicker.h │ │ │ │ ├── CNContactPickerBorderView.h │ │ │ │ ├── CNContactPickerCardViewStyleProvider.h │ │ │ │ ├── CNContactPickerDelegateSearchConfiguration.h │ │ │ │ ├── CNContactPickerFamilyMemberScope.h │ │ │ │ ├── CNContactPickerGroupDropHelper.h │ │ │ │ ├── CNContactPickerGroupHelperFactory.h │ │ │ │ ├── CNContactPickerInProccessViewController.h │ │ │ │ ├── CNContactPickerInternalResponseDelegate.h │ │ │ │ ├── CNContactPickerInternalSetup.h │ │ │ │ ├── CNContactPickerNotificationWatcher.h │ │ │ │ ├── CNContactPickerRemoteViewController.h │ │ │ │ ├── CNContactPickerScope.h │ │ │ │ ├── CNContactPickerSearchController.h │ │ │ │ ├── CNContactPickerSection.h │ │ │ │ ├── CNContactPickerService.h │ │ │ │ ├── CNContactPickerUsageTracer.h │ │ │ │ ├── CNContactPickerView.h │ │ │ │ ├── CNContactPickerViewController.h │ │ │ │ ├── CNContactPickerViewControllerSearch.h │ │ │ │ ├── CNContactPickerViewLayout.h │ │ │ │ ├── CNContactPickerViewMetrics.h │ │ │ │ ├── CNContactPickerViewService.h │ │ │ │ ├── CNContactPickerXPCRelay.h │ │ │ │ ├── CNContactSaveAction.h │ │ │ │ ├── CNContactSharingEnabledWarningViewController.h │ │ │ │ ├── CNContactSilhouetteView.h │ │ │ │ ├── CNContactTabSwitcherViewController.h │ │ │ │ ├── CNContactUpdatesReflector.h │ │ │ │ ├── CNContactViewController.h │ │ │ │ ├── CNContactViewTouchBar.h │ │ │ │ ├── CNContactViewTouchBarDelegate.h │ │ │ │ ├── CNControlClickGestureRecognizer.h │ │ │ │ ├── CNCreateLikenessHelper.h │ │ │ │ ├── CNDefaultPhotoBrowserItem.h │ │ │ │ ├── CNDefaultQuickActionsEnvironment.h │ │ │ │ ├── CNDelegateRetainingEditAuthorizationViewController.h │ │ │ │ ├── CNEditAuthorizationViewController.h │ │ │ │ ├── CNEditAuthorizationViewControllerDelegate.h │ │ │ │ ├── CNFamilyMemberContactsShared.h │ │ │ │ ├── CNFamilyMemberContactsViewController.h │ │ │ │ ├── CNFamilyMemberEditControlsViewController.h │ │ │ │ ├── CNFamilyMemberEditControlsViewControllerDelegate.h │ │ │ │ ├── CNFamilyMemberWhitelistedContactViewCell.h │ │ │ │ ├── CNFamilyMemberWhitelistedContactViewCellDelegate.h │ │ │ │ ├── CNFamilyMemberWhitelistedContactsViewController.h │ │ │ │ ├── CNFlippedClipView.h │ │ │ │ ├── CNFromABCNConversions.h │ │ │ │ ├── CNFunctionBarController.h │ │ │ │ ├── CNGroupListBackgroundView.h │ │ │ │ ├── CNGroupListBrowsingSelectHelper.h │ │ │ │ ├── CNGroupListCellView.h │ │ │ │ ├── CNGroupListController.h │ │ │ │ ├── CNGroupListEntriesFactory.h │ │ │ │ ├── CNGroupListRowView.h │ │ │ │ ├── CNGroupListSearchingSelectHelper.h │ │ │ │ ├── CNGroupListSectionSelectHelper.h │ │ │ │ ├── CNGroupListView.h │ │ │ │ ├── CNIntegerFormatter.h │ │ │ │ ├── CNIntrinsicView.h │ │ │ │ ├── CNLikeness.h │ │ │ │ ├── CNLikenessCircleView.h │ │ │ │ ├── CNLikenessCollectionItem.h │ │ │ │ ├── CNLikenessConverter.h │ │ │ │ ├── CNLikenessEditorBuddyController.h │ │ │ │ ├── CNLikenessEditorHostDelegate.h │ │ │ │ ├── CNLikenessEditorPresentationController.h │ │ │ │ ├── CNLikenessEditorPresentationPopoverStrategy.h │ │ │ │ ├── CNLikenessEditorPresentationSheetStrategy.h │ │ │ │ ├── CNLikenessEditorPresentationStrategy.h │ │ │ │ ├── CNLikenessEditorViewController.h │ │ │ │ ├── CNLikenessEmptyCollectionItem.h │ │ │ │ ├── CNLikenessFullCollectionItem.h │ │ │ │ ├── CNLikenessInspector.h │ │ │ │ ├── CNLikenessSelectionView.h │ │ │ │ ├── CNLikenessSorter.h │ │ │ │ ├── CNOccluderView.h │ │ │ │ ├── CNPhotoLikenessBuddyControlsViewController.h │ │ │ │ ├── CNPhotoLikenessCameraSource.h │ │ │ │ ├── CNPhotoLikenessCurrentSource.h │ │ │ │ ├── CNPhotoLikenessDefaultLibraryView.h │ │ │ │ ├── CNPhotoLikenessDefaultLibraryViewController.h │ │ │ │ ├── CNPhotoLikenessDefaultsSource.h │ │ │ │ ├── CNPhotoLikenessEditorCameraView.h │ │ │ │ ├── CNPhotoLikenessEditorCameraViewController.h │ │ │ │ ├── CNPhotoLikenessEditorCameraViewDelegate.h │ │ │ │ ├── CNPhotoLikenessEditorCroppingDataSource.h │ │ │ │ ├── CNPhotoLikenessEditorCroppingView.h │ │ │ │ ├── CNPhotoLikenessEditorCroppingViewController.h │ │ │ │ ├── CNPhotoLikenessEditorMediaLibraryViewController.h │ │ │ │ ├── CNPhotoLikenessEditorUtils.h │ │ │ │ ├── CNPhotoLikenessEditorView.h │ │ │ │ ├── CNPhotoLikenessEditorViewController.h │ │ │ │ ├── CNPhotoLikenessEditorZoomDelegate.h │ │ │ │ ├── CNPhotoLikenessEditorZoomSliderController.h │ │ │ │ ├── CNPhotoLikenessIPhotoSource.h │ │ │ │ ├── CNPhotoLikenessImageBrowserCell.h │ │ │ │ ├── CNPhotoLikenessInternalSource.h │ │ │ │ ├── CNPhotoLikenessMaskView.h │ │ │ │ ├── CNPhotoLikenessMediaLibraryView.h │ │ │ │ ├── CNPhotoLikenessMediaObjectBrowserItem.h │ │ │ │ ├── CNPhotoLikenessPhotoBoothSource.h │ │ │ │ ├── CNPhotoLikenessPhotosSource.h │ │ │ │ ├── CNPhotoLikenessSource.h │ │ │ │ ├── CNPhotoLikenessSourceTable.h │ │ │ │ ├── CNPhotoLikenessZoomSlider.h │ │ │ │ ├── CNPhotoLikenessZoomSliderCell.h │ │ │ │ ├── CNPickerGroupHeaderCellView.h │ │ │ │ ├── CNQuickActionButton.h │ │ │ │ ├── CNQuickActionView.h │ │ │ │ ├── CNQuickActionViewClickHelper.h │ │ │ │ ├── CNRecentLikenessesBackendDataSource.h │ │ │ │ ├── CNRecentLikenessesCollectionView.h │ │ │ │ ├── CNRecentLikenessesDataSource.h │ │ │ │ ├── CNRecentLikenessesDataSourceDelayedEditDecorator.h │ │ │ │ ├── CNRecentLikenessesDiff.h │ │ │ │ ├── CNRecentLikenessesViewController.h │ │ │ │ ├── CNRecentLikenessesViewDelegate.h │ │ │ │ ├── CNResettingScrollViewController.h │ │ │ │ ├── CNRoundedImageView.h │ │ │ │ ├── CNScrollViewOccluderController.h │ │ │ │ ├── CNScrollableContainerView.h │ │ │ │ ├── CNTabSegmentedControl.h │ │ │ │ ├── CNToABCNConversions.h │ │ │ │ ├── CNTouchBarController.h │ │ │ │ ├── CNTouchBarUtilities.h │ │ │ │ ├── CNTransaction.h │ │ │ │ ├── CNUIColorButton.h │ │ │ │ ├── CNUIColorPalette.h │ │ │ │ ├── CNUIColorRepository.h │ │ │ │ ├── CNUIColoredView.h │ │ │ │ ├── CNUIContactFetchParameters.h │ │ │ │ ├── CNUIContactFetchResult.h │ │ │ │ ├── CNUICoreFamilyMemberContactsObserver.h │ │ │ │ ├── CNUIDefaultPhotosLoader.h │ │ │ │ ├── CNUIDeprecatedIKImageBrowserView.h │ │ │ │ ├── CNUIEditingPolicy.h │ │ │ │ ├── CNUIEditingRules.h │ │ │ │ ├── CNUIEnvironment.h │ │ │ │ ├── CNUIMutableEnvironment.h │ │ │ │ ├── CNUISavePanel.h │ │ │ │ ├── CNUIScreen.h │ │ │ │ ├── CNUIShareKitTransitionProvider.h │ │ │ │ ├── CNUIUserActionListConsumer.h │ │ │ │ ├── CNUIUserActionListConsumerDelegate.h │ │ │ │ ├── CNUIVCardNameGenerator.h │ │ │ │ ├── CNUIVCardSharingItem.h │ │ │ │ ├── CNUIVCardSharingTask.h │ │ │ │ ├── CNUIViewRevealer.h │ │ │ │ ├── CNUserActionTouchBar.h │ │ │ │ ├── CNVariableChangeHelper.h │ │ │ │ ├── CNView.h │ │ │ │ ├── CNViewFactory.h │ │ │ │ ├── ContactsUI.h │ │ │ │ ├── NSAccessibilityButton.h │ │ │ │ ├── NSAccessibilityElement.h │ │ │ │ ├── NSAccessibilityGroup.h │ │ │ │ ├── NSCollectionViewDataSource.h │ │ │ │ ├── NSCollectionViewDelegate.h │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ ├── NSDraggingDestination.h │ │ │ │ ├── NSGestureRecognizerDelegate.h │ │ │ │ ├── NSImmediateActionGestureRecognizerDelegate.h │ │ │ │ ├── NSMenuDelegate.h │ │ │ │ ├── NSOutlineViewDataSource.h │ │ │ │ ├── NSOutlineViewDelegate.h │ │ │ │ ├── NSPasteboardWriting.h │ │ │ │ ├── NSPopoverDelegate.h │ │ │ │ ├── NSSharingServiceDelegate.h │ │ │ │ ├── NSSharingServicePickerDelegate.h │ │ │ │ ├── NSSharingServicePickerTouchBarItemDelegate.h │ │ │ │ ├── NSTableViewDataSource.h │ │ │ │ ├── NSTableViewDelegate.h │ │ │ │ ├── NSTextFieldDelegate.h │ │ │ │ ├── NSTouchBarProvider.h │ │ │ │ ├── QLPreviewMenuItemDelegate.h │ │ │ │ ├── _CNCameraSessionState.h │ │ │ │ ├── _CNObservableTargetActionHelper.h │ │ │ │ ├── _CNUIGuardianEditingPolicy.h │ │ │ │ └── _CNUIStandardEditingPolicy.h │ │ └── src │ │ │ ├── ABCNContactNameFormatter.m │ │ │ ├── ABCNContactShortNameFormatter.m │ │ │ ├── ABPersonListSearchControllerUsageStatisticsHelper.m │ │ │ ├── CNAddFieldTouchBar.m │ │ │ ├── CNAntialiasedImageView.m │ │ │ ├── CNAvatarCache.m │ │ │ ├── CNAvatarCacheChangeAnalysis.m │ │ │ ├── CNAvatarCacheChangeHistoryAnalysisTask.m │ │ │ ├── CNAvatarCacheChangeListener.m │ │ │ ├── CNAvatarCacheDelegateObservable.m │ │ │ ├── CNAvatarCacheEntry.m │ │ │ ├── CNAvatarCacheFingerprintCollector.m │ │ │ ├── CNAvatarChangeHistoryReportingTask.m │ │ │ ├── CNAvatarEditOverlayView.m │ │ │ ├── CNAvatarEditorViewController.m │ │ │ ├── CNAvatarImageLoading.m │ │ │ ├── CNAvatarImageLoadingOptions.m │ │ │ ├── CNAvatarImageRenderer.m │ │ │ ├── CNAvatarImageRenderingScope.m │ │ │ ├── CNAvatarView.m │ │ │ ├── CNAvatarViewController.m │ │ │ ├── CNAvatarViewModel.m │ │ │ ├── CNBadgeViewController.m │ │ │ ├── CNBadgingAvatarViewController.m │ │ │ ├── CNCameraChangeWatcher.m │ │ │ ├── CNCollectionViewTouchBar.m │ │ │ ├── CNContactActionsDisambiguationMenuGenerator.m │ │ │ ├── CNContactActionsGroupGenerator.m │ │ │ ├── CNContactActionsView.m │ │ │ ├── CNContactActionsViewController.m │ │ │ ├── CNContactAvatarNameCompositeViewController.m │ │ │ ├── CNContactAvatarViewController.m │ │ │ ├── CNContactCardHeightCalculator.m │ │ │ ├── CNContactCardViewControlContext.m │ │ │ ├── CNContactCardViewController.m │ │ │ ├── CNContactCardViewControllerABPersonViewMediator.m │ │ │ ├── CNContactCardViewControllerAfterLaunchContactFetcher.m │ │ │ ├── CNContactCardViewControllerContactFetcher.m │ │ │ ├── CNContactCardViewControllerDataSourceDelegate.m │ │ │ ├── CNContactCardViewControllerLogger.m │ │ │ ├── CNContactCardViewControllerOnLaunchContactFetcher.m │ │ │ ├── CNContactCardViewControllerWidgetProviderDelegate.m │ │ │ ├── CNContactCardWidgetProvider.m │ │ │ ├── CNContactCardWidgetProviderDelegateWrapper.m │ │ │ ├── CNContactDetailsViewController.m │ │ │ ├── CNContactEditViewTouchBar.m │ │ │ ├── CNContactIconAppearance.m │ │ │ ├── CNContactIconImageFactory.m │ │ │ ├── CNContactIconView.m │ │ │ ├── CNContactIconViewModel.m │ │ │ ├── CNContactLikenessABCardViewImageDataSourceMutator.m │ │ │ ├── CNContactLikenessAgreggateMutator.m │ │ │ ├── CNContactLikenessCardMutatorFactory.m │ │ │ ├── CNContactLikenessContactStoreMutator.m │ │ │ ├── CNContactLikenessDefaultMutatorFactory.m │ │ │ ├── CNContactLikenessImageFetchStrategy.m │ │ │ ├── CNContactLikenessLinkedContactsFetchStrategy.m │ │ │ ├── CNContactLikenessPersonaStoreMutator.m │ │ │ ├── CNContactLikenessPersonaStoreOriginalLikenessMutator.m │ │ │ ├── CNContactLikenessPickerViewController.m │ │ │ ├── CNContactLikenessView.m │ │ │ ├── CNContactLikenessesAggregateFetchStrategy.m │ │ │ ├── CNContactLikenessesFetchStrategyDefaultFactory.m │ │ │ ├── CNContactLikenessesModel.m │ │ │ ├── CNContactLikenessesPersonaStoreFetchStrategy.m │ │ │ ├── CNContactListCellView.m │ │ │ ├── CNContactListCellViewController.m │ │ │ ├── CNContactListController.m │ │ │ ├── CNContactListCountCellView.m │ │ │ ├── CNContactListHeaderCellView.m │ │ │ ├── CNContactListHelperFactory.m │ │ │ ├── CNContactListHelperScope.m │ │ │ ├── CNContactListRowView.m │ │ │ ├── CNContactListSelectHelper.m │ │ │ ├── CNContactListSelectValueHelper.m │ │ │ ├── CNContactListShowSelectedContactHelper.m │ │ │ ├── CNContactListValueHelperScope.m │ │ │ ├── CNContactListView.m │ │ │ ├── CNContactNameViewController.m │ │ │ ├── CNContactPersistenceHelper.m │ │ │ ├── CNContactPicker.m │ │ │ ├── CNContactPickerBorderView.m │ │ │ ├── CNContactPickerCardViewStyleProvider.m │ │ │ ├── CNContactPickerDelegateSearchConfiguration.m │ │ │ ├── CNContactPickerFamilyMemberScope.m │ │ │ ├── CNContactPickerGroupDropHelper.m │ │ │ ├── CNContactPickerGroupHelperFactory.m │ │ │ ├── CNContactPickerInProccessViewController.m │ │ │ ├── CNContactPickerNotificationWatcher.m │ │ │ ├── CNContactPickerRemoteViewController.m │ │ │ ├── CNContactPickerScope.m │ │ │ ├── CNContactPickerSearchController.m │ │ │ ├── CNContactPickerSection.m │ │ │ ├── CNContactPickerService.m │ │ │ ├── CNContactPickerUsageTracer.m │ │ │ ├── CNContactPickerView.m │ │ │ ├── CNContactPickerViewController.m │ │ │ ├── CNContactPickerViewLayout.m │ │ │ ├── CNContactPickerViewMetrics.m │ │ │ ├── CNContactPickerViewService.m │ │ │ ├── CNContactPickerXPCRelay.m │ │ │ ├── CNContactSaveAction.m │ │ │ ├── CNContactSharingEnabledWarningViewController.m │ │ │ ├── CNContactSilhouetteView.m │ │ │ ├── CNContactTabSwitcherViewController.m │ │ │ ├── CNContactUpdatesReflector.m │ │ │ ├── CNContactViewController.m │ │ │ ├── CNContactViewTouchBar.m │ │ │ ├── CNControlClickGestureRecognizer.m │ │ │ ├── CNCreateLikenessHelper.m │ │ │ ├── CNDefaultPhotoBrowserItem.m │ │ │ ├── CNDefaultQuickActionsEnvironment.m │ │ │ ├── CNDelegateRetainingEditAuthorizationViewController.m │ │ │ ├── CNEditAuthorizationViewController.m │ │ │ ├── CNFamilyMemberContactsShared.m │ │ │ ├── CNFamilyMemberContactsViewController.m │ │ │ ├── CNFamilyMemberEditControlsViewController.m │ │ │ ├── CNFamilyMemberWhitelistedContactViewCell.m │ │ │ ├── CNFamilyMemberWhitelistedContactsViewController.m │ │ │ ├── CNFlippedClipView.m │ │ │ ├── CNFromABCNConversions.m │ │ │ ├── CNFunctionBarController.m │ │ │ ├── CNGroupListBackgroundView.m │ │ │ ├── CNGroupListBrowsingSelectHelper.m │ │ │ ├── CNGroupListCellView.m │ │ │ ├── CNGroupListController.m │ │ │ ├── CNGroupListEntriesFactory.m │ │ │ ├── CNGroupListRowView.m │ │ │ ├── CNGroupListSearchingSelectHelper.m │ │ │ ├── CNGroupListSectionSelectHelper.m │ │ │ ├── CNGroupListView.m │ │ │ ├── CNIntegerFormatter.m │ │ │ ├── CNIntrinsicView.m │ │ │ ├── CNLikeness.m │ │ │ ├── CNLikenessCircleView.m │ │ │ ├── CNLikenessCollectionItem.m │ │ │ ├── CNLikenessConverter.m │ │ │ ├── CNLikenessEditorBuddyController.m │ │ │ ├── CNLikenessEditorPresentationController.m │ │ │ ├── CNLikenessEditorPresentationPopoverStrategy.m │ │ │ ├── CNLikenessEditorPresentationSheetStrategy.m │ │ │ ├── CNLikenessEditorViewController.m │ │ │ ├── CNLikenessEmptyCollectionItem.m │ │ │ ├── CNLikenessFullCollectionItem.m │ │ │ ├── CNLikenessInspector.m │ │ │ ├── CNLikenessSelectionView.m │ │ │ ├── CNLikenessSorter.m │ │ │ ├── CNOccluderView.m │ │ │ ├── CNPhotoLikenessBuddyControlsViewController.m │ │ │ ├── CNPhotoLikenessCameraSource.m │ │ │ ├── CNPhotoLikenessCurrentSource.m │ │ │ ├── CNPhotoLikenessDefaultLibraryView.m │ │ │ ├── CNPhotoLikenessDefaultLibraryViewController.m │ │ │ ├── CNPhotoLikenessDefaultsSource.m │ │ │ ├── CNPhotoLikenessEditorCameraView.m │ │ │ ├── CNPhotoLikenessEditorCameraViewController.m │ │ │ ├── CNPhotoLikenessEditorCroppingView.m │ │ │ ├── CNPhotoLikenessEditorCroppingViewController.m │ │ │ ├── CNPhotoLikenessEditorMediaLibraryViewController.m │ │ │ ├── CNPhotoLikenessEditorUtils.m │ │ │ ├── CNPhotoLikenessEditorView.m │ │ │ ├── CNPhotoLikenessEditorViewController.m │ │ │ ├── CNPhotoLikenessEditorZoomSliderController.m │ │ │ ├── CNPhotoLikenessIPhotoSource.m │ │ │ ├── CNPhotoLikenessImageBrowserCell.m │ │ │ ├── CNPhotoLikenessInternalSource.m │ │ │ ├── CNPhotoLikenessMaskView.m │ │ │ ├── CNPhotoLikenessMediaLibraryView.m │ │ │ ├── CNPhotoLikenessMediaObjectBrowserItem.m │ │ │ ├── CNPhotoLikenessPhotoBoothSource.m │ │ │ ├── CNPhotoLikenessPhotosSource.m │ │ │ ├── CNPhotoLikenessSourceTable.m │ │ │ ├── CNPhotoLikenessZoomSlider.m │ │ │ ├── CNPhotoLikenessZoomSliderCell.m │ │ │ ├── CNPickerGroupHeaderCellView.m │ │ │ ├── CNQuickActionButton.m │ │ │ ├── CNQuickActionView.m │ │ │ ├── CNQuickActionViewClickHelper.m │ │ │ ├── CNRecentLikenessesBackendDataSource.m │ │ │ ├── CNRecentLikenessesCollectionView.m │ │ │ ├── CNRecentLikenessesDataSourceDelayedEditDecorator.m │ │ │ ├── CNRecentLikenessesDiff.m │ │ │ ├── CNRecentLikenessesViewController.m │ │ │ ├── CNResettingScrollViewController.m │ │ │ ├── CNRoundedImageView.m │ │ │ ├── CNScrollViewOccluderController.m │ │ │ ├── CNScrollableContainerView.m │ │ │ ├── CNTabSegmentedControl.m │ │ │ ├── CNToABCNConversions.m │ │ │ ├── CNTouchBarController.m │ │ │ ├── CNTouchBarUtilities.m │ │ │ ├── CNTransaction.m │ │ │ ├── CNUIColorButton.m │ │ │ ├── CNUIColorPalette.m │ │ │ ├── CNUIColorRepository.m │ │ │ ├── CNUIColoredView.m │ │ │ ├── CNUIContactFetchParameters.m │ │ │ ├── CNUIContactFetchResult.m │ │ │ ├── CNUIDefaultPhotosLoader.m │ │ │ ├── CNUIDeprecatedIKImageBrowserView.m │ │ │ ├── CNUIEditingPolicy.m │ │ │ ├── CNUIEditingRules.m │ │ │ ├── CNUIEnvironment.m │ │ │ ├── CNUIMutableEnvironment.m │ │ │ ├── CNUISavePanel.m │ │ │ ├── CNUIScreen.m │ │ │ ├── CNUIVCardNameGenerator.m │ │ │ ├── CNUIVCardSharingItem.m │ │ │ ├── CNUIVCardSharingTask.m │ │ │ ├── CNUIViewRevealer.m │ │ │ ├── CNUserActionTouchBar.m │ │ │ ├── CNVariableChangeHelper.m │ │ │ ├── CNView.m │ │ │ ├── CNViewFactory.m │ │ │ ├── ContactsUI.m │ │ │ ├── _CNCameraSessionState.m │ │ │ ├── _CNObservableTargetActionHelper.m │ │ │ ├── _CNUIGuardianEditingPolicy.m │ │ │ └── _CNUIStandardEditingPolicy.m │ ├── CoreAudioKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreAudioKit │ │ │ │ ├── AMSBTLEAdvertisementManager.h │ │ │ │ ├── AMSBTLEConnectionManager.h │ │ │ │ ├── AMSBTLEPeripheral.h │ │ │ │ ├── AMSNetworkBoxGroup.h │ │ │ │ ├── AMSNetworkDeviceCapabilitiesCellView.h │ │ │ │ ├── AMSNetworkDeviceOutlineView.h │ │ │ │ ├── AMSNetworkDeviceTableCellView.h │ │ │ │ ├── AMSNetworkInfoView.h │ │ │ │ ├── AUAdvancedParameterStrip.h │ │ │ │ ├── AUAudioUnitHostViewProtocol.h │ │ │ │ ├── AUAudioUnitRemoteViewController.h │ │ │ │ ├── AUAudioUnitRemoteViewProtocol.h │ │ │ │ ├── AUAudioUnitViewConfiguration.h │ │ │ │ ├── AUAudioUnitViewProtocol.h │ │ │ │ ├── AUAudioUnitViewService.h │ │ │ │ ├── AUCPULoadView.h │ │ │ │ ├── AUChannelLayoutPopUp.h │ │ │ │ ├── AUCocoaPropertyControlBase.h │ │ │ │ ├── AUCocoaUIBase.h │ │ │ │ ├── AUCollapsableParameterClump.h │ │ │ │ ├── AUCustomViewPersistentData.h │ │ │ │ ├── AUDiskStreamingCheckbox.h │ │ │ │ ├── AUGenericView.h │ │ │ │ ├── AUGenericViewFactory.h │ │ │ │ ├── AUHistoryView.h │ │ │ │ ├── AUMeterView.h │ │ │ │ ├── AUNSButtonActionOnMouseDown.h │ │ │ │ ├── AUNSDeadButton.h │ │ │ │ ├── AUNSFineSlider.h │ │ │ │ ├── AUNSFlippedView.h │ │ │ │ ├── AUPannerView.h │ │ │ │ ├── AUPannerViewLoader.h │ │ │ │ ├── AUPannerViewPriv.h │ │ │ │ ├── AUParameterClump.h │ │ │ │ ├── AUParameterStrip.h │ │ │ │ ├── AUParameterStripSizingManager.h │ │ │ │ ├── AURenderQualityPopUp.h │ │ │ │ ├── AUViewController.h │ │ │ │ ├── AudioBox.h │ │ │ │ ├── BTLEConnectionTable.h │ │ │ │ ├── CAAUViewToolTipHandling.h │ │ │ │ ├── CAAppleAUCustomViewBase.h │ │ │ │ ├── CAAppleAUGraphView.h │ │ │ │ ├── CAAppleAU_ToolTipWindow.h │ │ │ │ ├── CAAppleEQGraphView.h │ │ │ │ ├── CAAttenuationView.h │ │ │ │ ├── CAAxisSettings.h │ │ │ │ ├── CABTLEMIDIImpl.h │ │ │ │ ├── CABTLEMIDIWindowController.h │ │ │ │ ├── CACentralTableViewCell.h │ │ │ │ ├── CACustomToolTipView.h │ │ │ │ ├── CAFilterControl.h │ │ │ │ ├── CAGraphView.h │ │ │ │ ├── CAInterDeviceAudioViewController.h │ │ │ │ ├── CANetworkBrowserImpl.h │ │ │ │ ├── CANetworkBrowserWindowController.h │ │ │ │ ├── CAPannerView.h │ │ │ │ ├── CASurroundPannerView.h │ │ │ │ ├── CAToolTipEditTextField.h │ │ │ │ ├── CAToolTipParameterStrip.h │ │ │ │ ├── CAToolTipPopupMenuStrip.h │ │ │ │ ├── CAUIActionCell.h │ │ │ │ ├── CAUITableView.h │ │ │ │ ├── CBCentralManagerDelegate.h │ │ │ │ ├── CBPeripheralDelegate.h │ │ │ │ ├── CBPeripheralManagerDelegate.h │ │ │ │ ├── CoreAudioKit.h │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ ├── NSExtensionRequestHandling.h │ │ │ │ ├── NSOutlineViewDataSource.h │ │ │ │ ├── NSTableViewDataSource.h │ │ │ │ ├── NSTableViewDelegate.h │ │ │ │ ├── NSWindowDelegate.h │ │ │ │ ├── NetworkPanelUtilities.h │ │ │ │ ├── TransportInfo.h │ │ │ │ ├── iDamDevice.h │ │ │ │ ├── iDamDeviceImageView.h │ │ │ │ └── iDamDeviceNameField.h │ │ └── src │ │ │ ├── AMSBTLEAdvertisementManager.m │ │ │ ├── AMSBTLEConnectionManager.m │ │ │ ├── AMSBTLEPeripheral.m │ │ │ ├── AMSNetworkBoxGroup.m │ │ │ ├── AMSNetworkDeviceCapabilitiesCellView.m │ │ │ ├── AMSNetworkDeviceOutlineView.m │ │ │ ├── AMSNetworkDeviceTableCellView.m │ │ │ ├── AMSNetworkInfoView.m │ │ │ ├── AUAdvancedParameterStrip.m │ │ │ ├── AUAudioUnitRemoteViewController.m │ │ │ ├── AUAudioUnitViewConfiguration.m │ │ │ ├── AUAudioUnitViewService.m │ │ │ ├── AUCPULoadView.m │ │ │ ├── AUChannelLayoutPopUp.m │ │ │ ├── AUCocoaPropertyControlBase.m │ │ │ ├── AUCollapsableParameterClump.m │ │ │ ├── AUDiskStreamingCheckbox.m │ │ │ ├── AUGenericView.m │ │ │ ├── AUGenericViewFactory.m │ │ │ ├── AUHistoryView.m │ │ │ ├── AUMeterView.m │ │ │ ├── AUNSButtonActionOnMouseDown.m │ │ │ ├── AUNSDeadButton.m │ │ │ ├── AUNSFineSlider.m │ │ │ ├── AUNSFlippedView.m │ │ │ ├── AUPannerView.m │ │ │ ├── AUPannerViewLoader.m │ │ │ ├── AUPannerViewPriv.m │ │ │ ├── AUParameterClump.m │ │ │ ├── AUParameterStrip.m │ │ │ ├── AUParameterStripSizingManager.m │ │ │ ├── AURenderQualityPopUp.m │ │ │ ├── AUViewController.m │ │ │ ├── AudioBox.m │ │ │ ├── CAAppleAUCustomViewBase.m │ │ │ ├── CAAppleAUGraphView.m │ │ │ ├── CAAppleAU_ToolTipWindow.m │ │ │ ├── CAAppleEQGraphView.m │ │ │ ├── CAAttenuationView.m │ │ │ ├── CAAxisSettings.m │ │ │ ├── CABTLEMIDIImpl.m │ │ │ ├── CABTLEMIDIWindowController.m │ │ │ ├── CACentralTableViewCell.m │ │ │ ├── CACustomToolTipView.m │ │ │ ├── CAFilterControl.m │ │ │ ├── CAGraphView.m │ │ │ ├── CAInterDeviceAudioViewController.m │ │ │ ├── CANetworkBrowserImpl.m │ │ │ ├── CANetworkBrowserWindowController.m │ │ │ ├── CAPannerView.m │ │ │ ├── CASurroundPannerView.m │ │ │ ├── CAToolTipEditTextField.m │ │ │ ├── CAToolTipParameterStrip.m │ │ │ ├── CAToolTipPopupMenuStrip.m │ │ │ ├── CAUIActionCell.m │ │ │ ├── CAUITableView.m │ │ │ ├── CoreAudioKit.m │ │ │ ├── NetworkPanelUtilities.m │ │ │ ├── TransportInfo.m │ │ │ ├── iDamDevice.m │ │ │ ├── iDamDeviceImageView.m │ │ │ └── iDamDeviceNameField.m │ ├── CoreBluetooth │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreBluetooth │ │ │ │ ├── BTDevicePicker.h │ │ │ │ ├── CBATTRequest.h │ │ │ │ ├── CBAttribute.h │ │ │ │ ├── CBCentral.h │ │ │ │ ├── CBCentralManager.h │ │ │ │ ├── CBCharacteristic.h │ │ │ │ ├── CBClassicManager.h │ │ │ │ ├── CBClassicPeer.h │ │ │ │ ├── CBDescriptor.h │ │ │ │ ├── CBL2CAPChannel.h │ │ │ │ ├── CBManager.h │ │ │ │ ├── CBMutableCharacteristic.h │ │ │ │ ├── CBMutableDescriptor.h │ │ │ │ ├── CBMutableService.h │ │ │ │ ├── CBPairingAgent.h │ │ │ │ ├── CBPairingAgentParentDelegate.h │ │ │ │ ├── CBPeer.h │ │ │ │ ├── CBPeripheral.h │ │ │ │ ├── CBPeripheralManager.h │ │ │ │ ├── CBRFCOMMChannel.h │ │ │ │ ├── CBScalablePipe.h │ │ │ │ ├── CBScalablePipeManager.h │ │ │ │ ├── CBService.h │ │ │ │ ├── CBUUID.h │ │ │ │ ├── CBXpcConnection.h │ │ │ │ ├── CBXpcConnectionDelegate.h │ │ │ │ └── CoreBluetooth.h │ │ └── src │ │ │ ├── BTDevicePicker.m │ │ │ ├── CBATTRequest.m │ │ │ ├── CBAttribute.m │ │ │ ├── CBCentral.m │ │ │ ├── CBCentralManager.m │ │ │ ├── CBCharacteristic.m │ │ │ ├── CBClassicManager.m │ │ │ ├── CBClassicPeer.m │ │ │ ├── CBDescriptor.m │ │ │ ├── CBL2CAPChannel.m │ │ │ ├── CBManager.m │ │ │ ├── CBMutableCharacteristic.m │ │ │ ├── CBMutableDescriptor.m │ │ │ ├── CBMutableService.m │ │ │ ├── CBPairingAgent.m │ │ │ ├── CBPeer.m │ │ │ ├── CBPeripheral.m │ │ │ ├── CBPeripheralManager.m │ │ │ ├── CBRFCOMMChannel.m │ │ │ ├── CBScalablePipe.m │ │ │ ├── CBScalablePipeManager.m │ │ │ ├── CBService.m │ │ │ ├── CBUUID.m │ │ │ ├── CBXpcConnection.m │ │ │ └── CoreBluetooth.m │ ├── CoreImage │ │ ├── CMakeLists.txt │ │ ├── DO NOT RE-GENERATE.txt │ │ ├── include │ │ │ └── CoreImage │ │ │ │ ├── AutoCropper.h │ │ │ │ ├── CGRenderer.h │ │ │ │ ├── CIAccordionFoldTransition.h │ │ │ │ ├── CIAdditionCompositing.h │ │ │ │ ├── CIAffineClamp.h │ │ │ │ ├── CIAffineTile.h │ │ │ │ ├── CIAffineTransform.h │ │ │ │ ├── CIAreaAverage.h │ │ │ │ ├── CIAreaHistogram.h │ │ │ │ ├── CIAreaMaximum.h │ │ │ │ ├── CIAreaMaximumAlpha.h │ │ │ │ ├── CIAreaMinMaxNormalize.h │ │ │ │ ├── CIAreaMinMaxRed.h │ │ │ │ ├── CIAreaMinMaxRedNormalize.h │ │ │ │ ├── CIAreaMinimum.h │ │ │ │ ├── CIAreaMinimumAlpha.h │ │ │ │ ├── CIAttributedTextImageGenerator.h │ │ │ │ ├── CIAutoEnhanceFace.h │ │ │ │ ├── CIAztecCodeDescriptor.h │ │ │ │ ├── CIAztecCodeGenerator.h │ │ │ │ ├── CIBarcodeDescriptor.h │ │ │ │ ├── CIBarcodeDetector.h │ │ │ │ ├── CIBarcodeGenerator.h │ │ │ │ ├── CIBarsSwipeTransition.h │ │ │ │ ├── CIBicubicScaleTransform.h │ │ │ │ ├── CIBilateralGridHash.h │ │ │ │ ├── CIBilateralSolverCPU.h │ │ │ │ ├── CIBilateralSolverGPU.h │ │ │ │ ├── CIBitmapContext.h │ │ │ │ ├── CIBlendKernel.h │ │ │ │ ├── CIBlendModeFilter.h │ │ │ │ ├── CIBlendWithAlphaMask.h │ │ │ │ ├── CIBlendWithBlueMask.h │ │ │ │ ├── CIBlendWithMask.h │ │ │ │ ├── CIBlendWithRedMask.h │ │ │ │ ├── CIBloom.h │ │ │ │ ├── CIBlurmapSmoothing.h │ │ │ │ ├── CIBokehBlur.h │ │ │ │ ├── CIBoxBlur.h │ │ │ │ ├── CIBoxBlur3_7.h │ │ │ │ ├── CIBumpDistortion.h │ │ │ │ ├── CIBumpDistortionLinear.h │ │ │ │ ├── CICGContext.h │ │ │ │ ├── CICGSFilter.h │ │ │ │ ├── CICMYKHalftone.h │ │ │ │ ├── CICheapBlur.h │ │ │ │ ├── CICheapMorphology.h │ │ │ │ ├── CICheatBlur.h │ │ │ │ ├── CICheckerboardGenerator.h │ │ │ │ ├── CICircleGenerator.h │ │ │ │ ├── CICircleSplashDistortion.h │ │ │ │ ├── CICircularScreen.h │ │ │ │ ├── CICircularWrap.h │ │ │ │ ├── CIClamp.h │ │ │ │ ├── CICode128BarcodeGenerator.h │ │ │ │ ├── CICodeGenerator.h │ │ │ │ ├── CIColor.h │ │ │ │ ├── CIColorBalance.h │ │ │ │ ├── CIColorBlendMode.h │ │ │ │ ├── CIColorBurnBlendMode.h │ │ │ │ ├── CIColorClamp.h │ │ │ │ ├── CIColorControls.h │ │ │ │ ├── CIColorCrossPolynomial.h │ │ │ │ ├── CIColorCube.h │ │ │ │ ├── CIColorCubeWithColorSpace.h │ │ │ │ ├── CIColorCubesMixedWithMask.h │ │ │ │ ├── CIColorCurves.h │ │ │ │ ├── CIColorDodgeBlendMode.h │ │ │ │ ├── CIColorInvert.h │ │ │ │ ├── CIColorKernel.h │ │ │ │ ├── CIColorMap.h │ │ │ │ ├── CIColorMatrix.h │ │ │ │ ├── CIColorMonochrome.h │ │ │ │ ├── CIColorPolynomial.h │ │ │ │ ├── CIColorPosterize.h │ │ │ │ ├── CIColumnAverage.h │ │ │ │ ├── CIComicEffect.h │ │ │ │ ├── CIConfidenceMap.h │ │ │ │ ├── CIConfidenceThreshold.h │ │ │ │ ├── CIConfidenceThresholdProcessor.h │ │ │ │ ├── CIConstantColorGenerator.h │ │ │ │ ├── CIContext.h │ │ │ │ ├── CIContextCache.h │ │ │ │ ├── CIConvolution.h │ │ │ │ ├── CIConvolution3X3.h │ │ │ │ ├── CIConvolution5X5.h │ │ │ │ ├── CIConvolution7X7.h │ │ │ │ ├── CIConvolution9Horizontal.h │ │ │ │ ├── CIConvolution9Vertical.h │ │ │ │ ├── CICopyMachineTransition.h │ │ │ │ ├── CICrop.h │ │ │ │ ├── CICrystallize.h │ │ │ │ ├── CIDarkenBlendMode.h │ │ │ │ ├── CIDataMatrixCodeDescriptor.h │ │ │ │ ├── CIDepthBlurEffect.h │ │ │ │ ├── CIDepthDisparityConverter.h │ │ │ │ ├── CIDepthEffect.h │ │ │ │ ├── CIDepthEffectApplyBlurMap.h │ │ │ │ ├── CIDepthEffectMakeBlurMap.h │ │ │ │ ├── CIDepthOfField.h │ │ │ │ ├── CIDepthToDisparity.h │ │ │ │ ├── CIDetector.h │ │ │ │ ├── CIDifferenceBlendMode.h │ │ │ │ ├── CIDiscBlur.h │ │ │ │ ├── CIDisintegrateWithMaskTransition.h │ │ │ │ ├── CIDisparityRefinement.h │ │ │ │ ├── CIDisparitySmoothing.h │ │ │ │ ├── CIDisparitySmoothingProcessor.h │ │ │ │ ├── CIDisparityToDepth.h │ │ │ │ ├── CIDisplacementDistortion.h │ │ │ │ ├── CIDissolveTransition.h │ │ │ │ ├── CIDivideBlendMode.h │ │ │ │ ├── CIDocumentEnhancer.h │ │ │ │ ├── CIDotScreen.h │ │ │ │ ├── CIDroste.h │ │ │ │ ├── CIEdgePreserveUpsampleFilter.h │ │ │ │ ├── CIEdgePreserveUpsampleRGFilter.h │ │ │ │ ├── CIEdgeWork.h │ │ │ │ ├── CIEdges.h │ │ │ │ ├── CIEightfoldReflectedTile.h │ │ │ │ ├── CIEnhancementCalculation.h │ │ │ │ ├── CIEnhancementCalculator.h │ │ │ │ ├── CIEnhancementHistogram.h │ │ │ │ ├── CIExclusionBlendMode.h │ │ │ │ ├── CIExposureAdjust.h │ │ │ │ ├── CIFaceBalance.h │ │ │ │ ├── CIFaceCoreDetector.h │ │ │ │ ├── CIFaceFeature.h │ │ │ │ ├── CIFaceMaskApply.h │ │ │ │ ├── CIFaceMaskCalculator.h │ │ │ │ ├── CIFaceMaskKernel.h │ │ │ │ ├── CIFalseColor.h │ │ │ │ ├── CIFastBilateralSolver.h │ │ │ │ ├── CIFeature.h │ │ │ │ ├── CIFilter.h │ │ │ │ ├── CIFilterClassAttributes.h │ │ │ │ ├── CIFilterClassCategories.h │ │ │ │ ├── CIFilterClassDefaults.h │ │ │ │ ├── CIFilterClassInfo.h │ │ │ │ ├── CIFilterConstructor.h │ │ │ │ ├── CIFilterGenerator.h │ │ │ │ ├── CIFilterGeneratorCIFilter.h │ │ │ │ ├── CIFilterGeneratorConnection.h │ │ │ │ ├── CIFilterPlugIn.h │ │ │ │ ├── CIFilterShape.h │ │ │ │ ├── CIFlashTransition.h │ │ │ │ ├── CIFourfoldReflectedTile.h │ │ │ │ ├── CIFourfoldRotatedTile.h │ │ │ │ ├── CIFourfoldTranslatedTile.h │ │ │ │ ├── CIGVNode.h │ │ │ │ ├── CIGVRenderer.h │ │ │ │ ├── CIGammaAdjust.h │ │ │ │ ├── CIGaussianBlur.h │ │ │ │ ├── CIGaussianBlurXY.h │ │ │ │ ├── CIGaussianGradient.h │ │ │ │ ├── CIGenericMetalProcessor.h │ │ │ │ ├── CIGenericMetalProcessorSingleChannel.h │ │ │ │ ├── CIGlassDistortion.h │ │ │ │ ├── CIGlassLozenge.h │ │ │ │ ├── CIGlideReflectedTile.h │ │ │ │ ├── CIGloom.h │ │ │ │ ├── CIHardLightBlendMode.h │ │ │ │ ├── CIHardMixBlendMode.h │ │ │ │ ├── CIHatchedScreen.h │ │ │ │ ├── CIHeightFieldFromMask.h │ │ │ │ ├── CIHexagonalPixellate.h │ │ │ │ ├── CIHighlightShadowAdjust.h │ │ │ │ ├── CIHistogramDisplayFilter.h │ │ │ │ ├── CIHoleDistortion.h │ │ │ │ ├── CIHueAdjust.h │ │ │ │ ├── CIHueBlendMode.h │ │ │ │ ├── CIHueSaturationValueGradient.h │ │ │ │ ├── CIImage.h │ │ │ │ ├── CIImageAccumulator.h │ │ │ │ ├── CIImageProcessorInOut.h │ │ │ │ ├── CIImageProcessorInput.h │ │ │ │ ├── CIImageProcessorKernel.h │ │ │ │ ├── CIImageProcessorOutput.h │ │ │ │ ├── CIImageRowReader.h │ │ │ │ ├── CIIntegralImage.h │ │ │ │ ├── CIIntegralImageKernelProcessor.h │ │ │ │ ├── CIKaleidoscope.h │ │ │ │ ├── CIKernel.h │ │ │ │ ├── CIKernelLibrary.h │ │ │ │ ├── CILabDeltaE.h │ │ │ │ ├── CILanczosScaleTransform.h │ │ │ │ ├── CILensModelApply.h │ │ │ │ ├── CILensModelCalculator.h │ │ │ │ ├── CILensModelCalculatorNative.h │ │ │ │ ├── CILensModelKernel.h │ │ │ │ ├── CILenticularHaloGenerator.h │ │ │ │ ├── CILightTunnel.h │ │ │ │ ├── CILightenBlendMode.h │ │ │ │ ├── CILineOverlay.h │ │ │ │ ├── CILineScreen.h │ │ │ │ ├── CILinearBlur.h │ │ │ │ ├── CILinearBurnBlendMode.h │ │ │ │ ├── CILinearDodgeBlendMode.h │ │ │ │ ├── CILinearGradient.h │ │ │ │ ├── CILinearLightBlendMode.h │ │ │ │ ├── CILinearToSRGBToneCurve.h │ │ │ │ ├── CILocalContrast.h │ │ │ │ ├── CILocalLightFilter.h │ │ │ │ ├── CILocalLightMapPrepare.h │ │ │ │ ├── CILumaMap.h │ │ │ │ ├── CILuminosityBlendMode.h │ │ │ │ ├── CIMaskToAlpha.h │ │ │ │ ├── CIMaskedVariableBlur.h │ │ │ │ ├── CIMaximumComponent.h │ │ │ │ ├── CIMaximumCompositing.h │ │ │ │ ├── CIMedianFilter.h │ │ │ │ ├── CIMetalConverter.h │ │ │ │ ├── CIMinimumComponent.h │ │ │ │ ├── CIMinimumCompositing.h │ │ │ │ ├── CIMirror.h │ │ │ │ ├── CIModTransition.h │ │ │ │ ├── CIMorphologicalMax5Mono.h │ │ │ │ ├── CIMorphology.h │ │ │ │ ├── CIMorphologyGradient.h │ │ │ │ ├── CIMorphologyLaplacian.h │ │ │ │ ├── CIMorphologyMaximum.h │ │ │ │ ├── CIMorphologyMinimum.h │ │ │ │ ├── CIMotionBlur.h │ │ │ │ ├── CIMultiplyBlendMode.h │ │ │ │ ├── CIMultiplyCompositing.h │ │ │ │ ├── CINinePartStretched.h │ │ │ │ ├── CINinePartTiled.h │ │ │ │ ├── CINoiseReduction.h │ │ │ │ ├── CIOpTile.h │ │ │ │ ├── CIOpacity.h │ │ │ │ ├── CIOpenGLContext.h │ │ │ │ ├── CIOverlayBlendMode.h │ │ │ │ ├── CIPDF417BarcodeGenerator.h │ │ │ │ ├── CIPDF417CodeDescriptor.h │ │ │ │ ├── CIPDFNonSeparableBlendMode.h │ │ │ │ ├── CIPageCurlTransition.h │ │ │ │ ├── CIPageCurlWithShadowTransition.h │ │ │ │ ├── CIPaperWash.h │ │ │ │ ├── CIParallelogramTile.h │ │ │ │ ├── CIPassThroughColorFilter.h │ │ │ │ ├── CIPassThroughFilter.h │ │ │ │ ├── CIPassThroughGeneralAltFilter.h │ │ │ │ ├── CIPassThroughGeneralFilter.h │ │ │ │ ├── CIPassThroughIntermediateFilter.h │ │ │ │ ├── CIPassThroughSelectFrom3.h │ │ │ │ ├── CIPassThroughWarpFilter.h │ │ │ │ ├── CIPerspectiveCorrection.h │ │ │ │ ├── CIPerspectiveTile.h │ │ │ │ ├── CIPerspectiveTransform.h │ │ │ │ ├── CIPerspectiveTransformWithExtent.h │ │ │ │ ├── CIPhotoEffect.h │ │ │ │ ├── CIPhotoEffect3D.h │ │ │ │ ├── CIPhotoEffect3DCommercial.h │ │ │ │ ├── CIPhotoEffect3DDramatic.h │ │ │ │ ├── CIPhotoEffect3DDramaticCool.h │ │ │ │ ├── CIPhotoEffect3DDramaticWarm.h │ │ │ │ ├── CIPhotoEffect3DNoir.h │ │ │ │ ├── CIPhotoEffect3DSilverplate.h │ │ │ │ ├── CIPhotoEffect3DVivid.h │ │ │ │ ├── CIPhotoEffect3DVividCool.h │ │ │ │ ├── CIPhotoEffect3DVividWarm.h │ │ │ │ ├── CIPhotoEffectChrome.h │ │ │ │ ├── CIPhotoEffectFade.h │ │ │ │ ├── CIPhotoEffectInstant.h │ │ │ │ ├── CIPhotoEffectMono.h │ │ │ │ ├── CIPhotoEffectNoir.h │ │ │ │ ├── CIPhotoEffectProcess.h │ │ │ │ ├── CIPhotoEffectStageMono.h │ │ │ │ ├── CIPhotoEffectTonal.h │ │ │ │ ├── CIPhotoEffectTransfer.h │ │ │ │ ├── CIPhotoGrain.h │ │ │ │ ├── CIPinLightBlendMode.h │ │ │ │ ├── CIPinchDistortion.h │ │ │ │ ├── CIPixellate.h │ │ │ │ ├── CIPlugIn.h │ │ │ │ ├── CIPlugInStandardFilter.h │ │ │ │ ├── CIPlusDarkerCompositing.h │ │ │ │ ├── CIPlusLighterCompositing.h │ │ │ │ ├── CIPointillize.h │ │ │ │ ├── CIPortraitBlur.h │ │ │ │ ├── CIPortraitBlurDirectionalBlur.h │ │ │ │ ├── CIPortraitBlurNoise.h │ │ │ │ ├── CIPortraitBlurPreProcess.h │ │ │ │ ├── CIPortraitEffect.h │ │ │ │ ├── CIPortraitEffectBlack.h │ │ │ │ ├── CIPortraitEffectBlackoutMono.h │ │ │ │ ├── CIPortraitEffectCommercial.h │ │ │ │ ├── CIPortraitEffectContour.h │ │ │ │ ├── CIPortraitEffectLight.h │ │ │ │ ├── CIPortraitEffectStage.h │ │ │ │ ├── CIPortraitEffectStageMono.h │ │ │ │ ├── CIPortraitEffectStudio.h │ │ │ │ ├── CIPortraitFaceMask.h │ │ │ │ ├── CIPortraitFaceMaskProcessorKernel.h │ │ │ │ ├── CIPortraitLightingContour.h │ │ │ │ ├── CIPortraitLightingFront.h │ │ │ │ ├── CIPortraitLightingNeckContour.h │ │ │ │ ├── CIPortraitLightingSide.h │ │ │ │ ├── CIPortraitLightingSpot.h │ │ │ │ ├── CIPortraitLightingStrobe.h │ │ │ │ ├── CIPortraitLocalContrast.h │ │ │ │ ├── CIPortraitPrepareStage.h │ │ │ │ ├── CIPortraitSkinMask.h │ │ │ │ ├── CIPortraitSkinMaskProcessor.h │ │ │ │ ├── CIPortraitToothMask.h │ │ │ │ ├── CIPortraitToothMaskProcessor.h │ │ │ │ ├── CIPremultiply.h │ │ │ │ ├── CIProSharpenEdges.h │ │ │ │ ├── CIPseudoMedian.h │ │ │ │ ├── CIQRCodeDescriptor.h │ │ │ │ ├── CIQRCodeFeature.h │ │ │ │ ├── CIQRCodeGenerator.h │ │ │ │ ├── CIRAWFilterImpl.h │ │ │ │ ├── CIRAWGamutMapping.h │ │ │ │ ├── CIRAWTemperatureAdjust.h │ │ │ │ ├── CIRadialGradient.h │ │ │ │ ├── CIRandomGenerator.h │ │ │ │ ├── CIRectangleDetector.h │ │ │ │ ├── CIRectangleFeature.h │ │ │ │ ├── CIRectangleGenerator.h │ │ │ │ ├── CIRedEyeCorrection.h │ │ │ │ ├── CIRedEyeCorrections.h │ │ │ │ ├── CIRedEyeRepair.h │ │ │ │ ├── CIReductionFilter.h │ │ │ │ ├── CIReedSolomon.h │ │ │ │ ├── CIRenderDestination.h │ │ │ │ ├── CIRenderInfo.h │ │ │ │ ├── CIRenderTask.h │ │ │ │ ├── CIRingBlur.h │ │ │ │ ├── CIRippleTransition.h │ │ │ │ ├── CIRowAverage.h │ │ │ │ ├── CISRGBToneCurveToLinear.h │ │ │ │ ├── CISampler.h │ │ │ │ ├── CISaturationBlendMode.h │ │ │ │ ├── CIScreenBlendMode.h │ │ │ │ ├── CISepiaTone.h │ │ │ │ ├── CIShadedMaterial.h │ │ │ │ ├── CISharpenLuminance.h │ │ │ │ ├── CISimpleTile.h │ │ │ │ ├── CISixfoldReflectedTile.h │ │ │ │ ├── CISixfoldRotatedTile.h │ │ │ │ ├── CISkyAndGrassAdjust.h │ │ │ │ ├── CISmartBlackAndWhite.h │ │ │ │ ├── CISmartColorFilter.h │ │ │ │ ├── CISmartToneFilter.h │ │ │ │ ├── CISmoothLinearGradient.h │ │ │ │ ├── CISobelHV.h │ │ │ │ ├── CISoftCubicUpsample.h │ │ │ │ ├── CISoftLightBlendMode.h │ │ │ │ ├── CISourceAtopCompositing.h │ │ │ │ ├── CISourceInCompositing.h │ │ │ │ ├── CISourceOutCompositing.h │ │ │ │ ├── CISourceOverCompositing.h │ │ │ │ ├── CISpotColor.h │ │ │ │ ├── CISpotLight.h │ │ │ │ ├── CIStarShineGenerator.h │ │ │ │ ├── CIStraightenFilter.h │ │ │ │ ├── CIStretch.h │ │ │ │ ├── CIStretchCrop.h │ │ │ │ ├── CIStripesGenerator.h │ │ │ │ ├── CISubtractBlendMode.h │ │ │ │ ├── CISunbeamsGenerator.h │ │ │ │ ├── CISwipeTransition.h │ │ │ │ ├── CITemperatureAndTint.h │ │ │ │ ├── CITextDetector.h │ │ │ │ ├── CITextFeature.h │ │ │ │ ├── CITextImageGenerator.h │ │ │ │ ├── CIThermal.h │ │ │ │ ├── CITile2Filter.h │ │ │ │ ├── CITileFilter.h │ │ │ │ ├── CIToneCurve.h │ │ │ │ ├── CITorusLensDistortion.h │ │ │ │ ├── CITriangleKaleidoscope.h │ │ │ │ ├── CITriangleTile.h │ │ │ │ ├── CITwelvefoldReflectedTile.h │ │ │ │ ├── CITwirlDistortion.h │ │ │ │ ├── CIUnpremultiply.h │ │ │ │ ├── CIUnsharpMask.h │ │ │ │ ├── CIVNDetector.h │ │ │ │ ├── CIVNFaceDetector.h │ │ │ │ ├── CIVNFaceFeature.h │ │ │ │ ├── CIVNFeature.h │ │ │ │ ├── CIVNRectDetector.h │ │ │ │ ├── CIVNRectFeature.h │ │ │ │ ├── CIVariableBoxBlur.h │ │ │ │ ├── CIVector.h │ │ │ │ ├── CIVibrance.h │ │ │ │ ├── CIVignette.h │ │ │ │ ├── CIVignetteEffect.h │ │ │ │ ├── CIVividLightBlendMode.h │ │ │ │ ├── CIVortexDistortion.h │ │ │ │ ├── CIWarpKernel.h │ │ │ │ ├── CIWhitePointAdjust.h │ │ │ │ ├── CIWrapMirror.h │ │ │ │ ├── CIXRay.h │ │ │ │ ├── CIZoomBlur.h │ │ │ │ ├── CPUFaceMask.h │ │ │ │ ├── CUIInnerBevelEmbossFilter.h │ │ │ │ ├── CUIInnerGlowOrShadowFilter.h │ │ │ │ ├── CUIOuterBevelEmbossFilter.h │ │ │ │ ├── CUIOuterGlowOrShadowFilter.h │ │ │ │ ├── CUIScaleClampFilter.h │ │ │ │ ├── CUIShapeEffectBlur1.h │ │ │ │ ├── ComputedFaceData.h │ │ │ │ ├── CoreImage.h │ │ │ │ ├── DOTRenderer.h │ │ │ │ ├── FBSProcessor.h │ │ │ │ ├── FBSProcessorCPU.h │ │ │ │ ├── FBSProcessorGPU.h │ │ │ │ ├── FaceLandmarks.h │ │ │ │ ├── Function.h │ │ │ │ ├── GVRenderer.h │ │ │ │ ├── ImageRowReading.h │ │ │ │ ├── LightingFacePoints.h │ │ │ │ ├── MetalFaceMask.h │ │ │ │ ├── PDFRenderer.h │ │ │ │ ├── PNGRenderer.h │ │ │ │ ├── Polyline.h │ │ │ │ ├── PolylinePair.h │ │ │ │ ├── Rgon.h │ │ │ │ ├── RgonStack.h │ │ │ │ ├── TopBottomRegion.h │ │ │ │ ├── _CICompositeFilter.h │ │ │ │ ├── _CIFilterProperties.h │ │ │ │ └── _CIScreenFilter.h │ │ └── src │ │ │ ├── AutoCropper.m │ │ │ ├── CGRenderer.m │ │ │ ├── CIAccordionFoldTransition.m │ │ │ ├── CIAdditionCompositing.m │ │ │ ├── CIAffineClamp.m │ │ │ ├── CIAffineTile.m │ │ │ ├── CIAffineTransform.m │ │ │ ├── CIAreaAverage.m │ │ │ ├── CIAreaHistogram.m │ │ │ ├── CIAreaMaximum.m │ │ │ ├── CIAreaMaximumAlpha.m │ │ │ ├── CIAreaMinMaxNormalize.m │ │ │ ├── CIAreaMinMaxRed.m │ │ │ ├── CIAreaMinMaxRedNormalize.m │ │ │ ├── CIAreaMinimum.m │ │ │ ├── CIAreaMinimumAlpha.m │ │ │ ├── CIAttributedTextImageGenerator.m │ │ │ ├── CIAutoEnhanceFace.m │ │ │ ├── CIAztecCodeDescriptor.m │ │ │ ├── CIAztecCodeGenerator.m │ │ │ ├── CIBarcodeDescriptor.m │ │ │ ├── CIBarcodeDetector.m │ │ │ ├── CIBarcodeGenerator.m │ │ │ ├── CIBarsSwipeTransition.m │ │ │ ├── CIBicubicScaleTransform.m │ │ │ ├── CIBilateralGridHash.m │ │ │ ├── CIBilateralSolverCPU.m │ │ │ ├── CIBilateralSolverGPU.m │ │ │ ├── CIBitmapContext.m │ │ │ ├── CIBlendKernel.m │ │ │ ├── CIBlendModeFilter.m │ │ │ ├── CIBlendWithAlphaMask.m │ │ │ ├── CIBlendWithBlueMask.m │ │ │ ├── CIBlendWithMask.m │ │ │ ├── CIBlendWithRedMask.m │ │ │ ├── CIBloom.m │ │ │ ├── CIBlurmapSmoothing.m │ │ │ ├── CIBokehBlur.m │ │ │ ├── CIBoxBlur.m │ │ │ ├── CIBoxBlur3_7.m │ │ │ ├── CIBumpDistortion.m │ │ │ ├── CIBumpDistortionLinear.m │ │ │ ├── CICGContext.m │ │ │ ├── CICGSFilter.m │ │ │ ├── CICMYKHalftone.m │ │ │ ├── CICheapBlur.m │ │ │ ├── CICheapMorphology.m │ │ │ ├── CICheatBlur.m │ │ │ ├── CICheckerboardGenerator.m │ │ │ ├── CICircleGenerator.m │ │ │ ├── CICircleSplashDistortion.m │ │ │ ├── CICircularScreen.m │ │ │ ├── CICircularWrap.m │ │ │ ├── CIClamp.m │ │ │ ├── CICode128BarcodeGenerator.m │ │ │ ├── CICodeGenerator.m │ │ │ ├── CIColor.m │ │ │ ├── CIColorBalance.m │ │ │ ├── CIColorBlendMode.m │ │ │ ├── CIColorBurnBlendMode.m │ │ │ ├── CIColorClamp.m │ │ │ ├── CIColorControls.m │ │ │ ├── CIColorCrossPolynomial.m │ │ │ ├── CIColorCube.m │ │ │ ├── CIColorCubeWithColorSpace.m │ │ │ ├── CIColorCubesMixedWithMask.m │ │ │ ├── CIColorCurves.m │ │ │ ├── CIColorDodgeBlendMode.m │ │ │ ├── CIColorInvert.m │ │ │ ├── CIColorKernel.m │ │ │ ├── CIColorMap.m │ │ │ ├── CIColorMatrix.m │ │ │ ├── CIColorMonochrome.m │ │ │ ├── CIColorPolynomial.m │ │ │ ├── CIColorPosterize.m │ │ │ ├── CIColumnAverage.m │ │ │ ├── CIComicEffect.m │ │ │ ├── CIConfidenceMap.m │ │ │ ├── CIConfidenceThreshold.m │ │ │ ├── CIConfidenceThresholdProcessor.m │ │ │ ├── CIConstantColorGenerator.m │ │ │ ├── CIContext.m │ │ │ ├── CIContextCache.m │ │ │ ├── CIConvolution.m │ │ │ ├── CIConvolution3X3.m │ │ │ ├── CIConvolution5X5.m │ │ │ ├── CIConvolution7X7.m │ │ │ ├── CIConvolution9Horizontal.m │ │ │ ├── CIConvolution9Vertical.m │ │ │ ├── CICopyMachineTransition.m │ │ │ ├── CICrop.m │ │ │ ├── CICrystallize.m │ │ │ ├── CIDarkenBlendMode.m │ │ │ ├── CIDataMatrixCodeDescriptor.m │ │ │ ├── CIDepthBlurEffect.m │ │ │ ├── CIDepthDisparityConverter.m │ │ │ ├── CIDepthEffect.m │ │ │ ├── CIDepthEffectApplyBlurMap.m │ │ │ ├── CIDepthEffectMakeBlurMap.m │ │ │ ├── CIDepthOfField.m │ │ │ ├── CIDepthToDisparity.m │ │ │ ├── CIDetector.m │ │ │ ├── CIDifferenceBlendMode.m │ │ │ ├── CIDiscBlur.m │ │ │ ├── CIDisintegrateWithMaskTransition.m │ │ │ ├── CIDisparityRefinement.m │ │ │ ├── CIDisparitySmoothing.m │ │ │ ├── CIDisparitySmoothingProcessor.m │ │ │ ├── CIDisparityToDepth.m │ │ │ ├── CIDisplacementDistortion.m │ │ │ ├── CIDissolveTransition.m │ │ │ ├── CIDivideBlendMode.m │ │ │ ├── CIDocumentEnhancer.m │ │ │ ├── CIDotScreen.m │ │ │ ├── CIDroste.m │ │ │ ├── CIEdgePreserveUpsampleFilter.m │ │ │ ├── CIEdgePreserveUpsampleRGFilter.m │ │ │ ├── CIEdgeWork.m │ │ │ ├── CIEdges.m │ │ │ ├── CIEightfoldReflectedTile.m │ │ │ ├── CIEnhancementCalculation.m │ │ │ ├── CIEnhancementCalculator.m │ │ │ ├── CIEnhancementHistogram.m │ │ │ ├── CIExclusionBlendMode.m │ │ │ ├── CIExposureAdjust.m │ │ │ ├── CIFaceBalance.m │ │ │ ├── CIFaceCoreDetector.m │ │ │ ├── CIFaceFeature.m │ │ │ ├── CIFaceMaskApply.m │ │ │ ├── CIFaceMaskCalculator.m │ │ │ ├── CIFaceMaskKernel.m │ │ │ ├── CIFalseColor.m │ │ │ ├── CIFastBilateralSolver.m │ │ │ ├── CIFeature.m │ │ │ ├── CIFilter.m │ │ │ ├── CIFilterClassAttributes.m │ │ │ ├── CIFilterClassCategories.m │ │ │ ├── CIFilterClassDefaults.m │ │ │ ├── CIFilterClassInfo.m │ │ │ ├── CIFilterGenerator.m │ │ │ ├── CIFilterGeneratorCIFilter.m │ │ │ ├── CIFilterGeneratorConnection.m │ │ │ ├── CIFilterPlugIn.m │ │ │ ├── CIFilterShape.m │ │ │ ├── CIFlashTransition.m │ │ │ ├── CIFourfoldReflectedTile.m │ │ │ ├── CIFourfoldRotatedTile.m │ │ │ ├── CIFourfoldTranslatedTile.m │ │ │ ├── CIGVNode.m │ │ │ ├── CIGammaAdjust.m │ │ │ ├── CIGaussianBlur.m │ │ │ ├── CIGaussianBlurXY.m │ │ │ ├── CIGaussianGradient.m │ │ │ ├── CIGenericMetalProcessor.m │ │ │ ├── CIGenericMetalProcessorSingleChannel.m │ │ │ ├── CIGlassDistortion.m │ │ │ ├── CIGlassLozenge.m │ │ │ ├── CIGlideReflectedTile.m │ │ │ ├── CIGloom.m │ │ │ ├── CIHardLightBlendMode.m │ │ │ ├── CIHardMixBlendMode.m │ │ │ ├── CIHatchedScreen.m │ │ │ ├── CIHeightFieldFromMask.m │ │ │ ├── CIHexagonalPixellate.m │ │ │ ├── CIHighlightShadowAdjust.m │ │ │ ├── CIHistogramDisplayFilter.m │ │ │ ├── CIHoleDistortion.m │ │ │ ├── CIHueAdjust.m │ │ │ ├── CIHueBlendMode.m │ │ │ ├── CIHueSaturationValueGradient.m │ │ │ ├── CIImage.m │ │ │ ├── CIImageAccumulator.m │ │ │ ├── CIImageProcessorInOut.m │ │ │ ├── CIImageProcessorInput.m │ │ │ ├── CIImageProcessorKernel.m │ │ │ ├── CIImageProcessorOutput.m │ │ │ ├── CIImageRowReader.m │ │ │ ├── CIIntegralImage.m │ │ │ ├── CIIntegralImageKernelProcessor.m │ │ │ ├── CIKaleidoscope.m │ │ │ ├── CIKernel.m │ │ │ ├── CIKernelLibrary.m │ │ │ ├── CILabDeltaE.m │ │ │ ├── CILanczosScaleTransform.m │ │ │ ├── CILensModelApply.m │ │ │ ├── CILensModelCalculator.m │ │ │ ├── CILensModelCalculatorNative.m │ │ │ ├── CILensModelKernel.m │ │ │ ├── CILenticularHaloGenerator.m │ │ │ ├── CILightTunnel.m │ │ │ ├── CILightenBlendMode.m │ │ │ ├── CILineOverlay.m │ │ │ ├── CILineScreen.m │ │ │ ├── CILinearBlur.m │ │ │ ├── CILinearBurnBlendMode.m │ │ │ ├── CILinearDodgeBlendMode.m │ │ │ ├── CILinearGradient.m │ │ │ ├── CILinearLightBlendMode.m │ │ │ ├── CILinearToSRGBToneCurve.m │ │ │ ├── CILocalContrast.m │ │ │ ├── CILocalLightFilter.m │ │ │ ├── CILocalLightMapPrepare.m │ │ │ ├── CILumaMap.m │ │ │ ├── CILuminosityBlendMode.m │ │ │ ├── CIMaskToAlpha.m │ │ │ ├── CIMaskedVariableBlur.m │ │ │ ├── CIMaximumComponent.m │ │ │ ├── CIMaximumCompositing.m │ │ │ ├── CIMedianFilter.m │ │ │ ├── CIMetalConverter.m │ │ │ ├── CIMinimumComponent.m │ │ │ ├── CIMinimumCompositing.m │ │ │ ├── CIMirror.m │ │ │ ├── CIModTransition.m │ │ │ ├── CIMorphologicalMax5Mono.m │ │ │ ├── CIMorphology.m │ │ │ ├── CIMorphologyGradient.m │ │ │ ├── CIMorphologyLaplacian.m │ │ │ ├── CIMorphologyMaximum.m │ │ │ ├── CIMorphologyMinimum.m │ │ │ ├── CIMotionBlur.m │ │ │ ├── CIMultiplyBlendMode.m │ │ │ ├── CIMultiplyCompositing.m │ │ │ ├── CINinePartStretched.m │ │ │ ├── CINinePartTiled.m │ │ │ ├── CINoiseReduction.m │ │ │ ├── CIOpTile.m │ │ │ ├── CIOpacity.m │ │ │ ├── CIOpenGLContext.m │ │ │ ├── CIOverlayBlendMode.m │ │ │ ├── CIPDF417BarcodeGenerator.m │ │ │ ├── CIPDF417CodeDescriptor.m │ │ │ ├── CIPDFNonSeparableBlendMode.m │ │ │ ├── CIPageCurlTransition.m │ │ │ ├── CIPageCurlWithShadowTransition.m │ │ │ ├── CIPaperWash.m │ │ │ ├── CIParallelogramTile.m │ │ │ ├── CIPassThroughColorFilter.m │ │ │ ├── CIPassThroughFilter.m │ │ │ ├── CIPassThroughGeneralAltFilter.m │ │ │ ├── CIPassThroughGeneralFilter.m │ │ │ ├── CIPassThroughIntermediateFilter.m │ │ │ ├── CIPassThroughSelectFrom3.m │ │ │ ├── CIPassThroughWarpFilter.m │ │ │ ├── CIPerspectiveCorrection.m │ │ │ ├── CIPerspectiveTile.m │ │ │ ├── CIPerspectiveTransform.m │ │ │ ├── CIPerspectiveTransformWithExtent.m │ │ │ ├── CIPhotoEffect.m │ │ │ ├── CIPhotoEffect3D.m │ │ │ ├── CIPhotoEffect3DCommercial.m │ │ │ ├── CIPhotoEffect3DDramatic.m │ │ │ ├── CIPhotoEffect3DDramaticCool.m │ │ │ ├── CIPhotoEffect3DDramaticWarm.m │ │ │ ├── CIPhotoEffect3DNoir.m │ │ │ ├── CIPhotoEffect3DSilverplate.m │ │ │ ├── CIPhotoEffect3DVivid.m │ │ │ ├── CIPhotoEffect3DVividCool.m │ │ │ ├── CIPhotoEffect3DVividWarm.m │ │ │ ├── CIPhotoEffectChrome.m │ │ │ ├── CIPhotoEffectFade.m │ │ │ ├── CIPhotoEffectInstant.m │ │ │ ├── CIPhotoEffectMono.m │ │ │ ├── CIPhotoEffectNoir.m │ │ │ ├── CIPhotoEffectProcess.m │ │ │ ├── CIPhotoEffectStageMono.m │ │ │ ├── CIPhotoEffectTonal.m │ │ │ ├── CIPhotoEffectTransfer.m │ │ │ ├── CIPhotoGrain.m │ │ │ ├── CIPinLightBlendMode.m │ │ │ ├── CIPinchDistortion.m │ │ │ ├── CIPixellate.m │ │ │ ├── CIPlugIn.m │ │ │ ├── CIPlugInStandardFilter.m │ │ │ ├── CIPlusDarkerCompositing.m │ │ │ ├── CIPlusLighterCompositing.m │ │ │ ├── CIPointillize.m │ │ │ ├── CIPortraitBlur.m │ │ │ ├── CIPortraitBlurDirectionalBlur.m │ │ │ ├── CIPortraitBlurNoise.m │ │ │ ├── CIPortraitBlurPreProcess.m │ │ │ ├── CIPortraitEffect.m │ │ │ ├── CIPortraitEffectBlack.m │ │ │ ├── CIPortraitEffectBlackoutMono.m │ │ │ ├── CIPortraitEffectCommercial.m │ │ │ ├── CIPortraitEffectContour.m │ │ │ ├── CIPortraitEffectLight.m │ │ │ ├── CIPortraitEffectStage.m │ │ │ ├── CIPortraitEffectStageMono.m │ │ │ ├── CIPortraitEffectStudio.m │ │ │ ├── CIPortraitFaceMask.m │ │ │ ├── CIPortraitFaceMaskProcessorKernel.m │ │ │ ├── CIPortraitLightingContour.m │ │ │ ├── CIPortraitLightingFront.m │ │ │ ├── CIPortraitLightingNeckContour.m │ │ │ ├── CIPortraitLightingSide.m │ │ │ ├── CIPortraitLightingSpot.m │ │ │ ├── CIPortraitLightingStrobe.m │ │ │ ├── CIPortraitLocalContrast.m │ │ │ ├── CIPortraitPrepareStage.m │ │ │ ├── CIPortraitSkinMask.m │ │ │ ├── CIPortraitSkinMaskProcessor.m │ │ │ ├── CIPortraitToothMask.m │ │ │ ├── CIPortraitToothMaskProcessor.m │ │ │ ├── CIPremultiply.m │ │ │ ├── CIProSharpenEdges.m │ │ │ ├── CIPseudoMedian.m │ │ │ ├── CIQRCodeDescriptor.m │ │ │ ├── CIQRCodeFeature.m │ │ │ ├── CIQRCodeGenerator.m │ │ │ ├── CIRAWFilterImpl.m │ │ │ ├── CIRAWGamutMapping.m │ │ │ ├── CIRAWTemperatureAdjust.m │ │ │ ├── CIRadialGradient.m │ │ │ ├── CIRandomGenerator.m │ │ │ ├── CIRectangleDetector.m │ │ │ ├── CIRectangleFeature.m │ │ │ ├── CIRectangleGenerator.m │ │ │ ├── CIRedEyeCorrection.m │ │ │ ├── CIRedEyeCorrections.m │ │ │ ├── CIRedEyeRepair.m │ │ │ ├── CIReductionFilter.m │ │ │ ├── CIReedSolomon.m │ │ │ ├── CIRenderDestination.m │ │ │ ├── CIRenderInfo.m │ │ │ ├── CIRenderTask.m │ │ │ ├── CIRingBlur.m │ │ │ ├── CIRippleTransition.m │ │ │ ├── CIRowAverage.m │ │ │ ├── CISRGBToneCurveToLinear.m │ │ │ ├── CISampler.m │ │ │ ├── CISaturationBlendMode.m │ │ │ ├── CIScreenBlendMode.m │ │ │ ├── CISepiaTone.m │ │ │ ├── CIShadedMaterial.m │ │ │ ├── CISharpenLuminance.m │ │ │ ├── CISimpleTile.m │ │ │ ├── CISixfoldReflectedTile.m │ │ │ ├── CISixfoldRotatedTile.m │ │ │ ├── CISkyAndGrassAdjust.m │ │ │ ├── CISmartBlackAndWhite.m │ │ │ ├── CISmartColorFilter.m │ │ │ ├── CISmartToneFilter.m │ │ │ ├── CISmoothLinearGradient.m │ │ │ ├── CISobelHV.m │ │ │ ├── CISoftCubicUpsample.m │ │ │ ├── CISoftLightBlendMode.m │ │ │ ├── CISourceAtopCompositing.m │ │ │ ├── CISourceInCompositing.m │ │ │ ├── CISourceOutCompositing.m │ │ │ ├── CISourceOverCompositing.m │ │ │ ├── CISpotColor.m │ │ │ ├── CISpotLight.m │ │ │ ├── CIStarShineGenerator.m │ │ │ ├── CIStraightenFilter.m │ │ │ ├── CIStretch.m │ │ │ ├── CIStretchCrop.m │ │ │ ├── CIStripesGenerator.m │ │ │ ├── CISubtractBlendMode.m │ │ │ ├── CISunbeamsGenerator.m │ │ │ ├── CISwipeTransition.m │ │ │ ├── CITemperatureAndTint.m │ │ │ ├── CITextDetector.m │ │ │ ├── CITextFeature.m │ │ │ ├── CITextImageGenerator.m │ │ │ ├── CIThermal.m │ │ │ ├── CITile2Filter.m │ │ │ ├── CITileFilter.m │ │ │ ├── CIToneCurve.m │ │ │ ├── CITorusLensDistortion.m │ │ │ ├── CITriangleKaleidoscope.m │ │ │ ├── CITriangleTile.m │ │ │ ├── CITwelvefoldReflectedTile.m │ │ │ ├── CITwirlDistortion.m │ │ │ ├── CIUnpremultiply.m │ │ │ ├── CIUnsharpMask.m │ │ │ ├── CIVNDetector.m │ │ │ ├── CIVNFaceDetector.m │ │ │ ├── CIVNFaceFeature.m │ │ │ ├── CIVNFeature.m │ │ │ ├── CIVNRectDetector.m │ │ │ ├── CIVNRectFeature.m │ │ │ ├── CIVariableBoxBlur.m │ │ │ ├── CIVector.m │ │ │ ├── CIVibrance.m │ │ │ ├── CIVignette.m │ │ │ ├── CIVignetteEffect.m │ │ │ ├── CIVividLightBlendMode.m │ │ │ ├── CIVortexDistortion.m │ │ │ ├── CIWarpKernel.m │ │ │ ├── CIWhitePointAdjust.m │ │ │ ├── CIWrapMirror.m │ │ │ ├── CIXRay.m │ │ │ ├── CIZoomBlur.m │ │ │ ├── CPUFaceMask.m │ │ │ ├── CUIInnerBevelEmbossFilter.m │ │ │ ├── CUIInnerGlowOrShadowFilter.m │ │ │ ├── CUIOuterBevelEmbossFilter.m │ │ │ ├── CUIOuterGlowOrShadowFilter.m │ │ │ ├── CUIScaleClampFilter.m │ │ │ ├── CUIShapeEffectBlur1.m │ │ │ ├── ComputedFaceData.m │ │ │ ├── CoreImage.m │ │ │ ├── DOTRenderer.m │ │ │ ├── FBSProcessor.m │ │ │ ├── FBSProcessorCPU.m │ │ │ ├── FBSProcessorGPU.m │ │ │ ├── FaceLandmarks.m │ │ │ ├── Function.m │ │ │ ├── LightingFacePoints.m │ │ │ ├── MetalFaceMask.m │ │ │ ├── PDFRenderer.m │ │ │ ├── PNGRenderer.m │ │ │ ├── Polyline.m │ │ │ ├── PolylinePair.m │ │ │ ├── Rgon.m │ │ │ ├── RgonStack.m │ │ │ ├── TopBottomRegion.m │ │ │ ├── _CICompositeFilter.m │ │ │ ├── _CIScreenFilter.m │ │ │ └── constants.m │ ├── CoreLocation │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreLocation │ │ │ │ ├── CLAssertion.h │ │ │ │ ├── CLBeacon.h │ │ │ │ ├── CLBeaconInternal.h │ │ │ │ ├── CLBeaconRegion.h │ │ │ │ ├── CLCircularRegion.h │ │ │ │ ├── CLEmergencyEnablementAssertion.h │ │ │ │ ├── CLGeocoder.h │ │ │ │ ├── CLGeocoderInternal.h │ │ │ │ ├── CLHarvester.h │ │ │ │ ├── CLHarvesterServerInterface.h │ │ │ │ ├── CLHeading.h │ │ │ │ ├── CLHeadingInternal.h │ │ │ │ ├── CLLocation.h │ │ │ │ ├── CLLocationInternal.h │ │ │ │ ├── CLLocationInternalClient.h │ │ │ │ ├── CLLocationInternalServiceProtocol.h │ │ │ │ ├── CLLocationManager.h │ │ │ │ ├── CLLocationManagerInternal.h │ │ │ │ ├── CLLocationManagerRoutine.h │ │ │ │ ├── CLLocationManagerRoutineClientInterface.h │ │ │ │ ├── CLLocationManagerRoutineServerInterface.h │ │ │ │ ├── CLLocationManagerStateTracker.h │ │ │ │ ├── CLPlacemark.h │ │ │ │ ├── CLPlacemarkInternal.h │ │ │ │ ├── CLRegion.h │ │ │ │ ├── CLRegionInternal.h │ │ │ │ ├── CLSimulationLocationProtocol.h │ │ │ │ ├── CLSimulationManager.h │ │ │ │ ├── CLSimulationXPCServerInterface.h │ │ │ │ ├── CLStateTracker.h │ │ │ │ ├── CLTilesManagerClient.h │ │ │ │ ├── CLTilesManagerClientInternal.h │ │ │ │ ├── CoreLocation.h │ │ │ │ ├── _CLLocationManagerRoutineProxy.h │ │ │ │ ├── _CLRangingPeer.h │ │ │ │ ├── _CLRangingPeerDistance.h │ │ │ │ ├── _CLRangingPeerDistanceInternal.h │ │ │ │ └── _CLRangingPeerInternal.h │ │ └── src │ │ │ ├── CLAssertion.m │ │ │ ├── CLBeacon.m │ │ │ ├── CLBeaconInternal.m │ │ │ ├── CLBeaconRegion.m │ │ │ ├── CLCircularRegion.m │ │ │ ├── CLEmergencyEnablementAssertion.m │ │ │ ├── CLGeocoder.m │ │ │ ├── CLGeocoderInternal.m │ │ │ ├── CLHarvester.m │ │ │ ├── CLHeading.m │ │ │ ├── CLHeadingInternal.m │ │ │ ├── CLLocation.m │ │ │ ├── CLLocationInternal.m │ │ │ ├── CLLocationInternalClient.m │ │ │ ├── CLLocationManager.m │ │ │ ├── CLLocationManagerInternal.m │ │ │ ├── CLLocationManagerRoutine.m │ │ │ ├── CLLocationManagerStateTracker.m │ │ │ ├── CLPlacemark.m │ │ │ ├── CLPlacemarkInternal.m │ │ │ ├── CLRegion.m │ │ │ ├── CLRegionInternal.m │ │ │ ├── CLSimulationManager.m │ │ │ ├── CLStateTracker.m │ │ │ ├── CLTilesManagerClient.m │ │ │ ├── CLTilesManagerClientInternal.m │ │ │ ├── CoreLocation.m │ │ │ ├── _CLLocationManagerRoutineProxy.m │ │ │ ├── _CLRangingPeer.m │ │ │ ├── _CLRangingPeerDistance.m │ │ │ ├── _CLRangingPeerDistanceInternal.m │ │ │ └── _CLRangingPeerInternal.m │ ├── CoreMIDI │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreMIDI │ │ │ │ ├── BLEMIDIAccessor.h │ │ │ │ ├── CoreMIDI.h │ │ │ │ ├── MIDICIProfile.h │ │ │ │ ├── MIDICIProfileState.h │ │ │ │ ├── MIDICISession.h │ │ │ │ ├── MIDINetworkConnection.h │ │ │ │ ├── MIDINetworkHost.h │ │ │ │ ├── MIDINetworkSession.h │ │ │ │ └── MIDIServices.h │ │ └── src │ │ │ ├── BLEMIDIAccessor.m │ │ │ ├── CoreMIDI.m │ │ │ ├── MIDICIProfile.m │ │ │ ├── MIDICIProfileState.m │ │ │ ├── MIDICISession.m │ │ │ ├── MIDINetworkConnection.m │ │ │ ├── MIDINetworkHost.m │ │ │ ├── MIDINetworkSession.m │ │ │ └── MIDIServices.m │ ├── CoreMedia │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreMedia │ │ │ │ ├── CMTime.h │ │ │ │ └── CoreMedia.h │ │ └── src │ │ │ ├── CMTime.c │ │ │ └── CoreMedia.c │ ├── CoreMediaIO │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreMediaIO │ │ │ │ └── CoreMediaIO.h │ │ └── src │ │ │ └── CoreMediaIO.m │ ├── CoreServices │ │ ├── CMakeLists.txt │ │ ├── CoreServices.h │ │ ├── Info.plist │ │ ├── ScriptManager.cpp │ │ ├── ScriptManager.h │ │ ├── SystemVersion.plist │ │ ├── SystemVersionCompat.plist │ │ ├── TODO.md │ │ ├── constants.m │ │ ├── include │ │ │ ├── AE │ │ │ │ ├── AE.h │ │ │ │ ├── AEDataModel.h │ │ │ │ └── AppleEvents.h │ │ │ ├── CarbonCore │ │ │ │ ├── BackupCore.h │ │ │ │ ├── CarbonCore.h │ │ │ │ ├── Components.h │ │ │ │ ├── DateTimeUtils.h │ │ │ │ ├── Debugging.h │ │ │ │ ├── DriverServices.h │ │ │ │ ├── DriverSynchronization.h │ │ │ │ ├── Endian.h │ │ │ │ ├── Files.h │ │ │ │ ├── FixMath.h │ │ │ │ ├── Gestalt.h │ │ │ │ ├── MacErrors.h │ │ │ │ ├── MacLocales.h │ │ │ │ ├── MacMemory.h │ │ │ │ ├── Math64.h │ │ │ │ ├── MixedMode.h │ │ │ │ ├── Multiprocessing.h │ │ │ │ ├── Resources.h │ │ │ │ ├── TextCommon.h │ │ │ │ ├── TextEncodingConverter.h │ │ │ │ ├── TextUtils.h │ │ │ │ ├── Timer.h │ │ │ │ ├── ToolUtils.h │ │ │ │ └── UnicodeUtilities.h │ │ │ ├── CoreServices │ │ │ │ ├── CoreServices.h │ │ │ │ ├── CoreServicesPriv.h │ │ │ │ ├── FileManager.h │ │ │ │ ├── MDItem.h │ │ │ │ ├── MDQuery.h │ │ │ │ ├── MacTypes.h │ │ │ │ ├── OpenTransport.h │ │ │ │ ├── ScriptManager.h │ │ │ │ ├── UniChar.h │ │ │ │ └── UnicodeConverter.h │ │ │ ├── DictionaryServices │ │ │ │ └── DictionaryServices.h │ │ │ ├── FSEvents │ │ │ │ └── FSEvents.h │ │ │ ├── LaunchServices │ │ │ │ ├── LSInfo.h │ │ │ │ ├── LSInfoDeprecated.h │ │ │ │ ├── LSOpen.h │ │ │ │ ├── LSOpenDeprecated.h │ │ │ │ ├── LSSharedFile.h │ │ │ │ ├── LaunchServices.h │ │ │ │ ├── LaunchServicesPriv.h │ │ │ │ ├── UTCoreTypes.h │ │ │ │ └── UTType.h │ │ │ ├── Metadata │ │ │ │ └── Metadata.h │ │ │ ├── OSServices │ │ │ │ └── OSServices.h │ │ │ ├── SearchKit │ │ │ │ ├── Analysis.h │ │ │ │ ├── SKIndex.h │ │ │ │ └── SearchKit.h │ │ │ └── SharedFileList │ │ │ │ └── SharedFileList.h │ │ ├── reexport.exp │ │ └── src │ │ │ ├── AE │ │ │ ├── CMakeLists.txt │ │ │ ├── empty.c │ │ │ └── stub.c │ │ │ ├── CarbonCore │ │ │ ├── BackupCore.c │ │ │ ├── CMakeLists.txt │ │ │ ├── ComponentManager.cpp │ │ │ ├── ComponentManager.h │ │ │ ├── Components.cpp │ │ │ ├── CoreEndian.cpp │ │ │ ├── CoreServicesPriv.cpp │ │ │ ├── DateTimeUtils.cpp │ │ │ ├── Debugging.cpp │ │ │ ├── DriverServices.cpp │ │ │ ├── DriverSynchronization.cpp │ │ │ ├── FileManager.cpp │ │ │ ├── Files.cpp │ │ │ ├── FixMath.cpp │ │ │ ├── Gestalt.cpp │ │ │ ├── MacErrors.cpp │ │ │ ├── MacLocales.cpp │ │ │ ├── MacMemory.cpp │ │ │ ├── Math64.cpp │ │ │ ├── Multiprocessing.cpp │ │ │ ├── OpenTransport.cpp │ │ │ ├── Resources.cpp │ │ │ ├── ResourcesImpl.cpp │ │ │ ├── ResourcesImpl.h │ │ │ ├── TextCommon.cpp │ │ │ ├── TextEncodingConverter.cpp │ │ │ ├── TextUtils.cpp │ │ │ ├── Timer.cpp │ │ │ ├── ToolUtils.cpp │ │ │ ├── UnicodeConverter.cpp │ │ │ ├── UnicodeUtilities.cpp │ │ │ ├── UserBreak.cpp │ │ │ └── UserBreak.h │ │ │ ├── DictionaryServices │ │ │ ├── CMakeLists.txt │ │ │ └── empty.c │ │ │ ├── FSEvents │ │ │ ├── CMakeLists.txt │ │ │ ├── FSEvents.m │ │ │ ├── FSEventsImpl.h │ │ │ ├── FSEventsImpl.m │ │ │ ├── fseventsd.h │ │ │ ├── fseventsd.m │ │ │ └── linux │ │ │ │ └── fanotify.h │ │ │ ├── LaunchServices │ │ │ ├── CMakeLists.txt │ │ │ ├── LSApplicationProxy.m │ │ │ ├── LSApplicationWorkspace.m │ │ │ ├── LSInfo.m │ │ │ ├── LSOpen.m │ │ │ ├── LSRunning.m │ │ │ ├── LaunchServices.c │ │ │ ├── LaunchServices.cpp │ │ │ ├── UTType.m │ │ │ ├── constants.c │ │ │ └── launchservicesd │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LSBundle.h │ │ │ │ ├── LSBundle.m │ │ │ │ ├── com.apple.coreservices.launchservicesd.plist │ │ │ │ ├── launchservicesd.m │ │ │ │ └── schema.sql │ │ │ ├── Metadata │ │ │ ├── CMakeLists.txt │ │ │ ├── MDItem.c │ │ │ └── MDQuery.c │ │ │ ├── OSServices │ │ │ ├── CMakeLists.txt │ │ │ └── empty.c │ │ │ ├── SearchKit │ │ │ ├── Analysis.m │ │ │ ├── CMakeLists.txt │ │ │ └── SKIndex.c │ │ │ └── SharedFileList │ │ │ ├── CMakeLists.txt │ │ │ └── empty.c │ ├── CoreTelephony │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreTelephony │ │ │ │ ├── CTAppDataUsage.h │ │ │ │ ├── CTAsciiAddress.h │ │ │ │ ├── CTAudioCodecInfo.h │ │ │ │ ├── CTBinarySMS.h │ │ │ │ ├── CTBundle.h │ │ │ │ ├── CTCall.h │ │ │ │ ├── CTCallCapabilities.h │ │ │ │ ├── CTCallCenter.h │ │ │ │ ├── CTCallForwardingValue.h │ │ │ │ ├── CTCarrier.h │ │ │ │ ├── CTCellIdInfo.h │ │ │ │ ├── CTCellInfo.h │ │ │ │ ├── CTCellularPlanManagerCameraScanAction.h │ │ │ │ ├── CTCellularPlanProvisioningRequest.h │ │ │ │ ├── CTDataConnectionAvailabilityStatus.h │ │ │ │ ├── CTDataConnectionStatus.h │ │ │ │ ├── CTDataSettings.h │ │ │ │ ├── CTDataStatus.h │ │ │ │ ├── CTDataUsage.h │ │ │ │ ├── CTDataUsed.h │ │ │ │ ├── CTDeviceDataUsage.h │ │ │ │ ├── CTEmailAddress.h │ │ │ │ ├── CTEmergencyMode.h │ │ │ │ ├── CTEmergencyModeResult.h │ │ │ │ ├── CTEncryptionStatusInfo.h │ │ │ │ ├── CTEnhancedDataLinkQualityMetric.h │ │ │ │ ├── CTEnhancedLinkQualityMetric.h │ │ │ │ ├── CTIMSRegistrationStatus.h │ │ │ │ ├── CTIMSRegistrationTransportInfo.h │ │ │ │ ├── CTMessage.h │ │ │ │ ├── CTMessageAddress.h │ │ │ │ ├── CTMessageCenter.h │ │ │ │ ├── CTMessagePart.h │ │ │ │ ├── CTMessageStatus.h │ │ │ │ ├── CTMmsEncoder.h │ │ │ │ ├── CTMmsRegistrationFailureInfoType.h │ │ │ │ ├── CTMobileEquipmentInfo.h │ │ │ │ ├── CTMobileEquipmentInfoList.h │ │ │ │ ├── CTNetwork.h │ │ │ │ ├── CTNetworkList.h │ │ │ │ ├── CTNetworkSelectionInfo.h │ │ │ │ ├── CTPNRContextInfo.h │ │ │ │ ├── CTPNRDataType.h │ │ │ │ ├── CTPNRRequestSentInfo.h │ │ │ │ ├── CTPNRRequestType.h │ │ │ │ ├── CTPerAppDataUsage.h │ │ │ │ ├── CTPhoneBookEntry.h │ │ │ │ ├── CTPhoneNumber.h │ │ │ │ ├── CTPhoneNumberInfo.h │ │ │ │ ├── CTPriVersion.h │ │ │ │ ├── CTRadioAccessTechnology.h │ │ │ │ ├── CTRegistrationDisplayStatus.h │ │ │ │ ├── CTSMSDataType.h │ │ │ │ ├── CTServiceDescriptor.h │ │ │ │ ├── CTServiceDescriptorContainer.h │ │ │ │ ├── CTSignalStrengthInfo.h │ │ │ │ ├── CTSignalStrengthMeasurements.h │ │ │ │ ├── CTSimLabel.h │ │ │ │ ├── CTSubscriberAlgorithm.h │ │ │ │ ├── CTSubscriberAlgorithmEAPAKA.h │ │ │ │ ├── CTSubscriberAlgorithmEAPSIM.h │ │ │ │ ├── CTSubscriberAuthDataHolder.h │ │ │ │ ├── CTSubscriberAuthRequest.h │ │ │ │ ├── CTSubscriberAuthResult.h │ │ │ │ ├── CTSubscriberInfo.h │ │ │ │ ├── CTSuppServicesNotificationData.h │ │ │ │ ├── CTSupportedMaxDataRates.h │ │ │ │ ├── CTTelephonyNetworkInfo.h │ │ │ │ ├── CTVoiceLinkQualityMetric.h │ │ │ │ ├── CTVoicemailInfoType.h │ │ │ │ ├── CTXPCContextInfo.h │ │ │ │ ├── CTXPCContexts.h │ │ │ │ ├── CTXPCError.h │ │ │ │ ├── CTXPCServiceAppDataUsageInterface.h │ │ │ │ ├── CTXPCServiceBaseInterface.h │ │ │ │ ├── CTXPCServiceCallInterface.h │ │ │ │ ├── CTXPCServiceCapabilitiesInterface.h │ │ │ │ ├── CTXPCServiceCarrierBundleInterface.h │ │ │ │ ├── CTXPCServiceCarrierServicesInterface.h │ │ │ │ ├── CTXPCServiceCellMonitorInterface.h │ │ │ │ ├── CTXPCServiceCellularPlanManagerInterface.h │ │ │ │ ├── CTXPCServiceCellularUsagePolicyInterface.h │ │ │ │ ├── CTXPCServiceDataInterface.h │ │ │ │ ├── CTXPCServiceDeviceManagementInterface.h │ │ │ │ ├── CTXPCServiceEmergencyInterface.h │ │ │ │ ├── CTXPCServiceFTInterface.h │ │ │ │ ├── CTXPCServiceInterface.h │ │ │ │ ├── CTXPCServicePNRInterface.h │ │ │ │ ├── CTXPCServicePhonebookInterface.h │ │ │ │ ├── CTXPCServicePostponementInterface.h │ │ │ │ ├── CTXPCServiceRadioInterface.h │ │ │ │ ├── CTXPCServiceRegistrationInterface.h │ │ │ │ ├── CTXPCServiceSMSInterface.h │ │ │ │ ├── CTXPCServiceSubscriberInterface.h │ │ │ │ ├── CTXPCServiceSubscriptionContext.h │ │ │ │ ├── CTXPCServiceSubscriptionInfo.h │ │ │ │ ├── CTXPCServiceSuppServicesInterface.h │ │ │ │ ├── CTXPCServiceVoicemailInterface.h │ │ │ │ ├── CTXPCSimLessContextInfo.h │ │ │ │ ├── CTXPCSimLessContexts.h │ │ │ │ ├── CoreTelephony.h │ │ │ │ ├── CoreTelephonyClient.h │ │ │ │ ├── CoreTelephonyClientCallDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientCapabilitiesDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientCarrierBundleDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientCarrierServicesDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientCellularUsagePolicyDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientDataDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientDelegateProxy.h │ │ │ │ ├── CoreTelephonyClientDelegateProxyInterface.h │ │ │ │ ├── CoreTelephonyClientEmergencyDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientMux.h │ │ │ │ ├── CoreTelephonyClientPNRDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientRegistrationDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientRemoteAsyncProxy.h │ │ │ │ ├── CoreTelephonyClientSMSDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientSubscriberDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientSuppServicesDelegateInternal.h │ │ │ │ ├── CoreTelephonyClientVoicemailDelegateInternal.h │ │ │ │ ├── MuxNotificationSink.h │ │ │ │ └── MuxNotificationSinkDelegate.h │ │ └── src │ │ │ ├── CTAppDataUsage.m │ │ │ ├── CTAsciiAddress.m │ │ │ ├── CTAudioCodecInfo.m │ │ │ ├── CTBinarySMS.m │ │ │ ├── CTBundle.m │ │ │ ├── CTCall.m │ │ │ ├── CTCallCapabilities.m │ │ │ ├── CTCallCenter.m │ │ │ ├── CTCallForwardingValue.m │ │ │ ├── CTCarrier.m │ │ │ ├── CTCellIdInfo.m │ │ │ ├── CTCellInfo.m │ │ │ ├── CTCellularPlanManagerCameraScanAction.m │ │ │ ├── CTCellularPlanProvisioningRequest.m │ │ │ ├── CTDataConnectionAvailabilityStatus.m │ │ │ ├── CTDataConnectionStatus.m │ │ │ ├── CTDataSettings.m │ │ │ ├── CTDataStatus.m │ │ │ ├── CTDataUsage.m │ │ │ ├── CTDataUsed.m │ │ │ ├── CTDeviceDataUsage.m │ │ │ ├── CTEmailAddress.m │ │ │ ├── CTEmergencyMode.m │ │ │ ├── CTEmergencyModeResult.m │ │ │ ├── CTEncryptionStatusInfo.m │ │ │ ├── CTEnhancedDataLinkQualityMetric.m │ │ │ ├── CTEnhancedLinkQualityMetric.m │ │ │ ├── CTIMSRegistrationStatus.m │ │ │ ├── CTIMSRegistrationTransportInfo.m │ │ │ ├── CTMessage.m │ │ │ ├── CTMessageCenter.m │ │ │ ├── CTMessagePart.m │ │ │ ├── CTMessageStatus.m │ │ │ ├── CTMmsEncoder.m │ │ │ ├── CTMmsRegistrationFailureInfoType.m │ │ │ ├── CTMobileEquipmentInfo.m │ │ │ ├── CTMobileEquipmentInfoList.m │ │ │ ├── CTNetwork.m │ │ │ ├── CTNetworkList.m │ │ │ ├── CTNetworkSelectionInfo.m │ │ │ ├── CTPNRContextInfo.m │ │ │ ├── CTPNRDataType.m │ │ │ ├── CTPNRRequestSentInfo.m │ │ │ ├── CTPNRRequestType.m │ │ │ ├── CTPerAppDataUsage.m │ │ │ ├── CTPhoneBookEntry.m │ │ │ ├── CTPhoneNumber.m │ │ │ ├── CTPhoneNumberInfo.m │ │ │ ├── CTPriVersion.m │ │ │ ├── CTRadioAccessTechnology.m │ │ │ ├── CTRegistrationDisplayStatus.m │ │ │ ├── CTSMSDataType.m │ │ │ ├── CTServiceDescriptor.m │ │ │ ├── CTServiceDescriptorContainer.m │ │ │ ├── CTSignalStrengthInfo.m │ │ │ ├── CTSignalStrengthMeasurements.m │ │ │ ├── CTSimLabel.m │ │ │ ├── CTSubscriberAlgorithm.m │ │ │ ├── CTSubscriberAlgorithmEAPAKA.m │ │ │ ├── CTSubscriberAlgorithmEAPSIM.m │ │ │ ├── CTSubscriberAuthDataHolder.m │ │ │ ├── CTSubscriberAuthRequest.m │ │ │ ├── CTSubscriberAuthResult.m │ │ │ ├── CTSubscriberInfo.m │ │ │ ├── CTSuppServicesNotificationData.m │ │ │ ├── CTSupportedMaxDataRates.m │ │ │ ├── CTTelephonyNetworkInfo.m │ │ │ ├── CTVoiceLinkQualityMetric.m │ │ │ ├── CTVoicemailInfoType.m │ │ │ ├── CTXPCContextInfo.m │ │ │ ├── CTXPCContexts.m │ │ │ ├── CTXPCError.m │ │ │ ├── CTXPCServiceSubscriptionContext.m │ │ │ ├── CTXPCServiceSubscriptionInfo.m │ │ │ ├── CTXPCSimLessContextInfo.m │ │ │ ├── CTXPCSimLessContexts.m │ │ │ ├── CoreTelephony.m │ │ │ ├── CoreTelephonyClient.m │ │ │ ├── CoreTelephonyClientDelegateProxy.m │ │ │ ├── CoreTelephonyClientMux.m │ │ │ ├── CoreTelephonyClientRemoteAsyncProxy.m │ │ │ └── MuxNotificationSink.m │ ├── CoreVideo │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreVideo │ │ │ │ ├── CVBase.h │ │ │ │ ├── CVBuffer.h │ │ │ │ ├── CVDisplayLink.h │ │ │ │ ├── CVImageBuffer.h │ │ │ │ ├── CVPixelBuffer.h │ │ │ │ ├── CVReturn.h │ │ │ │ └── CoreVideo.h │ │ └── src │ │ │ ├── CVDisplayLink.mm │ │ │ ├── constants.c │ │ │ └── stubs.c │ ├── CoreWLAN │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreWLAN │ │ │ │ ├── CW8021XProfile.h │ │ │ │ ├── CWANQP3GPPCellular.h │ │ │ │ ├── CWANQPCapabilityList.h │ │ │ │ ├── CWANQPConnectionCapability.h │ │ │ │ ├── CWANQPDomainName.h │ │ │ │ ├── CWANQPElement.h │ │ │ │ ├── CWANQPHS20CapabilityList.h │ │ │ │ ├── CWANQPNAIRealm.h │ │ │ │ ├── CWANQPNAIRealmEntry.h │ │ │ │ ├── CWANQPNetworkAuthenticationType.h │ │ │ │ ├── CWANQPNetworkAuthenticationTypeEntry.h │ │ │ │ ├── CWANQPOperatorFriendlyName.h │ │ │ │ ├── CWANQPOperatorFriendlyNameEntry.h │ │ │ │ ├── CWANQPProtoPortTuple.h │ │ │ │ ├── CWANQPRoamingConsortium.h │ │ │ │ ├── CWANQPVenueName.h │ │ │ │ ├── CWANQPVenueNameEntry.h │ │ │ │ ├── CWANQPWANMetrics.h │ │ │ │ ├── CWAutoJoinStatistics.h │ │ │ │ ├── CWBTCStatus.h │ │ │ │ ├── CWBaseStationPPPController.h │ │ │ │ ├── CWChannel.h │ │ │ │ ├── CWChannelHistoryItem.h │ │ │ │ ├── CWConfiguration.h │ │ │ │ ├── CWEAPOLClient.h │ │ │ │ ├── CWEventDelegate.h │ │ │ │ ├── CWIPMonitor.h │ │ │ │ ├── CWInterface.h │ │ │ │ ├── CWInterfaceManager.h │ │ │ │ ├── CWInternalEventDelegate.h │ │ │ │ ├── CWJoinStatistics.h │ │ │ │ ├── CWKeychainProxy.h │ │ │ │ ├── CWLocationChannel.h │ │ │ │ ├── CWLocationClient.h │ │ │ │ ├── CWMessageTracerCache.h │ │ │ │ ├── CWMutableConfiguration.h │ │ │ │ ├── CWMutableNetworkProfile.h │ │ │ │ ├── CWNetwork.h │ │ │ │ ├── CWNetworkProfile.h │ │ │ │ ├── CWPasswordSharingSimulator.h │ │ │ │ ├── CWRoamStatistics.h │ │ │ │ ├── CWTetherDevice.h │ │ │ │ ├── CWUnlockSimulator.h │ │ │ │ ├── CWWiFiClient.h │ │ │ │ ├── CWWirelessProfile.h │ │ │ │ ├── CoreWLAN.h │ │ │ │ ├── SFPasswordSharingServiceDelegate.h │ │ │ │ ├── WiFiDeviceClientInternal.h │ │ │ │ ├── WiFiManagerClientInternal.h │ │ │ │ ├── WiFiNetworkInternal.h │ │ │ │ ├── WiFiShareKitXPCRequestProtocol.h │ │ │ │ ├── WiFiXPCEventProtocol.h │ │ │ │ └── WiFiXPCRequestProtocol.h │ │ └── src │ │ │ ├── CW8021XProfile.m │ │ │ ├── CWANQP3GPPCellular.m │ │ │ ├── CWANQPCapabilityList.m │ │ │ ├── CWANQPConnectionCapability.m │ │ │ ├── CWANQPDomainName.m │ │ │ ├── CWANQPElement.m │ │ │ ├── CWANQPHS20CapabilityList.m │ │ │ ├── CWANQPNAIRealm.m │ │ │ ├── CWANQPNAIRealmEntry.m │ │ │ ├── CWANQPNetworkAuthenticationType.m │ │ │ ├── CWANQPNetworkAuthenticationTypeEntry.m │ │ │ ├── CWANQPOperatorFriendlyName.m │ │ │ ├── CWANQPOperatorFriendlyNameEntry.m │ │ │ ├── CWANQPProtoPortTuple.m │ │ │ ├── CWANQPRoamingConsortium.m │ │ │ ├── CWANQPVenueName.m │ │ │ ├── CWANQPVenueNameEntry.m │ │ │ ├── CWANQPWANMetrics.m │ │ │ ├── CWAutoJoinStatistics.m │ │ │ ├── CWBTCStatus.m │ │ │ ├── CWBaseStationPPPController.m │ │ │ ├── CWChannel.m │ │ │ ├── CWChannelHistoryItem.m │ │ │ ├── CWConfiguration.m │ │ │ ├── CWEAPOLClient.m │ │ │ ├── CWIPMonitor.m │ │ │ ├── CWInterface.m │ │ │ ├── CWInterfaceManager.m │ │ │ ├── CWJoinStatistics.m │ │ │ ├── CWLocationChannel.m │ │ │ ├── CWLocationClient.m │ │ │ ├── CWMessageTracerCache.m │ │ │ ├── CWMutableConfiguration.m │ │ │ ├── CWMutableNetworkProfile.m │ │ │ ├── CWNetwork.m │ │ │ ├── CWNetworkProfile.m │ │ │ ├── CWPasswordSharingSimulator.m │ │ │ ├── CWRoamStatistics.m │ │ │ ├── CWTetherDevice.m │ │ │ ├── CWUnlockSimulator.m │ │ │ ├── CWWiFiClient.m │ │ │ ├── CWWirelessProfile.m │ │ │ ├── CoreWLAN.m │ │ │ ├── WiFiDeviceClientInternal.m │ │ │ ├── WiFiManagerClientInternal.m │ │ │ └── WiFiNetworkInternal.m │ ├── CryptoTokenKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── CryptoTokenKit │ │ │ │ ├── CryptoTokenKit.h │ │ │ │ ├── TKError.h │ │ │ │ ├── TKSmartCard.h │ │ │ │ ├── TKSmartCardATR.h │ │ │ │ ├── TKSmartCardToken.h │ │ │ │ ├── TKTLVRecord.h │ │ │ │ ├── TKToken.h │ │ │ │ ├── TKTokenKeychainItem.h │ │ │ │ └── TKTokenWatcher.h │ │ │ ├── ctkclient.h │ │ │ ├── ctkclient_test.h │ │ │ └── ctkloginhelper.h │ │ └── src │ │ │ ├── ctkclient.c │ │ │ ├── ctkclient_test.c │ │ │ └── ctkloginhelper.c │ ├── DirectoryServices │ │ ├── CMakeLists.txt │ │ ├── darling-framework │ │ │ └── include │ │ │ │ └── DirectoryService │ │ ├── include │ │ │ └── DirectoryService │ │ │ │ └── DirectoryService.h │ │ └── src │ │ │ ├── DirectoryService.c │ │ │ └── DirectoryService.h │ ├── DiscRecording │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── DiscRecording │ │ │ │ ├── DRAudioGenerator.h │ │ │ │ ├── DRAudioTrack.h │ │ │ │ ├── DRBINFileProducer.h │ │ │ │ ├── DRBurn.h │ │ │ │ ├── DRCDTextBlock.h │ │ │ │ ├── DRCallbackDevice.h │ │ │ │ ├── DRContentGenerator.h │ │ │ │ ├── DRCueFileParser.h │ │ │ │ ├── DRDataGenerator.h │ │ │ │ ├── DRDefaultDeviceFilter.h │ │ │ │ ├── DRDevice.h │ │ │ │ ├── DRDeviceFilter.h │ │ │ │ ├── DRDeviceFilterDelegate.h │ │ │ │ ├── DRErase.h │ │ │ │ ├── DRFSObject.h │ │ │ │ ├── DRFile.h │ │ │ │ ├── DRFilesystemTrack.h │ │ │ │ ├── DRFolder.h │ │ │ │ ├── DRMSF.h │ │ │ │ ├── DRMSFFormatter.h │ │ │ │ ├── DRNotificationCenter.h │ │ │ │ ├── DRPartialFileAudioProducer.h │ │ │ │ ├── DRPrepare.h │ │ │ │ ├── DRSession.h │ │ │ │ ├── DRSessionCDTextProducer.h │ │ │ │ ├── DRSessionProducerPlaceholder.h │ │ │ │ ├── DRSilenceGenerator.h │ │ │ │ ├── DRTOCFileParser.h │ │ │ │ ├── DRTOCProducer.h │ │ │ │ ├── DRTask.h │ │ │ │ ├── DRTrack.h │ │ │ │ └── DiscRecording.h │ │ └── src │ │ │ ├── DRAudioGenerator.m │ │ │ ├── DRAudioTrack.m │ │ │ ├── DRBINFileProducer.m │ │ │ ├── DRBurn.m │ │ │ ├── DRCDTextBlock.m │ │ │ ├── DRCallbackDevice.m │ │ │ ├── DRCueFileParser.m │ │ │ ├── DRDataGenerator.m │ │ │ ├── DRDefaultDeviceFilter.m │ │ │ ├── DRDevice.m │ │ │ ├── DRDeviceFilter.m │ │ │ ├── DRErase.m │ │ │ ├── DRFSObject.m │ │ │ ├── DRFile.m │ │ │ ├── DRFilesystemTrack.m │ │ │ ├── DRFolder.m │ │ │ ├── DRMSF.m │ │ │ ├── DRMSFFormatter.m │ │ │ ├── DRNotificationCenter.m │ │ │ ├── DRPartialFileAudioProducer.m │ │ │ ├── DRPrepare.m │ │ │ ├── DRSession.m │ │ │ ├── DRSessionCDTextProducer.m │ │ │ ├── DRSessionProducerPlaceholder.m │ │ │ ├── DRSilenceGenerator.m │ │ │ ├── DRTOCFileParser.m │ │ │ ├── DRTOCProducer.m │ │ │ ├── DRTask.m │ │ │ ├── DRTrack.m │ │ │ └── DiscRecording.m │ ├── DiscRecordingUI │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── DiscRecordingUI │ │ │ │ ├── DRBurnProgressPanel.h │ │ │ │ ├── DRBurnSessionProgressPanelGlueObject.h │ │ │ │ ├── DRBurnSessionSetupPanelGlueObject.h │ │ │ │ ├── DRBurnSetupPanel.h │ │ │ │ ├── DRBurnSetupPanelPrivate.h │ │ │ │ ├── DRDeviceArrayController.h │ │ │ │ ├── DRDeviceChooser.h │ │ │ │ ├── DRDeviceChooserCell.h │ │ │ │ ├── DRDeviceObjectController.h │ │ │ │ ├── DREraseProgressPanel.h │ │ │ │ ├── DREraseSessionProgressPanelGlueObject.h │ │ │ │ ├── DREraseSessionSetupPanelGlueObject.h │ │ │ │ ├── DREraseSetupPanel.h │ │ │ │ ├── DREraseSetupPanelPrivate.h │ │ │ │ ├── DRLazyIconRefImageRep.h │ │ │ │ ├── DRMediaEraseController.h │ │ │ │ ├── DRMediaEraseControllerInternal.h │ │ │ │ ├── DRMoveHelper.h │ │ │ │ ├── DROpticalDiscEraseView.h │ │ │ │ ├── DRSetupPanel.h │ │ │ │ ├── DRSetupPanelDeviceFilter.h │ │ │ │ ├── DRSetupPanelPrivate.h │ │ │ │ ├── DRUIKitPanelController.h │ │ │ │ ├── DRUIPrivateFrameworkClassForFindingBundle.h │ │ │ │ ├── DRUIPrivateFrameworkInitializationClass.h │ │ │ │ ├── DiscRecordingUI.h │ │ │ │ ├── NSFileManagerDelegate.h │ │ │ │ └── NSWindowDelegate.h │ │ └── src │ │ │ ├── DRBurnProgressPanel.m │ │ │ ├── DRBurnSessionProgressPanelGlueObject.m │ │ │ ├── DRBurnSessionSetupPanelGlueObject.m │ │ │ ├── DRBurnSetupPanel.m │ │ │ ├── DRBurnSetupPanelPrivate.m │ │ │ ├── DRDeviceArrayController.m │ │ │ ├── DRDeviceChooser.m │ │ │ ├── DRDeviceChooserCell.m │ │ │ ├── DRDeviceObjectController.m │ │ │ ├── DREraseProgressPanel.m │ │ │ ├── DREraseSessionProgressPanelGlueObject.m │ │ │ ├── DREraseSessionSetupPanelGlueObject.m │ │ │ ├── DREraseSetupPanel.m │ │ │ ├── DREraseSetupPanelPrivate.m │ │ │ ├── DRLazyIconRefImageRep.m │ │ │ ├── DRMediaEraseController.m │ │ │ ├── DRMediaEraseControllerInternal.m │ │ │ ├── DRMoveHelper.m │ │ │ ├── DROpticalDiscEraseView.m │ │ │ ├── DRSetupPanel.m │ │ │ ├── DRSetupPanelDeviceFilter.m │ │ │ ├── DRSetupPanelPrivate.m │ │ │ ├── DRUIKitPanelController.m │ │ │ ├── DRUIPrivateFrameworkClassForFindingBundle.m │ │ │ ├── DRUIPrivateFrameworkInitializationClass.m │ │ │ └── DiscRecordingUI.m │ ├── DiskArbitration │ │ ├── CMakeLists.txt │ │ ├── DADisk.c │ │ ├── DADisk.h │ │ ├── DADissenter.c │ │ ├── DADissenter.h │ │ ├── DASession.c │ │ ├── DASession.h │ │ ├── README │ │ └── include │ │ │ └── DiskArbitration │ │ │ ├── DADisk.h │ │ │ ├── DADissenter.h │ │ │ ├── DAInternal.h │ │ │ ├── DASession.h │ │ │ ├── DiskArbitration.h │ │ │ └── DiskArbitrationPrivate.h │ ├── DrawSprocket │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── DrawSprocket │ │ │ │ └── DrawSprocket.h │ │ └── src │ │ │ └── DrawSprocket.c │ ├── EventKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── EventKit │ │ │ │ ├── CalDateRangeProtocol.h │ │ │ │ ├── CalendarModelProtocol.h │ │ │ │ ├── CalendarSourceModelProtocol.h │ │ │ │ ├── EKActionsAccounting.h │ │ │ │ ├── EKAlarm.h │ │ │ │ ├── EKAssistantEventPredicate.h │ │ │ │ ├── EKAttachment.h │ │ │ │ ├── EKAttendee.h │ │ │ │ ├── EKAvailabilityCache.h │ │ │ │ ├── EKAvailabilityCachedSpan.h │ │ │ │ ├── EKAvailabilityCachedSpanRange.h │ │ │ │ ├── EKAvailabilitySpan.h │ │ │ │ ├── EKAvailabilityUtilities.h │ │ │ │ ├── EKBackingObjectsTracker.h │ │ │ │ ├── EKBackingStore.h │ │ │ │ ├── EKBackingStoreAccounting.h │ │ │ │ ├── EKBatchChangeInfo.h │ │ │ │ ├── EKCalendar.h │ │ │ │ ├── EKCalendarChangeHelper.h │ │ │ │ ├── EKCalendarEventInvitationNotification.h │ │ │ │ ├── EKCalendarInviteReplyNotification.h │ │ │ │ ├── EKCalendarItem.h │ │ │ │ ├── EKCalendarNotification.h │ │ │ │ ├── EKCalendarPreferences.h │ │ │ │ ├── EKCalendarProposeNewTimeNotification.h │ │ │ │ ├── EKCalendarProtocol.h │ │ │ │ ├── EKCalendarProtocol_Shared.h │ │ │ │ ├── EKCalendarResourceChangeNotification.h │ │ │ │ ├── EKCalendarSharedCalendarNotification.h │ │ │ │ ├── EKCalendarStoreBackingStore.h │ │ │ │ ├── EKCalendarSuggestionNotification.h │ │ │ │ ├── EKChangeListener.h │ │ │ │ ├── EKChangeListenerDelegate.h │ │ │ │ ├── EKChangeLog.h │ │ │ │ ├── EKChangeSet.h │ │ │ │ ├── EKChangeTracker.h │ │ │ │ ├── EKConferenceURLDetector.h │ │ │ │ ├── EKConflictDetails.h │ │ │ │ ├── EKConflictScanJob.h │ │ │ │ ├── EKConflictScanner.h │ │ │ │ ├── EKContactEventRangePredicate.h │ │ │ │ ├── EKCoreDataFaultDelegate.h │ │ │ │ ├── EKCreateOperation.h │ │ │ │ ├── EKDataProtectionObserver.h │ │ │ │ ├── EKDebugPreferences.h │ │ │ │ ├── EKDefaultSerializerFactory.h │ │ │ │ ├── EKDeleteOperation.h │ │ │ │ ├── EKDiff.h │ │ │ │ ├── EKEWSItemIDPredicate.h │ │ │ │ ├── EKEditingContext.h │ │ │ │ ├── EKEditingContextGroup.h │ │ │ │ ├── EKEditingContextObserver.h │ │ │ │ ├── EKEvent.h │ │ │ │ ├── EKEventOccurrenceCache.h │ │ │ │ ├── EKEventOccurrenceProtocol.h │ │ │ │ ├── EKEventOccurrenceProtocol_Shared.h │ │ │ │ ├── EKEventRangePredicate.h │ │ │ │ ├── EKEventSliceInfo.h │ │ │ │ ├── EKEventStore.h │ │ │ │ ├── EKFeatureSet.h │ │ │ │ ├── EKFrozenAlarm.h │ │ │ │ ├── EKFrozenAttachment.h │ │ │ │ ├── EKFrozenAttendee.h │ │ │ │ ├── EKFrozenCalendar.h │ │ │ │ ├── EKFrozenCalendarEventInvitationNotification.h │ │ │ │ ├── EKFrozenCalendarInviteReplyNotification.h │ │ │ │ ├── EKFrozenCalendarItem.h │ │ │ │ ├── EKFrozenCalendarNotification.h │ │ │ │ ├── EKFrozenCalendarProposeNewTimeNotification.h │ │ │ │ ├── EKFrozenCalendarResourceChangeNotification.h │ │ │ │ ├── EKFrozenCalendarSharedCalendarNotification.h │ │ │ │ ├── EKFrozenCalendarSource.h │ │ │ │ ├── EKFrozenCalendarSuggestionNotification.h │ │ │ │ ├── EKFrozenEvent.h │ │ │ │ ├── EKFrozenMeltedPair.h │ │ │ │ ├── EKFrozenObject.h │ │ │ │ ├── EKFrozenOrganizer.h │ │ │ │ ├── EKFrozenParticipant.h │ │ │ │ ├── EKFrozenRecurrenceRule.h │ │ │ │ ├── EKFrozenReminder.h │ │ │ │ ├── EKFrozenSharee.h │ │ │ │ ├── EKFrozenStructuredLocation.h │ │ │ │ ├── EKFrozenSuggestedEventInfo.h │ │ │ │ ├── EKGEORouteHypothesis.h │ │ │ │ ├── EKGeneralLookupPredicate.h │ │ │ │ ├── EKIdentityProtocol.h │ │ │ │ ├── EKInMemoryBackingStore.h │ │ │ │ ├── EKInviteeAlternativeTime.h │ │ │ │ ├── EKInviteeAlternativeTimeSearcher.h │ │ │ │ ├── EKInviteeTimeSpan.h │ │ │ │ ├── EKJunkInvitationProtocol_Private.h │ │ │ │ ├── EKJunkInvitationProtocol_Shared.h │ │ │ │ ├── EKLiveEditingStore.h │ │ │ │ ├── EKManagedObjectContext.h │ │ │ │ ├── EKMutableEventOccurrenceProtocol.h │ │ │ │ ├── EKMutableOccurrenceProtocol.h │ │ │ │ ├── EKNaturalLanguageSuggestedEventPredicate.h │ │ │ │ ├── EKObject.h │ │ │ │ ├── EKObjectChangeSummarizer.h │ │ │ │ ├── EKObjectCreation.h │ │ │ │ ├── EKObjectCreationCalendarStore.h │ │ │ │ ├── EKObjectCreationInMemory.h │ │ │ │ ├── EKObjectCreationInMemoryCalendar.h │ │ │ │ ├── EKObjectCreationInMemoryObject.h │ │ │ │ ├── EKObjectCreationInMemorySource.h │ │ │ │ ├── EKObjectGroup.h │ │ │ │ ├── EKObjectPersistentChangesModel.h │ │ │ │ ├── EKObjectValidationContext.h │ │ │ │ ├── EKOccurrenceProtocol.h │ │ │ │ ├── EKOccurrenceProtocol_Shared.h │ │ │ │ ├── EKOrganizer.h │ │ │ │ ├── EKParticipant.h │ │ │ │ ├── EKParticipantForSorting.h │ │ │ │ ├── EKParticipantToContactMatcher.h │ │ │ │ ├── EKPersistentHistoryTransactionChangeSummary.h │ │ │ │ ├── EKPersistentHistoryTransactionChangeSummaryModel.h │ │ │ │ ├── EKPostSliceDescription.h │ │ │ │ ├── EKPredicate.h │ │ │ │ ├── EKPredicateSearch.h │ │ │ │ ├── EKPreferences.h │ │ │ │ ├── EKProtocolAlarm.h │ │ │ │ ├── EKProtocolAttachment.h │ │ │ │ ├── EKProtocolCalendarNotification.h │ │ │ │ ├── EKProtocolMutableAlarm.h │ │ │ │ ├── EKProtocolMutableCalendarNotification.h │ │ │ │ ├── EKProtocolMutableObject.h │ │ │ │ ├── EKProtocolMutableParticipant.h │ │ │ │ ├── EKProtocolMutableReminderOccurrence.h │ │ │ │ ├── EKProtocolMutableSharee.h │ │ │ │ ├── EKProtocolMutableStructuredLocation.h │ │ │ │ ├── EKProtocolObject.h │ │ │ │ ├── EKProtocolParticipant.h │ │ │ │ ├── EKProtocolRecurrenceRule.h │ │ │ │ ├── EKProtocolReminderOccurrence.h │ │ │ │ ├── EKProtocolSharee.h │ │ │ │ ├── EKProtocolStructuredLocation.h │ │ │ │ ├── EKProtocolSuggestedEventInfo.h │ │ │ │ ├── EKQueryEventPredicate.h │ │ │ │ ├── EKQueryPredicate.h │ │ │ │ ├── EKQueryReminderPredicate.h │ │ │ │ ├── EKReadWriteLock.h │ │ │ │ ├── EKRecents.h │ │ │ │ ├── EKRecurrenceChangeInfo.h │ │ │ │ ├── EKRecurrenceChangeManager.h │ │ │ │ ├── EKRecurrenceDayOfWeek.h │ │ │ │ ├── EKRecurrenceEnd.h │ │ │ │ ├── EKRecurrenceException.h │ │ │ │ ├── EKRecurrenceGenerator.h │ │ │ │ ├── EKRecurrenceIdentifier.h │ │ │ │ ├── EKRecurrenceIdentifierProtocol.h │ │ │ │ ├── EKRecurrenceRule.h │ │ │ │ ├── EKRecurrenceSet.h │ │ │ │ ├── EKRecurringReminderCompletedChangeInfo.h │ │ │ │ ├── EKRelationChange.h │ │ │ │ ├── EKReminder.h │ │ │ │ ├── EKRepliedEventPredicate.h │ │ │ │ ├── EKRequestAvailabilityOperation.h │ │ │ │ ├── EKResliceOperation.h │ │ │ │ ├── EKRevertOperation.h │ │ │ │ ├── EKSaveOperation.h │ │ │ │ ├── EKSecureKeyedArchiverSerializer.h │ │ │ │ ├── EKSerializableAlarm.h │ │ │ │ ├── EKSerializableAttachment.h │ │ │ │ ├── EKSerializableEvent.h │ │ │ │ ├── EKSerializableObject.h │ │ │ │ ├── EKSerializableParticipant.h │ │ │ │ ├── EKSerializableRecurrenceRule.h │ │ │ │ ├── EKSerializableStructuredLocation.h │ │ │ │ ├── EKSerializer.h │ │ │ │ ├── EKSeriesDetails.h │ │ │ │ ├── EKSharee.h │ │ │ │ ├── EKSliceDescription.h │ │ │ │ ├── EKSource.h │ │ │ │ ├── EKStructuredLocation.h │ │ │ │ ├── EKSuggestedEventInfo.h │ │ │ │ ├── EKSuggestedEventPredicate.h │ │ │ │ ├── EKSyntheticGEORouteHypothesis.h │ │ │ │ ├── EKTempEventStoreFactory.h │ │ │ │ ├── EKTimedEventStorePurger.h │ │ │ │ ├── EKTravelEngineHypothesis.h │ │ │ │ ├── EKTravelEngineUtilities.h │ │ │ │ ├── EKUncompleteRecurringReminderOperation.h │ │ │ │ ├── EKUndeleteFutureOperation.h │ │ │ │ ├── EKUndoDelegate.h │ │ │ │ ├── EKUndoManager.h │ │ │ │ ├── EKUndoSliceOutcome.h │ │ │ │ ├── EKUndoableOperation.h │ │ │ │ ├── EKUnrevertOperation.h │ │ │ │ ├── EKUnsliceOperation.h │ │ │ │ ├── EventKit.h │ │ │ │ ├── EventOccurrenceModelProtocol.h │ │ │ │ ├── MutableCalendarSourceModelProtocol.h │ │ │ │ ├── MutableEventOccurrenceModelProtocol.h │ │ │ │ ├── MutableOccurrenceModelProtocol.h │ │ │ │ ├── NSManagedObjectContextFaultingDelegate.h │ │ │ │ └── OccurrenceModelProtocol.h │ │ └── src │ │ │ ├── EKActionsAccounting.m │ │ │ ├── EKAlarm.m │ │ │ ├── EKAssistantEventPredicate.m │ │ │ ├── EKAttachment.m │ │ │ ├── EKAttendee.m │ │ │ ├── EKAvailabilityCache.m │ │ │ ├── EKAvailabilityCachedSpan.m │ │ │ ├── EKAvailabilityCachedSpanRange.m │ │ │ ├── EKAvailabilitySpan.m │ │ │ ├── EKAvailabilityUtilities.m │ │ │ ├── EKBackingObjectsTracker.m │ │ │ ├── EKBackingStore.m │ │ │ ├── EKBackingStoreAccounting.m │ │ │ ├── EKBatchChangeInfo.m │ │ │ ├── EKCalendar.m │ │ │ ├── EKCalendarChangeHelper.m │ │ │ ├── EKCalendarEventInvitationNotification.m │ │ │ ├── EKCalendarInviteReplyNotification.m │ │ │ ├── EKCalendarItem.m │ │ │ ├── EKCalendarNotification.m │ │ │ ├── EKCalendarPreferences.m │ │ │ ├── EKCalendarProposeNewTimeNotification.m │ │ │ ├── EKCalendarProtocol_Shared.m │ │ │ ├── EKCalendarResourceChangeNotification.m │ │ │ ├── EKCalendarSharedCalendarNotification.m │ │ │ ├── EKCalendarStoreBackingStore.m │ │ │ ├── EKCalendarSuggestionNotification.m │ │ │ ├── EKChangeListener.m │ │ │ ├── EKChangeLog.m │ │ │ ├── EKChangeSet.m │ │ │ ├── EKChangeTracker.m │ │ │ ├── EKConferenceURLDetector.m │ │ │ ├── EKConflictDetails.m │ │ │ ├── EKConflictScanJob.m │ │ │ ├── EKConflictScanner.m │ │ │ ├── EKContactEventRangePredicate.m │ │ │ ├── EKCoreDataFaultDelegate.m │ │ │ ├── EKCreateOperation.m │ │ │ ├── EKDataProtectionObserver.m │ │ │ ├── EKDebugPreferences.m │ │ │ ├── EKDefaultSerializerFactory.m │ │ │ ├── EKDeleteOperation.m │ │ │ ├── EKDiff.m │ │ │ ├── EKEWSItemIDPredicate.m │ │ │ ├── EKEditingContext.m │ │ │ ├── EKEditingContextGroup.m │ │ │ ├── EKEvent.m │ │ │ ├── EKEventOccurrenceCache.m │ │ │ ├── EKEventOccurrenceProtocol_Shared.m │ │ │ ├── EKEventRangePredicate.m │ │ │ ├── EKEventSliceInfo.m │ │ │ ├── EKEventStore.m │ │ │ ├── EKFeatureSet.m │ │ │ ├── EKFrozenAlarm.m │ │ │ ├── EKFrozenAttachment.m │ │ │ ├── EKFrozenAttendee.m │ │ │ ├── EKFrozenCalendar.m │ │ │ ├── EKFrozenCalendarEventInvitationNotification.m │ │ │ ├── EKFrozenCalendarInviteReplyNotification.m │ │ │ ├── EKFrozenCalendarItem.m │ │ │ ├── EKFrozenCalendarNotification.m │ │ │ ├── EKFrozenCalendarProposeNewTimeNotification.m │ │ │ ├── EKFrozenCalendarResourceChangeNotification.m │ │ │ ├── EKFrozenCalendarSharedCalendarNotification.m │ │ │ ├── EKFrozenCalendarSource.m │ │ │ ├── EKFrozenCalendarSuggestionNotification.m │ │ │ ├── EKFrozenEvent.m │ │ │ ├── EKFrozenObject.m │ │ │ ├── EKFrozenOrganizer.m │ │ │ ├── EKFrozenParticipant.m │ │ │ ├── EKFrozenRecurrenceRule.m │ │ │ ├── EKFrozenReminder.m │ │ │ ├── EKFrozenSharee.m │ │ │ ├── EKFrozenStructuredLocation.m │ │ │ ├── EKFrozenSuggestedEventInfo.m │ │ │ ├── EKGeneralLookupPredicate.m │ │ │ ├── EKInMemoryBackingStore.m │ │ │ ├── EKInviteeAlternativeTime.m │ │ │ ├── EKInviteeAlternativeTimeSearcher.m │ │ │ ├── EKInviteeTimeSpan.m │ │ │ ├── EKJunkInvitationProtocol_Shared.m │ │ │ ├── EKLiveEditingStore.m │ │ │ ├── EKManagedObjectContext.m │ │ │ ├── EKNaturalLanguageSuggestedEventPredicate.m │ │ │ ├── EKObject.m │ │ │ ├── EKObjectChangeSummarizer.m │ │ │ ├── EKObjectCreation.m │ │ │ ├── EKObjectCreationCalendarStore.m │ │ │ ├── EKObjectCreationInMemory.m │ │ │ ├── EKObjectCreationInMemoryCalendar.m │ │ │ ├── EKObjectCreationInMemoryObject.m │ │ │ ├── EKObjectCreationInMemorySource.m │ │ │ ├── EKObjectGroup.m │ │ │ ├── EKObjectPersistentChangesModel.m │ │ │ ├── EKObjectValidationContext.m │ │ │ ├── EKOccurrenceProtocol_Shared.m │ │ │ ├── EKOrganizer.m │ │ │ ├── EKParticipant.m │ │ │ ├── EKParticipantForSorting.m │ │ │ ├── EKParticipantToContactMatcher.m │ │ │ ├── EKPersistentHistoryTransactionChangeSummary.m │ │ │ ├── EKPersistentHistoryTransactionChangeSummaryModel.m │ │ │ ├── EKPostSliceDescription.m │ │ │ ├── EKPredicate.m │ │ │ ├── EKPredicateSearch.m │ │ │ ├── EKPreferences.m │ │ │ ├── EKQueryEventPredicate.m │ │ │ ├── EKQueryPredicate.m │ │ │ ├── EKQueryReminderPredicate.m │ │ │ ├── EKReadWriteLock.m │ │ │ ├── EKRecents.m │ │ │ ├── EKRecurrenceChangeInfo.m │ │ │ ├── EKRecurrenceChangeManager.m │ │ │ ├── EKRecurrenceDayOfWeek.m │ │ │ ├── EKRecurrenceEnd.m │ │ │ ├── EKRecurrenceException.m │ │ │ ├── EKRecurrenceGenerator.m │ │ │ ├── EKRecurrenceIdentifier.m │ │ │ ├── EKRecurrenceRule.m │ │ │ ├── EKRecurrenceSet.m │ │ │ ├── EKRecurringReminderCompletedChangeInfo.m │ │ │ ├── EKRelationChange.m │ │ │ ├── EKReminder.m │ │ │ ├── EKRepliedEventPredicate.m │ │ │ ├── EKRequestAvailabilityOperation.m │ │ │ ├── EKResliceOperation.m │ │ │ ├── EKRevertOperation.m │ │ │ ├── EKSaveOperation.m │ │ │ ├── EKSecureKeyedArchiverSerializer.m │ │ │ ├── EKSerializableAlarm.m │ │ │ ├── EKSerializableAttachment.m │ │ │ ├── EKSerializableEvent.m │ │ │ ├── EKSerializableObject.m │ │ │ ├── EKSerializableParticipant.m │ │ │ ├── EKSerializableRecurrenceRule.m │ │ │ ├── EKSerializableStructuredLocation.m │ │ │ ├── EKSeriesDetails.m │ │ │ ├── EKSharee.m │ │ │ ├── EKSliceDescription.m │ │ │ ├── EKSource.m │ │ │ ├── EKStructuredLocation.m │ │ │ ├── EKSuggestedEventInfo.m │ │ │ ├── EKSuggestedEventPredicate.m │ │ │ ├── EKSyntheticGEORouteHypothesis.m │ │ │ ├── EKTempEventStoreFactory.m │ │ │ ├── EKTimedEventStorePurger.m │ │ │ ├── EKTravelEngineHypothesis.m │ │ │ ├── EKTravelEngineUtilities.m │ │ │ ├── EKUncompleteRecurringReminderOperation.m │ │ │ ├── EKUndeleteFutureOperation.m │ │ │ ├── EKUndoManager.m │ │ │ ├── EKUndoSliceOutcome.m │ │ │ ├── EKUndoableOperation.m │ │ │ ├── EKUnrevertOperation.m │ │ │ ├── EKUnsliceOperation.m │ │ │ └── EventKit.m │ ├── ExceptionHandling │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ExceptionHandling │ │ │ │ ├── ExceptionHandler.h │ │ │ │ └── ExceptionHandling.h │ │ └── src │ │ │ └── ExceptionHandler.m │ ├── ForceFeedback │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ForceFeedback │ │ │ │ └── ForceFeedback.h │ │ └── src │ │ │ └── ForceFeedback.c │ ├── GLKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── GLKit │ │ │ │ ├── GLKBaseEffect.h │ │ │ │ ├── GLKEffect.h │ │ │ │ ├── GLKEffectProperty.h │ │ │ │ ├── GLKEffectPropertyConstantColor.h │ │ │ │ ├── GLKEffectPropertyFog.h │ │ │ │ ├── GLKEffectPropertyLight.h │ │ │ │ ├── GLKEffectPropertyMaterial.h │ │ │ │ ├── GLKEffectPropertyTexGen.h │ │ │ │ ├── GLKEffectPropertyTexture.h │ │ │ │ ├── GLKEffectPropertyTransform.h │ │ │ │ ├── GLKHashableBigInt.h │ │ │ │ ├── GLKMatrix.h │ │ │ │ ├── GLKMesh.h │ │ │ │ ├── GLKMeshBuffer.h │ │ │ │ ├── GLKMeshBufferAllocator.h │ │ │ │ ├── GLKMeshBufferHolder.h │ │ │ │ ├── GLKMeshBufferZone.h │ │ │ │ ├── GLKNamedEffect.h │ │ │ │ ├── GLKReflectionMapEffect.h │ │ │ │ ├── GLKShaderBlockNode.h │ │ │ │ ├── GLKShadingHash.h │ │ │ │ ├── GLKSkyboxEffect.h │ │ │ │ ├── GLKSubmesh.h │ │ │ │ ├── GLKTexture.h │ │ │ │ ├── GLKTextureInfo.h │ │ │ │ ├── GLKTextureLoader.h │ │ │ │ ├── GLKTextureTXR.h │ │ │ │ ├── GLKit.h │ │ │ │ ├── MDLMeshBuffer.h │ │ │ │ ├── MDLMeshBufferAllocator.h │ │ │ │ ├── MDLMeshBufferZone.h │ │ │ │ └── NSXMLParserDelegate.h │ │ └── src │ │ │ ├── GLKBaseEffect.m │ │ │ ├── GLKEffect.m │ │ │ ├── GLKEffectProperty.m │ │ │ ├── GLKEffectPropertyConstantColor.m │ │ │ ├── GLKEffectPropertyFog.m │ │ │ ├── GLKEffectPropertyLight.m │ │ │ ├── GLKEffectPropertyMaterial.m │ │ │ ├── GLKEffectPropertyTexGen.m │ │ │ ├── GLKEffectPropertyTexture.m │ │ │ ├── GLKEffectPropertyTransform.m │ │ │ ├── GLKHashableBigInt.m │ │ │ ├── GLKMatrix.m │ │ │ ├── GLKMesh.m │ │ │ ├── GLKMeshBuffer.m │ │ │ ├── GLKMeshBufferAllocator.m │ │ │ ├── GLKMeshBufferHolder.m │ │ │ ├── GLKMeshBufferZone.m │ │ │ ├── GLKReflectionMapEffect.m │ │ │ ├── GLKShaderBlockNode.m │ │ │ ├── GLKShadingHash.m │ │ │ ├── GLKSkyboxEffect.m │ │ │ ├── GLKSubmesh.m │ │ │ ├── GLKTexture.m │ │ │ ├── GLKTextureInfo.m │ │ │ ├── GLKTextureLoader.m │ │ │ ├── GLKTextureTXR.m │ │ │ └── GLKit.m │ ├── GameController │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── GameController │ │ │ │ ├── CBCentralManagerDelegate.h │ │ │ │ ├── CBPeripheralDelegate.h │ │ │ │ ├── DigitizerValueChangedDelegate.h │ │ │ │ ├── GCController.h │ │ │ │ ├── GCControllerAxisInput.h │ │ │ │ ├── GCControllerButtonInput.h │ │ │ │ ├── GCControllerCBDelegate.h │ │ │ │ ├── GCControllerDirectionPad.h │ │ │ │ ├── GCControllerElement.h │ │ │ │ ├── GCControllerMBDelegate.h │ │ │ │ ├── GCControllerSFDelegate.h │ │ │ │ ├── GCEventViewController.h │ │ │ │ ├── GCExtendedGamepad.h │ │ │ │ ├── GCExtendedGamepadSnapshot.h │ │ │ │ ├── GCGamepad.h │ │ │ │ ├── GCGamepadSnapshot.h │ │ │ │ ├── GCMicroGamepad.h │ │ │ │ ├── GCMicroGamepadSnapshot.h │ │ │ │ ├── GCMotion.h │ │ │ │ ├── GCNamedProfile.h │ │ │ │ ├── GameController.h │ │ │ │ ├── GameControllerClientProtocol.h │ │ │ │ ├── GameControllerDaemon.h │ │ │ │ ├── NSUserActivityDelegate.h │ │ │ │ ├── _GCACHomeButton.h │ │ │ │ ├── _GCACHomeButtonDelegate.h │ │ │ │ ├── _GCAppleTVRemoteControllerProfile.h │ │ │ │ ├── _GCCControllerHIDServiceInfo.h │ │ │ │ ├── _GCController.h │ │ │ │ ├── _GCControllerAxisButtonInput.h │ │ │ │ ├── _GCControllerAxisInput.h │ │ │ │ ├── _GCControllerButtonInput.h │ │ │ │ ├── _GCControllerDirectionPad.h │ │ │ │ ├── _GCControllerManager.h │ │ │ │ ├── _GCExtendedGamepad.h │ │ │ │ ├── _GCExtendedGamepadSnapshot.h │ │ │ │ ├── _GCGamepad.h │ │ │ │ ├── _GCGamepadSnapshot.h │ │ │ │ ├── _GCMFiExtendedGamepadControllerProfile.h │ │ │ │ ├── _GCMFiGamepadControllerProfile.h │ │ │ │ ├── _GCMicroGamepad.h │ │ │ │ ├── _GCMicroGamepadSnapshot.h │ │ │ │ └── _GCSnapshot.h │ │ └── src │ │ │ ├── GCController.m │ │ │ ├── GCControllerAxisInput.m │ │ │ ├── GCControllerButtonInput.m │ │ │ ├── GCControllerCBDelegate.m │ │ │ ├── GCControllerDirectionPad.m │ │ │ ├── GCControllerElement.m │ │ │ ├── GCControllerMBDelegate.m │ │ │ ├── GCControllerSFDelegate.m │ │ │ ├── GCEventViewController.m │ │ │ ├── GCExtendedGamepad.m │ │ │ ├── GCExtendedGamepadSnapshot.m │ │ │ ├── GCGamepad.m │ │ │ ├── GCGamepadSnapshot.m │ │ │ ├── GCMicroGamepad.m │ │ │ ├── GCMicroGamepadSnapshot.m │ │ │ ├── GCMotion.m │ │ │ ├── GameController.m │ │ │ ├── _GCACHomeButton.m │ │ │ ├── _GCAppleTVRemoteControllerProfile.m │ │ │ ├── _GCCControllerHIDServiceInfo.m │ │ │ ├── _GCController.m │ │ │ ├── _GCControllerAxisButtonInput.m │ │ │ ├── _GCControllerAxisInput.m │ │ │ ├── _GCControllerButtonInput.m │ │ │ ├── _GCControllerDirectionPad.m │ │ │ ├── _GCControllerManager.m │ │ │ ├── _GCExtendedGamepad.m │ │ │ ├── _GCExtendedGamepadSnapshot.m │ │ │ ├── _GCGamepad.m │ │ │ ├── _GCGamepadSnapshot.m │ │ │ ├── _GCMFiExtendedGamepadControllerProfile.m │ │ │ ├── _GCMFiGamepadControllerProfile.m │ │ │ ├── _GCMicroGamepad.m │ │ │ └── _GCMicroGamepadSnapshot.m │ ├── IOBluetooth │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── IOBluetooth │ │ │ │ ├── AppleBluetoothHIDDevice.h │ │ │ │ ├── AppleBluetoothHIDDeviceGen2.h │ │ │ │ ├── AtherosHostController.h │ │ │ │ ├── BNEPControl.h │ │ │ │ ├── BTClient.h │ │ │ │ ├── BluetoothClientInterface.h │ │ │ │ ├── BluetoothDaemonInterface.h │ │ │ │ ├── BluetoothDeviceManager.h │ │ │ │ ├── BluetoothFileReference.h │ │ │ │ ├── BluetoothHIDDevice.h │ │ │ │ ├── BluetoothHIDDeviceController.h │ │ │ │ ├── BluetoothUIServer.h │ │ │ │ ├── BluetoothXPCClientProtocol.h │ │ │ │ ├── BluetoothXPCDaemonProtocol.h │ │ │ │ ├── BroadcomHostController.h │ │ │ │ ├── CSRBlueICEHostController.h │ │ │ │ ├── CSRHostController.h │ │ │ │ ├── ConnectionCompleteCallbackDispatcher.h │ │ │ │ ├── FrameworksAnalyticsPackager.h │ │ │ │ ├── HardcopyCableReplacement.h │ │ │ │ ├── IOBluetooth.h │ │ │ │ ├── IOBluetoothAudioManager.h │ │ │ │ ├── IOBluetoothAutomaticDeviceSetup.h │ │ │ │ ├── IOBluetoothCloudServerClient.h │ │ │ │ ├── IOBluetoothConcreteUserNotification.h │ │ │ │ ├── IOBluetoothDaemonNSXPCClient.h │ │ │ │ ├── IOBluetoothDevice.h │ │ │ │ ├── IOBluetoothDeviceExpansion.h │ │ │ │ ├── IOBluetoothDeviceInfoGatherer.h │ │ │ │ ├── IOBluetoothDeviceInquiry.h │ │ │ │ ├── IOBluetoothDeviceInquiryCSupportObject.h │ │ │ │ ├── IOBluetoothDeviceInquiryExpansion.h │ │ │ │ ├── IOBluetoothDevicePair.h │ │ │ │ ├── IOBluetoothDevicePairExpansion.h │ │ │ │ ├── IOBluetoothHandsFree.h │ │ │ │ ├── IOBluetoothHandsFreeAudioGateway.h │ │ │ │ ├── IOBluetoothHandsFreeAudioGatewayExpansion.h │ │ │ │ ├── IOBluetoothHandsFreeDevice.h │ │ │ │ ├── IOBluetoothHandsFreeDeviceExpansion.h │ │ │ │ ├── IOBluetoothHandsFreeExpansion.h │ │ │ │ ├── IOBluetoothHardcopyCableReplacement.h │ │ │ │ ├── IOBluetoothHeadsetAudioGateway.h │ │ │ │ ├── IOBluetoothHostController.h │ │ │ │ ├── IOBluetoothHostControllerExpansion.h │ │ │ │ ├── IOBluetoothL2CAPChannel.h │ │ │ │ ├── IOBluetoothL2CAPChannelExpansion.h │ │ │ │ ├── IOBluetoothLocalSDPServiceRecord.h │ │ │ │ ├── IOBluetoothNSCUserNotification.h │ │ │ │ ├── IOBluetoothNSObjCUserNotification.h │ │ │ │ ├── IOBluetoothNSUserNotification.h │ │ │ │ ├── IOBluetoothNotification.h │ │ │ │ ├── IOBluetoothOBEXSession.h │ │ │ │ ├── IOBluetoothObject.h │ │ │ │ ├── IOBluetoothPreferences.h │ │ │ │ ├── IOBluetoothRFCOMMChannel.h │ │ │ │ ├── IOBluetoothRFCOMMChannelDelegate.h │ │ │ │ ├── IOBluetoothRFCOMMConnection.h │ │ │ │ ├── IOBluetoothSDPDataElement.h │ │ │ │ ├── IOBluetoothSDPServiceAttribute.h │ │ │ │ ├── IOBluetoothSDPServiceRecord.h │ │ │ │ ├── IOBluetoothSDPUUID.h │ │ │ │ ├── IOBluetoothSerialPort.h │ │ │ │ ├── IOBluetoothSerialPortManager.h │ │ │ │ ├── IOBluetoothTransferProgress.h │ │ │ │ ├── IOBluetoothUserNotification.h │ │ │ │ ├── IORegistryObjectNotifier.h │ │ │ │ ├── NSPortDelegate.h │ │ │ │ ├── NSXPCListenerDelegate.h │ │ │ │ ├── NotificationInfo.h │ │ │ │ ├── OBEXFileAction.h │ │ │ │ ├── OBEXFileGet.h │ │ │ │ ├── OBEXFilePut.h │ │ │ │ ├── OBEXFileTransferServices.h │ │ │ │ ├── OBEXSession.h │ │ │ │ ├── RegistryObjectNotificationWrapper.h │ │ │ │ ├── SDPQueryCallbackDispatcher.h │ │ │ │ ├── SystemPowerNotifier.h │ │ │ │ └── TransferModuleInterface.h │ │ └── src │ │ │ ├── AppleBluetoothHIDDevice.m │ │ │ ├── AppleBluetoothHIDDeviceGen2.m │ │ │ ├── AtherosHostController.m │ │ │ ├── BNEPControl.m │ │ │ ├── BTClient.m │ │ │ ├── BluetoothDeviceManager.m │ │ │ ├── BluetoothFileReference.m │ │ │ ├── BluetoothHIDDevice.m │ │ │ ├── BluetoothHIDDeviceController.m │ │ │ ├── BluetoothUIServer.m │ │ │ ├── BroadcomHostController.m │ │ │ ├── CSRBlueICEHostController.m │ │ │ ├── CSRHostController.m │ │ │ ├── ConnectionCompleteCallbackDispatcher.m │ │ │ ├── FrameworksAnalyticsPackager.m │ │ │ ├── HardcopyCableReplacement.m │ │ │ ├── IOBluetooth.m │ │ │ ├── IOBluetoothAudioManager.m │ │ │ ├── IOBluetoothAutomaticDeviceSetup.m │ │ │ ├── IOBluetoothCloudServerClient.m │ │ │ ├── IOBluetoothConcreteUserNotification.m │ │ │ ├── IOBluetoothDaemonNSXPCClient.m │ │ │ ├── IOBluetoothDevice.m │ │ │ ├── IOBluetoothDeviceExpansion.m │ │ │ ├── IOBluetoothDeviceInfoGatherer.m │ │ │ ├── IOBluetoothDeviceInquiry.m │ │ │ ├── IOBluetoothDeviceInquiryCSupportObject.m │ │ │ ├── IOBluetoothDeviceInquiryExpansion.m │ │ │ ├── IOBluetoothDevicePair.m │ │ │ ├── IOBluetoothDevicePairExpansion.m │ │ │ ├── IOBluetoothHandsFree.m │ │ │ ├── IOBluetoothHandsFreeAudioGateway.m │ │ │ ├── IOBluetoothHandsFreeAudioGatewayExpansion.m │ │ │ ├── IOBluetoothHandsFreeDevice.m │ │ │ ├── IOBluetoothHandsFreeDeviceExpansion.m │ │ │ ├── IOBluetoothHandsFreeExpansion.m │ │ │ ├── IOBluetoothHardcopyCableReplacement.m │ │ │ ├── IOBluetoothHeadsetAudioGateway.m │ │ │ ├── IOBluetoothHostController.m │ │ │ ├── IOBluetoothHostControllerExpansion.m │ │ │ ├── IOBluetoothL2CAPChannel.m │ │ │ ├── IOBluetoothL2CAPChannelExpansion.m │ │ │ ├── IOBluetoothLocalSDPServiceRecord.m │ │ │ ├── IOBluetoothNSCUserNotification.m │ │ │ ├── IOBluetoothNSObjCUserNotification.m │ │ │ ├── IOBluetoothNSUserNotification.m │ │ │ ├── IOBluetoothNotification.m │ │ │ ├── IOBluetoothOBEXSession.m │ │ │ ├── IOBluetoothObject.m │ │ │ ├── IOBluetoothPreferences.m │ │ │ ├── IOBluetoothRFCOMMChannel.m │ │ │ ├── IOBluetoothRFCOMMConnection.m │ │ │ ├── IOBluetoothSDPDataElement.m │ │ │ ├── IOBluetoothSDPServiceAttribute.m │ │ │ ├── IOBluetoothSDPServiceRecord.m │ │ │ ├── IOBluetoothSDPUUID.m │ │ │ ├── IOBluetoothSerialPort.m │ │ │ ├── IOBluetoothSerialPortManager.m │ │ │ ├── IOBluetoothTransferProgress.m │ │ │ ├── IOBluetoothUserNotification.m │ │ │ ├── IORegistryObjectNotifier.m │ │ │ ├── NotificationInfo.m │ │ │ ├── OBEXFileAction.m │ │ │ ├── OBEXFileGet.m │ │ │ ├── OBEXFilePut.m │ │ │ ├── OBEXFileTransferServices.m │ │ │ ├── OBEXSession.m │ │ │ ├── RegistryObjectNotificationWrapper.m │ │ │ ├── SDPQueryCallbackDispatcher.m │ │ │ └── SystemPowerNotifier.m │ ├── IOBluetoothUI │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── IOBluetoothUI │ │ │ │ ├── AssetHelper.h │ │ │ │ ├── AudioOptions.h │ │ │ │ ├── AudioOptionsViewClick.h │ │ │ │ ├── AudioOptionsViewController.h │ │ │ │ ├── AudioOptionsViewDoubleTap.h │ │ │ │ ├── AudioOptionsViewDoubleTapExtended.h │ │ │ │ ├── AudioOptionsViewInEarDetection.h │ │ │ │ ├── AudioOptionsViewListeningMode.h │ │ │ │ ├── AudioOptionsViewMicSwitching.h │ │ │ │ ├── CBCentralManagerDelegate.h │ │ │ │ ├── CBPeripheralDelegate.h │ │ │ │ ├── FauxUIElement.h │ │ │ │ ├── IOBluetoothAccessibilityIgnoredImageCell.h │ │ │ │ ├── IOBluetoothAccessibilityIgnoredTextFieldCell.h │ │ │ │ ├── IOBluetoothConcreteDeviceController.h │ │ │ │ ├── IOBluetoothConcreteDeviceSelectorController.h │ │ │ │ ├── IOBluetoothConcreteObjectPush.h │ │ │ │ ├── IOBluetoothConcretePairingController.h │ │ │ │ ├── IOBluetoothConcreteServiceBrowserController.h │ │ │ │ ├── IOBluetoothDeviceImageVault.h │ │ │ │ ├── IOBluetoothDeviceInquiryTableView.h │ │ │ │ ├── IOBluetoothDeviceInquiryTableViewDelegate.h │ │ │ │ ├── IOBluetoothDevicePairDelegate.h │ │ │ │ ├── IOBluetoothDevicePairViewController.h │ │ │ │ ├── IOBluetoothDevicePairViewControllerExpansion.h │ │ │ │ ├── IOBluetoothDeviceSelectorController.h │ │ │ │ ├── IOBluetoothHardwareValidation.h │ │ │ │ ├── IOBluetoothObjectPushUIController.h │ │ │ │ ├── IOBluetoothPairingController.h │ │ │ │ ├── IOBluetoothPasskeyDisplay.h │ │ │ │ ├── IOBluetoothPasskeyDisplayNibOwner.h │ │ │ │ ├── IOBluetoothServiceBrowserController.h │ │ │ │ ├── IOBluetoothTransferProgressUI.h │ │ │ │ ├── IOBluetoothUI.h │ │ │ │ ├── IOBluetoothUIBackgroundStyle2AlternateRemoveButton.h │ │ │ │ ├── IOBluetoothUIBackgroundStyle2GrayColorTransformer.h │ │ │ │ ├── IOBluetoothUIBackgroundStyle2RemoveButton.h │ │ │ │ ├── IOBluetoothUIBool2BWColorTransformer.h │ │ │ │ ├── IOBluetoothUICollectionView.h │ │ │ │ ├── IOBluetoothUIConnected2ImageIndicatorTransformer.h │ │ │ │ ├── IOBluetoothUIConnected2StatusTransformer.h │ │ │ │ ├── IOBluetoothUIDisableProgressBar.h │ │ │ │ ├── IOBluetoothUIPaired2ActionTitle.h │ │ │ │ ├── IOBluetoothUIPairedColorTransformer.h │ │ │ │ ├── IOBluetoothUISortedArrayController.h │ │ │ │ ├── IOBluetoothUI_BatteryControl.h │ │ │ │ ├── IOBluetooth_HIDNameFormatter.h │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ ├── NSMenuDelegate.h │ │ │ │ ├── NSTableViewDataSource.h │ │ │ │ ├── NSTableViewDelegate.h │ │ │ │ ├── NSTextFieldDelegate.h │ │ │ │ ├── NSWindowDelegate.h │ │ │ │ ├── OBEXObjectReceiveConcreteWindowController.h │ │ │ │ ├── OBEXObjectReceiveWindowController.h │ │ │ │ ├── ObjectTableDataSource.h │ │ │ │ ├── PlainFormatter.h │ │ │ │ └── TerminateEnabledModalPanel.h │ │ └── src │ │ │ ├── AssetHelper.m │ │ │ ├── AudioOptions.m │ │ │ ├── AudioOptionsViewClick.m │ │ │ ├── AudioOptionsViewController.m │ │ │ ├── AudioOptionsViewDoubleTap.m │ │ │ ├── AudioOptionsViewDoubleTapExtended.m │ │ │ ├── AudioOptionsViewInEarDetection.m │ │ │ ├── AudioOptionsViewListeningMode.m │ │ │ ├── AudioOptionsViewMicSwitching.m │ │ │ ├── FauxUIElement.m │ │ │ ├── IOBluetoothAccessibilityIgnoredImageCell.m │ │ │ ├── IOBluetoothAccessibilityIgnoredTextFieldCell.m │ │ │ ├── IOBluetoothConcreteDeviceController.m │ │ │ ├── IOBluetoothConcreteDeviceSelectorController.m │ │ │ ├── IOBluetoothConcreteObjectPush.m │ │ │ ├── IOBluetoothConcretePairingController.m │ │ │ ├── IOBluetoothConcreteServiceBrowserController.m │ │ │ ├── IOBluetoothDeviceImageVault.m │ │ │ ├── IOBluetoothDeviceInquiryTableView.m │ │ │ ├── IOBluetoothDevicePairViewController.m │ │ │ ├── IOBluetoothDevicePairViewControllerExpansion.m │ │ │ ├── IOBluetoothDeviceSelectorController.m │ │ │ ├── IOBluetoothHardwareValidation.m │ │ │ ├── IOBluetoothObjectPushUIController.m │ │ │ ├── IOBluetoothPairingController.m │ │ │ ├── IOBluetoothPasskeyDisplay.m │ │ │ ├── IOBluetoothPasskeyDisplayNibOwner.m │ │ │ ├── IOBluetoothServiceBrowserController.m │ │ │ ├── IOBluetoothTransferProgressUI.m │ │ │ ├── IOBluetoothUI.m │ │ │ ├── IOBluetoothUIBackgroundStyle2AlternateRemoveButton.m │ │ │ ├── IOBluetoothUIBackgroundStyle2GrayColorTransformer.m │ │ │ ├── IOBluetoothUIBackgroundStyle2RemoveButton.m │ │ │ ├── IOBluetoothUIBool2BWColorTransformer.m │ │ │ ├── IOBluetoothUICollectionView.m │ │ │ ├── IOBluetoothUIConnected2ImageIndicatorTransformer.m │ │ │ ├── IOBluetoothUIConnected2StatusTransformer.m │ │ │ ├── IOBluetoothUIDisableProgressBar.m │ │ │ ├── IOBluetoothUIPaired2ActionTitle.m │ │ │ ├── IOBluetoothUIPairedColorTransformer.m │ │ │ ├── IOBluetoothUISortedArrayController.m │ │ │ ├── IOBluetoothUI_BatteryControl.m │ │ │ ├── IOBluetooth_HIDNameFormatter.m │ │ │ ├── OBEXObjectReceiveConcreteWindowController.m │ │ │ ├── OBEXObjectReceiveWindowController.m │ │ │ ├── ObjectTableDataSource.m │ │ │ ├── PlainFormatter.m │ │ │ └── TerminateEnabledModalPanel.m │ ├── IOSurface │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── IOSurface │ │ │ │ ├── IOSurface.h │ │ │ │ ├── IOSurfaceAPI.h │ │ │ │ ├── IOSurfaceBase.h │ │ │ │ ├── IOSurfaceObjC.h │ │ │ │ ├── IOSurfacePriv.h │ │ │ │ ├── IOSurfaceRef.h │ │ │ │ └── IOSurfaceTypes.h │ │ └── src │ │ │ ├── IOSurfaceObjC.m │ │ │ ├── api.m │ │ │ ├── constants.m │ │ │ └── stubs.m │ ├── ImageCaptureCore │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ImageCaptureCore │ │ │ │ ├── ICAccessManager.h │ │ │ │ ├── ICCallbackInfo.h │ │ │ │ ├── ICCameraDevice.h │ │ │ │ ├── ICCameraFile.h │ │ │ │ ├── ICCameraFolder.h │ │ │ │ ├── ICCameraItem.h │ │ │ │ ├── ICClient.h │ │ │ │ ├── ICClientManager.h │ │ │ │ ├── ICCommand.h │ │ │ │ ├── ICCommandCenter.h │ │ │ │ ├── ICDevice.h │ │ │ │ ├── ICDeviceAccessManager.h │ │ │ │ ├── ICDeviceBrowser.h │ │ │ │ ├── ICDeviceBrowserPrivateData.h │ │ │ │ ├── ICMasterDeviceBrowser.h │ │ │ │ ├── ICScannerBandData.h │ │ │ │ ├── ICScannerDevice.h │ │ │ │ ├── ICScannerFeature.h │ │ │ │ ├── ICScannerFeatureBoolean.h │ │ │ │ ├── ICScannerFeatureBooleanProps.h │ │ │ │ ├── ICScannerFeatureEnumeration.h │ │ │ │ ├── ICScannerFeatureEnumerationProps.h │ │ │ │ ├── ICScannerFeatureProps.h │ │ │ │ ├── ICScannerFeatureRange.h │ │ │ │ ├── ICScannerFeatureRangeProps.h │ │ │ │ ├── ICScannerFeatureTemplate.h │ │ │ │ ├── ICScannerFeatureTemplateProps.h │ │ │ │ ├── ICScannerFunctionalUnit.h │ │ │ │ ├── ICScannerFunctionalUnitDocumentFeeder.h │ │ │ │ ├── ICScannerFunctionalUnitDocumentFeederProps.h │ │ │ │ ├── ICScannerFunctionalUnitFlatbed.h │ │ │ │ ├── ICScannerFunctionalUnitFlatbedProps.h │ │ │ │ ├── ICScannerFunctionalUnitNegativeTransparency.h │ │ │ │ ├── ICScannerFunctionalUnitPositiveTransparency.h │ │ │ │ ├── ICScannerFunctionalUnitProps.h │ │ │ │ ├── ICScannerFunctionalUnitTransparencyProps.h │ │ │ │ ├── ICScannerImageRep.h │ │ │ │ ├── ICScannerProperties.h │ │ │ │ ├── ImageCaptureCore.h │ │ │ │ └── ImageCaptureProtocol.h │ │ └── src │ │ │ ├── ICAccessManager.m │ │ │ ├── ICCallbackInfo.m │ │ │ ├── ICCameraDevice.m │ │ │ ├── ICCameraFile.m │ │ │ ├── ICCameraFolder.m │ │ │ ├── ICCameraItem.m │ │ │ ├── ICClient.m │ │ │ ├── ICClientManager.m │ │ │ ├── ICCommand.m │ │ │ ├── ICCommandCenter.m │ │ │ ├── ICDevice.m │ │ │ ├── ICDeviceAccessManager.m │ │ │ ├── ICDeviceBrowser.m │ │ │ ├── ICDeviceBrowserPrivateData.m │ │ │ ├── ICMasterDeviceBrowser.m │ │ │ ├── ICScannerBandData.m │ │ │ ├── ICScannerDevice.m │ │ │ ├── ICScannerFeature.m │ │ │ ├── ICScannerFeatureBoolean.m │ │ │ ├── ICScannerFeatureBooleanProps.m │ │ │ ├── ICScannerFeatureEnumeration.m │ │ │ ├── ICScannerFeatureEnumerationProps.m │ │ │ ├── ICScannerFeatureProps.m │ │ │ ├── ICScannerFeatureRange.m │ │ │ ├── ICScannerFeatureRangeProps.m │ │ │ ├── ICScannerFeatureTemplate.m │ │ │ ├── ICScannerFeatureTemplateProps.m │ │ │ ├── ICScannerFunctionalUnit.m │ │ │ ├── ICScannerFunctionalUnitDocumentFeeder.m │ │ │ ├── ICScannerFunctionalUnitDocumentFeederProps.m │ │ │ ├── ICScannerFunctionalUnitFlatbed.m │ │ │ ├── ICScannerFunctionalUnitFlatbedProps.m │ │ │ ├── ICScannerFunctionalUnitNegativeTransparency.m │ │ │ ├── ICScannerFunctionalUnitPositiveTransparency.m │ │ │ ├── ICScannerFunctionalUnitProps.m │ │ │ ├── ICScannerFunctionalUnitTransparencyProps.m │ │ │ ├── ICScannerImageRep.m │ │ │ ├── ICScannerProperties.m │ │ │ └── ImageCaptureCore.m │ ├── ImageIO │ │ ├── CMakeLists.txt │ │ ├── DO NOT REGENERATE.txt │ │ ├── include │ │ │ └── ImageIO │ │ │ │ ├── CGImageDestination.h │ │ │ │ ├── CGImageProperties.h │ │ │ │ ├── CGImageSource.h │ │ │ │ ├── ImageIO.h │ │ │ │ └── ImageIOBase.h │ │ └── src │ │ │ ├── CGImageDestination.m │ │ │ ├── CGImageProperties.m │ │ │ └── CGImageSource.m │ ├── InputMethodKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── InputMethodKit │ │ │ │ ├── IMKAbstractInputMethod.h │ │ │ │ ├── IMKAbstractTextDocument.h │ │ │ │ ├── IMKAppleSpellCandidateEngine.h │ │ │ │ ├── IMKAutoCapitalizationInputMethod.h │ │ │ │ ├── IMKAutoPeriodInputMethod.h │ │ │ │ ├── IMKCandidate.h │ │ │ │ ├── IMKCandidateArrowView.h │ │ │ │ ├── IMKCandidateBasedInputController.h │ │ │ │ ├── IMKCandidateCanvas.h │ │ │ │ ├── IMKCandidateController.h │ │ │ │ ├── IMKCandidateControllerBasedCandidateMenu.h │ │ │ │ ├── IMKCandidateControllerDelegate.h │ │ │ │ ├── IMKCandidateData.h │ │ │ │ ├── IMKCandidateDefinitionUnit.h │ │ │ │ ├── IMKCandidateDisplayArray.h │ │ │ │ ├── IMKCandidateEngine.h │ │ │ │ ├── IMKCandidateGroupView.h │ │ │ │ ├── IMKCandidateGroupViewUnit.h │ │ │ │ ├── IMKCandidateIndexing.h │ │ │ │ ├── IMKCandidateLayoutUnit.h │ │ │ │ ├── IMKCandidateLineView.h │ │ │ │ ├── IMKCandidateList.h │ │ │ │ ├── IMKCandidateListDictionary.h │ │ │ │ ├── IMKCandidateMenu.h │ │ │ │ ├── IMKCandidateMenuDelegate.h │ │ │ │ ├── IMKCandidateNavigationController.h │ │ │ │ ├── IMKCandidatePickerInputMethod.h │ │ │ │ ├── IMKCandidatePopoverController.h │ │ │ │ ├── IMKCandidatePositionedUIString.h │ │ │ │ ├── IMKCandidateSecondaryUnitView.h │ │ │ │ ├── IMKCandidateSelectionView.h │ │ │ │ ├── IMKCandidateSelectionViewButton.h │ │ │ │ ├── IMKCandidateSelectionViewDelegate.h │ │ │ │ ├── IMKCandidateStepperAccessoryImageView.h │ │ │ │ ├── IMKCandidateStepperView.h │ │ │ │ ├── IMKCandidateUIElement.h │ │ │ │ ├── IMKCandidateUIProperties.h │ │ │ │ ├── IMKCandidateUIString.h │ │ │ │ ├── IMKCandidateUIStringProperties.h │ │ │ │ ├── IMKCandidateUIStringSizeCache.h │ │ │ │ ├── IMKCandidateUnitView.h │ │ │ │ ├── IMKCandidateUnitViewContentView.h │ │ │ │ ├── IMKCandidateUnitViewTextContainer.h │ │ │ │ ├── IMKCandidateView.h │ │ │ │ ├── IMKCandidateWindow.h │ │ │ │ ├── IMKCandidateWindowPositioning.h │ │ │ │ ├── IMKCandidates.h │ │ │ │ ├── IMKCandidatesDelegate.h │ │ │ │ ├── IMKCandidatesPrivate.h │ │ │ │ ├── IMKClipView.h │ │ │ │ ├── IMKCompositionResult.h │ │ │ │ ├── IMKContentView.h │ │ │ │ ├── IMKCurrencyInputMethod.h │ │ │ │ ├── IMKDebugging.h │ │ │ │ ├── IMKDefinitionToLayoutConstraint.h │ │ │ │ ├── IMKDefinitionToLayoutController.h │ │ │ │ ├── IMKDocumentContent.h │ │ │ │ ├── IMKDocumentView.h │ │ │ │ ├── IMKDoubleSpaceEventHandler.h │ │ │ │ ├── IMKEnclosingCharactersInputMethod.h │ │ │ │ ├── IMKExtensionContextProtocol.h │ │ │ │ ├── IMKExtensionHostContext.h │ │ │ │ ├── IMKExtensionIM.h │ │ │ │ ├── IMKExtensionMainInit.h │ │ │ │ ├── IMKExtensionMainThreadInit.h │ │ │ │ ├── IMKExtensionServiceContext.h │ │ │ │ ├── IMKExtensionService_Subsystem.h │ │ │ │ ├── IMKHostExtensionContextProtocol.h │ │ │ │ ├── IMKInputContext.h │ │ │ │ ├── IMKInputController.h │ │ │ │ ├── IMKInputControllerPrivate.h │ │ │ │ ├── IMKInputMethod.h │ │ │ │ ├── IMKKey.h │ │ │ │ ├── IMKKeyboard.h │ │ │ │ ├── IMKKeyboardDescriptor.h │ │ │ │ ├── IMKKeyboardInputController.h │ │ │ │ ├── IMKKeyboardLayoutInputMethod.h │ │ │ │ ├── IMKKeyboardService.h │ │ │ │ ├── IMKKeyboardServiceDelegate.h │ │ │ │ ├── IMKKeyboardState.h │ │ │ │ ├── IMKLaunchAgentXPCEndpointRegistry.h │ │ │ │ ├── IMKLayout.h │ │ │ │ ├── IMKLayoutLine.h │ │ │ │ ├── IMKLayoutToViewController.h │ │ │ │ ├── IMKLog.h │ │ │ │ ├── IMKMacSpellChecker.h │ │ │ │ ├── IMKMouseHandling.h │ │ │ │ ├── IMKMultitapInputMethod.h │ │ │ │ ├── IMKNSApplication.h │ │ │ │ ├── IMKNSXPCListener.h │ │ │ │ ├── IMKObserver.h │ │ │ │ ├── IMKPhoneNumberInputMethod.h │ │ │ │ ├── IMKPreferences.h │ │ │ │ ├── IMKRemoteExtensionContextProtocol.h │ │ │ │ ├── IMKServer.h │ │ │ │ ├── IMKServerInvocationSentinel.h │ │ │ │ ├── IMKServerPrivate.h │ │ │ │ ├── IMKServerProxy.h │ │ │ │ ├── IMKServerXPCInvocation.h │ │ │ │ ├── IMKSimulatorApplication.h │ │ │ │ ├── IMKSimulatorController.h │ │ │ │ ├── IMKSimulatorDelegate.h │ │ │ │ ├── IMKSimulatorDummyDelegate.h │ │ │ │ ├── IMKSimulatorInputClient.h │ │ │ │ ├── IMKSimulatorInputModeSelector.h │ │ │ │ ├── IMKSimulatorKeyboardInterpreter.h │ │ │ │ ├── IMKSimulatorPasteboardValueDictionary.h │ │ │ │ ├── IMKSimulatorPreferencesBar.h │ │ │ │ ├── IMKSimulatorSpotlightButton.h │ │ │ │ ├── IMKSimulatorTextView.h │ │ │ │ ├── IMKSimulatorUIDirectionButton.h │ │ │ │ ├── IMKSimulatorUIOrientationButton.h │ │ │ │ ├── IMKSimulatorWindow.h │ │ │ │ ├── IMKSimulatorWindowContentView.h │ │ │ │ ├── IMKSimulatorWindowGrabber.h │ │ │ │ ├── IMKSimulatorXCUICandidateProxy.h │ │ │ │ ├── IMKStateSetting.h │ │ │ │ ├── IMKTSMInputSourceHelper.h │ │ │ │ ├── IMKTextDocument.h │ │ │ │ ├── IMKTextDocumentTextInputAdaptor.h │ │ │ │ ├── IMKTextDocumentTraits.h │ │ │ │ ├── IMKTextField.h │ │ │ │ ├── IMKTextFieldCell.h │ │ │ │ ├── IMKTextInput.h │ │ │ │ ├── IMKTextInputFunctionRowItemServiceViewController.h │ │ │ │ ├── IMKTextInputTextDocumentAdaptor.h │ │ │ │ ├── IMKTextInputTouchBarHostViewControllerProtocol.h │ │ │ │ ├── IMKTextInput_AutoCorrection.h │ │ │ │ ├── IMKTextInput_Full.h │ │ │ │ ├── IMKTextInput_FunctionRowUI.h │ │ │ │ ├── IMKTextInput_NSAppearance.h │ │ │ │ ├── IMKTouchBarUICandidate.h │ │ │ │ ├── IMKTruncatedTextField.h │ │ │ │ ├── IMKUIAbstractCandidateController.h │ │ │ │ ├── IMKUIAbstractCandidateLayout.h │ │ │ │ ├── IMKUICandidate.h │ │ │ │ ├── IMKUICandidateAccessibilityDelegate.h │ │ │ │ ├── IMKUICandidateAccessibilityElement.h │ │ │ │ ├── IMKUICandidateAccessibilityTarget.h │ │ │ │ ├── IMKUICandidateArrowButton.h │ │ │ │ ├── IMKUICandidateBarCorrectionPanelController.h │ │ │ │ ├── IMKUICandidateBarListView.h │ │ │ │ ├── IMKUICandidateBarView.h │ │ │ │ ├── IMKUICandidateCollectionDocumentView.h │ │ │ │ ├── IMKUICandidateController.h │ │ │ │ ├── IMKUICandidateFunctionKeyTouchBarController.h │ │ │ │ ├── IMKUICandidateGroupView.h │ │ │ │ ├── IMKUICandidateGroupViewItem.h │ │ │ │ ├── IMKUICandidateGroupViewItemView.h │ │ │ │ ├── IMKUICandidateHorizontalController.h │ │ │ │ ├── IMKUICandidateHorizontalExpandableController.h │ │ │ │ ├── IMKUICandidateHorizontalScrubberController.h │ │ │ │ ├── IMKUICandidateHorizontalSteppableController.h │ │ │ │ ├── IMKUICandidateInformationController.h │ │ │ │ ├── IMKUICandidateItemLayout.h │ │ │ │ ├── IMKUICandidateItemView.h │ │ │ │ ├── IMKUICandidateItemViewHandling.h │ │ │ │ ├── IMKUICandidateIterativeLayout.h │ │ │ │ ├── IMKUICandidateLargePredictionVerticalController.h │ │ │ │ ├── IMKUICandidateLargePredictionVerticallyAlignedController.h │ │ │ │ ├── IMKUICandidateLayout.h │ │ │ │ ├── IMKUICandidateLayoutDelegate.h │ │ │ │ ├── IMKUICandidateLayoutTraits.h │ │ │ │ ├── IMKUICandidateLineLayout.h │ │ │ │ ├── IMKUICandidateLineLayoutEntry.h │ │ │ │ ├── IMKUICandidateLineLayoutIterator.h │ │ │ │ ├── IMKUICandidateListView.h │ │ │ │ ├── IMKUICandidateListViewState.h │ │ │ │ ├── IMKUICandidatePredictionVerticalController.h │ │ │ │ ├── IMKUICandidatePredictionVerticallyAlignedController.h │ │ │ │ ├── IMKUICandidatePressAndHoldWindowController.h │ │ │ │ ├── IMKUICandidateSortingBarButton.h │ │ │ │ ├── IMKUICandidateSortingBarDelegate.h │ │ │ │ ├── IMKUICandidateSortingBarView.h │ │ │ │ ├── IMKUICandidateStepperAccessoryImageView.h │ │ │ │ ├── IMKUICandidateStepperView.h │ │ │ │ ├── IMKUICandidateStepperViewDelegate.h │ │ │ │ ├── IMKUICandidateSteppingWindowController.h │ │ │ │ ├── IMKUICandidateTextContainer.h │ │ │ │ ├── IMKUICandidateTouchBarCandidateListItemController.h │ │ │ │ ├── IMKUICandidateTouchBarController.h │ │ │ │ ├── IMKUICandidateTouchBarItemController.h │ │ │ │ ├── IMKUICandidateTouchBarLineLayout.h │ │ │ │ ├── IMKUICandidateTouchBarOnScreenBridge.h │ │ │ │ ├── IMKUICandidateTrackpadHandwritingTouchBarController.h │ │ │ │ ├── IMKUICandidateVerticalController.h │ │ │ │ ├── IMKUICandidateVerticalScrubberController.h │ │ │ │ ├── IMKUICandidateVerticalWindowController.h │ │ │ │ ├── IMKUICandidateVerticallyAlignedController.h │ │ │ │ ├── IMKUICandidateVerticallyAlignedScrubberController.h │ │ │ │ ├── IMKUICandidateWindowController.h │ │ │ │ ├── IMKUICandidateWindowPositionController.h │ │ │ │ ├── IMKUICorneredPanelMask.h │ │ │ │ ├── IMKUIDelegate.h │ │ │ │ ├── IMKUIExpandableCandidateWindowController.h │ │ │ │ ├── IMKUIFastTrackVerticalLayout.h │ │ │ │ ├── IMKUIInformation.h │ │ │ │ ├── IMKUIInformationWindowController.h │ │ │ │ ├── IMKUIPanel.h │ │ │ │ ├── IMKUIPanelMask.h │ │ │ │ ├── IMKUIProperties.h │ │ │ │ ├── IMKUIScrollView.h │ │ │ │ ├── IMKUIScrubberView.h │ │ │ │ ├── IMKUISingleCandidateListView.h │ │ │ │ ├── IMKUISpeechBalloonMask.h │ │ │ │ ├── IMKUITextField.h │ │ │ │ ├── IMKUITopView.h │ │ │ │ ├── IMKUITriCandidateLayout.h │ │ │ │ ├── IMKUIView.h │ │ │ │ ├── IMKUIVisualEffectView.h │ │ │ │ ├── IMKUIWindowBasedCandidateController.h │ │ │ │ ├── IMKUIWindowContentEmptyView.h │ │ │ │ ├── IMKUIWindowContentView.h │ │ │ │ ├── IMKUnicodeTextInput.h │ │ │ │ ├── IMKVerbatimInputMethod.h │ │ │ │ ├── IMKWindowController.h │ │ │ │ ├── IMKXPCCompatibilityDOProxyInterposer.h │ │ │ │ ├── IMKXPCServerProxy.h │ │ │ │ ├── IMKXPCServiceInfoDictionary.h │ │ │ │ ├── IMKXPCSupport.h │ │ │ │ ├── IMTSMSupport.h │ │ │ │ ├── IPMDEventState.h │ │ │ │ ├── IPMDServerClientWrapper.h │ │ │ │ ├── InputMethodKit.h │ │ │ │ ├── NSAccessibilityButton.h │ │ │ │ ├── NSAccessibilityElement.h │ │ │ │ ├── NSAccessibilityGroup.h │ │ │ │ ├── NSAccessibilityList.h │ │ │ │ ├── NSAccessibilityTable.h │ │ │ │ ├── NSCandidateBarFunctionRowButtonTouchEvents.h │ │ │ │ ├── NSCorrectionPanelProtocol.h │ │ │ │ ├── NSExtensionRequestHandling.h │ │ │ │ ├── NSScrubberDelegate.h │ │ │ │ ├── NSWindowDelegate.h │ │ │ │ ├── PKModularService.h │ │ │ │ ├── TIPropertyProvider.h │ │ │ │ └── WebFrameLoadDelegate.h │ │ └── src │ │ │ ├── IMKAbstractInputMethod.m │ │ │ ├── IMKAbstractTextDocument.m │ │ │ ├── IMKAppleSpellCandidateEngine.m │ │ │ ├── IMKAutoCapitalizationInputMethod.m │ │ │ ├── IMKAutoPeriodInputMethod.m │ │ │ ├── IMKCandidate.m │ │ │ ├── IMKCandidateArrowView.m │ │ │ ├── IMKCandidateBasedInputController.m │ │ │ ├── IMKCandidateCanvas.m │ │ │ ├── IMKCandidateController.m │ │ │ ├── IMKCandidateControllerBasedCandidateMenu.m │ │ │ ├── IMKCandidateData.m │ │ │ ├── IMKCandidateDefinitionUnit.m │ │ │ ├── IMKCandidateDisplayArray.m │ │ │ ├── IMKCandidateEngine.m │ │ │ ├── IMKCandidateGroupView.m │ │ │ ├── IMKCandidateGroupViewUnit.m │ │ │ ├── IMKCandidateLayoutUnit.m │ │ │ ├── IMKCandidateLineView.m │ │ │ ├── IMKCandidateList.m │ │ │ ├── IMKCandidateListDictionary.m │ │ │ ├── IMKCandidateNavigationController.m │ │ │ ├── IMKCandidatePickerInputMethod.m │ │ │ ├── IMKCandidatePopoverController.m │ │ │ ├── IMKCandidatePositionedUIString.m │ │ │ ├── IMKCandidateSecondaryUnitView.m │ │ │ ├── IMKCandidateSelectionView.m │ │ │ ├── IMKCandidateSelectionViewButton.m │ │ │ ├── IMKCandidateStepperAccessoryImageView.m │ │ │ ├── IMKCandidateStepperView.m │ │ │ ├── IMKCandidateUIElement.m │ │ │ ├── IMKCandidateUIProperties.m │ │ │ ├── IMKCandidateUIString.m │ │ │ ├── IMKCandidateUIStringProperties.m │ │ │ ├── IMKCandidateUIStringSizeCache.m │ │ │ ├── IMKCandidateUnitView.m │ │ │ ├── IMKCandidateUnitViewContentView.m │ │ │ ├── IMKCandidateUnitViewTextContainer.m │ │ │ ├── IMKCandidateView.m │ │ │ ├── IMKCandidateWindow.m │ │ │ ├── IMKCandidateWindowPositioning.m │ │ │ ├── IMKCandidates.m │ │ │ ├── IMKCandidatesPrivate.m │ │ │ ├── IMKClipView.m │ │ │ ├── IMKCompositionResult.m │ │ │ ├── IMKContentView.m │ │ │ ├── IMKCurrencyInputMethod.m │ │ │ ├── IMKDebugging.m │ │ │ ├── IMKDefinitionToLayoutConstraint.m │ │ │ ├── IMKDefinitionToLayoutController.m │ │ │ ├── IMKDocumentContent.m │ │ │ ├── IMKDocumentView.m │ │ │ ├── IMKDoubleSpaceEventHandler.m │ │ │ ├── IMKEnclosingCharactersInputMethod.m │ │ │ ├── IMKExtensionHostContext.m │ │ │ ├── IMKExtensionIM.m │ │ │ ├── IMKExtensionMainThreadInit.m │ │ │ ├── IMKExtensionServiceContext.m │ │ │ ├── IMKExtensionService_Subsystem.m │ │ │ ├── IMKInputContext.m │ │ │ ├── IMKInputController.m │ │ │ ├── IMKInputControllerPrivate.m │ │ │ ├── IMKKey.m │ │ │ ├── IMKKeyboard.m │ │ │ ├── IMKKeyboardDescriptor.m │ │ │ ├── IMKKeyboardInputController.m │ │ │ ├── IMKKeyboardLayoutInputMethod.m │ │ │ ├── IMKKeyboardService.m │ │ │ ├── IMKKeyboardState.m │ │ │ ├── IMKLayout.m │ │ │ ├── IMKLayoutLine.m │ │ │ ├── IMKLayoutToViewController.m │ │ │ ├── IMKLog.m │ │ │ ├── IMKMultitapInputMethod.m │ │ │ ├── IMKNSApplication.m │ │ │ ├── IMKNSXPCListener.m │ │ │ ├── IMKObserver.m │ │ │ ├── IMKPhoneNumberInputMethod.m │ │ │ ├── IMKPreferences.m │ │ │ ├── IMKServer.m │ │ │ ├── IMKServerInvocationSentinel.m │ │ │ ├── IMKServerPrivate.m │ │ │ ├── IMKServerXPCInvocation.m │ │ │ ├── IMKSimulatorApplication.m │ │ │ ├── IMKSimulatorController.m │ │ │ ├── IMKSimulatorDummyDelegate.m │ │ │ ├── IMKSimulatorInputClient.m │ │ │ ├── IMKSimulatorInputModeSelector.m │ │ │ ├── IMKSimulatorKeyboardInterpreter.m │ │ │ ├── IMKSimulatorPasteboardValueDictionary.m │ │ │ ├── IMKSimulatorPreferencesBar.m │ │ │ ├── IMKSimulatorSpotlightButton.m │ │ │ ├── IMKSimulatorTextView.m │ │ │ ├── IMKSimulatorUIDirectionButton.m │ │ │ ├── IMKSimulatorUIOrientationButton.m │ │ │ ├── IMKSimulatorWindow.m │ │ │ ├── IMKSimulatorWindowContentView.m │ │ │ ├── IMKSimulatorWindowGrabber.m │ │ │ ├── IMKSimulatorXCUICandidateProxy.m │ │ │ ├── IMKTSMInputSourceHelper.m │ │ │ ├── IMKTextDocument.m │ │ │ ├── IMKTextDocumentTextInputAdaptor.m │ │ │ ├── IMKTextDocumentTraits.m │ │ │ ├── IMKTextField.m │ │ │ ├── IMKTextFieldCell.m │ │ │ ├── IMKTextInputFunctionRowItemServiceViewController.m │ │ │ ├── IMKTextInputTextDocumentAdaptor.m │ │ │ ├── IMKTouchBarUICandidate.m │ │ │ ├── IMKTruncatedTextField.m │ │ │ ├── IMKUIAbstractCandidateLayout.m │ │ │ ├── IMKUICandidate.m │ │ │ ├── IMKUICandidateAccessibilityElement.m │ │ │ ├── IMKUICandidateArrowButton.m │ │ │ ├── IMKUICandidateBarCorrectionPanelController.m │ │ │ ├── IMKUICandidateBarListView.m │ │ │ ├── IMKUICandidateBarView.m │ │ │ ├── IMKUICandidateCollectionDocumentView.m │ │ │ ├── IMKUICandidateController.m │ │ │ ├── IMKUICandidateFunctionKeyTouchBarController.m │ │ │ ├── IMKUICandidateGroupView.m │ │ │ ├── IMKUICandidateGroupViewItem.m │ │ │ ├── IMKUICandidateGroupViewItemView.m │ │ │ ├── IMKUICandidateHorizontalController.m │ │ │ ├── IMKUICandidateHorizontalExpandableController.m │ │ │ ├── IMKUICandidateHorizontalScrubberController.m │ │ │ ├── IMKUICandidateHorizontalSteppableController.m │ │ │ ├── IMKUICandidateInformationController.m │ │ │ ├── IMKUICandidateItemLayout.m │ │ │ ├── IMKUICandidateItemView.m │ │ │ ├── IMKUICandidateIterativeLayout.m │ │ │ ├── IMKUICandidateLargePredictionVerticalController.m │ │ │ ├── IMKUICandidateLargePredictionVerticallyAlignedController.m │ │ │ ├── IMKUICandidateLayout.m │ │ │ ├── IMKUICandidateLayoutTraits.m │ │ │ ├── IMKUICandidateLineLayout.m │ │ │ ├── IMKUICandidateLineLayoutEntry.m │ │ │ ├── IMKUICandidateLineLayoutIterator.m │ │ │ ├── IMKUICandidateListView.m │ │ │ ├── IMKUICandidatePredictionVerticalController.m │ │ │ ├── IMKUICandidatePredictionVerticallyAlignedController.m │ │ │ ├── IMKUICandidatePressAndHoldWindowController.m │ │ │ ├── IMKUICandidateSortingBarButton.m │ │ │ ├── IMKUICandidateSortingBarView.m │ │ │ ├── IMKUICandidateStepperAccessoryImageView.m │ │ │ ├── IMKUICandidateStepperView.m │ │ │ ├── IMKUICandidateSteppingWindowController.m │ │ │ ├── IMKUICandidateTextContainer.m │ │ │ ├── IMKUICandidateTouchBarCandidateListItemController.m │ │ │ ├── IMKUICandidateTouchBarController.m │ │ │ ├── IMKUICandidateTouchBarItemController.m │ │ │ ├── IMKUICandidateTouchBarLineLayout.m │ │ │ ├── IMKUICandidateTouchBarOnScreenBridge.m │ │ │ ├── IMKUICandidateTrackpadHandwritingTouchBarController.m │ │ │ ├── IMKUICandidateVerticalController.m │ │ │ ├── IMKUICandidateVerticalScrubberController.m │ │ │ ├── IMKUICandidateVerticalWindowController.m │ │ │ ├── IMKUICandidateVerticallyAlignedController.m │ │ │ ├── IMKUICandidateVerticallyAlignedScrubberController.m │ │ │ ├── IMKUICandidateWindowController.m │ │ │ ├── IMKUICandidateWindowPositionController.m │ │ │ ├── IMKUICorneredPanelMask.m │ │ │ ├── IMKUIExpandableCandidateWindowController.m │ │ │ ├── IMKUIFastTrackVerticalLayout.m │ │ │ ├── IMKUIInformation.m │ │ │ ├── IMKUIInformationWindowController.m │ │ │ ├── IMKUIPanel.m │ │ │ ├── IMKUIPanelMask.m │ │ │ ├── IMKUIProperties.m │ │ │ ├── IMKUIScrollView.m │ │ │ ├── IMKUIScrubberView.m │ │ │ ├── IMKUISingleCandidateListView.m │ │ │ ├── IMKUISpeechBalloonMask.m │ │ │ ├── IMKUITextField.m │ │ │ ├── IMKUITopView.m │ │ │ ├── IMKUITriCandidateLayout.m │ │ │ ├── IMKUIView.m │ │ │ ├── IMKUIVisualEffectView.m │ │ │ ├── IMKUIWindowBasedCandidateController.m │ │ │ ├── IMKUIWindowContentEmptyView.m │ │ │ ├── IMKUIWindowContentView.m │ │ │ ├── IMKVerbatimInputMethod.m │ │ │ ├── IMKWindowController.m │ │ │ ├── IMKXPCCompatibilityDOProxyInterposer.m │ │ │ ├── IMKXPCServiceInfoDictionary.m │ │ │ ├── IPMDEventState.m │ │ │ ├── IPMDServerClientWrapper.m │ │ │ └── InputMethodKit.m │ ├── InstantMessage │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── InstantMessage │ │ │ │ ├── IMAVButton.h │ │ │ │ ├── IMAVControl.h │ │ │ │ ├── IMAVControlBar.h │ │ │ │ ├── IMAVControlBarImpl.h │ │ │ │ ├── IMAVManager.h │ │ │ │ ├── IMAVManagerImpl.h │ │ │ │ ├── IMAVSlider.h │ │ │ │ ├── IMAuxVideoProvider.h │ │ │ │ ├── IMService.h │ │ │ │ ├── IMSharedPixelBufferPool.h │ │ │ │ ├── InstantMessage.h │ │ │ │ ├── _IMAVButtonAuxiliary.h │ │ │ │ ├── _IMAVControlAuxiliary.h │ │ │ │ ├── _IMAVSliderAuxiliary.h │ │ │ │ ├── _IMVideoDataSource.h │ │ │ │ └── iChatTheaterXPC.h │ │ └── src │ │ │ ├── IMAVButton.m │ │ │ ├── IMAVControl.m │ │ │ ├── IMAVControlBar.m │ │ │ ├── IMAVControlBarImpl.m │ │ │ ├── IMAVManager.m │ │ │ ├── IMAVManagerImpl.m │ │ │ ├── IMAVSlider.m │ │ │ ├── IMAuxVideoProvider.m │ │ │ ├── IMService.m │ │ │ ├── IMSharedPixelBufferPool.m │ │ │ ├── InstantMessage.m │ │ │ ├── _IMAVButtonAuxiliary.m │ │ │ ├── _IMAVControlAuxiliary.m │ │ │ ├── _IMAVSliderAuxiliary.m │ │ │ ├── _IMVideoDataSource.m │ │ │ └── iChatTheaterXPC.m │ ├── JavaRuntimeSupport │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── JavaRuntimeSupport │ │ │ │ ├── JRSAppKitAWT.h │ │ │ │ ├── JRSDrag.h │ │ │ │ ├── JRSInputMethodController.h │ │ │ │ ├── JRSMenu.h │ │ │ │ ├── JRSRenderServer.h │ │ │ │ ├── JRSSecurity.h │ │ │ │ ├── JRSSymbolicator.h │ │ │ │ ├── JRSSymbolicatorImpl.h │ │ │ │ ├── JavaRuntimeSupport.h │ │ │ │ ├── MIGThread.h │ │ │ │ └── _JRSUIRenderer.h │ │ └── src │ │ │ ├── JRSAppKitAWT.m │ │ │ ├── JRSDrag.m │ │ │ ├── JRSInputMethodController.m │ │ │ ├── JRSMenu.m │ │ │ ├── JRSRenderServer.m │ │ │ ├── JRSSecurity.m │ │ │ ├── JRSSymbolicator.m │ │ │ ├── JRSSymbolicatorImpl.m │ │ │ ├── JavaRuntimeSupport.m │ │ │ ├── MIGThread.m │ │ │ └── _JRSUIRenderer.m │ ├── JavaVM │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── JavaVM │ │ │ │ ├── JavaVM.h │ │ │ │ ├── NSJavaConfiguration.h │ │ │ │ └── NSJavaVirtualMachine.h │ │ └── src │ │ │ ├── JavaVM.m │ │ │ ├── NSJavaConfiguration.m │ │ │ └── NSJavaVirtualMachine.m │ ├── LocalAuthentication │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── LocalAuthentication │ │ │ │ ├── LACFSupport.h │ │ │ │ ├── LAContext.h │ │ │ │ ├── LAError.h │ │ │ │ ├── LAPrivateDefines.h │ │ │ │ ├── LAPublicDefines.h │ │ │ │ └── LocalAuthentication.h │ │ │ └── coreauthd_spi.h │ │ └── src │ │ │ ├── LACFSupport.c │ │ │ ├── LAContext.m │ │ │ └── stubs.c │ ├── MapKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── MapKit │ │ │ │ ├── CAAnimationDelegate.h │ │ │ │ ├── CALayerDelegate.h │ │ │ │ ├── CLLocationManagerDelegate.h │ │ │ │ ├── GEOEncyclopedicInfo.h │ │ │ │ ├── GEOEncyclopedicInfoUserLocation.h │ │ │ │ ├── GEOLogContextDelegate.h │ │ │ │ ├── GEOMapItem.h │ │ │ │ ├── GEOResourceManifestTileGroupObserver.h │ │ │ │ ├── GEOTransitArtworkDataSource.h │ │ │ │ ├── GEOTransitIconDataSource.h │ │ │ │ ├── GEOTransitLabelItem.h │ │ │ │ ├── GEOTransitShieldDataSource.h │ │ │ │ ├── GEOURLSerializable.h │ │ │ │ ├── GEOUsageKeypressEventProtocol.h │ │ │ │ ├── MKAccessibilityItem.h │ │ │ │ ├── MKAccessiblePlatterView.h │ │ │ │ ├── MKActionRowItemButton.h │ │ │ │ ├── MKActionRowItemView.h │ │ │ │ ├── MKActionRowItemViewDelegate.h │ │ │ │ ├── MKActivityItemSocialSource.h │ │ │ │ ├── MKActivityItemSource.h │ │ │ │ ├── MKAllRouteETAsManager.h │ │ │ │ ├── MKAnnotation.h │ │ │ │ ├── MKAnnotationContainerView.h │ │ │ │ ├── MKAnnotationContainerViewDelegate.h │ │ │ │ ├── MKAnnotationManager.h │ │ │ │ ├── MKAnnotationManagerDelegate.h │ │ │ │ ├── MKAnnotationMarkerContainer.h │ │ │ │ ├── MKAnnotationModel.h │ │ │ │ ├── MKAnnotationPrivate.h │ │ │ │ ├── MKAnnotationRepresentation.h │ │ │ │ ├── MKAnnotationSelector.h │ │ │ │ ├── MKAnnotationView.h │ │ │ │ ├── MKAnnotationViewInternal.h │ │ │ │ ├── MKAppImageManager.h │ │ │ │ ├── MKArtworkDataSourceCache.h │ │ │ │ ├── MKArtworkImageSource.h │ │ │ │ ├── MKArtworkImageView.h │ │ │ │ ├── MKAttributeLabelModel.h │ │ │ │ ├── MKAttributeUtils.h │ │ │ │ ├── MKAttributedStringBlendingConfiguration.h │ │ │ │ ├── MKAttributedStringVibrancySplitter.h │ │ │ │ ├── MKAttributionLabel.h │ │ │ │ ├── MKAutocompleteAnalyticsProvider.h │ │ │ │ ├── MKAutocompleteAnalyticsState.h │ │ │ │ ├── MKBlurBackedControlProxy.h │ │ │ │ ├── MKBlurBackedControlView.h │ │ │ │ ├── MKBlurBackingLayer.h │ │ │ │ ├── MKBlurBackingView.h │ │ │ │ ├── MKButtonWithTargetArgument.h │ │ │ │ ├── MKCALayerCompletionDelegate.h │ │ │ │ ├── MKCalloutLayer.h │ │ │ │ ├── MKCalloutShadowView.h │ │ │ │ ├── MKCalloutView.h │ │ │ │ ├── MKCircle.h │ │ │ │ ├── MKCircleRenderer.h │ │ │ │ ├── MKClusterAnnotation.h │ │ │ │ ├── MKCompassLayer.h │ │ │ │ ├── MKCompassView.h │ │ │ │ ├── MKCoreLocationProvider.h │ │ │ │ ├── MKCustomFeatureAnnotation.h │ │ │ │ ├── MKCustomSeparatorTableViewCell.h │ │ │ │ ├── MKDirections.h │ │ │ │ ├── MKDirectionsRequest.h │ │ │ │ ├── MKDirectionsResponse.h │ │ │ │ ├── MKDistanceFormatter.h │ │ │ │ ├── MKDynamicTransitUIContainer.h │ │ │ │ ├── MKETAProvider.h │ │ │ │ ├── MKETAProviderDelegate.h │ │ │ │ ├── MKETAProviderObserver.h │ │ │ │ ├── MKETAResponse.h │ │ │ │ ├── MKEmptyTextAttachment.h │ │ │ │ ├── MKEmptyTextAttachmentCell.h │ │ │ │ ├── MKGeodesicPolyline.h │ │ │ │ ├── MKIconManager.h │ │ │ │ ├── MKImageAttachmentCell.h │ │ │ │ ├── MKImageTextAttachment.h │ │ │ │ ├── MKImageView.h │ │ │ │ ├── MKInactiveTransitLine.h │ │ │ │ ├── MKIncidentTextView.h │ │ │ │ ├── MKInfoCardDetailView.h │ │ │ │ ├── MKInfoCardReportAProblemController.h │ │ │ │ ├── MKInfoCardTheme.h │ │ │ │ ├── MKInfoCardThemeListener.h │ │ │ │ ├── MKInfoCardThemeManager.h │ │ │ │ ├── MKJunction.h │ │ │ │ ├── MKLabelMarker.h │ │ │ │ ├── MKLayer.h │ │ │ │ ├── MKLayoutCardViewController.h │ │ │ │ ├── MKLinkTextField.h │ │ │ │ ├── MKLocalSearch.h │ │ │ │ ├── MKLocalSearchCompleter.h │ │ │ │ ├── MKLocalSearchCompletion.h │ │ │ │ ├── MKLocalSearchKeypressMetrics.h │ │ │ │ ├── MKLocalSearchRequest.h │ │ │ │ ├── MKLocalSearchResponse.h │ │ │ │ ├── MKLocatableObject.h │ │ │ │ ├── MKLocationManager.h │ │ │ │ ├── MKLocationManagerObserver.h │ │ │ │ ├── MKLocationManagerOperation.h │ │ │ │ ├── MKLocationManagerSingleUpdater.h │ │ │ │ ├── MKLocationProvider.h │ │ │ │ ├── MKLocationProviderDelegate.h │ │ │ │ ├── MKMapAttribution.h │ │ │ │ ├── MKMapAttributionImage.h │ │ │ │ ├── MKMapCamera.h │ │ │ │ ├── MKMapGestureController.h │ │ │ │ ├── MKMapGestureControllerDelegate.h │ │ │ │ ├── MKMapItem.h │ │ │ │ ├── MKMapItemIdentifier.h │ │ │ │ ├── MKMapItemMetadata.h │ │ │ │ ├── MKMapItemMetadataImageRequest.h │ │ │ │ ├── MKMapItemMetadataRequest.h │ │ │ │ ├── MKMapItemMetadataRequester.h │ │ │ │ ├── MKMapItemPhoto.h │ │ │ │ ├── MKMapItemProviderRatingSnippet.h │ │ │ │ ├── MKMapService.h │ │ │ │ ├── MKMapServiceCategoriesTicket.h │ │ │ │ ├── MKMapServiceProblemReportTicket.h │ │ │ │ ├── MKMapServiceSearchFieldPlaceholderTicket.h │ │ │ │ ├── MKMapServiceSearchTicket.h │ │ │ │ ├── MKMapServiceTicket.h │ │ │ │ ├── MKMapServiceTransitLineTicket.h │ │ │ │ ├── MKMapServiceWalletMerchantTicket.h │ │ │ │ ├── MKMapSnapshot.h │ │ │ │ ├── MKMapSnapshotCreator.h │ │ │ │ ├── MKMapSnapshotFeatureAnnotation.h │ │ │ │ ├── MKMapSnapshotOptions.h │ │ │ │ ├── MKMapSnapshotter.h │ │ │ │ ├── MKMapView.h │ │ │ │ ├── MKModernUserLocationView.h │ │ │ │ ├── MKModuleViewControllerProtocol.h │ │ │ │ ├── MKMouseOverActionView.h │ │ │ │ ├── MKMouseOverLabelRecognizer.h │ │ │ │ ├── MKMouseOverLabelRecognizerDelegate.h │ │ │ │ ├── MKMouseOverLabelTarget.h │ │ │ │ ├── MKMultiLineLabelContainer.h │ │ │ │ ├── MKMultiPartAttributedString.h │ │ │ │ ├── MKMultiPartLabel.h │ │ │ │ ├── MKMultiPoint.h │ │ │ │ ├── MKMultilineText.h │ │ │ │ ├── MKOfflineModeViewController.h │ │ │ │ ├── MKOrientable.h │ │ │ │ ├── MKOrientationContext.h │ │ │ │ ├── MKOverlay.h │ │ │ │ ├── MKOverlayContainerView.h │ │ │ │ ├── MKOverlayContainerViewDelegate.h │ │ │ │ ├── MKOverlayPathRenderer.h │ │ │ │ ├── MKOverlayRenderer.h │ │ │ │ ├── MKPhotoBigAttributionView.h │ │ │ │ ├── MKPhotoSmallAttributionView.h │ │ │ │ ├── MKPinAnnotationView.h │ │ │ │ ├── MKPlaceActionManager.h │ │ │ │ ├── MKPlaceActionManagerProtocol.h │ │ │ │ ├── MKPlaceActivityProvider.h │ │ │ │ ├── MKPlaceAttributionCell.h │ │ │ │ ├── MKPlaceAttributionCellButton.h │ │ │ │ ├── MKPlaceAttributionCellButtonDelegate.h │ │ │ │ ├── MKPlaceAttributionCellDelegate.h │ │ │ │ ├── MKPlaceAttributionLabel.h │ │ │ │ ├── MKPlaceAttributionViewController.h │ │ │ │ ├── MKPlaceBusinessInfoViewController.h │ │ │ │ ├── MKPlaceCardActionControllerDelegate.h │ │ │ │ ├── MKPlaceCardActionItem.h │ │ │ │ ├── MKPlaceCardActionSectionView.h │ │ │ │ ├── MKPlaceCardActionSectionViewDelegate.h │ │ │ │ ├── MKPlaceCardActionsRowViewController.h │ │ │ │ ├── MKPlaceCardActionsViewController.h │ │ │ │ ├── MKPlaceCardEncyclopedicControllerDelegate.h │ │ │ │ ├── MKPlaceCardFooterActionsViewController.h │ │ │ │ ├── MKPlaceCardHeaderViewController.h │ │ │ │ ├── MKPlaceCardHeaderViewControllerDelegate.h │ │ │ │ ├── MKPlaceCardPhotosControllerDelegate.h │ │ │ │ ├── MKPlaceCardReviewsControllerDelegate.h │ │ │ │ ├── MKPlaceCompleteHoursView.h │ │ │ │ ├── MKPlaceEncyclopedicFactoidView.h │ │ │ │ ├── MKPlaceEncyclopedicRowView.h │ │ │ │ ├── MKPlaceEncyclopedicRowViewItem.h │ │ │ │ ├── MKPlaceEncyclopedicTextItem.h │ │ │ │ ├── MKPlaceEncyclopedicViewController.h │ │ │ │ ├── MKPlaceHeaderButton.h │ │ │ │ ├── MKPlaceHeaderButtonsViewController.h │ │ │ │ ├── MKPlaceHeaderButtonsViewControllerDelegate.h │ │ │ │ ├── MKPlaceHoursDayRow.h │ │ │ │ ├── MKPlaceHoursView.h │ │ │ │ ├── MKPlaceHoursViewController.h │ │ │ │ ├── MKPlaceHoursViewHelper.h │ │ │ │ ├── MKPlaceInfoBusinessMessageRowView.h │ │ │ │ ├── MKPlaceInfoContactRowView.h │ │ │ │ ├── MKPlaceInfoEmailRowView.h │ │ │ │ ├── MKPlaceInfoPhoneNumberView.h │ │ │ │ ├── MKPlaceInfoPostalAddressRowView.h │ │ │ │ ├── MKPlaceInfoRow.h │ │ │ │ ├── MKPlaceInfoURLRowView.h │ │ │ │ ├── MKPlaceInfoViewController.h │ │ │ │ ├── MKPlaceInlineMapViewController.h │ │ │ │ ├── MKPlaceLocVCardActivityProvider.h │ │ │ │ ├── MKPlaceMapItemActivityProvider.h │ │ │ │ ├── MKPlaceMessageHoursViewController.h │ │ │ │ ├── MKPlacePhotosViewController.h │ │ │ │ ├── MKPlacePoisInlineMapViewController.h │ │ │ │ ├── MKPlaceReservationRowView.h │ │ │ │ ├── MKPlaceReservationViewController.h │ │ │ │ ├── MKPlaceReviewAvatarGenerator.h │ │ │ │ ├── MKPlaceReviewsViewCell.h │ │ │ │ ├── MKPlaceReviewsViewController.h │ │ │ │ ├── MKPlaceSectionHeaderView.h │ │ │ │ ├── MKPlaceSectionItemView.h │ │ │ │ ├── MKPlaceSectionRowView.h │ │ │ │ ├── MKPlaceSectionView.h │ │ │ │ ├── MKPlaceSectionViewController.h │ │ │ │ ├── MKPlaceSectionViewDelegate.h │ │ │ │ ├── MKPlaceServiceHoursView.h │ │ │ │ ├── MKPlaceServiceHoursViewController.h │ │ │ │ ├── MKPlaceServiceHoursViewControllerProtocol.h │ │ │ │ ├── MKPlaceTextActivityProvider.h │ │ │ │ ├── MKPlaceTextBlockCell.h │ │ │ │ ├── MKPlaceTextCell.h │ │ │ │ ├── MKPlaceTopBarViewController.h │ │ │ │ ├── MKPlaceURLActivityProvider.h │ │ │ │ ├── MKPlaceUnfinishedViewController.h │ │ │ │ ├── MKPlacemark.h │ │ │ │ ├── MKPlatterView.h │ │ │ │ ├── MKPointAnnotation.h │ │ │ │ ├── MKPolygon.h │ │ │ │ ├── MKPolygonRenderer.h │ │ │ │ ├── MKPolyline.h │ │ │ │ ├── MKPolylineRenderer.h │ │ │ │ ├── MKQuadTrie.h │ │ │ │ ├── MKQuickRouteConfigurableView.h │ │ │ │ ├── MKQuickRouteManagerDelegate.h │ │ │ │ ├── MKQuickRouteTransportTypeFinding.h │ │ │ │ ├── MKResizableImage.h │ │ │ │ ├── MKResizedArtworkDataSourceCache.h │ │ │ │ ├── MKRotationFilter.h │ │ │ │ ├── MKRotationFilterDelegate.h │ │ │ │ ├── MKRoute.h │ │ │ │ ├── MKRouteActivityProvider.h │ │ │ │ ├── MKRoutePolyline.h │ │ │ │ ├── MKRouteStep.h │ │ │ │ ├── MKRouteStepPolyline.h │ │ │ │ ├── MKRouteTextActivityProvider.h │ │ │ │ ├── MKRouteURLActivityProvider.h │ │ │ │ ├── MKScaleView.h │ │ │ │ ├── MKSearchCompletion.h │ │ │ │ ├── MKSeparator.h │ │ │ │ ├── MKServerFormattedString.h │ │ │ │ ├── MKServerFormattedStringParameters.h │ │ │ │ ├── MKServiceHoursRow.h │ │ │ │ ├── MKShape.h │ │ │ │ ├── MKSharingController.h │ │ │ │ ├── MKSizedTransitArtwork.h │ │ │ │ ├── MKSmallCalloutView.h │ │ │ │ ├── MKSpatialCollider.h │ │ │ │ ├── MKStackingViewController.h │ │ │ │ ├── MKStackingViewControllerDelegate.h │ │ │ │ ├── MKStackingViewControllerFixedHeightAware.h │ │ │ │ ├── MKStackingViewControllerSizableView.h │ │ │ │ ├── MKStandardCalloutView.h │ │ │ │ ├── MKStarRatingAndLabelView.h │ │ │ │ ├── MKStarRatingView.h │ │ │ │ ├── MKSystemController.h │ │ │ │ ├── MKTableViewCell.h │ │ │ │ ├── MKThemeMultiPartLabel.h │ │ │ │ ├── MKThreadContext.h │ │ │ │ ├── MKThrottledGate.h │ │ │ │ ├── MKTileOverlay.h │ │ │ │ ├── MKTileOverlayRenderer.h │ │ │ │ ├── MKTileOverlayRequester.h │ │ │ │ ├── MKTileOverlayRequesterOp.h │ │ │ │ ├── MKTileOverlayTile.h │ │ │ │ ├── MKToVKOverlayAdaptor.h │ │ │ │ ├── MKTrafficSupport.h │ │ │ │ ├── MKTrailingAlignedButton.h │ │ │ │ ├── MKTrailingAlignedButtonCell.h │ │ │ │ ├── MKTransitArtwork.h │ │ │ │ ├── MKTransitArtworkManager.h │ │ │ │ ├── MKTransitAttributionSummaryCell.h │ │ │ │ ├── MKTransitAttributionViewController.h │ │ │ │ ├── MKTransitAttributionViewControllerDelegate.h │ │ │ │ ├── MKTransitDepartureServiceGapFormatter.h │ │ │ │ ├── MKTransitDepartureServiceGapFormatterResult.h │ │ │ │ ├── MKTransitDeparturesCell.h │ │ │ │ ├── MKTransitDeparturesCellDelegate.h │ │ │ │ ├── MKTransitDeparturesSectionController.h │ │ │ │ ├── MKTransitDeparturesSectionHeaderView.h │ │ │ │ ├── MKTransitDeparturesViewController.h │ │ │ │ ├── MKTransitDepaturesViewControllerDelegate.h │ │ │ │ ├── MKTransitIcon.h │ │ │ │ ├── MKTransitInactiveLinesSectionController.h │ │ │ │ ├── MKTransitIncidentDetailCell.h │ │ │ │ ├── MKTransitIncidentStringProvider.h │ │ │ │ ├── MKTransitIncidentSummaryCell.h │ │ │ │ ├── MKTransitIncidentsViewController.h │ │ │ │ ├── MKTransitInfoLabelView.h │ │ │ │ ├── MKTransitItemController.h │ │ │ │ ├── MKTransitItemIncidentCell.h │ │ │ │ ├── MKTransitItemIncidentsController.h │ │ │ │ ├── MKTransitLineIncidentsViewController.h │ │ │ │ ├── MKTransitLineItemViewController.h │ │ │ │ ├── MKTransitLineMarker.h │ │ │ │ ├── MKTransitLoadingTableViewCell.h │ │ │ │ ├── MKTransitMessageCell.h │ │ │ │ ├── MKTransitSectionController.h │ │ │ │ ├── MKTransitSectionPagingFilter.h │ │ │ │ ├── MKTransitShield.h │ │ │ │ ├── MKTransitSystemCell.h │ │ │ │ ├── MKUILabelNoAutoFontSmoothingBackground.h │ │ │ │ ├── MKURLBuilder.h │ │ │ │ ├── MKURLHandler.h │ │ │ │ ├── MKURLParser.h │ │ │ │ ├── MKURLSerializer.h │ │ │ │ ├── MKUserLocation.h │ │ │ │ ├── MKUserLocationAnnotation.h │ │ │ │ ├── MKUserLocationAnnotationViewProxy.h │ │ │ │ ├── MKUserLocationInternal.h │ │ │ │ ├── MKUserLocationView.h │ │ │ │ ├── MKVibrancyAwareLabelView.h │ │ │ │ ├── MKViewWithHairline.h │ │ │ │ ├── MKWalletMerchantLookupRequest.h │ │ │ │ ├── MKWalletMerchantResponse.h │ │ │ │ ├── MKWalletMerchantStylingInfo.h │ │ │ │ ├── MKWalletRAPReport.h │ │ │ │ ├── MKZoomSegmentedControl.h │ │ │ │ ├── MapKit.h │ │ │ │ ├── NSAccessibilityButton.h │ │ │ │ ├── NSAccessibilityElement.h │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ ├── NSGestureRecognizerDelegate.h │ │ │ │ ├── NSSharingServiceDelegate.h │ │ │ │ ├── NSSharingServicePickerDelegate.h │ │ │ │ ├── NSTableViewDataSource.h │ │ │ │ ├── NSTableViewDelegate.h │ │ │ │ ├── NVAttributeAttachmentCell.h │ │ │ │ ├── NVMapScaleSegment.h │ │ │ │ ├── VKAnnotation.h │ │ │ │ ├── VKCustomFeatureAnnotation.h │ │ │ │ ├── VKCustomFeatureDataSource.h │ │ │ │ ├── VKMapViewDelegate.h │ │ │ │ ├── VKPuckAnimatorTarget.h │ │ │ │ ├── VKRouteMatchedAnnotationPresentation.h │ │ │ │ ├── VKTrackableAnnotationPresentation.h │ │ │ │ ├── _GEOTransitLineMarker.h │ │ │ │ ├── _MKAnimationStackViewDelegate.h │ │ │ │ ├── _MKAnnotationDragGestureRecognizer.h │ │ │ │ ├── _MKAnnotationViewAnchor.h │ │ │ │ ├── _MKAnnotationViewCustomFeatureAnnotation.h │ │ │ │ ├── _MKAppImageManagerContainer.h │ │ │ │ ├── _MKBalloonCalloutView.h │ │ │ │ ├── _MKBalloonCalloutViewConfiguring.h │ │ │ │ ├── _MKBalloonContainerView.h │ │ │ │ ├── _MKBalloonLabelMarkerView.h │ │ │ │ ├── _MKCalloutAccessoryView.h │ │ │ │ ├── _MKCalloutAccessoryWrapperView.h │ │ │ │ ├── _MKCalloutContentView.h │ │ │ │ ├── _MKCalloutDetailWrapperView.h │ │ │ │ ├── _MKCalloutLayer.h │ │ │ │ ├── _MKCategoriesTicket.h │ │ │ │ ├── _MKClickableTableView.h │ │ │ │ ├── _MKClickableTableViewController.h │ │ │ │ ├── _MKClickableTableViewDelegate.h │ │ │ │ ├── _MKConditionalPanGestureRecognizer.h │ │ │ │ ├── _MKContactPlaceItem.h │ │ │ │ ├── _MKCustomFeatureStore.h │ │ │ │ ├── _MKDataHeaderModel.h │ │ │ │ ├── _MKDirectionalArrowRecognizer.h │ │ │ │ ├── _MKDirectionalPanGestureRecognizer.h │ │ │ │ ├── _MKDistanceDetailProvider.h │ │ │ │ ├── _MKEnvironmentLabel.h │ │ │ │ ├── _MKFakeNil.h │ │ │ │ ├── _MKGemUserLocationView.h │ │ │ │ ├── _MKIconDiskCache.h │ │ │ │ ├── _MKInfoCardAnalyticsDelegate.h │ │ │ │ ├── _MKInfoCardChildViewControllerAnalyticsDelegate.h │ │ │ │ ├── _MKInfoCardController.h │ │ │ │ ├── _MKJunctionElement.h │ │ │ │ ├── _MKKVOProxy.h │ │ │ │ ├── _MKKVOProxyDelegate.h │ │ │ │ ├── _MKLabelMarkerItem.h │ │ │ │ ├── _MKLabelMarkerView.h │ │ │ │ ├── _MKLeadingAlignedButton.h │ │ │ │ ├── _MKLeadingAlignedButtonCell.h │ │ │ │ ├── _MKLineHeaderModel.h │ │ │ │ ├── _MKLocalSearchExternalTransitLookupParameters.h │ │ │ │ ├── _MKLocalSearchMerchantParameters.h │ │ │ │ ├── _MKLocalizedHoursBuilder.h │ │ │ │ ├── _MKLocationShifter.h │ │ │ │ ├── _MKMagnificationGestureRecognizer.h │ │ │ │ ├── _MKMapItemAttribution.h │ │ │ │ ├── _MKMapItemPhotosAttribution.h │ │ │ │ ├── _MKMapItemPlaceAttribution.h │ │ │ │ ├── _MKMapItemPlaceItem.h │ │ │ │ ├── _MKMapItemReviewsAttribution.h │ │ │ │ ├── _MKMapItemUserRatingSnippetReview.h │ │ │ │ ├── _MKMapItemUserRatingSnippetTip.h │ │ │ │ ├── _MKMapViewSuspendedEffectsToken.h │ │ │ │ ├── _MKMouseDownGestureRecognizer.h │ │ │ │ ├── _MKMultiPartLabelCacheKey.h │ │ │ │ ├── _MKMultiPartLabelMetrics.h │ │ │ │ ├── _MKMultiPartStringComponent.h │ │ │ │ ├── _MKPinAnnotationViewDelegate.h │ │ │ │ ├── _MKPinAnnotationViewImageCache.h │ │ │ │ ├── _MKPinAnnotationViewImageCacheKey.h │ │ │ │ ├── _MKPlaceActionButtonController.h │ │ │ │ ├── _MKPlaceActionButtonControllerProtocol.h │ │ │ │ ├── _MKPlaceBusinessInfoItem.h │ │ │ │ ├── _MKPlaceBusinessInfoRow.h │ │ │ │ ├── _MKPlaceInlineMapContentView.h │ │ │ │ ├── _MKPlaceInlineMapCustomFeature.h │ │ │ │ ├── _MKPlaceItem.h │ │ │ │ ├── _MKPlacePoisInlineMapContentView.h │ │ │ │ ├── _MKPlaceReservationInfo.h │ │ │ │ ├── _MKPlaceViewController.h │ │ │ │ ├── _MKPlatterImageViewNoAutoLayout.h │ │ │ │ ├── _MKProblemReportTicket.h │ │ │ │ ├── _MKQuickRouteManager.h │ │ │ │ ├── _MKResizingLayer.h │ │ │ │ ├── _MKResultView.h │ │ │ │ ├── _MKRightImageButton.h │ │ │ │ ├── _MKRotationGestureRecognizer.h │ │ │ │ ├── _MKRouteETA.h │ │ │ │ ├── _MKRouteETAFetcher.h │ │ │ │ ├── _MKScaleViewTransitionDelegate.h │ │ │ │ ├── _MKSearchFieldPlaceholderTicket.h │ │ │ │ ├── _MKSearchTicket.h │ │ │ │ ├── _MKSmallCalloutContainerView.h │ │ │ │ ├── _MKSmallCalloutPassthroughButton.h │ │ │ │ ├── _MKSortedDepartureCollection.h │ │ │ │ ├── _MKSpatialColliderPairSet.h │ │ │ │ ├── _MKStackView.h │ │ │ │ ├── _MKStackViewDelegate.h │ │ │ │ ├── _MKStackingContentView.h │ │ │ │ ├── _MKStackingPlaceholderView.h │ │ │ │ ├── _MKStackingViewControllerHeaderView.h │ │ │ │ ├── _MKTableViewController.h │ │ │ │ ├── _MKTableViewControllerRootView.h │ │ │ │ ├── _MKTicket.h │ │ │ │ ├── _MKTokenAttributedString.h │ │ │ │ ├── _MKTransitConnectionCell.h │ │ │ │ ├── _MKTransitConnectionCellDelegate.h │ │ │ │ ├── _MKTransitInactiveLine.h │ │ │ │ ├── _MKTransitLineTicket.h │ │ │ │ ├── _MKUILabel.h │ │ │ │ ├── _MKUIViewController.h │ │ │ │ ├── _MKUIViewControllerClickableRootView.h │ │ │ │ ├── _MKUIViewControllerRootView.h │ │ │ │ ├── _MKWiFiObserver.h │ │ │ │ ├── _MKWiFiObserverDelegate.h │ │ │ │ ├── _MXAssetStorage.h │ │ │ │ ├── _MXBundleBlacklistEntry.h │ │ │ │ ├── _MXExtension.h │ │ │ │ ├── _MXExtensionBaseMapFeature.h │ │ │ │ ├── _MXExtensionBaseMapNamedImage.h │ │ │ │ ├── _MXExtensionBaseMapRequest.h │ │ │ │ ├── _MXExtensionBaseMapResponse.h │ │ │ │ ├── _MXExtensionBaseMapService.h │ │ │ │ ├── _MXExtensionBaseMapServiceRequestDispatcher.h │ │ │ │ ├── _MXExtensionContainingAppProxy.h │ │ │ │ ├── _MXExtensionContext.h │ │ │ │ ├── _MXExtensionContextType.h │ │ │ │ ├── _MXExtensionDispatchCenter.h │ │ │ │ ├── _MXExtensionHostContext.h │ │ │ │ ├── _MXExtensionHostContextType.h │ │ │ │ ├── _MXExtensionHostViewController.h │ │ │ │ ├── _MXExtensionHostViewControlling.h │ │ │ │ ├── _MXExtensionInternalServiceProtocol.h │ │ │ │ ├── _MXExtensionInternalServiceRequestDispatcher.h │ │ │ │ ├── _MXExtensionInternalStreamingServiceProtocol.h │ │ │ │ ├── _MXExtensionInternalStreamingServiceRequestDispatcher.h │ │ │ │ ├── _MXExtensionLookupPolicy.h │ │ │ │ ├── _MXExtensionManager.h │ │ │ │ ├── _MXExtensionMatchingMerger.h │ │ │ │ ├── _MXExtensionProvider.h │ │ │ │ ├── _MXExtensionRequestDispatcher.h │ │ │ │ ├── _MXExtensionRequestDispatching.h │ │ │ │ ├── _MXExtensionRequestHandling.h │ │ │ │ ├── _MXExtensionRequestReceipt.h │ │ │ │ ├── _MXExtensionResponseObserver.h │ │ │ │ ├── _MXExtensionRideSharingRide.h │ │ │ │ ├── _MXExtensionRideSharingSearchRequest.h │ │ │ │ ├── _MXExtensionRideSharingSearchResponse.h │ │ │ │ ├── _MXExtensionService.h │ │ │ │ ├── _MXExtensionServiceCenter.h │ │ │ │ ├── _MXExtensionStreamingRequestDispatching.h │ │ │ │ ├── _MXExtensionStreamingRequestHandling.h │ │ │ │ ├── _MXExtensionURLHandling.h │ │ │ │ ├── _MXExtensionVendorContext.h │ │ │ │ ├── _MXExtensionVendorContextType.h │ │ │ │ ├── _MXExtensionVendorViewController.h │ │ │ │ ├── _MXExtensionVendorViewControlling.h │ │ │ │ ├── _MXExtensionViewControlling.h │ │ │ │ ├── _MXSerialQueue.h │ │ │ │ ├── _MXVersion.h │ │ │ │ ├── _NSImageAdaptiveToScale.h │ │ │ │ ├── _NSImageRepAdaptiveToScale.h │ │ │ │ └── _mkMapServiceWalletMerchantTicket.h │ │ └── src │ │ │ ├── GEOEncyclopedicInfoUserLocation.m │ │ │ ├── MKAccessibilityItem.m │ │ │ ├── MKAccessiblePlatterView.m │ │ │ ├── MKActionRowItemButton.m │ │ │ ├── MKActionRowItemView.m │ │ │ ├── MKAllRouteETAsManager.m │ │ │ ├── MKAnnotationContainerView.m │ │ │ ├── MKAnnotationManager.m │ │ │ ├── MKAnnotationView.m │ │ │ ├── MKAnnotationViewInternal.m │ │ │ ├── MKAppImageManager.m │ │ │ ├── MKArtworkDataSourceCache.m │ │ │ ├── MKArtworkImageView.m │ │ │ ├── MKAttributeLabelModel.m │ │ │ ├── MKAttributeUtils.m │ │ │ ├── MKAttributedStringBlendingConfiguration.m │ │ │ ├── MKAttributedStringVibrancySplitter.m │ │ │ ├── MKAttributionLabel.m │ │ │ ├── MKAutocompleteAnalyticsProvider.m │ │ │ ├── MKAutocompleteAnalyticsState.m │ │ │ ├── MKBlurBackedControlProxy.m │ │ │ ├── MKBlurBackedControlView.m │ │ │ ├── MKBlurBackingLayer.m │ │ │ ├── MKBlurBackingView.m │ │ │ ├── MKButtonWithTargetArgument.m │ │ │ ├── MKCALayerCompletionDelegate.m │ │ │ ├── MKCalloutLayer.m │ │ │ ├── MKCalloutShadowView.m │ │ │ ├── MKCalloutView.m │ │ │ ├── MKCircle.m │ │ │ ├── MKCircleRenderer.m │ │ │ ├── MKClusterAnnotation.m │ │ │ ├── MKCompassLayer.m │ │ │ ├── MKCompassView.m │ │ │ ├── MKCoreLocationProvider.m │ │ │ ├── MKCustomSeparatorTableViewCell.m │ │ │ ├── MKDirections.m │ │ │ ├── MKDirectionsRequest.m │ │ │ ├── MKDirectionsResponse.m │ │ │ ├── MKDistanceFormatter.m │ │ │ ├── MKETAProvider.m │ │ │ ├── MKETAResponse.m │ │ │ ├── MKEmptyTextAttachment.m │ │ │ ├── MKEmptyTextAttachmentCell.m │ │ │ ├── MKGeodesicPolyline.m │ │ │ ├── MKIconManager.m │ │ │ ├── MKImageAttachmentCell.m │ │ │ ├── MKImageTextAttachment.m │ │ │ ├── MKImageView.m │ │ │ ├── MKIncidentTextView.m │ │ │ ├── MKInfoCardDetailView.m │ │ │ ├── MKInfoCardReportAProblemController.m │ │ │ ├── MKInfoCardThemeManager.m │ │ │ ├── MKJunction.m │ │ │ ├── MKLabelMarker.m │ │ │ ├── MKLayer.m │ │ │ ├── MKLayoutCardViewController.m │ │ │ ├── MKLinkTextField.m │ │ │ ├── MKLocalSearch.m │ │ │ ├── MKLocalSearchCompleter.m │ │ │ ├── MKLocalSearchCompletion.m │ │ │ ├── MKLocalSearchKeypressMetrics.m │ │ │ ├── MKLocalSearchRequest.m │ │ │ ├── MKLocalSearchResponse.m │ │ │ ├── MKLocationManager.m │ │ │ ├── MKLocationManagerSingleUpdater.m │ │ │ ├── MKMapAttribution.m │ │ │ ├── MKMapAttributionImage.m │ │ │ ├── MKMapCamera.m │ │ │ ├── MKMapGestureController.m │ │ │ ├── MKMapItem.m │ │ │ ├── MKMapItemIdentifier.m │ │ │ ├── MKMapItemMetadata.m │ │ │ ├── MKMapItemMetadataImageRequest.m │ │ │ ├── MKMapItemMetadataRequest.m │ │ │ ├── MKMapItemMetadataRequester.m │ │ │ ├── MKMapItemPhoto.m │ │ │ ├── MKMapService.m │ │ │ ├── MKMapSnapshot.m │ │ │ ├── MKMapSnapshotCreator.m │ │ │ ├── MKMapSnapshotFeatureAnnotation.m │ │ │ ├── MKMapSnapshotOptions.m │ │ │ ├── MKMapSnapshotter.m │ │ │ ├── MKMapView.m │ │ │ ├── MKModernUserLocationView.m │ │ │ ├── MKMouseOverActionView.m │ │ │ ├── MKMouseOverLabelRecognizer.m │ │ │ ├── MKMultiPartAttributedString.m │ │ │ ├── MKMultiPartLabel.m │ │ │ ├── MKMultiPoint.m │ │ │ ├── MKOrientationContext.m │ │ │ ├── MKOverlayContainerView.m │ │ │ ├── MKOverlayPathRenderer.m │ │ │ ├── MKOverlayRenderer.m │ │ │ ├── MKPhotoBigAttributionView.m │ │ │ ├── MKPhotoSmallAttributionView.m │ │ │ ├── MKPinAnnotationView.m │ │ │ ├── MKPlaceActionManager.m │ │ │ ├── MKPlaceActivityProvider.m │ │ │ ├── MKPlaceAttributionCell.m │ │ │ ├── MKPlaceAttributionCellButton.m │ │ │ ├── MKPlaceAttributionLabel.m │ │ │ ├── MKPlaceAttributionViewController.m │ │ │ ├── MKPlaceBusinessInfoViewController.m │ │ │ ├── MKPlaceCardActionItem.m │ │ │ ├── MKPlaceCardActionSectionView.m │ │ │ ├── MKPlaceCardActionsRowViewController.m │ │ │ ├── MKPlaceCardActionsViewController.m │ │ │ ├── MKPlaceCardFooterActionsViewController.m │ │ │ ├── MKPlaceCardHeaderViewController.m │ │ │ ├── MKPlaceCompleteHoursView.m │ │ │ ├── MKPlaceEncyclopedicFactoidView.m │ │ │ ├── MKPlaceEncyclopedicRowView.m │ │ │ ├── MKPlaceEncyclopedicTextItem.m │ │ │ ├── MKPlaceEncyclopedicViewController.m │ │ │ ├── MKPlaceHeaderButton.m │ │ │ ├── MKPlaceHeaderButtonsViewController.m │ │ │ ├── MKPlaceHoursDayRow.m │ │ │ ├── MKPlaceHoursView.m │ │ │ ├── MKPlaceHoursViewController.m │ │ │ ├── MKPlaceHoursViewHelper.m │ │ │ ├── MKPlaceInfoBusinessMessageRowView.m │ │ │ ├── MKPlaceInfoContactRowView.m │ │ │ ├── MKPlaceInfoEmailRowView.m │ │ │ ├── MKPlaceInfoPhoneNumberView.m │ │ │ ├── MKPlaceInfoPostalAddressRowView.m │ │ │ ├── MKPlaceInfoRow.m │ │ │ ├── MKPlaceInfoURLRowView.m │ │ │ ├── MKPlaceInfoViewController.m │ │ │ ├── MKPlaceInlineMapViewController.m │ │ │ ├── MKPlaceLocVCardActivityProvider.m │ │ │ ├── MKPlaceMapItemActivityProvider.m │ │ │ ├── MKPlaceMessageHoursViewController.m │ │ │ ├── MKPlacePhotosViewController.m │ │ │ ├── MKPlacePoisInlineMapViewController.m │ │ │ ├── MKPlaceReservationRowView.m │ │ │ ├── MKPlaceReservationViewController.m │ │ │ ├── MKPlaceReviewAvatarGenerator.m │ │ │ ├── MKPlaceReviewsViewCell.m │ │ │ ├── MKPlaceReviewsViewController.m │ │ │ ├── MKPlaceSectionHeaderView.m │ │ │ ├── MKPlaceSectionItemView.m │ │ │ ├── MKPlaceSectionRowView.m │ │ │ ├── MKPlaceSectionView.m │ │ │ ├── MKPlaceSectionViewController.m │ │ │ ├── MKPlaceServiceHoursView.m │ │ │ ├── MKPlaceServiceHoursViewController.m │ │ │ ├── MKPlaceTextActivityProvider.m │ │ │ ├── MKPlaceTextBlockCell.m │ │ │ ├── MKPlaceTextCell.m │ │ │ ├── MKPlaceTopBarViewController.m │ │ │ ├── MKPlaceURLActivityProvider.m │ │ │ ├── MKPlaceUnfinishedViewController.m │ │ │ ├── MKPlacemark.m │ │ │ ├── MKPlatterView.m │ │ │ ├── MKPointAnnotation.m │ │ │ ├── MKPolygon.m │ │ │ ├── MKPolygonRenderer.m │ │ │ ├── MKPolyline.m │ │ │ ├── MKPolylineRenderer.m │ │ │ ├── MKQuadTrie.m │ │ │ ├── MKResizableImage.m │ │ │ ├── MKResizedArtworkDataSourceCache.m │ │ │ ├── MKRotationFilter.m │ │ │ ├── MKRoute.m │ │ │ ├── MKRouteActivityProvider.m │ │ │ ├── MKRoutePolyline.m │ │ │ ├── MKRouteStep.m │ │ │ ├── MKRouteStepPolyline.m │ │ │ ├── MKRouteTextActivityProvider.m │ │ │ ├── MKRouteURLActivityProvider.m │ │ │ ├── MKScaleView.m │ │ │ ├── MKSearchCompletion.m │ │ │ ├── MKSeparator.m │ │ │ ├── MKServerFormattedString.m │ │ │ ├── MKServerFormattedStringParameters.m │ │ │ ├── MKServiceHoursRow.m │ │ │ ├── MKShape.m │ │ │ ├── MKSharingController.m │ │ │ ├── MKSizedTransitArtwork.m │ │ │ ├── MKSmallCalloutView.m │ │ │ ├── MKSpatialCollider.m │ │ │ ├── MKStackingViewController.m │ │ │ ├── MKStandardCalloutView.m │ │ │ ├── MKStarRatingAndLabelView.m │ │ │ ├── MKStarRatingView.m │ │ │ ├── MKSystemController.m │ │ │ ├── MKTableViewCell.m │ │ │ ├── MKThemeMultiPartLabel.m │ │ │ ├── MKThreadContext.m │ │ │ ├── MKThrottledGate.m │ │ │ ├── MKTileOverlay.m │ │ │ ├── MKTileOverlayRenderer.m │ │ │ ├── MKTileOverlayRequester.m │ │ │ ├── MKTileOverlayRequesterOp.m │ │ │ ├── MKTileOverlayTile.m │ │ │ ├── MKToVKOverlayAdaptor.m │ │ │ ├── MKTrafficSupport.m │ │ │ ├── MKTrailingAlignedButton.m │ │ │ ├── MKTrailingAlignedButtonCell.m │ │ │ ├── MKTransitArtwork.m │ │ │ ├── MKTransitArtworkManager.m │ │ │ ├── MKTransitAttributionSummaryCell.m │ │ │ ├── MKTransitAttributionViewController.m │ │ │ ├── MKTransitDepartureServiceGapFormatter.m │ │ │ ├── MKTransitDepartureServiceGapFormatterResult.m │ │ │ ├── MKTransitDeparturesCell.m │ │ │ ├── MKTransitDeparturesSectionController.m │ │ │ ├── MKTransitDeparturesSectionHeaderView.m │ │ │ ├── MKTransitDeparturesViewController.m │ │ │ ├── MKTransitIcon.m │ │ │ ├── MKTransitInactiveLinesSectionController.m │ │ │ ├── MKTransitIncidentDetailCell.m │ │ │ ├── MKTransitIncidentStringProvider.m │ │ │ ├── MKTransitIncidentSummaryCell.m │ │ │ ├── MKTransitIncidentsViewController.m │ │ │ ├── MKTransitInfoLabelView.m │ │ │ ├── MKTransitItemController.m │ │ │ ├── MKTransitItemIncidentCell.m │ │ │ ├── MKTransitItemIncidentsController.m │ │ │ ├── MKTransitLineIncidentsViewController.m │ │ │ ├── MKTransitLineItemViewController.m │ │ │ ├── MKTransitLoadingTableViewCell.m │ │ │ ├── MKTransitMessageCell.m │ │ │ ├── MKTransitSectionController.m │ │ │ ├── MKTransitSectionPagingFilter.m │ │ │ ├── MKTransitShield.m │ │ │ ├── MKTransitSystemCell.m │ │ │ ├── MKUILabelNoAutoFontSmoothingBackground.m │ │ │ ├── MKURLBuilder.m │ │ │ ├── MKURLHandler.m │ │ │ ├── MKURLParser.m │ │ │ ├── MKURLSerializer.m │ │ │ ├── MKUserLocation.m │ │ │ ├── MKUserLocationAnnotation.m │ │ │ ├── MKUserLocationAnnotationViewProxy.m │ │ │ ├── MKUserLocationInternal.m │ │ │ ├── MKUserLocationView.m │ │ │ ├── MKVibrancyAwareLabelView.m │ │ │ ├── MKViewWithHairline.m │ │ │ ├── MKWalletMerchantLookupRequest.m │ │ │ ├── MKWalletMerchantResponse.m │ │ │ ├── MKWalletMerchantStylingInfo.m │ │ │ ├── MKWalletRAPReport.m │ │ │ ├── MKZoomSegmentedControl.m │ │ │ ├── MapKit.m │ │ │ ├── NVAttributeAttachmentCell.m │ │ │ ├── NVMapScaleSegment.m │ │ │ ├── _GEOTransitLineMarker.m │ │ │ ├── _MKAnnotationDragGestureRecognizer.m │ │ │ ├── _MKAnnotationViewAnchor.m │ │ │ ├── _MKAnnotationViewCustomFeatureAnnotation.m │ │ │ ├── _MKAppImageManagerContainer.m │ │ │ ├── _MKBalloonCalloutView.m │ │ │ ├── _MKBalloonContainerView.m │ │ │ ├── _MKBalloonLabelMarkerView.m │ │ │ ├── _MKCalloutAccessoryWrapperView.m │ │ │ ├── _MKCalloutContentView.m │ │ │ ├── _MKCalloutDetailWrapperView.m │ │ │ ├── _MKCalloutLayer.m │ │ │ ├── _MKCategoriesTicket.m │ │ │ ├── _MKClickableTableView.m │ │ │ ├── _MKClickableTableViewController.m │ │ │ ├── _MKConditionalPanGestureRecognizer.m │ │ │ ├── _MKContactPlaceItem.m │ │ │ ├── _MKCustomFeatureStore.m │ │ │ ├── _MKDataHeaderModel.m │ │ │ ├── _MKDirectionalArrowRecognizer.m │ │ │ ├── _MKDirectionalPanGestureRecognizer.m │ │ │ ├── _MKDistanceDetailProvider.m │ │ │ ├── _MKEnvironmentLabel.m │ │ │ ├── _MKFakeNil.m │ │ │ ├── _MKGemUserLocationView.m │ │ │ ├── _MKIconDiskCache.m │ │ │ ├── _MKJunctionElement.m │ │ │ ├── _MKKVOProxy.m │ │ │ ├── _MKLabelMarkerItem.m │ │ │ ├── _MKLabelMarkerView.m │ │ │ ├── _MKLeadingAlignedButton.m │ │ │ ├── _MKLeadingAlignedButtonCell.m │ │ │ ├── _MKLineHeaderModel.m │ │ │ ├── _MKLocalSearchExternalTransitLookupParameters.m │ │ │ ├── _MKLocalSearchMerchantParameters.m │ │ │ ├── _MKLocalizedHoursBuilder.m │ │ │ ├── _MKLocationShifter.m │ │ │ ├── _MKMagnificationGestureRecognizer.m │ │ │ ├── _MKMapItemAttribution.m │ │ │ ├── _MKMapItemPhotosAttribution.m │ │ │ ├── _MKMapItemPlaceAttribution.m │ │ │ ├── _MKMapItemPlaceItem.m │ │ │ ├── _MKMapItemReviewsAttribution.m │ │ │ ├── _MKMapItemUserRatingSnippetReview.m │ │ │ ├── _MKMapItemUserRatingSnippetTip.m │ │ │ ├── _MKMapViewSuspendedEffectsToken.m │ │ │ ├── _MKMouseDownGestureRecognizer.m │ │ │ ├── _MKMultiPartLabelCacheKey.m │ │ │ ├── _MKMultiPartLabelMetrics.m │ │ │ ├── _MKMultiPartStringComponent.m │ │ │ ├── _MKPinAnnotationViewImageCache.m │ │ │ ├── _MKPinAnnotationViewImageCacheKey.m │ │ │ ├── _MKPlaceActionButtonController.m │ │ │ ├── _MKPlaceBusinessInfoItem.m │ │ │ ├── _MKPlaceBusinessInfoRow.m │ │ │ ├── _MKPlaceInlineMapContentView.m │ │ │ ├── _MKPlaceInlineMapCustomFeature.m │ │ │ ├── _MKPlacePoisInlineMapContentView.m │ │ │ ├── _MKPlaceReservationInfo.m │ │ │ ├── _MKPlaceViewController.m │ │ │ ├── _MKPlatterImageViewNoAutoLayout.m │ │ │ ├── _MKProblemReportTicket.m │ │ │ ├── _MKQuickRouteManager.m │ │ │ ├── _MKResizingLayer.m │ │ │ ├── _MKResultView.m │ │ │ ├── _MKRightImageButton.m │ │ │ ├── _MKRotationGestureRecognizer.m │ │ │ ├── _MKRouteETA.m │ │ │ ├── _MKRouteETAFetcher.m │ │ │ ├── _MKScaleViewTransitionDelegate.m │ │ │ ├── _MKSearchFieldPlaceholderTicket.m │ │ │ ├── _MKSearchTicket.m │ │ │ ├── _MKSmallCalloutContainerView.m │ │ │ ├── _MKSmallCalloutPassthroughButton.m │ │ │ ├── _MKSortedDepartureCollection.m │ │ │ ├── _MKSpatialColliderPairSet.m │ │ │ ├── _MKStackView.m │ │ │ ├── _MKStackingContentView.m │ │ │ ├── _MKStackingPlaceholderView.m │ │ │ ├── _MKStackingViewControllerHeaderView.m │ │ │ ├── _MKTableViewController.m │ │ │ ├── _MKTableViewControllerRootView.m │ │ │ ├── _MKTicket.m │ │ │ ├── _MKTokenAttributedString.m │ │ │ ├── _MKTransitConnectionCell.m │ │ │ ├── _MKTransitInactiveLine.m │ │ │ ├── _MKTransitLineTicket.m │ │ │ ├── _MKUILabel.m │ │ │ ├── _MKUIViewController.m │ │ │ ├── _MKUIViewControllerClickableRootView.m │ │ │ ├── _MKUIViewControllerRootView.m │ │ │ ├── _MKWiFiObserver.m │ │ │ ├── _MXAssetStorage.m │ │ │ ├── _MXBundleBlacklistEntry.m │ │ │ ├── _MXExtension.m │ │ │ ├── _MXExtensionBaseMapFeature.m │ │ │ ├── _MXExtensionBaseMapNamedImage.m │ │ │ ├── _MXExtensionBaseMapRequest.m │ │ │ ├── _MXExtensionBaseMapResponse.m │ │ │ ├── _MXExtensionBaseMapServiceRequestDispatcher.m │ │ │ ├── _MXExtensionContainingAppProxy.m │ │ │ ├── _MXExtensionContext.m │ │ │ ├── _MXExtensionDispatchCenter.m │ │ │ ├── _MXExtensionHostContext.m │ │ │ ├── _MXExtensionHostViewController.m │ │ │ ├── _MXExtensionInternalServiceRequestDispatcher.m │ │ │ ├── _MXExtensionInternalStreamingServiceRequestDispatcher.m │ │ │ ├── _MXExtensionLookupPolicy.m │ │ │ ├── _MXExtensionManager.m │ │ │ ├── _MXExtensionMatchingMerger.m │ │ │ ├── _MXExtensionProvider.m │ │ │ ├── _MXExtensionRequestDispatcher.m │ │ │ ├── _MXExtensionRequestReceipt.m │ │ │ ├── _MXExtensionRideSharingRide.m │ │ │ ├── _MXExtensionRideSharingSearchRequest.m │ │ │ ├── _MXExtensionRideSharingSearchResponse.m │ │ │ ├── _MXExtensionService.m │ │ │ ├── _MXExtensionServiceCenter.m │ │ │ ├── _MXExtensionVendorContext.m │ │ │ ├── _MXExtensionVendorViewController.m │ │ │ ├── _MXSerialQueue.m │ │ │ ├── _MXVersion.m │ │ │ ├── _NSImageAdaptiveToScale.m │ │ │ ├── _NSImageRepAdaptiveToScale.m │ │ │ └── _mkMapServiceWalletMerchantTicket.m │ ├── MediaAccessibility │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── MediaAccessibility │ │ │ │ └── MediaAccessibility.h │ │ └── src │ │ │ └── MediaAccessibility.c │ ├── MediaToolbox │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── MediaToolbox │ │ │ │ ├── CALayerDelegate.h │ │ │ │ ├── FPSupport_PowerStateSingleton.h │ │ │ │ ├── FPSupport_VideoRangeSingleton.h │ │ │ │ ├── FigBaseCALayer.h │ │ │ │ ├── FigBaseCALayerHost.h │ │ │ │ ├── FigCDSCALayer.h │ │ │ │ ├── FigCDSCALayerOutputNodeContentLayer.h │ │ │ │ ├── FigCDSCALayerOutputNodeLayer.h │ │ │ │ ├── FigCPEFPAirPlaySession.h │ │ │ │ ├── FigCaptionBackdropLayer.h │ │ │ │ ├── FigCaptionLayer.h │ │ │ │ ├── FigCaptionLayerPrivate.h │ │ │ │ ├── FigCaptionRowLayer.h │ │ │ │ ├── FigDisplaySleepAssertion.h │ │ │ │ ├── FigFCRCALayer.h │ │ │ │ ├── FigFCRCALayerOutputNodeContentLayer.h │ │ │ │ ├── FigFCRCALayerOutputNodeLayer.h │ │ │ │ ├── FigHTTPRequestSessionDataDelegate.h │ │ │ │ ├── FigNSURLSession.h │ │ │ │ ├── FigNSURLSessionRegistry.h │ │ │ │ ├── FigNeroLayer.h │ │ │ │ ├── FigPiPableLayer.h │ │ │ │ ├── FigSubtitleBackdropCALayer.h │ │ │ │ ├── FigSubtitleBackdropCALayerContentLayer.h │ │ │ │ ├── FigSubtitleCALayer.h │ │ │ │ ├── FigSubtitleWebVTTCueCALayer.h │ │ │ │ ├── FigSubtitleWebVTTRegionCALayer.h │ │ │ │ ├── FigVideoContainerLayer.h │ │ │ │ ├── FigVideoLayer.h │ │ │ │ ├── FigVideoLayerInternal.h │ │ │ │ └── MediaToolbox.h │ │ └── src │ │ │ ├── FPSupport_PowerStateSingleton.m │ │ │ ├── FPSupport_VideoRangeSingleton.m │ │ │ ├── FigBaseCALayer.m │ │ │ ├── FigBaseCALayerHost.m │ │ │ ├── FigCDSCALayer.m │ │ │ ├── FigCDSCALayerOutputNodeContentLayer.m │ │ │ ├── FigCDSCALayerOutputNodeLayer.m │ │ │ ├── FigCPEFPAirPlaySession.m │ │ │ ├── FigCaptionBackdropLayer.m │ │ │ ├── FigCaptionLayer.m │ │ │ ├── FigCaptionLayerPrivate.m │ │ │ ├── FigCaptionRowLayer.m │ │ │ ├── FigDisplaySleepAssertion.m │ │ │ ├── FigFCRCALayer.m │ │ │ ├── FigFCRCALayerOutputNodeContentLayer.m │ │ │ ├── FigFCRCALayerOutputNodeLayer.m │ │ │ ├── FigHTTPRequestSessionDataDelegate.m │ │ │ ├── FigNSURLSession.m │ │ │ ├── FigNSURLSessionRegistry.m │ │ │ ├── FigNeroLayer.m │ │ │ ├── FigSubtitleBackdropCALayer.m │ │ │ ├── FigSubtitleBackdropCALayerContentLayer.m │ │ │ ├── FigSubtitleCALayer.m │ │ │ ├── FigSubtitleWebVTTCueCALayer.m │ │ │ ├── FigSubtitleWebVTTRegionCALayer.m │ │ │ ├── FigVideoContainerLayer.m │ │ │ ├── FigVideoLayer.m │ │ │ ├── FigVideoLayerInternal.m │ │ │ └── MediaToolbox.m │ ├── ModelIO │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ModelIO │ │ │ │ ├── MDLAnimatedMatrix4x4.h │ │ │ │ ├── MDLAnimatedQuaternion.h │ │ │ │ ├── MDLAnimatedQuaternionArray.h │ │ │ │ ├── MDLAnimatedScalar.h │ │ │ │ ├── MDLAnimatedScalarArray.h │ │ │ │ ├── MDLAnimatedValue.h │ │ │ │ ├── MDLAnimatedVector2.h │ │ │ │ ├── MDLAnimatedVector3.h │ │ │ │ ├── MDLAnimatedVector3Array.h │ │ │ │ ├── MDLAnimatedVector4.h │ │ │ │ ├── MDLAnimationBindComponent.h │ │ │ │ ├── MDLArchiveAssetResolver.h │ │ │ │ ├── MDLAreaLight.h │ │ │ │ ├── MDLAsset.h │ │ │ │ ├── MDLAssetResolver.h │ │ │ │ ├── MDLBundleAssetResolver.h │ │ │ │ ├── MDLCamera.h │ │ │ │ ├── MDLCheckerboardTexture.h │ │ │ │ ├── MDLColorSwatchTexture.h │ │ │ │ ├── MDLComponent.h │ │ │ │ ├── MDLInteractiveCameraController.h │ │ │ │ ├── MDLJointAnimation.h │ │ │ │ ├── MDLLight.h │ │ │ │ ├── MDLLightProbe.h │ │ │ │ ├── MDLMaterial.h │ │ │ │ ├── MDLMaterialProperty.h │ │ │ │ ├── MDLMaterialPropertyConnection.h │ │ │ │ ├── MDLMaterialPropertyGraph.h │ │ │ │ ├── MDLMaterialPropertyNode.h │ │ │ │ ├── MDLMatrix4x4Array.h │ │ │ │ ├── MDLMemoryMappedData.h │ │ │ │ ├── MDLMesh.h │ │ │ │ ├── MDLMeshBufferAllocator.h │ │ │ │ ├── MDLMeshBufferAllocatorDefault.h │ │ │ │ ├── MDLMeshBufferData.h │ │ │ │ ├── MDLMeshBufferDataAllocator.h │ │ │ │ ├── MDLMeshBufferMap.h │ │ │ │ ├── MDLMeshBufferZone.h │ │ │ │ ├── MDLMeshBufferZoneDefault.h │ │ │ │ ├── MDLMorphDeformer.h │ │ │ │ ├── MDLMorphDeformerComponent.h │ │ │ │ ├── MDLNamed.h │ │ │ │ ├── MDLNoiseTexture.h │ │ │ │ ├── MDLNormalMapTexture.h │ │ │ │ ├── MDLObject.h │ │ │ │ ├── MDLObjectContainer.h │ │ │ │ ├── MDLObjectContainerComponent.h │ │ │ │ ├── MDLPackedJointAnimation.h │ │ │ │ ├── MDLPathAssetResolver.h │ │ │ │ ├── MDLPhotometricLight.h │ │ │ │ ├── MDLPhysicallyPlausibleLight.h │ │ │ │ ├── MDLPhysicallyPlausibleScatteringFunction.h │ │ │ │ ├── MDLRelativeAssetResolver.h │ │ │ │ ├── MDLScatteringFunction.h │ │ │ │ ├── MDLScene.h │ │ │ │ ├── MDLSkeleton.h │ │ │ │ ├── MDLSkinDeformer.h │ │ │ │ ├── MDLSkinDeformerComponent.h │ │ │ │ ├── MDLSkyCubeTexture.h │ │ │ │ ├── MDLStereoscopicCamera.h │ │ │ │ ├── MDLSubmesh.h │ │ │ │ ├── MDLSubmeshTopology.h │ │ │ │ ├── MDLTexture.h │ │ │ │ ├── MDLTextureFilter.h │ │ │ │ ├── MDLTextureSampler.h │ │ │ │ ├── MDLTransform.h │ │ │ │ ├── MDLTransformComponent.h │ │ │ │ ├── MDLTransformMatrixOp.h │ │ │ │ ├── MDLTransformOp.h │ │ │ │ ├── MDLTransformOrientOp.h │ │ │ │ ├── MDLTransformRotateOp.h │ │ │ │ ├── MDLTransformRotateXOp.h │ │ │ │ ├── MDLTransformRotateYOp.h │ │ │ │ ├── MDLTransformRotateZOp.h │ │ │ │ ├── MDLTransformScaleOp.h │ │ │ │ ├── MDLTransformStack.h │ │ │ │ ├── MDLTransformTranslateOp.h │ │ │ │ ├── MDLURLTexture.h │ │ │ │ ├── MDLVertexAttribute.h │ │ │ │ ├── MDLVertexAttributeData.h │ │ │ │ ├── MDLVertexBufferLayout.h │ │ │ │ ├── MDLVertexDescriptor.h │ │ │ │ ├── MDLVolumeGrid.h │ │ │ │ ├── MDLVoxelArray.h │ │ │ │ ├── ModelIO.h │ │ │ │ ├── _MDLProbeCluster.h │ │ │ │ └── _MDL_DarwinHelper__internal.h │ │ └── src │ │ │ ├── MDLAnimatedMatrix4x4.m │ │ │ ├── MDLAnimatedQuaternion.m │ │ │ ├── MDLAnimatedQuaternionArray.m │ │ │ ├── MDLAnimatedScalar.m │ │ │ ├── MDLAnimatedScalarArray.m │ │ │ ├── MDLAnimatedValue.m │ │ │ ├── MDLAnimatedVector2.m │ │ │ ├── MDLAnimatedVector3.m │ │ │ ├── MDLAnimatedVector3Array.m │ │ │ ├── MDLAnimatedVector4.m │ │ │ ├── MDLAnimationBindComponent.m │ │ │ ├── MDLArchiveAssetResolver.m │ │ │ ├── MDLAreaLight.m │ │ │ ├── MDLAsset.m │ │ │ ├── MDLBundleAssetResolver.m │ │ │ ├── MDLCamera.m │ │ │ ├── MDLCheckerboardTexture.m │ │ │ ├── MDLColorSwatchTexture.m │ │ │ ├── MDLInteractiveCameraController.m │ │ │ ├── MDLLight.m │ │ │ ├── MDLLightProbe.m │ │ │ ├── MDLMaterial.m │ │ │ ├── MDLMaterialProperty.m │ │ │ ├── MDLMaterialPropertyConnection.m │ │ │ ├── MDLMaterialPropertyGraph.m │ │ │ ├── MDLMaterialPropertyNode.m │ │ │ ├── MDLMatrix4x4Array.m │ │ │ ├── MDLMemoryMappedData.m │ │ │ ├── MDLMesh.m │ │ │ ├── MDLMeshBufferAllocatorDefault.m │ │ │ ├── MDLMeshBufferData.m │ │ │ ├── MDLMeshBufferDataAllocator.m │ │ │ ├── MDLMeshBufferMap.m │ │ │ ├── MDLMeshBufferZoneDefault.m │ │ │ ├── MDLMorphDeformer.m │ │ │ ├── MDLNoiseTexture.m │ │ │ ├── MDLNormalMapTexture.m │ │ │ ├── MDLObject.m │ │ │ ├── MDLObjectContainer.m │ │ │ ├── MDLPackedJointAnimation.m │ │ │ ├── MDLPathAssetResolver.m │ │ │ ├── MDLPhotometricLight.m │ │ │ ├── MDLPhysicallyPlausibleLight.m │ │ │ ├── MDLPhysicallyPlausibleScatteringFunction.m │ │ │ ├── MDLRelativeAssetResolver.m │ │ │ ├── MDLScatteringFunction.m │ │ │ ├── MDLScene.m │ │ │ ├── MDLSkeleton.m │ │ │ ├── MDLSkinDeformer.m │ │ │ ├── MDLSkyCubeTexture.m │ │ │ ├── MDLStereoscopicCamera.m │ │ │ ├── MDLSubmesh.m │ │ │ ├── MDLSubmeshTopology.m │ │ │ ├── MDLTexture.m │ │ │ ├── MDLTextureFilter.m │ │ │ ├── MDLTextureSampler.m │ │ │ ├── MDLTransform.m │ │ │ ├── MDLTransformMatrixOp.m │ │ │ ├── MDLTransformOrientOp.m │ │ │ ├── MDLTransformRotateOp.m │ │ │ ├── MDLTransformRotateXOp.m │ │ │ ├── MDLTransformRotateYOp.m │ │ │ ├── MDLTransformRotateZOp.m │ │ │ ├── MDLTransformScaleOp.m │ │ │ ├── MDLTransformStack.m │ │ │ ├── MDLTransformTranslateOp.m │ │ │ ├── MDLURLTexture.m │ │ │ ├── MDLVertexAttribute.m │ │ │ ├── MDLVertexAttributeData.m │ │ │ ├── MDLVertexBufferLayout.m │ │ │ ├── MDLVertexDescriptor.m │ │ │ ├── MDLVolumeGrid.m │ │ │ ├── MDLVoxelArray.m │ │ │ ├── ModelIO.m │ │ │ ├── _MDLProbeCluster.m │ │ │ └── _MDL_DarwinHelper__internal.m │ ├── MultipeerConnectivity │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── MultipeerConnectivity │ │ │ │ ├── AWDMultipeerSessionMaxPeersInfo.h │ │ │ │ ├── AWDMultipeerSessionPeerConnectivityInfo.h │ │ │ │ ├── MCAdvertiserAssistant.h │ │ │ │ ├── MCBrowserViewController.h │ │ │ │ ├── MCNearbyDiscoveryPeer.h │ │ │ │ ├── MCNearbyDiscoveryPeerConnection.h │ │ │ │ ├── MCNearbyServiceAdvertiser.h │ │ │ │ ├── MCNearbyServiceAdvertiserDelegate.h │ │ │ │ ├── MCNearbyServiceBrowser.h │ │ │ │ ├── MCNearbyServiceBrowserDelegate.h │ │ │ │ ├── MCNearbyServiceUtils.h │ │ │ │ ├── MCPeerID.h │ │ │ │ ├── MCPeerIDInternal.h │ │ │ │ ├── MCResourceDownloader.h │ │ │ │ ├── MCResourceProgressObserver.h │ │ │ │ ├── MCSession.h │ │ │ │ ├── MCSessionPeerConnectionData.h │ │ │ │ ├── MCSessionPeerState.h │ │ │ │ ├── MCSessionPrivateDelegate.h │ │ │ │ ├── MCSessionStream.h │ │ │ │ └── MultipeerConnectivity.h │ │ └── src │ │ │ ├── AWDMultipeerSessionMaxPeersInfo.m │ │ │ ├── AWDMultipeerSessionPeerConnectivityInfo.m │ │ │ ├── MCAdvertiserAssistant.m │ │ │ ├── MCBrowserViewController.m │ │ │ ├── MCNearbyDiscoveryPeer.m │ │ │ ├── MCNearbyDiscoveryPeerConnection.m │ │ │ ├── MCNearbyServiceAdvertiser.m │ │ │ ├── MCNearbyServiceBrowser.m │ │ │ ├── MCNearbyServiceUtils.m │ │ │ ├── MCPeerID.m │ │ │ ├── MCPeerIDInternal.m │ │ │ ├── MCResourceDownloader.m │ │ │ ├── MCResourceProgressObserver.m │ │ │ ├── MCSession.m │ │ │ ├── MCSessionPeerConnectionData.m │ │ │ ├── MCSessionPeerState.m │ │ │ ├── MCSessionStream.m │ │ │ └── MultipeerConnectivity.m │ ├── NetFS │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── NetFS │ │ │ │ ├── NetFS.h │ │ │ │ └── URLMount.h │ │ └── src │ │ │ └── NetFS.m │ ├── Network │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Network │ │ │ │ ├── ManagedNetworkSettings.h │ │ │ │ ├── NWAWDLBClientConnectionReport.h │ │ │ │ ├── NWAWDLBConnectionReport.h │ │ │ │ ├── NWAWDLBEndpointsFetchReport.h │ │ │ │ ├── NWAWDLibnetcoreCellularFallbackReport.h │ │ │ │ ├── NWAWDLibnetcoreConnectionDataUsageSnapshot.h │ │ │ │ ├── NWAWDLibnetcoreConnectionStatisticsReport.h │ │ │ │ ├── NWAWDLibnetcoreMPTCPStatsReport.h │ │ │ │ ├── NWAWDLibnetcoreMbufStatsReport.h │ │ │ │ ├── NWAWDLibnetcoreNetworkdStatsReport.h │ │ │ │ ├── NWAWDLibnetcoreRNFActivityNotification.h │ │ │ │ ├── NWAWDLibnetcoreStatsReport.h │ │ │ │ ├── NWAWDLibnetcoreTCPConnectionReport.h │ │ │ │ ├── NWAWDLibnetcoreTCPECNInterfaceStatsReport.h │ │ │ │ ├── NWAWDLibnetcoreTCPECNStatsReport.h │ │ │ │ ├── NWAWDLibnetcoreTCPKernelStats.h │ │ │ │ ├── NWAWDLibnetcoreTCPStatsReport.h │ │ │ │ ├── NWAWDLibnetcoreTCPTFOStatsReport.h │ │ │ │ ├── NWAWDMPTCPConnectionInterfaceReport.h │ │ │ │ ├── NWAWDMPTCPConnectionReport.h │ │ │ │ ├── NWAWDMPTCPSubflowSwitchingReport.h │ │ │ │ ├── NWAWDNWAPIUsage.h │ │ │ │ ├── NWAWDNWActivity.h │ │ │ │ ├── NWAWDNWActivityEmptyTrigger.h │ │ │ │ ├── NWAWDNWActivityEpilogue.h │ │ │ │ ├── NWAWDNWConnectionReport.h │ │ │ │ ├── NWAWDNWDeviceReport.h │ │ │ │ ├── NWAWDNWL2Report.h │ │ │ │ ├── NWActivityEmptyTrigger.h │ │ │ │ ├── NWActivityEpilogueStatistics.h │ │ │ │ ├── NWActivityStatistics.h │ │ │ │ ├── NWAddressEndpoint.h │ │ │ │ ├── NWAdvertiseDescriptor.h │ │ │ │ ├── NWBonjourBrowseDescriptor.h │ │ │ │ ├── NWBonjourServiceEndpoint.h │ │ │ │ ├── NWBrowseDescriptor.h │ │ │ │ ├── NWBrowser.h │ │ │ │ ├── NWConnection.h │ │ │ │ ├── NWConnectionStatistics.h │ │ │ │ ├── NWDatagramConnection.h │ │ │ │ ├── NWDeviceReport.h │ │ │ │ ├── NWEndpoint.h │ │ │ │ ├── NWGenericNetworkAgent.h │ │ │ │ ├── NWHostEndpoint.h │ │ │ │ ├── NWInboundMessage.h │ │ │ │ ├── NWInterface.h │ │ │ │ ├── NWL2Report.h │ │ │ │ ├── NWMessage.h │ │ │ │ ├── NWMessageConnection.h │ │ │ │ ├── NWMonitor.h │ │ │ │ ├── NWNetworkAgentRegistration.h │ │ │ │ ├── NWNetworkDescription.h │ │ │ │ ├── NWOutboundMessage.h │ │ │ │ ├── NWPBAddressEndpoint.h │ │ │ │ ├── NWPBAgent.h │ │ │ │ ├── NWPBAgentClass.h │ │ │ │ ├── NWPBBrowseDescriptor.h │ │ │ │ ├── NWPBCloseConnection.h │ │ │ │ ├── NWPBCommandMessage.h │ │ │ │ ├── NWPBEndpoint.h │ │ │ │ ├── NWPBHostEndpoint.h │ │ │ │ ├── NWPBInterface.h │ │ │ │ ├── NWPBOpenConnection.h │ │ │ │ ├── NWPBParameters.h │ │ │ │ ├── NWPBPath.h │ │ │ │ ├── NWPBSendData.h │ │ │ │ ├── NWPBServiceBrowse.h │ │ │ │ ├── NWPBServiceEndpoint.h │ │ │ │ ├── NWPBStartBrowse.h │ │ │ │ ├── NWPBStopBrowse.h │ │ │ │ ├── NWPBUpdateBrowse.h │ │ │ │ ├── NWPBUpdatePath.h │ │ │ │ ├── NWPHContext.h │ │ │ │ ├── NWPHHandler.h │ │ │ │ ├── NWParameters.h │ │ │ │ ├── NWPath.h │ │ │ │ ├── NWPathEvaluator.h │ │ │ │ ├── NWPathFlow.h │ │ │ │ ├── NWPrettyDescription.h │ │ │ │ ├── NWPrivilegedHelper.h │ │ │ │ ├── NWProtocolTransform.h │ │ │ │ ├── NWRemoteBrowserWrapper.h │ │ │ │ ├── NWRemoteConnectionActor.h │ │ │ │ ├── NWRemoteConnectionDirector.h │ │ │ │ ├── NWRemoteConnectionWrapper.h │ │ │ │ ├── NWRemoteConnectionWriteRequest.h │ │ │ │ ├── NWRemotePacketProxy.h │ │ │ │ ├── NWResolver.h │ │ │ │ ├── NWStreamConnection.h │ │ │ │ ├── NWSystemPathMonitor.h │ │ │ │ ├── NWTCPConnection.h │ │ │ │ ├── NWTCPListener.h │ │ │ │ ├── NWTCPListenerDelegate.h │ │ │ │ ├── NWUDPListener.h │ │ │ │ ├── NWUDPSession.h │ │ │ │ ├── Network.h │ │ │ │ └── Network_Private.h │ │ └── src │ │ │ ├── ManagedNetworkSettings.m │ │ │ ├── NWAWDLBClientConnectionReport.m │ │ │ ├── NWAWDLBConnectionReport.m │ │ │ ├── NWAWDLBEndpointsFetchReport.m │ │ │ ├── NWAWDLibnetcoreCellularFallbackReport.m │ │ │ ├── NWAWDLibnetcoreConnectionDataUsageSnapshot.m │ │ │ ├── NWAWDLibnetcoreConnectionStatisticsReport.m │ │ │ ├── NWAWDLibnetcoreMPTCPStatsReport.m │ │ │ ├── NWAWDLibnetcoreMbufStatsReport.m │ │ │ ├── NWAWDLibnetcoreNetworkdStatsReport.m │ │ │ ├── NWAWDLibnetcoreRNFActivityNotification.m │ │ │ ├── NWAWDLibnetcoreStatsReport.m │ │ │ ├── NWAWDLibnetcoreTCPConnectionReport.m │ │ │ ├── NWAWDLibnetcoreTCPECNInterfaceStatsReport.m │ │ │ ├── NWAWDLibnetcoreTCPECNStatsReport.m │ │ │ ├── NWAWDLibnetcoreTCPKernelStats.m │ │ │ ├── NWAWDLibnetcoreTCPStatsReport.m │ │ │ ├── NWAWDLibnetcoreTCPTFOStatsReport.m │ │ │ ├── NWAWDMPTCPConnectionInterfaceReport.m │ │ │ ├── NWAWDMPTCPConnectionReport.m │ │ │ ├── NWAWDMPTCPSubflowSwitchingReport.m │ │ │ ├── NWAWDNWAPIUsage.m │ │ │ ├── NWAWDNWActivity.m │ │ │ ├── NWAWDNWActivityEmptyTrigger.m │ │ │ ├── NWAWDNWActivityEpilogue.m │ │ │ ├── NWAWDNWConnectionReport.m │ │ │ ├── NWAWDNWDeviceReport.m │ │ │ ├── NWAWDNWL2Report.m │ │ │ ├── NWActivityEmptyTrigger.m │ │ │ ├── NWActivityEpilogueStatistics.m │ │ │ ├── NWActivityStatistics.m │ │ │ ├── NWAddressEndpoint.m │ │ │ ├── NWAdvertiseDescriptor.m │ │ │ ├── NWBonjourBrowseDescriptor.m │ │ │ ├── NWBonjourServiceEndpoint.m │ │ │ ├── NWBrowseDescriptor.m │ │ │ ├── NWBrowser.m │ │ │ ├── NWConnection.m │ │ │ ├── NWConnectionStatistics.m │ │ │ ├── NWDatagramConnection.m │ │ │ ├── NWDeviceReport.m │ │ │ ├── NWEndpoint.m │ │ │ ├── NWGenericNetworkAgent.m │ │ │ ├── NWHostEndpoint.m │ │ │ ├── NWInboundMessage.m │ │ │ ├── NWInterface.m │ │ │ ├── NWL2Report.m │ │ │ ├── NWMessage.m │ │ │ ├── NWMessageConnection.m │ │ │ ├── NWMonitor.m │ │ │ ├── NWNetworkAgentRegistration.m │ │ │ ├── NWNetworkDescription.m │ │ │ ├── NWOutboundMessage.m │ │ │ ├── NWPBAddressEndpoint.m │ │ │ ├── NWPBAgent.m │ │ │ ├── NWPBAgentClass.m │ │ │ ├── NWPBBrowseDescriptor.m │ │ │ ├── NWPBCloseConnection.m │ │ │ ├── NWPBCommandMessage.m │ │ │ ├── NWPBEndpoint.m │ │ │ ├── NWPBHostEndpoint.m │ │ │ ├── NWPBInterface.m │ │ │ ├── NWPBOpenConnection.m │ │ │ ├── NWPBParameters.m │ │ │ ├── NWPBPath.m │ │ │ ├── NWPBSendData.m │ │ │ ├── NWPBServiceBrowse.m │ │ │ ├── NWPBServiceEndpoint.m │ │ │ ├── NWPBStartBrowse.m │ │ │ ├── NWPBStopBrowse.m │ │ │ ├── NWPBUpdateBrowse.m │ │ │ ├── NWPBUpdatePath.m │ │ │ ├── NWPHContext.m │ │ │ ├── NWPHHandler.m │ │ │ ├── NWParameters.m │ │ │ ├── NWPath.m │ │ │ ├── NWPathEvaluator.m │ │ │ ├── NWPathFlow.m │ │ │ ├── NWPrivilegedHelper.m │ │ │ ├── NWProtocolTransform.m │ │ │ ├── NWRemoteBrowserWrapper.m │ │ │ ├── NWRemoteConnectionActor.m │ │ │ ├── NWRemoteConnectionDirector.m │ │ │ ├── NWRemoteConnectionWrapper.m │ │ │ ├── NWRemoteConnectionWriteRequest.m │ │ │ ├── NWRemotePacketProxy.m │ │ │ ├── NWResolver.m │ │ │ ├── NWStreamConnection.m │ │ │ ├── NWSystemPathMonitor.m │ │ │ ├── NWTCPConnection.m │ │ │ ├── NWTCPListener.m │ │ │ ├── NWUDPListener.m │ │ │ ├── NWUDPSession.m │ │ │ └── Network.m │ ├── OSAKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── OSAKit │ │ │ │ ├── CPDelayedUpdateManager.h │ │ │ │ ├── CPDelayedUpdaterInfo.h │ │ │ │ ├── NSBrowserDelegate.h │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ ├── NSOutlineViewDataSource.h │ │ │ │ ├── NSOutlineViewDelegate.h │ │ │ │ ├── NSSplitViewDelegate.h │ │ │ │ ├── NSTableViewDataSource.h │ │ │ │ ├── NSTableViewDelegate.h │ │ │ │ ├── NSTextStorageDelegate.h │ │ │ │ ├── NSToolbarDelegate.h │ │ │ │ ├── OSAAccessorDefinition.h │ │ │ │ ├── OSAActiveProc.h │ │ │ │ ├── OSABrowserCell.h │ │ │ │ ├── OSAClassDefinition.h │ │ │ │ ├── OSACocoaDefinition.h │ │ │ │ ├── OSACommandDefinition.h │ │ │ │ ├── OSACommandHandlerElement.h │ │ │ │ ├── OSACompletionItem.h │ │ │ │ ├── OSAComponentInstance.h │ │ │ │ ├── OSAConsideringElement.h │ │ │ │ ├── OSAContentsDefinition.h │ │ │ │ ├── OSAControlElement.h │ │ │ │ ├── OSADefinition.h │ │ │ │ ├── OSADictionary.h │ │ │ │ ├── OSADictionaryController.h │ │ │ │ ├── OSADictionaryControllerPrivate.h │ │ │ │ ├── OSADictionaryHistory.h │ │ │ │ ├── OSADictionaryHistoryItem.h │ │ │ │ ├── OSADictionaryPrivate.h │ │ │ │ ├── OSADictionaryView.h │ │ │ │ ├── OSADictionaryViewPrivate.h │ │ │ │ ├── OSADictionaryWindowController.h │ │ │ │ ├── OSADirectParameterDefinition.h │ │ │ │ ├── OSADocumentationDefinition.h │ │ │ │ ├── OSAElementDefinition.h │ │ │ │ ├── OSAElseElement.h │ │ │ │ ├── OSAElseIfElement.h │ │ │ │ ├── OSAEndIfElement.h │ │ │ │ ├── OSAEndTryElement.h │ │ │ │ ├── OSAEnumerationDefinition.h │ │ │ │ ├── OSAEnumeratorDefinition.h │ │ │ │ ├── OSAEventDefinition.h │ │ │ │ ├── OSAEventHandlerElement.h │ │ │ │ ├── OSAGlobalElement.h │ │ │ │ ├── OSAHandlerElement.h │ │ │ │ ├── OSAIfElement.h │ │ │ │ ├── OSAIgnoringElement.h │ │ │ │ ├── OSAImageTextCell.h │ │ │ │ ├── OSAKeywordCompletionItem.h │ │ │ │ ├── OSAKit.h │ │ │ │ ├── OSALanguage.h │ │ │ │ ├── OSALanguageInstance.h │ │ │ │ ├── OSALanguageInstancePrivate.h │ │ │ │ ├── OSALanguagePrivate.h │ │ │ │ ├── OSALongCommentElement.h │ │ │ │ ├── OSAMergedSortedArray.h │ │ │ │ ├── OSANameCompletionItem.h │ │ │ │ ├── OSAOnErrorElement.h │ │ │ │ ├── OSAParameterDefinition.h │ │ │ │ ├── OSAPropertyDefinition.h │ │ │ │ ├── OSAPropertyElement.h │ │ │ │ ├── OSARecordingController.h │ │ │ │ ├── OSARepeatElement.h │ │ │ │ ├── OSARespondsToDefinition.h │ │ │ │ ├── OSAScript.h │ │ │ │ ├── OSAScriptAssistant.h │ │ │ │ ├── OSAScriptAssistantDataSource.h │ │ │ │ ├── OSAScriptAssistantKeywordStrategy.h │ │ │ │ ├── OSAScriptAssistantParserStrategy.h │ │ │ │ ├── OSAScriptAssistantScannerStrategy.h │ │ │ │ ├── OSAScriptAssistantStrategy.h │ │ │ │ ├── OSAScriptAssistantTerminologyStrategy.h │ │ │ │ ├── OSAScriptAssistantView.h │ │ │ │ ├── OSAScriptAssistantWindow.h │ │ │ │ ├── OSAScriptAssistantWordBasedDataSource.h │ │ │ │ ├── OSAScriptController.h │ │ │ │ ├── OSAScriptControllerPrivate.h │ │ │ │ ├── OSAScriptElement.h │ │ │ │ ├── OSAScriptGenerator.h │ │ │ │ ├── OSAScriptObjectElement.h │ │ │ │ ├── OSAScriptParser.h │ │ │ │ ├── OSAScriptPrivate.h │ │ │ │ ├── OSAScriptTextStorage.h │ │ │ │ ├── OSAScriptView.h │ │ │ │ ├── OSAScriptViewPrivate.h │ │ │ │ ├── OSASendProc.h │ │ │ │ ├── OSAShortCommentElement.h │ │ │ │ ├── OSASplitView.h │ │ │ │ ├── OSASuiteDefinition.h │ │ │ │ ├── OSASynonymDefinition.h │ │ │ │ ├── OSATellElement.h │ │ │ │ ├── OSATerminologyCompletionItem.h │ │ │ │ ├── OSATerminologyManager.h │ │ │ │ ├── OSATextElement.h │ │ │ │ ├── OSATextStorage.h │ │ │ │ ├── OSATryElement.h │ │ │ │ ├── OSAUnknownElement.h │ │ │ │ ├── OSAUsingTermsFromElement.h │ │ │ │ ├── OSAVerbDefinition.h │ │ │ │ ├── OSAWithTimeoutElement.h │ │ │ │ ├── OSAWithTransactionElement.h │ │ │ │ └── WebKitSoftLinking.h │ │ └── src │ │ │ ├── CPDelayedUpdateManager.m │ │ │ ├── CPDelayedUpdaterInfo.m │ │ │ ├── OSAAccessorDefinition.m │ │ │ ├── OSAActiveProc.m │ │ │ ├── OSABrowserCell.m │ │ │ ├── OSAClassDefinition.m │ │ │ ├── OSACocoaDefinition.m │ │ │ ├── OSACommandDefinition.m │ │ │ ├── OSACommandHandlerElement.m │ │ │ ├── OSAComponentInstance.m │ │ │ ├── OSAConsideringElement.m │ │ │ ├── OSAContentsDefinition.m │ │ │ ├── OSAControlElement.m │ │ │ ├── OSADefinition.m │ │ │ ├── OSADictionary.m │ │ │ ├── OSADictionaryController.m │ │ │ ├── OSADictionaryControllerPrivate.m │ │ │ ├── OSADictionaryHistory.m │ │ │ ├── OSADictionaryHistoryItem.m │ │ │ ├── OSADictionaryPrivate.m │ │ │ ├── OSADictionaryView.m │ │ │ ├── OSADictionaryViewPrivate.m │ │ │ ├── OSADictionaryWindowController.m │ │ │ ├── OSADirectParameterDefinition.m │ │ │ ├── OSADocumentationDefinition.m │ │ │ ├── OSAElementDefinition.m │ │ │ ├── OSAElseElement.m │ │ │ ├── OSAElseIfElement.m │ │ │ ├── OSAEndIfElement.m │ │ │ ├── OSAEndTryElement.m │ │ │ ├── OSAEnumerationDefinition.m │ │ │ ├── OSAEnumeratorDefinition.m │ │ │ ├── OSAEventDefinition.m │ │ │ ├── OSAEventHandlerElement.m │ │ │ ├── OSAGlobalElement.m │ │ │ ├── OSAHandlerElement.m │ │ │ ├── OSAIfElement.m │ │ │ ├── OSAIgnoringElement.m │ │ │ ├── OSAImageTextCell.m │ │ │ ├── OSAKeywordCompletionItem.m │ │ │ ├── OSAKit.m │ │ │ ├── OSALanguage.m │ │ │ ├── OSALanguageInstance.m │ │ │ ├── OSALanguageInstancePrivate.m │ │ │ ├── OSALanguagePrivate.m │ │ │ ├── OSALongCommentElement.m │ │ │ ├── OSAMergedSortedArray.m │ │ │ ├── OSANameCompletionItem.m │ │ │ ├── OSAOnErrorElement.m │ │ │ ├── OSAParameterDefinition.m │ │ │ ├── OSAPropertyDefinition.m │ │ │ ├── OSAPropertyElement.m │ │ │ ├── OSARecordingController.m │ │ │ ├── OSARepeatElement.m │ │ │ ├── OSARespondsToDefinition.m │ │ │ ├── OSAScript.m │ │ │ ├── OSAScriptAssistant.m │ │ │ ├── OSAScriptAssistantDataSource.m │ │ │ ├── OSAScriptAssistantKeywordStrategy.m │ │ │ ├── OSAScriptAssistantParserStrategy.m │ │ │ ├── OSAScriptAssistantScannerStrategy.m │ │ │ ├── OSAScriptAssistantStrategy.m │ │ │ ├── OSAScriptAssistantTerminologyStrategy.m │ │ │ ├── OSAScriptAssistantView.m │ │ │ ├── OSAScriptAssistantWindow.m │ │ │ ├── OSAScriptAssistantWordBasedDataSource.m │ │ │ ├── OSAScriptController.m │ │ │ ├── OSAScriptControllerPrivate.m │ │ │ ├── OSAScriptElement.m │ │ │ ├── OSAScriptGenerator.m │ │ │ ├── OSAScriptObjectElement.m │ │ │ ├── OSAScriptParser.m │ │ │ ├── OSAScriptPrivate.m │ │ │ ├── OSAScriptTextStorage.m │ │ │ ├── OSAScriptView.m │ │ │ ├── OSAScriptViewPrivate.m │ │ │ ├── OSASendProc.m │ │ │ ├── OSAShortCommentElement.m │ │ │ ├── OSASplitView.m │ │ │ ├── OSASuiteDefinition.m │ │ │ ├── OSASynonymDefinition.m │ │ │ ├── OSATellElement.m │ │ │ ├── OSATerminologyCompletionItem.m │ │ │ ├── OSATerminologyManager.m │ │ │ ├── OSATextElement.m │ │ │ ├── OSATextStorage.m │ │ │ ├── OSATryElement.m │ │ │ ├── OSAUnknownElement.m │ │ │ ├── OSAUsingTermsFromElement.m │ │ │ ├── OSAVerbDefinition.m │ │ │ ├── OSAWithTimeoutElement.m │ │ │ ├── OSAWithTransactionElement.m │ │ │ └── WebKitSoftLinking.m │ ├── OpenAL │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── OpenAL │ │ │ │ └── OpenAL.h │ │ └── src │ │ │ └── OpenAL.c │ ├── OpenCL │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── OpenCL │ │ │ │ └── OpenCL.h │ │ └── src │ │ │ └── OpenCL.m │ ├── OpenDirectory │ │ ├── CFOpenDirectory │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ ├── CFOpenDirectory │ │ │ │ │ ├── CFODContext.h │ │ │ │ │ ├── CFODNode.h │ │ │ │ │ ├── CFODQuery.h │ │ │ │ │ ├── CFODRecord.h │ │ │ │ │ ├── CFODSession.h │ │ │ │ │ ├── CFODTrigger.h │ │ │ │ │ ├── CFOpenDirectory.h │ │ │ │ │ ├── CFOpenDirectoryConstants.h │ │ │ │ │ ├── CFOpenDirectoryConstantsPriv.h │ │ │ │ │ └── CFOpenDirectoryPriv.h │ │ │ │ └── generated-stubs.h │ │ │ └── src │ │ │ │ ├── CFOpenDirectory.c │ │ │ │ └── constants.c │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── OpenDirectory │ │ │ │ ├── NSODContext.h │ │ │ │ ├── NSODNode.h │ │ │ │ ├── NSODQuery.h │ │ │ │ ├── NSODRecord.h │ │ │ │ ├── NSODSession.h │ │ │ │ ├── NSOpenDirectory.h │ │ │ │ ├── NSOpenDirectoryPriv.h │ │ │ │ ├── ODAttributeMap.h │ │ │ │ ├── ODConfiguration.h │ │ │ │ ├── ODContext.h │ │ │ │ ├── ODMappings.h │ │ │ │ ├── ODModuleEntry.h │ │ │ │ ├── ODNode.h │ │ │ │ ├── ODQuery.h │ │ │ │ ├── ODRecord.h │ │ │ │ ├── ODRecordMap.h │ │ │ │ ├── ODSession.h │ │ │ │ ├── OpenDirectory.h │ │ │ │ └── OpenDirectoryPriv.h │ │ └── src │ │ │ ├── NSODContext.m │ │ │ ├── NSODNode.m │ │ │ ├── NSODQuery.m │ │ │ ├── NSODRecord.m │ │ │ ├── NSODSession.m │ │ │ ├── ODAttributeMap.m │ │ │ ├── ODConfiguration.m │ │ │ ├── ODContext.m │ │ │ ├── ODMappings.m │ │ │ ├── ODModuleEntry.m │ │ │ ├── ODNode.m │ │ │ ├── ODQuery.m │ │ │ ├── ODRecord.m │ │ │ ├── ODRecordMap.m │ │ │ ├── ODSession.m │ │ │ └── OpenDirectory.m │ ├── OpenGL │ │ ├── CMakeLists.txt │ │ ├── OpenGL.c │ │ └── include │ │ │ └── OpenGL │ │ │ ├── CGLCurrent.h │ │ │ ├── CGLInternal.h │ │ │ ├── CGLTypes.h │ │ │ ├── OpenGL.h │ │ │ ├── gl.h │ │ │ ├── gl3.h │ │ │ ├── gl3ext.h │ │ │ ├── glext.h │ │ │ ├── glu.h │ │ │ ├── glxext.h │ │ │ └── internal │ │ │ └── khrplatform.h │ ├── PDFKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── PDFKit │ │ │ │ ├── AKChildAnnotationProtocol.h │ │ │ │ ├── AKControllerDelegateProtocol.h │ │ │ │ ├── AKParentAnnotationProtocol.h │ │ │ │ ├── AKTextAnnotationProtocol.h │ │ │ │ ├── NSAccessibility.h │ │ │ │ ├── NSAccessibilityCustomRotorItemSearchDelegate.h │ │ │ │ ├── NSAccessibilityElement.h │ │ │ │ ├── NSAccessibilityElementLoading.h │ │ │ │ ├── NSAccessibilityGroup.h │ │ │ │ ├── NSAccessibilityRow.h │ │ │ │ ├── NSAnimationDelegate.h │ │ │ │ ├── NSCollectionViewDataSource.h │ │ │ │ ├── NSCollectionViewDelegate.h │ │ │ │ ├── NSMenuDelegate.h │ │ │ │ ├── NSTextDelegate.h │ │ │ │ ├── NSTextViewDelegate.h │ │ │ │ ├── PDFAKAnnotationAdaptor.h │ │ │ │ ├── PDFAKAnnotationAdaptorPrivate.h │ │ │ │ ├── PDFAKAnnotationSerializationHelper.h │ │ │ │ ├── PDFAKDocumentAdaptor.h │ │ │ │ ├── PDFAKDocumentAdaptorPrivate.h │ │ │ │ ├── PDFAKOverlayAdaptor.h │ │ │ │ ├── PDFAKOverlayAdaptorPrivate.h │ │ │ │ ├── PDFAKOverlayAdaptor_osx.h │ │ │ │ ├── PDFAKPageAdaptor.h │ │ │ │ ├── PDFAKPageAdaptorPrivate.h │ │ │ │ ├── PDFAccessibilityAssociationInfo.h │ │ │ │ ├── PDFAccessibilityCustomRotorLoadingToken.h │ │ │ │ ├── PDFAccessibilityDocumentController.h │ │ │ │ ├── PDFAccessibilityDocumentControllerPrivate.h │ │ │ │ ├── PDFAccessibilityEffectLayer.h │ │ │ │ ├── PDFAccessibilityEffectLayerPrivate.h │ │ │ │ ├── PDFAccessibilityNode.h │ │ │ │ ├── PDFAccessibilityNodeAnnotation.h │ │ │ │ ├── PDFAccessibilityNodeHeading.h │ │ │ │ ├── PDFAccessibilityNodeImage.h │ │ │ │ ├── PDFAccessibilityNodePage.h │ │ │ │ ├── PDFAccessibilityNodePagePrivate.h │ │ │ │ ├── PDFAccessibilityNodeParent.h │ │ │ │ ├── PDFAccessibilityNodePrivate.h │ │ │ │ ├── PDFAccessibilityNodeTable.h │ │ │ │ ├── PDFAccessibilityNodeTableCell.h │ │ │ │ ├── PDFAccessibilityNodeTablePrivate.h │ │ │ │ ├── PDFAccessibilityNodeTableRow.h │ │ │ │ ├── PDFAccessibilityNodeTableRowPrivate.h │ │ │ │ ├── PDFAccessibilityNodeText.h │ │ │ │ ├── PDFAction.h │ │ │ │ ├── PDFActionGoTo.h │ │ │ │ ├── PDFActionGoToPrivateVars.h │ │ │ │ ├── PDFActionNamed.h │ │ │ │ ├── PDFActionNamedPrivateVars.h │ │ │ │ ├── PDFActionPrivate.h │ │ │ │ ├── PDFActionRemoteGoTo.h │ │ │ │ ├── PDFActionRemoteGoToPrivateVars.h │ │ │ │ ├── PDFActionResetForm.h │ │ │ │ ├── PDFActionResetFormPrivateVars.h │ │ │ │ ├── PDFActionURL.h │ │ │ │ ├── PDFActionURLPrivateVars.h │ │ │ │ ├── PDFAnnotation.h │ │ │ │ ├── PDFAnnotationButtonWidget.h │ │ │ │ ├── PDFAnnotationButtonWidgetPrivateVars.h │ │ │ │ ├── PDFAnnotationCGPDFObject.h │ │ │ │ ├── PDFAnnotationChange.h │ │ │ │ ├── PDFAnnotationChangePrivate.h │ │ │ │ ├── PDFAnnotationChoiceWidget.h │ │ │ │ ├── PDFAnnotationChoiceWidgetPrivateVars.h │ │ │ │ ├── PDFAnnotationCircle.h │ │ │ │ ├── PDFAnnotationCirclePrivateVars.h │ │ │ │ ├── PDFAnnotationDrawing.h │ │ │ │ ├── PDFAnnotationFreeText.h │ │ │ │ ├── PDFAnnotationFreeTextPrivateVars.h │ │ │ │ ├── PDFAnnotationInk.h │ │ │ │ ├── PDFAnnotationLine.h │ │ │ │ ├── PDFAnnotationLinePrivateVars.h │ │ │ │ ├── PDFAnnotationLink.h │ │ │ │ ├── PDFAnnotationLinkPrivateVars.h │ │ │ │ ├── PDFAnnotationMarkup.h │ │ │ │ ├── PDFAnnotationMarkupPrivateVars.h │ │ │ │ ├── PDFAnnotationPopup.h │ │ │ │ ├── PDFAnnotationPopupPrivateVars.h │ │ │ │ ├── PDFAnnotationPrivateVars.h │ │ │ │ ├── PDFAnnotationSquare.h │ │ │ │ ├── PDFAnnotationSquarePrivateVars.h │ │ │ │ ├── PDFAnnotationStamp.h │ │ │ │ ├── PDFAnnotationStampPrivateVars.h │ │ │ │ ├── PDFAnnotationText.h │ │ │ │ ├── PDFAnnotationTextPrivateVars.h │ │ │ │ ├── PDFAnnotationTextWidget.h │ │ │ │ ├── PDFAnnotationTextWidgetPrivateVars.h │ │ │ │ ├── PDFAppearanceCharacteristics.h │ │ │ │ ├── PDFAppearanceCharacteristicsPrivate.h │ │ │ │ ├── PDFBorder.h │ │ │ │ ├── PDFBorderPrivateVars.h │ │ │ │ ├── PDFClipView.h │ │ │ │ ├── PDFCoachMark.h │ │ │ │ ├── PDFCoachMarkManager.h │ │ │ │ ├── PDFCoachMarkManagerPrivate.h │ │ │ │ ├── PDFDestination.h │ │ │ │ ├── PDFDestinationPrivate.h │ │ │ │ ├── PDFDocument.h │ │ │ │ ├── PDFDocumentContentView.h │ │ │ │ ├── PDFDocumentLayer.h │ │ │ │ ├── PDFDocumentLayerPrivate.h │ │ │ │ ├── PDFDocumentPageChangeDelegate.h │ │ │ │ ├── PDFDocumentPrivate.h │ │ │ │ ├── PDFDocumentView.h │ │ │ │ ├── PDFDocumentViewPrivate.h │ │ │ │ ├── PDFForm.h │ │ │ │ ├── PDFFormField.h │ │ │ │ ├── PDFFormFieldPrivateVars.h │ │ │ │ ├── PDFFormPrivateVars.h │ │ │ │ ├── PDFHUDLayerController.h │ │ │ │ ├── PDFHUDLayerControllerDelegate.h │ │ │ │ ├── PDFHUDLayerControllerPrivate.h │ │ │ │ ├── PDFIconCollectionView.h │ │ │ │ ├── PDFIconView.h │ │ │ │ ├── PDFKit.h │ │ │ │ ├── PDFKitExport.h │ │ │ │ ├── PDFKitPopupView.h │ │ │ │ ├── PDFKitPopupViewPrivate.h │ │ │ │ ├── PDFKitTextView.h │ │ │ │ ├── PDFKitTextViewPrivate.h │ │ │ │ ├── PDFLayerController.h │ │ │ │ ├── PDFLayerControllerPrivate.h │ │ │ │ ├── PDFMarkupStylePicker.h │ │ │ │ ├── PDFMarkupStylePickerCell.h │ │ │ │ ├── PDFMarkupStylePickerCellPrivate.h │ │ │ │ ├── PDFMarkupStylePickerPrivate.h │ │ │ │ ├── PDFOutline.h │ │ │ │ ├── PDFOutlinePrivate.h │ │ │ │ ├── PDFPage.h │ │ │ │ ├── PDFPageBackgroundManager.h │ │ │ │ ├── PDFPageBackgroundManagerDelegate.h │ │ │ │ ├── PDFPageBackgroundManagerPrivate.h │ │ │ │ ├── PDFPageDrawProgressCallback.h │ │ │ │ ├── PDFPageLayer.h │ │ │ │ ├── PDFPageLayerAnnotationEffect.h │ │ │ │ ├── PDFPageLayerEffect.h │ │ │ │ ├── PDFPageLayerEffectPrivate.h │ │ │ │ ├── PDFPageLayerInterface.h │ │ │ │ ├── PDFPageLayerMarkupAnnotationEffect.h │ │ │ │ ├── PDFPageLayerNoteEffect.h │ │ │ │ ├── PDFPageLayerPrivate.h │ │ │ │ ├── PDFPageLayerScannerResultEffect.h │ │ │ │ ├── PDFPageLayerSelectionEffect.h │ │ │ │ ├── PDFPageLayerTile.h │ │ │ │ ├── PDFPagePrivate.h │ │ │ │ ├── PDFPageRange.h │ │ │ │ ├── PDFPageRangePrivate.h │ │ │ │ ├── PDFPageView.h │ │ │ │ ├── PDFPageViewAnnotationController.h │ │ │ │ ├── PDFPageViewAnnotationControllerPrivate.h │ │ │ │ ├── PDFPageViewPrivate.h │ │ │ │ ├── PDFPasswordLayerController.h │ │ │ │ ├── PDFPasswordLayerControllerPrivate.h │ │ │ │ ├── PDFPasswordViewController.h │ │ │ │ ├── PDFPrintView.h │ │ │ │ ├── PDFPrintViewPrivate.h │ │ │ │ ├── PDFRenderingProperties.h │ │ │ │ ├── PDFRenderingPropertiesPrivate.h │ │ │ │ ├── PDFRevealManager.h │ │ │ │ ├── PDFRevealManagerPrivate.h │ │ │ │ ├── PDFScannerResult.h │ │ │ │ ├── PDFScannerResultPrivate.h │ │ │ │ ├── PDFScrollView.h │ │ │ │ ├── PDFScrollViewPrivate.h │ │ │ │ ├── PDFSelection.h │ │ │ │ ├── PDFSelectionLayer.h │ │ │ │ ├── PDFSelectionPrivate.h │ │ │ │ ├── PDFSelectionTrackingData.h │ │ │ │ ├── PDFThumbnailView.h │ │ │ │ ├── PDFThumbnailViewPrivate.h │ │ │ │ ├── PDFTilePool.h │ │ │ │ ├── PDFTilePoolDelegate.h │ │ │ │ ├── PDFTilePoolPrivate.h │ │ │ │ ├── PDFTileSurface.h │ │ │ │ ├── PDFTimer.h │ │ │ │ ├── PDFTimerPrivate.h │ │ │ │ ├── PDFView.h │ │ │ │ ├── PDFViewController.h │ │ │ │ ├── PDFViewControllerPrivate.h │ │ │ │ ├── PDFViewLayout.h │ │ │ │ ├── PDFViewLayoutPrivate.h │ │ │ │ ├── PDFViewPrivate.h │ │ │ │ ├── PageSignature.h │ │ │ │ ├── SelectionRectInfo.h │ │ │ │ └── TileRenderRequest.h │ │ └── src │ │ │ ├── PDFAKAnnotationAdaptor.m │ │ │ ├── PDFAKAnnotationAdaptorPrivate.m │ │ │ ├── PDFAKAnnotationSerializationHelper.m │ │ │ ├── PDFAKDocumentAdaptor.m │ │ │ ├── PDFAKDocumentAdaptorPrivate.m │ │ │ ├── PDFAKOverlayAdaptor.m │ │ │ ├── PDFAKOverlayAdaptorPrivate.m │ │ │ ├── PDFAKOverlayAdaptor_osx.m │ │ │ ├── PDFAKPageAdaptor.m │ │ │ ├── PDFAKPageAdaptorPrivate.m │ │ │ ├── PDFAccessibilityAssociationInfo.m │ │ │ ├── PDFAccessibilityCustomRotorLoadingToken.m │ │ │ ├── PDFAccessibilityDocumentController.m │ │ │ ├── PDFAccessibilityDocumentControllerPrivate.m │ │ │ ├── PDFAccessibilityEffectLayer.m │ │ │ ├── PDFAccessibilityEffectLayerPrivate.m │ │ │ ├── PDFAccessibilityNode.m │ │ │ ├── PDFAccessibilityNodeAnnotation.m │ │ │ ├── PDFAccessibilityNodeHeading.m │ │ │ ├── PDFAccessibilityNodeImage.m │ │ │ ├── PDFAccessibilityNodePage.m │ │ │ ├── PDFAccessibilityNodePagePrivate.m │ │ │ ├── PDFAccessibilityNodePrivate.m │ │ │ ├── PDFAccessibilityNodeTable.m │ │ │ ├── PDFAccessibilityNodeTableCell.m │ │ │ ├── PDFAccessibilityNodeTablePrivate.m │ │ │ ├── PDFAccessibilityNodeTableRow.m │ │ │ ├── PDFAccessibilityNodeTableRowPrivate.m │ │ │ ├── PDFAccessibilityNodeText.m │ │ │ ├── PDFAction.m │ │ │ ├── PDFActionGoTo.m │ │ │ ├── PDFActionGoToPrivateVars.m │ │ │ ├── PDFActionNamed.m │ │ │ ├── PDFActionNamedPrivateVars.m │ │ │ ├── PDFActionPrivate.m │ │ │ ├── PDFActionRemoteGoTo.m │ │ │ ├── PDFActionRemoteGoToPrivateVars.m │ │ │ ├── PDFActionResetForm.m │ │ │ ├── PDFActionResetFormPrivateVars.m │ │ │ ├── PDFActionURL.m │ │ │ ├── PDFActionURLPrivateVars.m │ │ │ ├── PDFAnnotation.m │ │ │ ├── PDFAnnotationButtonWidget.m │ │ │ ├── PDFAnnotationButtonWidgetPrivateVars.m │ │ │ ├── PDFAnnotationCGPDFObject.m │ │ │ ├── PDFAnnotationChange.m │ │ │ ├── PDFAnnotationChangePrivate.m │ │ │ ├── PDFAnnotationChoiceWidget.m │ │ │ ├── PDFAnnotationChoiceWidgetPrivateVars.m │ │ │ ├── PDFAnnotationCircle.m │ │ │ ├── PDFAnnotationCirclePrivateVars.m │ │ │ ├── PDFAnnotationDrawing.m │ │ │ ├── PDFAnnotationFreeText.m │ │ │ ├── PDFAnnotationFreeTextPrivateVars.m │ │ │ ├── PDFAnnotationInk.m │ │ │ ├── PDFAnnotationLine.m │ │ │ ├── PDFAnnotationLinePrivateVars.m │ │ │ ├── PDFAnnotationLink.m │ │ │ ├── PDFAnnotationLinkPrivateVars.m │ │ │ ├── PDFAnnotationMarkup.m │ │ │ ├── PDFAnnotationMarkupPrivateVars.m │ │ │ ├── PDFAnnotationPopup.m │ │ │ ├── PDFAnnotationPopupPrivateVars.m │ │ │ ├── PDFAnnotationPrivateVars.m │ │ │ ├── PDFAnnotationSquare.m │ │ │ ├── PDFAnnotationSquarePrivateVars.m │ │ │ ├── PDFAnnotationStamp.m │ │ │ ├── PDFAnnotationStampPrivateVars.m │ │ │ ├── PDFAnnotationText.m │ │ │ ├── PDFAnnotationTextPrivateVars.m │ │ │ ├── PDFAnnotationTextWidget.m │ │ │ ├── PDFAnnotationTextWidgetPrivateVars.m │ │ │ ├── PDFAppearanceCharacteristics.m │ │ │ ├── PDFAppearanceCharacteristicsPrivate.m │ │ │ ├── PDFBorder.m │ │ │ ├── PDFBorderPrivateVars.m │ │ │ ├── PDFClipView.m │ │ │ ├── PDFCoachMark.m │ │ │ ├── PDFCoachMarkManager.m │ │ │ ├── PDFCoachMarkManagerPrivate.m │ │ │ ├── PDFDestination.m │ │ │ ├── PDFDestinationPrivate.m │ │ │ ├── PDFDocument.m │ │ │ ├── PDFDocumentContentView.m │ │ │ ├── PDFDocumentLayer.m │ │ │ ├── PDFDocumentLayerPrivate.m │ │ │ ├── PDFDocumentPrivate.m │ │ │ ├── PDFDocumentView.m │ │ │ ├── PDFDocumentViewPrivate.m │ │ │ ├── PDFForm.m │ │ │ ├── PDFFormField.m │ │ │ ├── PDFFormFieldPrivateVars.m │ │ │ ├── PDFFormPrivateVars.m │ │ │ ├── PDFHUDLayerController.m │ │ │ ├── PDFHUDLayerControllerPrivate.m │ │ │ ├── PDFIconCollectionView.m │ │ │ ├── PDFIconView.m │ │ │ ├── PDFKit.m │ │ │ ├── PDFKitPopupView.m │ │ │ ├── PDFKitPopupViewPrivate.m │ │ │ ├── PDFKitTextView.m │ │ │ ├── PDFKitTextViewPrivate.m │ │ │ ├── PDFLayerController.m │ │ │ ├── PDFLayerControllerPrivate.m │ │ │ ├── PDFMarkupStylePicker.m │ │ │ ├── PDFMarkupStylePickerCell.m │ │ │ ├── PDFMarkupStylePickerCellPrivate.m │ │ │ ├── PDFMarkupStylePickerPrivate.m │ │ │ ├── PDFOutline.m │ │ │ ├── PDFOutlinePrivate.m │ │ │ ├── PDFPage.m │ │ │ ├── PDFPageBackgroundManager.m │ │ │ ├── PDFPageBackgroundManagerPrivate.m │ │ │ ├── PDFPageLayer.m │ │ │ ├── PDFPageLayerAnnotationEffect.m │ │ │ ├── PDFPageLayerEffect.m │ │ │ ├── PDFPageLayerEffectPrivate.m │ │ │ ├── PDFPageLayerMarkupAnnotationEffect.m │ │ │ ├── PDFPageLayerNoteEffect.m │ │ │ ├── PDFPageLayerPrivate.m │ │ │ ├── PDFPageLayerScannerResultEffect.m │ │ │ ├── PDFPageLayerSelectionEffect.m │ │ │ ├── PDFPageLayerTile.m │ │ │ ├── PDFPagePrivate.m │ │ │ ├── PDFPageRange.m │ │ │ ├── PDFPageRangePrivate.m │ │ │ ├── PDFPageView.m │ │ │ ├── PDFPageViewAnnotationController.m │ │ │ ├── PDFPageViewAnnotationControllerPrivate.m │ │ │ ├── PDFPageViewPrivate.m │ │ │ ├── PDFPasswordLayerController.m │ │ │ ├── PDFPasswordLayerControllerPrivate.m │ │ │ ├── PDFPasswordViewController.m │ │ │ ├── PDFPrintView.m │ │ │ ├── PDFPrintViewPrivate.m │ │ │ ├── PDFRenderingProperties.m │ │ │ ├── PDFRenderingPropertiesPrivate.m │ │ │ ├── PDFRevealManager.m │ │ │ ├── PDFRevealManagerPrivate.m │ │ │ ├── PDFScannerResult.m │ │ │ ├── PDFScannerResultPrivate.m │ │ │ ├── PDFScrollView.m │ │ │ ├── PDFScrollViewPrivate.m │ │ │ ├── PDFSelection.m │ │ │ ├── PDFSelectionLayer.m │ │ │ ├── PDFSelectionPrivate.m │ │ │ ├── PDFSelectionTrackingData.m │ │ │ ├── PDFThumbnailView.m │ │ │ ├── PDFThumbnailViewPrivate.m │ │ │ ├── PDFTilePool.m │ │ │ ├── PDFTilePoolPrivate.m │ │ │ ├── PDFTileSurface.m │ │ │ ├── PDFTimer.m │ │ │ ├── PDFTimerPrivate.m │ │ │ ├── PDFView.m │ │ │ ├── PDFViewController.m │ │ │ ├── PDFViewControllerPrivate.m │ │ │ ├── PDFViewLayout.m │ │ │ ├── PDFViewLayoutPrivate.m │ │ │ ├── PDFViewPrivate.m │ │ │ ├── PageSignature.m │ │ │ ├── SelectionRectInfo.m │ │ │ └── TileRenderRequest.m │ ├── Photos │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Photos │ │ │ │ ├── DurationGroup.h │ │ │ │ ├── ICCameraDeviceDelegate.h │ │ │ │ ├── ICCameraDeviceRemovedItemsCoalescer.h │ │ │ │ ├── ICDeviceBrowserDelegate.h │ │ │ │ ├── ICDeviceDelegate.h │ │ │ │ ├── NSCacheDelegate.h │ │ │ │ ├── NSFilePresenter.h │ │ │ │ ├── NSItemProviderReading.h │ │ │ │ ├── NSItemProviderWriting.h │ │ │ │ ├── NSPredicateVisitor.h │ │ │ │ ├── NSProgressReporting.h │ │ │ │ ├── PHAdjustmentData.h │ │ │ │ ├── PHAdjustmentDataRequest.h │ │ │ │ ├── PHAdjustmentDataRequestBehaviorSpec.h │ │ │ │ ├── PHAdjustmentDataRequestContext.h │ │ │ │ ├── PHAdjustmentDataRequestDelegate.h │ │ │ │ ├── PHAdjustmentDataResult.h │ │ │ │ ├── PHAlbum.h │ │ │ │ ├── PHAnimatedImage.h │ │ │ │ ├── PHAnimatedImageRequestOptions.h │ │ │ │ ├── PHAsset.h │ │ │ │ ├── PHAssetAdjustmentProperties.h │ │ │ │ ├── PHAssetAestheticProperties.h │ │ │ │ ├── PHAssetAnalysisStateProperties.h │ │ │ │ ├── PHAssetChangeRequest.h │ │ │ │ ├── PHAssetCollection.h │ │ │ │ ├── PHAssetCollectionChangeRequest.h │ │ │ │ ├── PHAssetCollectionReference.h │ │ │ │ ├── PHAssetComment.h │ │ │ │ ├── PHAssetCreationAdjustmentBakeInOptions.h │ │ │ │ ├── PHAssetCreationMetadataCopyOptions.h │ │ │ │ ├── PHAssetCreationOptions.h │ │ │ │ ├── PHAssetCreationPhotoStreamPublishingRequest.h │ │ │ │ ├── PHAssetCreationRequest.h │ │ │ │ ├── PHAssetCreationRequestPlaceholderSupport.h │ │ │ │ ├── PHAssetCreationRequestPlaceholderSupportCrashRecovery.h │ │ │ │ ├── PHAssetCreationRequestPlaceholderSupportNotificationManager.h │ │ │ │ ├── PHAssetCurationProperties.h │ │ │ │ ├── PHAssetDeleteRequest.h │ │ │ │ ├── PHAssetDescriptionProperties.h │ │ │ │ ├── PHAssetDestinationAssetCopyProperties.h │ │ │ │ ├── PHAssetExportRequest.h │ │ │ │ ├── PHAssetExportRequestOptions.h │ │ │ │ ├── PHAssetGridMetadataProperties.h │ │ │ │ ├── PHAssetImportProperties.h │ │ │ │ ├── PHAssetKeywordProperties.h │ │ │ │ ├── PHAssetLocalDateProperties.h │ │ │ │ ├── PHAssetMediaAnalysisProperties.h │ │ │ │ ├── PHAssetOriginalMetadataProperties.h │ │ │ │ ├── PHAssetPLAdapter.h │ │ │ │ ├── PHAssetPhotoCommentProperties.h │ │ │ │ ├── PHAssetPhotoIrisProperties.h │ │ │ │ ├── PHAssetPhotosInfoPanelExtendedProperties.h │ │ │ │ ├── PHAssetPhotosInfoPanelLocationProperties.h │ │ │ │ ├── PHAssetPhotosOneUpProperties.h │ │ │ │ ├── PHAssetPropertySet.h │ │ │ │ ├── PHAssetReference.h │ │ │ │ ├── PHAssetResource.h │ │ │ │ ├── PHAssetResourceBag.h │ │ │ │ ├── PHAssetResourceCreationOptions.h │ │ │ │ ├── PHAssetResourceManager.h │ │ │ │ ├── PHAssetResourceQualityClass.h │ │ │ │ ├── PHAssetResourceRequest.h │ │ │ │ ├── PHAssetResourceRequestDelegate.h │ │ │ │ ├── PHAssetResourceRequestOptions.h │ │ │ │ ├── PHAssetResourceValidatedContext.h │ │ │ │ ├── PHAssetResourceWriteRequest.h │ │ │ │ ├── PHAssetSceneAnalysisProperties.h │ │ │ │ ├── PHAssetSceneprintProperties.h │ │ │ │ ├── PHAssetUserActivityProperties.h │ │ │ │ ├── PHAvailabilityRequest.h │ │ │ │ ├── PHBatchFetchingArray.h │ │ │ │ ├── PHBatchFetchingArrayDataSource.h │ │ │ │ ├── PHCPLAssetResource.h │ │ │ │ ├── PHCachingImageManager.h │ │ │ │ ├── PHChange.h │ │ │ │ ├── PHChangeBuilder.h │ │ │ │ ├── PHChangeRequest.h │ │ │ │ ├── PHChangeRequestHelper.h │ │ │ │ ├── PHChangeValidationController.h │ │ │ │ ├── PHCloudIdentifier.h │ │ │ │ ├── PHCloudInvitation.h │ │ │ │ ├── PHCloudSharedAlbum.h │ │ │ │ ├── PHCloudSharedAssetExportRequest.h │ │ │ │ ├── PHCloudSharedPhoto.h │ │ │ │ ├── PHCollection.h │ │ │ │ ├── PHCollectionDeleteRequest.h │ │ │ │ ├── PHCollectionList.h │ │ │ │ ├── PHCollectionListAncestryContext.h │ │ │ │ ├── PHCollectionListChangeRequest.h │ │ │ │ ├── PHCollectionListReference.h │ │ │ │ ├── PHCollectionPresentationHints.h │ │ │ │ ├── PHCollectionReference.h │ │ │ │ ├── PHCompositeMediaResult.h │ │ │ │ ├── PHConcurrentMapTable.h │ │ │ │ ├── PHContentEditingInput.h │ │ │ │ ├── PHContentEditingInputRequestContext.h │ │ │ │ ├── PHContentEditingInputRequestOptions.h │ │ │ │ ├── PHContentEditingInputResult.h │ │ │ │ ├── PHContentEditingOutput.h │ │ │ │ ├── PHContentEditingOutputRequestOptions.h │ │ │ │ ├── PHDeleteChangeRequest.h │ │ │ │ ├── PHEntityKeyMap.h │ │ │ │ ├── PHExternalAssetResource.h │ │ │ │ ├── PHFace.h │ │ │ │ ├── PHFaceChangeRequest.h │ │ │ │ ├── PHFaceClusteringProperties.h │ │ │ │ ├── PHFaceCrop.h │ │ │ │ ├── PHFaceCropChangeRequest.h │ │ │ │ ├── PHFaceCropDeleteRequest.h │ │ │ │ ├── PHFaceDeleteRequest.h │ │ │ │ ├── PHFaceGroup.h │ │ │ │ ├── PHFaceGroupChangeRequest.h │ │ │ │ ├── PHFaceGroupDeleteRequest.h │ │ │ │ ├── PHFaceGroupPLAdapter.h │ │ │ │ ├── PHFacePLAdapter.h │ │ │ │ ├── PHFacePropertySet.h │ │ │ │ ├── PHFaceprint.h │ │ │ │ ├── PHFetchDictionaryAccessing.h │ │ │ │ ├── PHFetchOptions.h │ │ │ │ ├── PHFetchResult.h │ │ │ │ ├── PHFetchResultChangeDetails.h │ │ │ │ ├── PHFetchedObject.h │ │ │ │ ├── PHFigDecoder.h │ │ │ │ ├── PHImageCache.h │ │ │ │ ├── PHImageCacheDelegate.h │ │ │ │ ├── PHImageCacheEntry.h │ │ │ │ ├── PHImageDecoder.h │ │ │ │ ├── PHImageDecoderAsyncDecodeRequestHandle.h │ │ │ │ ├── PHImageDisplaySpec.h │ │ │ │ ├── PHImageIODecoder.h │ │ │ │ ├── PHImageManager.h │ │ │ │ ├── PHImageManagerRequestTracer.h │ │ │ │ ├── PHImageRequest.h │ │ │ │ ├── PHImageRequestBehaviorSpec.h │ │ │ │ ├── PHImageRequestColorSpace.h │ │ │ │ ├── PHImageRequestContext.h │ │ │ │ ├── PHImageRequestDelegate.h │ │ │ │ ├── PHImageRequestOptions.h │ │ │ │ ├── PHImageRequestResource.h │ │ │ │ ├── PHImageRequestUniformTypeIdentifier.h │ │ │ │ ├── PHImageResourceChooser.h │ │ │ │ ├── PHImageResult.h │ │ │ │ ├── PHImportAsset.h │ │ │ │ ├── PHImportAssetDataRequest.h │ │ │ │ ├── PHImportAssetDataResponse.h │ │ │ │ ├── PHImportAssetFilePresenter.h │ │ │ │ ├── PHImportAvchdAsset.h │ │ │ │ ├── PHImportBatch.h │ │ │ │ ├── PHImportController.h │ │ │ │ ├── PHImportDeleteJob.h │ │ │ │ ├── PHImportDeviceAsset.h │ │ │ │ ├── PHImportDeviceSource.h │ │ │ │ ├── PHImportDuplicateChecker.h │ │ │ │ ├── PHImportDuplicateCheckerItem.h │ │ │ │ ├── PHImportDuplicateInfo.h │ │ │ │ ├── PHImportException.h │ │ │ │ ├── PHImportExceptionRecorder.h │ │ │ │ ├── PHImportOptions.h │ │ │ │ ├── PHImportRecord.h │ │ │ │ ├── PHImportResults.h │ │ │ │ ├── PHImportSession.h │ │ │ │ ├── PHImportSource.h │ │ │ │ ├── PHImportTimer.h │ │ │ │ ├── PHImportTimerCollection.h │ │ │ │ ├── PHImportUrlSource.h │ │ │ │ ├── PHImporter.h │ │ │ │ ├── PHInsertChangeRequest.h │ │ │ │ ├── PHInternalAssetExportRequest.h │ │ │ │ ├── PHKeyword.h │ │ │ │ ├── PHKeywordChangeRequest.h │ │ │ │ ├── PHKeywordDeleteRequest.h │ │ │ │ ├── PHLibraryChangeRequest.h │ │ │ │ ├── PHLivePhoto.h │ │ │ │ ├── PHLivePhotoCreationOperation.h │ │ │ │ ├── PHLivePhotoEditingContext.h │ │ │ │ ├── PHLivePhotoExportSession.h │ │ │ │ ├── PHLivePhotoExportSessionOptions.h │ │ │ │ ├── PHLivePhotoRequestContext.h │ │ │ │ ├── PHLivePhotoRequestOptions.h │ │ │ │ ├── PHLivePhotoResult.h │ │ │ │ ├── PHLocallyAvailableResourceBag.h │ │ │ │ ├── PHManualFetchResult.h │ │ │ │ ├── PHMediaRequest.h │ │ │ │ ├── PHMediaRequestContext.h │ │ │ │ ├── PHMediaRequestContextDelegate.h │ │ │ │ ├── PHMediaRequestDelegate.h │ │ │ │ ├── PHMediaRequestThreadingOptions.h │ │ │ │ ├── PHMediaResourceRequest.h │ │ │ │ ├── PHMediaResourceResult.h │ │ │ │ ├── PHMemory.h │ │ │ │ ├── PHMemoryChangeRequest.h │ │ │ │ ├── PHMemoryDeleteRequest.h │ │ │ │ ├── PHMemoryFeature.h │ │ │ │ ├── PHMemoryFeatureDecoder.h │ │ │ │ ├── PHMemoryFeatureEncoder.h │ │ │ │ ├── PHMemoryGenerationOptions.h │ │ │ │ ├── PHMemoryPresentationHints.h │ │ │ │ ├── PHMoment.h │ │ │ │ ├── PHMomentChangeRequest.h │ │ │ │ ├── PHMomentList.h │ │ │ │ ├── PHMomentShare.h │ │ │ │ ├── PHMomentShareChangeRequest.h │ │ │ │ ├── PHMomentShareDeleteRequest.h │ │ │ │ ├── PHMomentShareParticipant.h │ │ │ │ ├── PHMomentShareParticipantChangeRequest.h │ │ │ │ ├── PHMomentShareParticipantDeleteRequest.h │ │ │ │ ├── PHMomentSharePreview.h │ │ │ │ ├── PHMomentSharePropertySet.h │ │ │ │ ├── PHMutableFetchDictionaryAccessing.h │ │ │ │ ├── PHObject.h │ │ │ │ ├── PHObjectChangeDetails.h │ │ │ │ ├── PHObjectDeleteRequest.h │ │ │ │ ├── PHObjectDeleteValidator.h │ │ │ │ ├── PHObjectPLAdapter.h │ │ │ │ ├── PHObjectPlaceholder.h │ │ │ │ ├── PHObjectPropertySet.h │ │ │ │ ├── PHObjectReference.h │ │ │ │ ├── PHPerformChangesRequest.h │ │ │ │ ├── PHPerformChangesRequestService.h │ │ │ │ ├── PHPersistentChangeFetchRequest.h │ │ │ │ ├── PHPersistentChangeFetchResult.h │ │ │ │ ├── PHPersistentChangeToken.h │ │ │ │ ├── PHPerson.h │ │ │ │ ├── PHPersonChangeRequest.h │ │ │ │ ├── PHPersonDeleteRequest.h │ │ │ │ ├── PHPersonPLAdapter.h │ │ │ │ ├── PHPersonReference.h │ │ │ │ ├── PHPersonResetManager.h │ │ │ │ ├── PHPersonResetOperation.h │ │ │ │ ├── PHPersonSuggestion.h │ │ │ │ ├── PHPhotoLibrary.h │ │ │ │ ├── PHPhotoLibraryAppPrivateData.h │ │ │ │ ├── PHPhotoLibraryChangeObserver.h │ │ │ │ ├── PHPhotoMaster.h │ │ │ │ ├── PHPhotoRepresentation.h │ │ │ │ ├── PHPhotosHighlight.h │ │ │ │ ├── PHPhotosHighlightChangeRequest.h │ │ │ │ ├── PHPhotosHighlightDeleteRequest.h │ │ │ │ ├── PHPlaceholderImageHelper.h │ │ │ │ ├── PHPreviewImageRequest.h │ │ │ │ ├── PHProject.h │ │ │ │ ├── PHProjectChangeRequest.h │ │ │ │ ├── PHQuery.h │ │ │ │ ├── PHQueryChangeDetectionCriteria.h │ │ │ │ ├── PHQueryPersonContext.h │ │ │ │ ├── PHQuestion.h │ │ │ │ ├── PHQuestionChangeRequest.h │ │ │ │ ├── PHQuestionDeleteRequest.h │ │ │ │ ├── PHRecyclableObject.h │ │ │ │ ├── PHRecyclableObjectVendor.h │ │ │ │ ├── PHRelatedCollection.h │ │ │ │ ├── PHRelatedFetchOptions.h │ │ │ │ ├── PHRelationshipChangeRequestHelper.h │ │ │ │ ├── PHResourceAvailabilityChangeRequest.h │ │ │ │ ├── PHResourceAvailabilityDataStoreManager.h │ │ │ │ ├── PHResourceAvailabilityJob.h │ │ │ │ ├── PHResourceAvailabilityRequest.h │ │ │ │ ├── PHResourceChooserAsset.h │ │ │ │ ├── PHResourceChooserList.h │ │ │ │ ├── PHResourceDownloadRequest.h │ │ │ │ ├── PHResourceDownloadRequestOptions.h │ │ │ │ ├── PHResourceRepairRequest.h │ │ │ │ ├── PHResourceRepairRequestDelegate.h │ │ │ │ ├── PHSafeNSCacheDelegateReflector.h │ │ │ │ ├── PHSandboxExtensionWrapper.h │ │ │ │ ├── PHSceneClassification.h │ │ │ │ ├── PHSingleMediaRequestContext.h │ │ │ │ ├── PHSmartAlbum.h │ │ │ │ ├── PHSmartAlbumChangeRequest.h │ │ │ │ ├── PHSuggestion.h │ │ │ │ ├── PHSuggestionChangeRequest.h │ │ │ │ ├── PHSuggestionDeleteRequest.h │ │ │ │ ├── PHSuggestionMessageContext.h │ │ │ │ ├── PHSuggestionMessageMatchingResult.h │ │ │ │ ├── PHTextFeature.h │ │ │ │ ├── PHTextFeatureDecoder.h │ │ │ │ ├── PHTextFeatureEncoder.h │ │ │ │ ├── PHThumbnailAsset.h │ │ │ │ ├── PHTrashableObjectDeleteRequest.h │ │ │ │ ├── PHUnauthorizedFetchResult.h │ │ │ │ ├── PHUpdateChangeRequest.h │ │ │ │ ├── PHValidator.h │ │ │ │ ├── PHVideoChoosingAndAvailabilityRequest.h │ │ │ │ ├── PHVideoRequest.h │ │ │ │ ├── PHVideoRequestBehaviorSpec.h │ │ │ │ ├── PHVideoRequestContext.h │ │ │ │ ├── PHVideoRequestDelegate.h │ │ │ │ ├── PHVideoRequestOptions.h │ │ │ │ ├── PHVideoResult.h │ │ │ │ ├── PHVisionAnalysisUtilities.h │ │ │ │ ├── PLAlbumProtocol.h │ │ │ │ ├── PLAssetContainer.h │ │ │ │ ├── PLAssetID.h │ │ │ │ ├── PLCloudSharedAlbumProtocol.h │ │ │ │ ├── PLDiagnosticsProvider.h │ │ │ │ ├── PLLocalUUIDConverter.h │ │ │ │ ├── PLResourceIdentity.h │ │ │ │ ├── PLTrackableRequest.h │ │ │ │ ├── PLTrackableRequestDelegate.h │ │ │ │ ├── PLUniformTypeIdentifierIdentity.h │ │ │ │ ├── PLUserEditableAlbumProtocol.h │ │ │ │ ├── PLVideoChoosingOptions.h │ │ │ │ ├── Photos.h │ │ │ │ ├── _PHAnimatedImageLoadOperation.h │ │ │ │ ├── _PHAssetCreationRequestValidator.h │ │ │ │ ├── _PHFetchRequestWrapper.h │ │ │ │ ├── _PHPhotoLibraryValidator.h │ │ │ │ ├── _PHValidation.h │ │ │ │ ├── _PLImageLoadingAsset.h │ │ │ │ └── _PLThumbnailLoadingAsset.h │ │ └── src │ │ │ ├── DurationGroup.m │ │ │ ├── ICCameraDeviceRemovedItemsCoalescer.m │ │ │ ├── PHAdjustmentData.m │ │ │ ├── PHAdjustmentDataRequest.m │ │ │ ├── PHAdjustmentDataRequestBehaviorSpec.m │ │ │ ├── PHAdjustmentDataRequestContext.m │ │ │ ├── PHAdjustmentDataResult.m │ │ │ ├── PHAlbum.m │ │ │ ├── PHAnimatedImage.m │ │ │ ├── PHAnimatedImageRequestOptions.m │ │ │ ├── PHAsset.m │ │ │ ├── PHAssetAdjustmentProperties.m │ │ │ ├── PHAssetAestheticProperties.m │ │ │ ├── PHAssetAnalysisStateProperties.m │ │ │ ├── PHAssetChangeRequest.m │ │ │ ├── PHAssetCollection.m │ │ │ ├── PHAssetCollectionChangeRequest.m │ │ │ ├── PHAssetCollectionReference.m │ │ │ ├── PHAssetComment.m │ │ │ ├── PHAssetCreationAdjustmentBakeInOptions.m │ │ │ ├── PHAssetCreationMetadataCopyOptions.m │ │ │ ├── PHAssetCreationOptions.m │ │ │ ├── PHAssetCreationPhotoStreamPublishingRequest.m │ │ │ ├── PHAssetCreationRequest.m │ │ │ ├── PHAssetCreationRequestPlaceholderSupport.m │ │ │ ├── PHAssetCreationRequestPlaceholderSupportCrashRecovery.m │ │ │ ├── PHAssetCreationRequestPlaceholderSupportNotificationManager.m │ │ │ ├── PHAssetCurationProperties.m │ │ │ ├── PHAssetDeleteRequest.m │ │ │ ├── PHAssetDescriptionProperties.m │ │ │ ├── PHAssetDestinationAssetCopyProperties.m │ │ │ ├── PHAssetExportRequest.m │ │ │ ├── PHAssetExportRequestOptions.m │ │ │ ├── PHAssetGridMetadataProperties.m │ │ │ ├── PHAssetImportProperties.m │ │ │ ├── PHAssetKeywordProperties.m │ │ │ ├── PHAssetLocalDateProperties.m │ │ │ ├── PHAssetMediaAnalysisProperties.m │ │ │ ├── PHAssetOriginalMetadataProperties.m │ │ │ ├── PHAssetPLAdapter.m │ │ │ ├── PHAssetPhotoCommentProperties.m │ │ │ ├── PHAssetPhotoIrisProperties.m │ │ │ ├── PHAssetPhotosInfoPanelExtendedProperties.m │ │ │ ├── PHAssetPhotosInfoPanelLocationProperties.m │ │ │ ├── PHAssetPhotosOneUpProperties.m │ │ │ ├── PHAssetPropertySet.m │ │ │ ├── PHAssetReference.m │ │ │ ├── PHAssetResource.m │ │ │ ├── PHAssetResourceBag.m │ │ │ ├── PHAssetResourceCreationOptions.m │ │ │ ├── PHAssetResourceManager.m │ │ │ ├── PHAssetResourceQualityClass.m │ │ │ ├── PHAssetResourceRequest.m │ │ │ ├── PHAssetResourceRequestOptions.m │ │ │ ├── PHAssetResourceValidatedContext.m │ │ │ ├── PHAssetResourceWriteRequest.m │ │ │ ├── PHAssetSceneAnalysisProperties.m │ │ │ ├── PHAssetSceneprintProperties.m │ │ │ ├── PHAssetUserActivityProperties.m │ │ │ ├── PHAvailabilityRequest.m │ │ │ ├── PHBatchFetchingArray.m │ │ │ ├── PHCachingImageManager.m │ │ │ ├── PHChange.m │ │ │ ├── PHChangeBuilder.m │ │ │ ├── PHChangeRequest.m │ │ │ ├── PHChangeRequestHelper.m │ │ │ ├── PHChangeValidationController.m │ │ │ ├── PHCloudIdentifier.m │ │ │ ├── PHCloudInvitation.m │ │ │ ├── PHCloudSharedAlbum.m │ │ │ ├── PHCloudSharedAssetExportRequest.m │ │ │ ├── PHCloudSharedPhoto.m │ │ │ ├── PHCollection.m │ │ │ ├── PHCollectionDeleteRequest.m │ │ │ ├── PHCollectionList.m │ │ │ ├── PHCollectionListAncestryContext.m │ │ │ ├── PHCollectionListChangeRequest.m │ │ │ ├── PHCollectionListReference.m │ │ │ ├── PHCollectionReference.m │ │ │ ├── PHCompositeMediaResult.m │ │ │ ├── PHConcurrentMapTable.m │ │ │ ├── PHContentEditingInput.m │ │ │ ├── PHContentEditingInputRequestContext.m │ │ │ ├── PHContentEditingInputRequestOptions.m │ │ │ ├── PHContentEditingInputResult.m │ │ │ ├── PHContentEditingOutput.m │ │ │ ├── PHContentEditingOutputRequestOptions.m │ │ │ ├── PHEntityKeyMap.m │ │ │ ├── PHExternalAssetResource.m │ │ │ ├── PHFace.m │ │ │ ├── PHFaceChangeRequest.m │ │ │ ├── PHFaceClusteringProperties.m │ │ │ ├── PHFaceCrop.m │ │ │ ├── PHFaceCropChangeRequest.m │ │ │ ├── PHFaceCropDeleteRequest.m │ │ │ ├── PHFaceDeleteRequest.m │ │ │ ├── PHFaceGroup.m │ │ │ ├── PHFaceGroupChangeRequest.m │ │ │ ├── PHFaceGroupDeleteRequest.m │ │ │ ├── PHFaceGroupPLAdapter.m │ │ │ ├── PHFacePLAdapter.m │ │ │ ├── PHFacePropertySet.m │ │ │ ├── PHFaceprint.m │ │ │ ├── PHFetchOptions.m │ │ │ ├── PHFetchResult.m │ │ │ ├── PHFetchResultChangeDetails.m │ │ │ ├── PHFigDecoder.m │ │ │ ├── PHImageCache.m │ │ │ ├── PHImageCacheEntry.m │ │ │ ├── PHImageDecoder.m │ │ │ ├── PHImageDecoderAsyncDecodeRequestHandle.m │ │ │ ├── PHImageDisplaySpec.m │ │ │ ├── PHImageIODecoder.m │ │ │ ├── PHImageManager.m │ │ │ ├── PHImageManagerRequestTracer.m │ │ │ ├── PHImageRequest.m │ │ │ ├── PHImageRequestBehaviorSpec.m │ │ │ ├── PHImageRequestColorSpace.m │ │ │ ├── PHImageRequestContext.m │ │ │ ├── PHImageRequestOptions.m │ │ │ ├── PHImageRequestResource.m │ │ │ ├── PHImageRequestUniformTypeIdentifier.m │ │ │ ├── PHImageResourceChooser.m │ │ │ ├── PHImageResult.m │ │ │ ├── PHImportAsset.m │ │ │ ├── PHImportAssetDataRequest.m │ │ │ ├── PHImportAssetDataResponse.m │ │ │ ├── PHImportAssetFilePresenter.m │ │ │ ├── PHImportAvchdAsset.m │ │ │ ├── PHImportBatch.m │ │ │ ├── PHImportController.m │ │ │ ├── PHImportDeleteJob.m │ │ │ ├── PHImportDeviceAsset.m │ │ │ ├── PHImportDeviceSource.m │ │ │ ├── PHImportDuplicateChecker.m │ │ │ ├── PHImportDuplicateInfo.m │ │ │ ├── PHImportException.m │ │ │ ├── PHImportExceptionRecorder.m │ │ │ ├── PHImportOptions.m │ │ │ ├── PHImportRecord.m │ │ │ ├── PHImportResults.m │ │ │ ├── PHImportSession.m │ │ │ ├── PHImportSource.m │ │ │ ├── PHImportTimer.m │ │ │ ├── PHImportTimerCollection.m │ │ │ ├── PHImportUrlSource.m │ │ │ ├── PHImporter.m │ │ │ ├── PHInternalAssetExportRequest.m │ │ │ ├── PHKeyword.m │ │ │ ├── PHKeywordChangeRequest.m │ │ │ ├── PHKeywordDeleteRequest.m │ │ │ ├── PHLibraryChangeRequest.m │ │ │ ├── PHLivePhoto.m │ │ │ ├── PHLivePhotoCreationOperation.m │ │ │ ├── PHLivePhotoEditingContext.m │ │ │ ├── PHLivePhotoExportSession.m │ │ │ ├── PHLivePhotoExportSessionOptions.m │ │ │ ├── PHLivePhotoRequestContext.m │ │ │ ├── PHLivePhotoRequestOptions.m │ │ │ ├── PHLivePhotoResult.m │ │ │ ├── PHLocallyAvailableResourceBag.m │ │ │ ├── PHManualFetchResult.m │ │ │ ├── PHMediaRequest.m │ │ │ ├── PHMediaRequestContext.m │ │ │ ├── PHMediaResourceRequest.m │ │ │ ├── PHMediaResourceResult.m │ │ │ ├── PHMemory.m │ │ │ ├── PHMemoryChangeRequest.m │ │ │ ├── PHMemoryDeleteRequest.m │ │ │ ├── PHMemoryFeature.m │ │ │ ├── PHMemoryFeatureDecoder.m │ │ │ ├── PHMemoryFeatureEncoder.m │ │ │ ├── PHMemoryGenerationOptions.m │ │ │ ├── PHMemoryPresentationHints.m │ │ │ ├── PHMoment.m │ │ │ ├── PHMomentChangeRequest.m │ │ │ ├── PHMomentList.m │ │ │ ├── PHMomentShare.m │ │ │ ├── PHMomentShareChangeRequest.m │ │ │ ├── PHMomentShareDeleteRequest.m │ │ │ ├── PHMomentShareParticipant.m │ │ │ ├── PHMomentShareParticipantChangeRequest.m │ │ │ ├── PHMomentShareParticipantDeleteRequest.m │ │ │ ├── PHMomentSharePreview.m │ │ │ ├── PHObject.m │ │ │ ├── PHObjectChangeDetails.m │ │ │ ├── PHObjectDeleteRequest.m │ │ │ ├── PHObjectDeleteValidator.m │ │ │ ├── PHObjectPLAdapter.m │ │ │ ├── PHObjectPlaceholder.m │ │ │ ├── PHObjectReference.m │ │ │ ├── PHPerformChangesRequest.m │ │ │ ├── PHPersistentChangeFetchRequest.m │ │ │ ├── PHPersistentChangeFetchResult.m │ │ │ ├── PHPersistentChangeToken.m │ │ │ ├── PHPerson.m │ │ │ ├── PHPersonChangeRequest.m │ │ │ ├── PHPersonDeleteRequest.m │ │ │ ├── PHPersonPLAdapter.m │ │ │ ├── PHPersonReference.m │ │ │ ├── PHPersonResetManager.m │ │ │ ├── PHPersonResetOperation.m │ │ │ ├── PHPersonSuggestion.m │ │ │ ├── PHPhotoLibrary.m │ │ │ ├── PHPhotoLibraryAppPrivateData.m │ │ │ ├── PHPhotoMaster.m │ │ │ ├── PHPhotoRepresentation.m │ │ │ ├── PHPhotosHighlight.m │ │ │ ├── PHPhotosHighlightChangeRequest.m │ │ │ ├── PHPhotosHighlightDeleteRequest.m │ │ │ ├── PHPlaceholderImageHelper.m │ │ │ ├── PHPreviewImageRequest.m │ │ │ ├── PHProject.m │ │ │ ├── PHProjectChangeRequest.m │ │ │ ├── PHQuery.m │ │ │ ├── PHQueryChangeDetectionCriteria.m │ │ │ ├── PHQueryPersonContext.m │ │ │ ├── PHQuestion.m │ │ │ ├── PHQuestionChangeRequest.m │ │ │ ├── PHQuestionDeleteRequest.m │ │ │ ├── PHRecyclableObjectVendor.m │ │ │ ├── PHRelatedCollection.m │ │ │ ├── PHRelatedFetchOptions.m │ │ │ ├── PHRelationshipChangeRequestHelper.m │ │ │ ├── PHResourceAvailabilityChangeRequest.m │ │ │ ├── PHResourceAvailabilityDataStoreManager.m │ │ │ ├── PHResourceAvailabilityJob.m │ │ │ ├── PHResourceAvailabilityRequest.m │ │ │ ├── PHResourceChooserList.m │ │ │ ├── PHResourceDownloadRequest.m │ │ │ ├── PHResourceDownloadRequestOptions.m │ │ │ ├── PHResourceRepairRequest.m │ │ │ ├── PHSafeNSCacheDelegateReflector.m │ │ │ ├── PHSandboxExtensionWrapper.m │ │ │ ├── PHSceneClassification.m │ │ │ ├── PHSingleMediaRequestContext.m │ │ │ ├── PHSmartAlbum.m │ │ │ ├── PHSmartAlbumChangeRequest.m │ │ │ ├── PHSuggestion.m │ │ │ ├── PHSuggestionChangeRequest.m │ │ │ ├── PHSuggestionDeleteRequest.m │ │ │ ├── PHSuggestionMessageContext.m │ │ │ ├── PHSuggestionMessageMatchingResult.m │ │ │ ├── PHTextFeature.m │ │ │ ├── PHTextFeatureDecoder.m │ │ │ ├── PHTextFeatureEncoder.m │ │ │ ├── PHThumbnailAsset.m │ │ │ ├── PHTrashableObjectDeleteRequest.m │ │ │ ├── PHUnauthorizedFetchResult.m │ │ │ ├── PHValidator.m │ │ │ ├── PHVideoChoosingAndAvailabilityRequest.m │ │ │ ├── PHVideoRequest.m │ │ │ ├── PHVideoRequestBehaviorSpec.m │ │ │ ├── PHVideoRequestContext.m │ │ │ ├── PHVideoRequestOptions.m │ │ │ ├── PHVideoResult.m │ │ │ ├── PHVisionAnalysisUtilities.m │ │ │ ├── Photos.m │ │ │ ├── _PHAnimatedImageLoadOperation.m │ │ │ ├── _PHAssetCreationRequestValidator.m │ │ │ ├── _PHFetchRequestWrapper.m │ │ │ ├── _PHPhotoLibraryValidator.m │ │ │ └── _PHValidation.m │ ├── QTKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── QTKit │ │ │ │ ├── ModernizerXPCProtocol.h │ │ │ │ ├── NSUserInterfaceValidations.h │ │ │ │ ├── QTAudioCompressionOptions.h │ │ │ │ ├── QTBackgroundQueue.h │ │ │ │ ├── QTBackgroundQueueThreadInfoInternal.h │ │ │ │ ├── QTCAImageQueueBoss.h │ │ │ │ ├── QTCALayerRenderer.h │ │ │ │ ├── QTCALayerRendererState.h │ │ │ │ ├── QTCALayerRendererView.h │ │ │ │ ├── QTCALayerRendererViewBackingLayer.h │ │ │ │ ├── QTCGContextRenderer.h │ │ │ │ ├── QTCGContextRendererInternal.h │ │ │ │ ├── QTCGContextRendererView.h │ │ │ │ ├── QTCallbackRegistry.h │ │ │ │ ├── QTCaptureAudioPreviewOutput.h │ │ │ │ ├── QTCaptureAudioPreviewOutputInternal.h │ │ │ │ ├── QTCaptureConnection.h │ │ │ │ ├── QTCaptureConnectionInternal.h │ │ │ │ ├── QTCaptureDALDevice.h │ │ │ │ ├── QTCaptureDecompressedAudioOutput.h │ │ │ │ ├── QTCaptureDecompressedAudioOutputCallbackData.h │ │ │ │ ├── QTCaptureDecompressedAudioOutputInternal.h │ │ │ │ ├── QTCaptureDecompressedVideoOutput.h │ │ │ │ ├── QTCaptureDecompressedVideoOutputCallbackData.h │ │ │ │ ├── QTCaptureDecompressedVideoOutputInternal.h │ │ │ │ ├── QTCaptureDevice.h │ │ │ │ ├── QTCaptureDeviceInput.h │ │ │ │ ├── QTCaptureDeviceInputInternal.h │ │ │ │ ├── QTCaptureDeviceInternal.h │ │ │ │ ├── QTCaptureFileOutput.h │ │ │ │ ├── QTCaptureFileOutputInternal.h │ │ │ │ ├── QTCaptureFileOutputPauseOperationDescriptor.h │ │ │ │ ├── QTCaptureFileOutputRecordingOperationDescriptor.h │ │ │ │ ├── QTCaptureHALDevice.h │ │ │ │ ├── QTCaptureInput.h │ │ │ │ ├── QTCaptureLayer.h │ │ │ │ ├── QTCaptureLayerPrivate.h │ │ │ │ ├── QTCaptureMovieFileOutput.h │ │ │ │ ├── QTCaptureMovieFileOutputInternal.h │ │ │ │ ├── QTCaptureOperationDescriptor.h │ │ │ │ ├── QTCaptureOperationDescriptorQueue.h │ │ │ │ ├── QTCaptureOperationDescriptorQueueItem.h │ │ │ │ ├── QTCaptureOutput.h │ │ │ │ ├── QTCaptureScreenInput.h │ │ │ │ ├── QTCaptureScreenInputInternal.h │ │ │ │ ├── QTCaptureSession.h │ │ │ │ ├── QTCaptureSessionInternal.h │ │ │ │ ├── QTCaptureSessionInternalState.h │ │ │ │ ├── QTCaptureVideoPreviewOutput.h │ │ │ │ ├── QTCaptureVideoPreviewOutputCallbackData.h │ │ │ │ ├── QTCaptureVideoPreviewOutputInternal.h │ │ │ │ ├── QTCaptureVideoPreviewRenderHelper.h │ │ │ │ ├── QTCaptureView.h │ │ │ │ ├── QTCaptureViewInternal.h │ │ │ │ ├── QTClassicMovieControllerView.h │ │ │ │ ├── QTClassicMovieControllerViewNeedsDisplayData.h │ │ │ │ ├── QTClosedCaptionLayer.h │ │ │ │ ├── QTClosedCaptionRenderer.h │ │ │ │ ├── QTCompressionOptions.h │ │ │ │ ├── QTCompressionOptionsInternal.h │ │ │ │ ├── QTConcreteGraphicsDevice.h │ │ │ │ ├── QTDataReference.h │ │ │ │ ├── QTDataReferenceEnumerator.h │ │ │ │ ├── QTDelegateController.h │ │ │ │ ├── QTDelegateListenerThreadData.h │ │ │ │ ├── QTExportOptions.h │ │ │ │ ├── QTExportOptionsInternal.h │ │ │ │ ├── QTExportSession.h │ │ │ │ ├── QTExportSessionInternal.h │ │ │ │ ├── QTFigTimeImageQueue.h │ │ │ │ ├── QTFigVisualContextImageProvider.h │ │ │ │ ├── QTFigVisualContextImageProviderInternal.h │ │ │ │ ├── QTFormatDescription.h │ │ │ │ ├── QTFormatDescriptionInternal.h │ │ │ │ ├── QTGarbageCollectedWeakReference.h │ │ │ │ ├── QTGraphicsDevice.h │ │ │ │ ├── QTHUDBackgroundView.h │ │ │ │ ├── QTHUDButton.h │ │ │ │ ├── QTHUDButtonCell.h │ │ │ │ ├── QTHUDContainerView.h │ │ │ │ ├── QTHUDDetentFunction.h │ │ │ │ ├── QTHUDGroupView.h │ │ │ │ ├── QTHUDGroupViewItem.h │ │ │ │ ├── QTHUDMediaTimelineRangeMarker.h │ │ │ │ ├── QTHUDMediaTimelineTrack.h │ │ │ │ ├── QTHUDMediaTimelineTrackPreview.h │ │ │ │ ├── QTHUDMediaTimelineTracksView.h │ │ │ │ ├── QTHUDMediaTimelineView.h │ │ │ │ ├── QTHUDPopUpButton.h │ │ │ │ ├── QTHUDPopUpButtonCell.h │ │ │ │ ├── QTHUDPopUpButtonCellButtonCell.h │ │ │ │ ├── QTHUDRemoteIndicatorView.h │ │ │ │ ├── QTHUDSlider.h │ │ │ │ ├── QTHUDSliderCell.h │ │ │ │ ├── QTHUDTimeFormatter.h │ │ │ │ ├── QTHUDTimeline.h │ │ │ │ ├── QTHUDTimelineCell.h │ │ │ │ ├── QTHUDTimelineCellDelegate.h │ │ │ │ ├── QTHUDTimerNonRetainedTarget.h │ │ │ │ ├── QTHotspot.h │ │ │ │ ├── QTHotspotEnumerator.h │ │ │ │ ├── QTIMAVManagerImageConsumer.h │ │ │ │ ├── QTImageBufferConformer.h │ │ │ │ ├── QTImageBufferQueue.h │ │ │ │ ├── QTImageConsumer.h │ │ │ │ ├── QTImageConsumerDelegateHelper.h │ │ │ │ ├── QTImageConsumerFanOut.h │ │ │ │ ├── QTImageConsumerVendor.h │ │ │ │ ├── QTInvalidationSet.h │ │ │ │ ├── QTKeyValueProxy.h │ │ │ │ ├── QTKeyedArchiverDelegate.h │ │ │ │ ├── QTKit.h │ │ │ │ ├── QTKitMovieControllerView.h │ │ │ │ ├── QTKitServerController.h │ │ │ │ ├── QTLogRenderer.h │ │ │ │ ├── QTMachPortImageProvider.h │ │ │ │ ├── QTMachPortImageProviderData.h │ │ │ │ ├── QTMedia.h │ │ │ │ ├── QTMediaIOGraphNodeList.h │ │ │ │ ├── QTMediaIOGraphUnitDescription.h │ │ │ │ ├── QTMediaKeys.h │ │ │ │ ├── QTMetadataItem.h │ │ │ │ ├── QTMetadataItemInternal.h │ │ │ │ ├── QTMovie.h │ │ │ │ ├── QTMovieAttributeProps.h │ │ │ │ ├── QTMovieAttributes.h │ │ │ │ ├── QTMovieControllerView.h │ │ │ │ ├── QTMovieFigVisualContextRenderHelper.h │ │ │ │ ├── QTMovieGWorldRendererView.h │ │ │ │ ├── QTMovieGWorldRendererViewStubImageConsumer.h │ │ │ │ ├── QTMovieLayer.h │ │ │ │ ├── QTMovieLayerPrivate.h │ │ │ │ ├── QTMovieMachPortRenderHelper.h │ │ │ │ ├── QTMovieMediaHelper.h │ │ │ │ ├── QTMovieModernizer.h │ │ │ │ ├── QTMovieModernizerInternal.h │ │ │ │ ├── QTMovieModernizerLegacyMP3Track.h │ │ │ │ ├── QTMovieModernizerLegacyQTTrack.h │ │ │ │ ├── QTMovieModernizerLegacyQTTrackPassthrough.h │ │ │ │ ├── QTMovieModernizerPassthroughTrack.h │ │ │ │ ├── QTMovieModernizerTrack.h │ │ │ │ ├── QTMoviePlaybackController.h │ │ │ │ ├── QTMoviePlaybackControllerMovieProxy.h │ │ │ │ ├── QTMoviePlaybackControllerSelection.h │ │ │ │ ├── QTMoviePlaybackControllerTimeValue.h │ │ │ │ ├── QTMovieUndoOperation.h │ │ │ │ ├── QTMovieVideoProviderImageConsumer.h │ │ │ │ ├── QTMovieVideoProviderQuartzComposerOnly.h │ │ │ │ ├── QTMovieView.h │ │ │ │ ├── QTMovieViewCALayerRendererView.h │ │ │ │ ├── QTMovieViewCGContextRendererView.h │ │ │ │ ├── QTMovieViewDragHighlightOverlayView.h │ │ │ │ ├── QTMovieViewInternal.h │ │ │ │ ├── QTMovieViewSurfaceRendererView.h │ │ │ │ ├── QTMovie_AsyncLoadHelper.h │ │ │ │ ├── QTMovie_FigMedia.h │ │ │ │ ├── QTMovie_FigMedia_OccasionalCaller.h │ │ │ │ ├── QTMovie_FigMedia_TimelyCaller.h │ │ │ │ ├── QTMovie_QuickTime.h │ │ │ │ ├── QTMutableExportOptions.h │ │ │ │ ├── QTMutableMetadataItem.h │ │ │ │ ├── QTNode.h │ │ │ │ ├── QTNodeEnumerator.h │ │ │ │ ├── QTNotificationController.h │ │ │ │ ├── QTNotificationListenerThreadData.h │ │ │ │ ├── QTOpenGLContext.h │ │ │ │ ├── QTOpenGLTexture.h │ │ │ │ ├── QTOpenGLTextureCache.h │ │ │ │ ├── QTOpenGLTextureCacheTexture.h │ │ │ │ ├── QTOpenGLTextureCacheTextureTile.h │ │ │ │ ├── QTOpenGLTextureTile.h │ │ │ │ ├── QTPixelBufferConverter.h │ │ │ │ ├── QTRemoteCVImageBufferUnarchiver.h │ │ │ │ ├── QTResolvedDecompressionOptions.h │ │ │ │ ├── QTRetainReleaseWeakReference.h │ │ │ │ ├── QTRunLoopSchedulingSet.h │ │ │ │ ├── QTRunLoopSchedulingSetCallbackInfo.h │ │ │ │ ├── QTSampleBuffer.h │ │ │ │ ├── QTSampleBufferInternal.h │ │ │ │ ├── QTStream.h │ │ │ │ ├── QTStreamEnumerator.h │ │ │ │ ├── QTSubtitleLayer.h │ │ │ │ ├── QTSubtitleRenderer.h │ │ │ │ ├── QTSurfaceRenderer.h │ │ │ │ ├── QTSurfaceRendererAcceleratedTile.h │ │ │ │ ├── QTSurfaceRendererIntermediateDelegateRenderer.h │ │ │ │ ├── QTSurfaceRendererSoftwareTile.h │ │ │ │ ├── QTSurfaceRendererTile.h │ │ │ │ ├── QTSurfaceRendererTileDescription.h │ │ │ │ ├── QTSurfaceRendererView.h │ │ │ │ ├── QTTimeValue.h │ │ │ │ ├── QTTrack.h │ │ │ │ ├── QTTrackAttributes.h │ │ │ │ ├── QTTrackEnumerator.h │ │ │ │ ├── QTTrackHelper.h │ │ │ │ ├── QTTrack_FigMedia.h │ │ │ │ ├── QTTrack_QuickTime.h │ │ │ │ ├── QTUtilities.h │ │ │ │ ├── QTVideoCompressionOptions.h │ │ │ │ ├── QTVideoRendererWebKitOnly.h │ │ │ │ ├── QTWeakReference.h │ │ │ │ ├── StandardMovieUIInterface.h │ │ │ │ ├── StdMovieUIButton.h │ │ │ │ ├── StdMovieUIChapterPopup.h │ │ │ │ ├── StdMovieUIController.h │ │ │ │ ├── StdMovieUICustomMenuButton.h │ │ │ │ ├── StdMovieUIFastButton.h │ │ │ │ ├── StdMovieUIFastButtonCell.h │ │ │ │ ├── StdMovieUIPlayPauseButton.h │ │ │ │ ├── StdMovieUISlider.h │ │ │ │ ├── StdMovieUISliderCell.h │ │ │ │ ├── StdMovieUITextItem.h │ │ │ │ ├── StdMovieUIVolumeButton.h │ │ │ │ └── StdMovieUIVolumeSliderPopupView.h │ │ └── src │ │ │ ├── QTAudioCompressionOptions.m │ │ │ ├── QTBackgroundQueue.m │ │ │ ├── QTBackgroundQueueThreadInfoInternal.m │ │ │ ├── QTCAImageQueueBoss.m │ │ │ ├── QTCALayerRenderer.m │ │ │ ├── QTCALayerRendererState.m │ │ │ ├── QTCALayerRendererView.m │ │ │ ├── QTCALayerRendererViewBackingLayer.m │ │ │ ├── QTCGContextRenderer.m │ │ │ ├── QTCGContextRendererInternal.m │ │ │ ├── QTCGContextRendererView.m │ │ │ ├── QTCallbackRegistry.m │ │ │ ├── QTCaptureAudioPreviewOutput.m │ │ │ ├── QTCaptureAudioPreviewOutputInternal.m │ │ │ ├── QTCaptureConnection.m │ │ │ ├── QTCaptureConnectionInternal.m │ │ │ ├── QTCaptureDALDevice.m │ │ │ ├── QTCaptureDecompressedAudioOutput.m │ │ │ ├── QTCaptureDecompressedAudioOutputCallbackData.m │ │ │ ├── QTCaptureDecompressedAudioOutputInternal.m │ │ │ ├── QTCaptureDecompressedVideoOutput.m │ │ │ ├── QTCaptureDecompressedVideoOutputCallbackData.m │ │ │ ├── QTCaptureDecompressedVideoOutputInternal.m │ │ │ ├── QTCaptureDevice.m │ │ │ ├── QTCaptureDeviceInput.m │ │ │ ├── QTCaptureDeviceInputInternal.m │ │ │ ├── QTCaptureDeviceInternal.m │ │ │ ├── QTCaptureFileOutput.m │ │ │ ├── QTCaptureFileOutputInternal.m │ │ │ ├── QTCaptureFileOutputPauseOperationDescriptor.m │ │ │ ├── QTCaptureFileOutputRecordingOperationDescriptor.m │ │ │ ├── QTCaptureHALDevice.m │ │ │ ├── QTCaptureInput.m │ │ │ ├── QTCaptureLayer.m │ │ │ ├── QTCaptureLayerPrivate.m │ │ │ ├── QTCaptureMovieFileOutput.m │ │ │ ├── QTCaptureMovieFileOutputInternal.m │ │ │ ├── QTCaptureOperationDescriptorQueue.m │ │ │ ├── QTCaptureOperationDescriptorQueueItem.m │ │ │ ├── QTCaptureOutput.m │ │ │ ├── QTCaptureScreenInput.m │ │ │ ├── QTCaptureScreenInputInternal.m │ │ │ ├── QTCaptureSession.m │ │ │ ├── QTCaptureSessionInternal.m │ │ │ ├── QTCaptureSessionInternalState.m │ │ │ ├── QTCaptureVideoPreviewOutput.m │ │ │ ├── QTCaptureVideoPreviewOutputCallbackData.m │ │ │ ├── QTCaptureVideoPreviewOutputInternal.m │ │ │ ├── QTCaptureVideoPreviewRenderHelper.m │ │ │ ├── QTCaptureView.m │ │ │ ├── QTCaptureViewInternal.m │ │ │ ├── QTClassicMovieControllerView.m │ │ │ ├── QTClassicMovieControllerViewNeedsDisplayData.m │ │ │ ├── QTClosedCaptionLayer.m │ │ │ ├── QTClosedCaptionRenderer.m │ │ │ ├── QTCompressionOptions.m │ │ │ ├── QTCompressionOptionsInternal.m │ │ │ ├── QTConcreteGraphicsDevice.m │ │ │ ├── QTDataReference.m │ │ │ ├── QTDataReferenceEnumerator.m │ │ │ ├── QTDelegateController.m │ │ │ ├── QTDelegateListenerThreadData.m │ │ │ ├── QTExportOptions.m │ │ │ ├── QTExportOptionsInternal.m │ │ │ ├── QTExportSession.m │ │ │ ├── QTExportSessionInternal.m │ │ │ ├── QTFigTimeImageQueue.m │ │ │ ├── QTFigVisualContextImageProvider.m │ │ │ ├── QTFigVisualContextImageProviderInternal.m │ │ │ ├── QTFormatDescription.m │ │ │ ├── QTFormatDescriptionInternal.m │ │ │ ├── QTGarbageCollectedWeakReference.m │ │ │ ├── QTGraphicsDevice.m │ │ │ ├── QTHUDBackgroundView.m │ │ │ ├── QTHUDButton.m │ │ │ ├── QTHUDButtonCell.m │ │ │ ├── QTHUDContainerView.m │ │ │ ├── QTHUDDetentFunction.m │ │ │ ├── QTHUDGroupView.m │ │ │ ├── QTHUDGroupViewItem.m │ │ │ ├── QTHUDMediaTimelineRangeMarker.m │ │ │ ├── QTHUDMediaTimelineTrack.m │ │ │ ├── QTHUDMediaTimelineTrackPreview.m │ │ │ ├── QTHUDMediaTimelineTracksView.m │ │ │ ├── QTHUDMediaTimelineView.m │ │ │ ├── QTHUDPopUpButton.m │ │ │ ├── QTHUDPopUpButtonCell.m │ │ │ ├── QTHUDPopUpButtonCellButtonCell.m │ │ │ ├── QTHUDRemoteIndicatorView.m │ │ │ ├── QTHUDSlider.m │ │ │ ├── QTHUDSliderCell.m │ │ │ ├── QTHUDTimeFormatter.m │ │ │ ├── QTHUDTimeline.m │ │ │ ├── QTHUDTimelineCell.m │ │ │ ├── QTHUDTimerNonRetainedTarget.m │ │ │ ├── QTHotspot.m │ │ │ ├── QTHotspotEnumerator.m │ │ │ ├── QTIMAVManagerImageConsumer.m │ │ │ ├── QTImageBufferConformer.m │ │ │ ├── QTImageBufferQueue.m │ │ │ ├── QTImageConsumerFanOut.m │ │ │ ├── QTInvalidationSet.m │ │ │ ├── QTKeyValueProxy.m │ │ │ ├── QTKeyedArchiverDelegate.m │ │ │ ├── QTKit.m │ │ │ ├── QTKitMovieControllerView.m │ │ │ ├── QTKitServerController.m │ │ │ ├── QTLogRenderer.m │ │ │ ├── QTMachPortImageProvider.m │ │ │ ├── QTMachPortImageProviderData.m │ │ │ ├── QTMedia.m │ │ │ ├── QTMediaIOGraphNodeList.m │ │ │ ├── QTMediaIOGraphUnitDescription.m │ │ │ ├── QTMediaKeys.m │ │ │ ├── QTMetadataItem.m │ │ │ ├── QTMetadataItemInternal.m │ │ │ ├── QTMovie.m │ │ │ ├── QTMovieAttributeProps.m │ │ │ ├── QTMovieControllerView.m │ │ │ ├── QTMovieFigVisualContextRenderHelper.m │ │ │ ├── QTMovieGWorldRendererView.m │ │ │ ├── QTMovieGWorldRendererViewStubImageConsumer.m │ │ │ ├── QTMovieLayer.m │ │ │ ├── QTMovieLayerPrivate.m │ │ │ ├── QTMovieMachPortRenderHelper.m │ │ │ ├── QTMovieMediaHelper.m │ │ │ ├── QTMovieModernizer.m │ │ │ ├── QTMovieModernizerInternal.m │ │ │ ├── QTMovieModernizerLegacyMP3Track.m │ │ │ ├── QTMovieModernizerLegacyQTTrack.m │ │ │ ├── QTMovieModernizerLegacyQTTrackPassthrough.m │ │ │ ├── QTMovieModernizerPassthroughTrack.m │ │ │ ├── QTMovieModernizerTrack.m │ │ │ ├── QTMoviePlaybackController.m │ │ │ ├── QTMoviePlaybackControllerMovieProxy.m │ │ │ ├── QTMoviePlaybackControllerSelection.m │ │ │ ├── QTMoviePlaybackControllerTimeValue.m │ │ │ ├── QTMovieUndoOperation.m │ │ │ ├── QTMovieVideoProviderImageConsumer.m │ │ │ ├── QTMovieVideoProviderQuartzComposerOnly.m │ │ │ ├── QTMovieView.m │ │ │ ├── QTMovieViewCALayerRendererView.m │ │ │ ├── QTMovieViewCGContextRendererView.m │ │ │ ├── QTMovieViewDragHighlightOverlayView.m │ │ │ ├── QTMovieViewInternal.m │ │ │ ├── QTMovieViewSurfaceRendererView.m │ │ │ ├── QTMovie_AsyncLoadHelper.m │ │ │ ├── QTMovie_FigMedia.m │ │ │ ├── QTMovie_FigMedia_OccasionalCaller.m │ │ │ ├── QTMovie_FigMedia_TimelyCaller.m │ │ │ ├── QTMovie_QuickTime.m │ │ │ ├── QTMutableExportOptions.m │ │ │ ├── QTMutableMetadataItem.m │ │ │ ├── QTNode.m │ │ │ ├── QTNodeEnumerator.m │ │ │ ├── QTNotificationController.m │ │ │ ├── QTNotificationListenerThreadData.m │ │ │ ├── QTOpenGLContext.m │ │ │ ├── QTOpenGLTexture.m │ │ │ ├── QTOpenGLTextureCache.m │ │ │ ├── QTOpenGLTextureCacheTexture.m │ │ │ ├── QTOpenGLTextureCacheTextureTile.m │ │ │ ├── QTOpenGLTextureTile.m │ │ │ ├── QTPixelBufferConverter.m │ │ │ ├── QTRemoteCVImageBufferUnarchiver.m │ │ │ ├── QTResolvedDecompressionOptions.m │ │ │ ├── QTRetainReleaseWeakReference.m │ │ │ ├── QTRunLoopSchedulingSet.m │ │ │ ├── QTRunLoopSchedulingSetCallbackInfo.m │ │ │ ├── QTSampleBuffer.m │ │ │ ├── QTSampleBufferInternal.m │ │ │ ├── QTStream.m │ │ │ ├── QTStreamEnumerator.m │ │ │ ├── QTSubtitleLayer.m │ │ │ ├── QTSubtitleRenderer.m │ │ │ ├── QTSurfaceRenderer.m │ │ │ ├── QTSurfaceRendererAcceleratedTile.m │ │ │ ├── QTSurfaceRendererIntermediateDelegateRenderer.m │ │ │ ├── QTSurfaceRendererSoftwareTile.m │ │ │ ├── QTSurfaceRendererTile.m │ │ │ ├── QTSurfaceRendererTileDescription.m │ │ │ ├── QTSurfaceRendererView.m │ │ │ ├── QTTimeValue.m │ │ │ ├── QTTrack.m │ │ │ ├── QTTrackEnumerator.m │ │ │ ├── QTTrackHelper.m │ │ │ ├── QTTrack_FigMedia.m │ │ │ ├── QTTrack_QuickTime.m │ │ │ ├── QTUtilities.m │ │ │ ├── QTVideoCompressionOptions.m │ │ │ ├── QTVideoRendererWebKitOnly.m │ │ │ ├── QTWeakReference.m │ │ │ ├── StdMovieUIButton.m │ │ │ ├── StdMovieUIChapterPopup.m │ │ │ ├── StdMovieUIController.m │ │ │ ├── StdMovieUICustomMenuButton.m │ │ │ ├── StdMovieUIFastButton.m │ │ │ ├── StdMovieUIFastButtonCell.m │ │ │ ├── StdMovieUIPlayPauseButton.m │ │ │ ├── StdMovieUISlider.m │ │ │ ├── StdMovieUISliderCell.m │ │ │ ├── StdMovieUITextItem.m │ │ │ ├── StdMovieUIVolumeButton.m │ │ │ └── StdMovieUIVolumeSliderPopupView.m │ ├── Quartz │ │ ├── CMakeLists.txt │ │ ├── ImageKit │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── ImageKit │ │ │ │ │ ├── AVCaptureVideoDataOutputSampleBufferDelegate.h │ │ │ │ │ ├── CALayer+LayerExtra.h │ │ │ │ │ ├── CAShapeLayer+IKNImageView.h │ │ │ │ │ ├── CIColor+CIFilterUIViewCreationAddition.h │ │ │ │ │ ├── CIFilter+IKFilterUIAddition.h │ │ │ │ │ ├── CIFilterListProvider.h │ │ │ │ │ ├── CIImage+CIFilterUIViewCreationAddition.h │ │ │ │ │ ├── CIMutableVector.h │ │ │ │ │ ├── CIVector+CIFilterUIViewCreationAddition.h │ │ │ │ │ ├── CIVectorView.h │ │ │ │ │ ├── EncapsulatedTextValueTransformer.h │ │ │ │ │ ├── GPSTextFieldCell.h │ │ │ │ │ ├── HorizontalSlider.h │ │ │ │ │ ├── HorizontalSliderCell.h │ │ │ │ │ ├── ICCameraDeviceDelegate.h │ │ │ │ │ ├── ICCameraDeviceDownloadDelegate.h │ │ │ │ │ ├── ICCameraFile+IK.h │ │ │ │ │ ├── ICDevice+IKDeviceBrowserViewExtension.h │ │ │ │ │ ├── ICDeviceDelegate.h │ │ │ │ │ ├── IK2PartVertical.h │ │ │ │ │ ├── IK3PartHorizontal.h │ │ │ │ │ ├── IKAccessoryView.h │ │ │ │ │ ├── IKAccessoryViewController.h │ │ │ │ │ ├── IKAdjustSlider.h │ │ │ │ │ ├── IKAnimationData.h │ │ │ │ │ ├── IKAnimationGroup.h │ │ │ │ │ ├── IKAnimationManager.h │ │ │ │ │ ├── IKAnnotation.h │ │ │ │ │ ├── IKAnnotationLayer.h │ │ │ │ │ ├── IKAnnotationPanel.h │ │ │ │ │ ├── IKAppKitTextDriver.h │ │ │ │ │ ├── IKArrowAnnotation.h │ │ │ │ │ ├── IKAutoDetection.h │ │ │ │ │ ├── IKAutodetectedItem.h │ │ │ │ │ ├── IKAutolayoutImageView.h │ │ │ │ │ ├── IKBookletCell.h │ │ │ │ │ ├── IKBookletPlasticCover.h │ │ │ │ │ ├── IKBorderedView.h │ │ │ │ │ ├── IKBox.h │ │ │ │ │ ├── IKCGRenderer.h │ │ │ │ │ ├── IKCIFilterCorrection.h │ │ │ │ │ ├── IKCacheContext.h │ │ │ │ │ ├── IKCacheData.h │ │ │ │ │ ├── IKCacheDatabase.h │ │ │ │ │ ├── IKCacheDatabaseEntry.h │ │ │ │ │ ├── IKCacheDatabaseUIDInfo.h │ │ │ │ │ ├── IKCacheFragHandler.h │ │ │ │ │ ├── IKCacheFragHandlerView.h │ │ │ │ │ ├── IKCacheFragHandler_Hole.h │ │ │ │ │ ├── IKCacheManager.h │ │ │ │ │ ├── IKCacheManagerRegistry.h │ │ │ │ │ ├── IKCacheNode.h │ │ │ │ │ ├── IKCacheRamNode.h │ │ │ │ │ ├── IKCacheTimeOutLauncher.h │ │ │ │ │ ├── IKCacheVRamNode.h │ │ │ │ │ ├── IKCameraBackgroundView.h │ │ │ │ │ ├── IKCameraCollectionViewItem.h │ │ │ │ │ ├── IKCameraDeviceView.h │ │ │ │ │ ├── IKCameraDeviceViewHandler.h │ │ │ │ │ ├── IKCameraDeviceViewHandlerIB.h │ │ │ │ │ ├── IKCameraDownloader.h │ │ │ │ │ ├── IKCameraDownloaderDelegate.h │ │ │ │ │ ├── IKCameraFolderWatcher.h │ │ │ │ │ ├── IKCameraIconCellView.h │ │ │ │ │ ├── IKCameraItem.h │ │ │ │ │ ├── IKCameraServices.h │ │ │ │ │ ├── IKCameraTableView.h │ │ │ │ │ ├── IKCenteredLayer.h │ │ │ │ │ ├── IKCenteringClipView.h │ │ │ │ │ ├── IKCircleAnnotation.h │ │ │ │ │ ├── IKCircleSelection.h │ │ │ │ │ ├── IKCollageCell.h │ │ │ │ │ ├── IKColor.h │ │ │ │ │ ├── IKColorValueTransformer.h │ │ │ │ │ ├── IKColorView.h │ │ │ │ │ ├── IKComposer.h │ │ │ │ │ ├── IKCropLayer.h │ │ │ │ │ ├── IKCropRectSelection.h │ │ │ │ │ ├── IKCustomPathPopupButton.h │ │ │ │ │ ├── IKDVGrabber.h │ │ │ │ │ ├── IKDatasourceDiff.h │ │ │ │ │ ├── IKDatasourceDiffResult.h │ │ │ │ │ ├── IKDatasourceProxy.h │ │ │ │ │ ├── IKDeviceBrowserDataView.h │ │ │ │ │ ├── IKDeviceBrowserHandler.h │ │ │ │ │ ├── IKDeviceBrowserHandlerIB.h │ │ │ │ │ ├── IKDeviceBrowserHeaderView.h │ │ │ │ │ ├── IKDeviceBrowserOutlineView.h │ │ │ │ │ ├── IKDeviceBrowserView.h │ │ │ │ │ ├── IKDeviceItem.h │ │ │ │ │ ├── IKDrawing.h │ │ │ │ │ ├── IKEmbeddedImageEditToolbar.h │ │ │ │ │ ├── IKEmbeddedImageView.h │ │ │ │ │ ├── IKFSEvent.h │ │ │ │ │ ├── IKFilterBrowserPanel.h │ │ │ │ │ ├── IKFilterBrowserView.h │ │ │ │ │ ├── IKFilterChain.h │ │ │ │ │ ├── IKFilterPreviewView.h │ │ │ │ │ ├── IKFilterUIView.h │ │ │ │ │ ├── IKFinderCell.h │ │ │ │ │ ├── IKFinderReflectiveIconCell.h │ │ │ │ │ ├── IKFinderStackIconCell.h │ │ │ │ │ ├── IKFlippedView.h │ │ │ │ │ ├── IKFlockingDatasourceItem.h │ │ │ │ │ ├── IKGLLayer.h │ │ │ │ │ ├── IKGLScroller.h │ │ │ │ │ ├── IKGLSharedContextRegistry.h │ │ │ │ │ ├── IKGLTextCache.h │ │ │ │ │ ├── IKGLTextCacheFragHandler.h │ │ │ │ │ ├── IKGLTextGenerator.h │ │ │ │ │ ├── IKGLTextInfo.h │ │ │ │ │ ├── IKGLTextRenderer.h │ │ │ │ │ ├── IKGLTextSizeCache.h │ │ │ │ │ ├── IKGLTextSubpixelShader.h │ │ │ │ │ ├── IKGradientHorizontalSeparatorGrooved.h │ │ │ │ │ ├── IKGradientHorizontalSeparatorTapered.h │ │ │ │ │ ├── IKGradientImageButton.h │ │ │ │ │ ├── IKGradientImageButtonCell.h │ │ │ │ │ ├── IKGraySlider.h │ │ │ │ │ ├── IKGraySliderCell.h │ │ │ │ │ ├── IKGuidesLayer.h │ │ │ │ │ ├── IKHardwareCapsChangeNotifier.h │ │ │ │ │ ├── IKHierarchicalDatasourceAdaptor.h │ │ │ │ │ ├── IKICInfoHandler.h │ │ │ │ │ ├── IKIMGPreviewCell.h │ │ │ │ │ ├── IKIconCell.h │ │ │ │ │ ├── IKIconDatabase.h │ │ │ │ │ ├── IKImageAdjust.h │ │ │ │ │ ├── IKImageAdjustSlider.h │ │ │ │ │ ├── IKImageAdjustSliderCell.h │ │ │ │ │ ├── IKImageAdjustView.h │ │ │ │ │ ├── IKImageAnalysisManager.h │ │ │ │ │ ├── IKImageBackgroundLayer.h │ │ │ │ │ ├── IKImageBackgroundThumbnailMaskLayer.h │ │ │ │ │ ├── IKImageBannerView.h │ │ │ │ │ ├── IKImageBlockLayer.h │ │ │ │ │ ├── IKImageBrowserAccessibilityCell.h │ │ │ │ │ ├── IKImageBrowserAppearAnimation.h │ │ │ │ │ ├── IKImageBrowserBookletGrid.h │ │ │ │ │ ├── IKImageBrowserCell.h │ │ │ │ │ ├── IKImageBrowserCellOffscreenRenderer.h │ │ │ │ │ ├── IKImageBrowserCoverFlowGrid.h │ │ │ │ │ ├── IKImageBrowserCoverFlowIntertiaAnimation.h │ │ │ │ │ ├── IKImageBrowserCoverFlowScrollingAnimation.h │ │ │ │ │ ├── IKImageBrowserDisappearAnimation.h │ │ │ │ │ ├── IKImageBrowserExpandCollapseGroupAnimation.h │ │ │ │ │ ├── IKImageBrowserExpandCollapseItemsAnimation.h │ │ │ │ │ ├── IKImageBrowserExpandCollapseiOSGroupAnimation.h │ │ │ │ │ ├── IKImageBrowserFloatingGroupGrid.h │ │ │ │ │ ├── IKImageBrowserFreeFormLayout.h │ │ │ │ │ ├── IKImageBrowserFreezeAnimation.h │ │ │ │ │ ├── IKImageBrowserGenieEffectManager.h │ │ │ │ │ ├── IKImageBrowserGenieView.h │ │ │ │ │ ├── IKImageBrowserGenieWindow.h │ │ │ │ │ ├── IKImageBrowserGrid.h │ │ │ │ │ ├── IKImageBrowserGridGroup.h │ │ │ │ │ ├── IKImageBrowserImportAnimation.h │ │ │ │ │ ├── IKImageBrowserLayoutManager.h │ │ │ │ │ ├── IKImageBrowserMagnifying.h │ │ │ │ │ ├── IKImageBrowserReorderAnimation.h │ │ │ │ │ ├── IKImageBrowserScrollAnimation.h │ │ │ │ │ ├── IKImageBrowserSubsetLayoutManager.h │ │ │ │ │ ├── IKImageBrowserVMScheduler.h │ │ │ │ │ ├── IKImageBrowserView.h │ │ │ │ │ ├── IKImageBrowseriOSGroupDimCellsAnimation.h │ │ │ │ │ ├── IKImageBrowseriOSGroupGrid.h │ │ │ │ │ ├── IKImageBrowseriOSGroupHighlightCellAnimation.h │ │ │ │ │ ├── IKImageCell.h │ │ │ │ │ ├── IKImageCellDatasourceProxy.h │ │ │ │ │ ├── IKImageCellReservedIvars.h │ │ │ │ │ ├── IKImageCellTrackingViewDatasourceProxy.h │ │ │ │ │ ├── IKImageClipView.h │ │ │ │ │ ├── IKImageContentView.h │ │ │ │ │ ├── IKImageCorrection.h │ │ │ │ │ ├── IKImageCorrectionHandler.h │ │ │ │ │ ├── IKImageCropPRS.h │ │ │ │ │ ├── IKImageCropView.h │ │ │ │ │ ├── IKImageCropViewEffect.h │ │ │ │ │ ├── IKImageCropViewSlider.h │ │ │ │ │ ├── IKImageEditDSHandler.h │ │ │ │ │ ├── IKImageEditFrame.h │ │ │ │ │ ├── IKImageEditFrameToolbar.h │ │ │ │ │ ├── IKImageEditPanel.h │ │ │ │ │ ├── IKImageEditPanelButton.h │ │ │ │ │ ├── IKImageEditPanelController.h │ │ │ │ │ ├── IKImageEditPanelPrivateData.h │ │ │ │ │ ├── IKImageEditView.h │ │ │ │ │ ├── IKImageEditWorldMap.h │ │ │ │ │ ├── IKImageEditWorldMapOld.h │ │ │ │ │ ├── IKImageEffects.h │ │ │ │ │ ├── IKImageEffectsView.h │ │ │ │ │ ├── IKImageFlowAccessibilityCell.h │ │ │ │ │ ├── IKImageFlowAccessibilityList.h │ │ │ │ │ ├── IKImageFlowAppearAnimation.h │ │ │ │ │ ├── IKImageFlowCell.h │ │ │ │ │ ├── IKImageFlowDisappearAnimation.h │ │ │ │ │ ├── IKImageFlowFlipAnimation.h │ │ │ │ │ ├── IKImageFlowImportAnimation.h │ │ │ │ │ ├── IKImageFlowScrollingAnimation.h │ │ │ │ │ ├── IKImageFlowView.h │ │ │ │ │ ├── IKImageGizmo.h │ │ │ │ │ ├── IKImageGridItem.h │ │ │ │ │ ├── IKImageHistogram.h │ │ │ │ │ ├── IKImageInfo.h │ │ │ │ │ ├── IKImageInfoView.h │ │ │ │ │ ├── IKImageLayer.h │ │ │ │ │ ├── IKImagePasteboardLayer.h │ │ │ │ │ ├── IKImagePicker.h │ │ │ │ │ ├── IKImageProxy.h │ │ │ │ │ ├── IKImageRenderInfo.h │ │ │ │ │ ├── IKImageState.h │ │ │ │ │ ├── IKImageTextureRange.h │ │ │ │ │ ├── IKImageView.h │ │ │ │ │ ├── IKImageView2.h │ │ │ │ │ ├── IKImageView2ScrollView.h │ │ │ │ │ ├── IKImageViewLayerQueue.h │ │ │ │ │ ├── IKImageViewPrivateData.h │ │ │ │ │ ├── IKImageViewUtils.h │ │ │ │ │ ├── IKImageWrapper.h │ │ │ │ │ ├── IKImageWrapperAnimatedGifCache.h │ │ │ │ │ ├── IKInfoTabView.h │ │ │ │ │ ├── IKInterfaceBuilderImage.h │ │ │ │ │ ├── IKInterfaceBuilderSharedDatasource.h │ │ │ │ │ ├── IKInterfaceBuilderSharedDelegate.h │ │ │ │ │ ├── IKIrisListener.h │ │ │ │ │ ├── IKKnob.h │ │ │ │ │ ├── IKKnobLayer.h │ │ │ │ │ ├── IKLassoSelection.h │ │ │ │ │ ├── IKLayerRenderer.h │ │ │ │ │ ├── IKLinkedList.h │ │ │ │ │ ├── IKLinkedListLink.h │ │ │ │ │ ├── IKLinkedListLinkProtocol.h │ │ │ │ │ ├── IKLinkedListNode.h │ │ │ │ │ ├── IKLinkedListNodePool.h │ │ │ │ │ ├── IKMediaPlugin.h │ │ │ │ │ ├── IKMetadataHandler.h │ │ │ │ │ ├── IKMipmapImage.h │ │ │ │ │ ├── IKMipmapItem.h │ │ │ │ │ ├── IKMonitorBrightnessController.h │ │ │ │ │ ├── IKMultipleSegmentedRawDataBuffer.h │ │ │ │ │ ├── IKNAnnotation.h │ │ │ │ │ ├── IKNCustomLayer.h │ │ │ │ │ ├── IKNImageLayer.h │ │ │ │ │ ├── IKNImageView.h │ │ │ │ │ ├── IKNImageViewHandler.h │ │ │ │ │ ├── IKNKnobsLayer.h │ │ │ │ │ ├── IKNProgressLayer.h │ │ │ │ │ ├── IKNRootLayer.h │ │ │ │ │ ├── IKNSelection.h │ │ │ │ │ ├── IKNStatusRoot.h │ │ │ │ │ ├── IKNStatusView.h │ │ │ │ │ ├── IKNStatusView2.h │ │ │ │ │ ├── IKNavigationImageLayer.h │ │ │ │ │ ├── IKNavigationLayer.h │ │ │ │ │ ├── IKNavigationRectLayer.h │ │ │ │ │ ├── IKNoActionShapeLayer.h │ │ │ │ │ ├── IKOpenGLRenderer.h │ │ │ │ │ ├── IKOpenGLRoundedRectRenderer.h │ │ │ │ │ ├── IKOpenGLRoundedRectRendererCache.h │ │ │ │ │ ├── IKPBNotePlayer.h │ │ │ │ │ ├── IKPPFloatingWindow.h │ │ │ │ │ ├── IKPPFloatingWindowAnimation.h │ │ │ │ │ ├── IKPTArrowButton.h │ │ │ │ │ ├── IKPTBackgroundWindow.h │ │ │ │ │ ├── IKPTBorderView.h │ │ │ │ │ ├── IKPTCenteredTextLayer.h │ │ │ │ │ ├── IKPTContentViewController.h │ │ │ │ │ ├── IKPTCountdownView.h │ │ │ │ │ ├── IKPTCropView.h │ │ │ │ │ ├── IKPTEditorController.h │ │ │ │ │ ├── IKPTEffectsController.h │ │ │ │ │ ├── IKPTFxButton.h │ │ │ │ │ ├── IKPTGridMaskLayer.h │ │ │ │ │ ├── IKPTImageGridCell.h │ │ │ │ │ ├── IKPTImageGridView.h │ │ │ │ │ ├── IKPTImageViewForAnimation.h │ │ │ │ │ ├── IKPTImporterController.h │ │ │ │ │ ├── IKPTRecentsService.h │ │ │ │ │ ├── IKPTRoundedButton.h │ │ │ │ │ ├── IKPTRoundedButtonCell.h │ │ │ │ │ ├── IKPTSidebar.h │ │ │ │ │ ├── IKPTSidebarRowView.h │ │ │ │ │ ├── IKPTSlider.h │ │ │ │ │ ├── IKPTSliderCell.h │ │ │ │ │ ├── IKPTSquareButton.h │ │ │ │ │ ├── IKPTSquareButtonCell.h │ │ │ │ │ ├── IKPTTitleCell.h │ │ │ │ │ ├── IKPastedImage.h │ │ │ │ │ ├── IKPathPopupButton.h │ │ │ │ │ ├── IKPathToCIImageValueTransformer.h │ │ │ │ │ ├── IKPictureTaker.h │ │ │ │ │ ├── IKPictureTakerController.h │ │ │ │ │ ├── IKPictureTakerInterface.h │ │ │ │ │ ├── IKPictureTakerNibInterface.h │ │ │ │ │ ├── IKPictureTakerRecentPicture.h │ │ │ │ │ ├── IKPictureTakerRecentPictureRepository.h │ │ │ │ │ ├── IKPictureTakerRecentsManager.h │ │ │ │ │ ├── IKPictureTakerView.h │ │ │ │ │ ├── IKPlaceholderItem.h │ │ │ │ │ ├── IKPlaceholderLayer.h │ │ │ │ │ ├── IKProKitCell.h │ │ │ │ │ ├── IKProfilePictureAttributedImage.h │ │ │ │ │ ├── IKProfilePictureRolloverLayer.h │ │ │ │ │ ├── IKProfilePictureView.h │ │ │ │ │ ├── IKRadianToDegreeValueTransformer.h │ │ │ │ │ ├── IKRamManager.h │ │ │ │ │ ├── IKRamManagerDelegateProtocol.h │ │ │ │ │ ├── IKRangeFormatter.h │ │ │ │ │ ├── IKRecentPicturesButtonDelegate.h │ │ │ │ │ ├── IKRectAnnotation.h │ │ │ │ │ ├── IKRectSelection.h │ │ │ │ │ ├── IKRectSelectionImageCapture.h │ │ │ │ │ ├── IKRectanglePacker.h │ │ │ │ │ ├── IKReflectionCell.h │ │ │ │ │ ├── IKReflectiveIconCell.h │ │ │ │ │ ├── IKRenderer.h │ │ │ │ │ ├── IKRootLayer.h │ │ │ │ │ ├── IKRootLayout.h │ │ │ │ │ ├── IKRotationLayer.h │ │ │ │ │ ├── IKSFCropElement.h │ │ │ │ │ ├── IKSFEffectDescription.h │ │ │ │ │ ├── IKSFElement.h │ │ │ │ │ ├── IKSSBackgroundImageView.h │ │ │ │ │ ├── IKSSBackgroundWindow.h │ │ │ │ │ ├── IKSSButton.h │ │ │ │ │ ├── IKSSContentLayer.h │ │ │ │ │ ├── IKSSEventLessLayer.h │ │ │ │ │ ├── IKSSGradientLayer.h │ │ │ │ │ ├── IKSSImageView.h │ │ │ │ │ ├── IKSSIndexHandler.h │ │ │ │ │ ├── IKSSIndexSheetSelectionLayer.h │ │ │ │ │ ├── IKSSIndexSheetTextLayer.h │ │ │ │ │ ├── IKSSIndexView.h │ │ │ │ │ ├── IKSSPDFView.h │ │ │ │ │ ├── IKSSPanel.h │ │ │ │ │ ├── IKSSThumbnailLayer.h │ │ │ │ │ ├── IKSSToolTip.h │ │ │ │ │ ├── IKSSToolTipView.h │ │ │ │ │ ├── IKSaveOptions.h │ │ │ │ │ ├── IKSaveOptionsHandler.h │ │ │ │ │ ├── IKScan.h │ │ │ │ │ ├── IKScanArea.h │ │ │ │ │ ├── IKScanInfo.h │ │ │ │ │ ├── IKScanResult.h │ │ │ │ │ ├── IKScanResultsHandler.h │ │ │ │ │ ├── IKScanResultsTextCellView.h │ │ │ │ │ ├── IKScanUIController.h │ │ │ │ │ ├── IKScanUIControllerAdvanced.h │ │ │ │ │ ├── IKScanUIControllerSimple.h │ │ │ │ │ ├── IKScanUIViewAdvanced.h │ │ │ │ │ ├── IKScanUIViewSimple.h │ │ │ │ │ ├── IKScannerDeviceView.h │ │ │ │ │ ├── IKScannerDeviceViewHandler.h │ │ │ │ │ ├── IKScannerDeviceViewHandlerIB.h │ │ │ │ │ ├── IKScannerNoDeviceView.h │ │ │ │ │ ├── IKScannerParameterView.h │ │ │ │ │ ├── IKScannerPreviewAdvanced.h │ │ │ │ │ ├── IKScannerPreviewSimple.h │ │ │ │ │ ├── IKScannerSelfTest.h │ │ │ │ │ ├── IKSegmentedRawDataBuffer.h │ │ │ │ │ ├── IKSelection.h │ │ │ │ │ ├── IKSelectionLayer.h │ │ │ │ │ ├── IKSelfTestHandler.h │ │ │ │ │ ├── IKShadowTool.h │ │ │ │ │ ├── IKSingleImageEffect.h │ │ │ │ │ ├── IKSlider.h │ │ │ │ │ ├── IKSliderCell.h │ │ │ │ │ ├── IKSlideshow.h │ │ │ │ │ ├── IKSlideshowAudioPlayer.h │ │ │ │ │ ├── IKSlideshowDataSourceHandler.h │ │ │ │ │ ├── IKSlideshowDebugItem.h │ │ │ │ │ ├── IKSlideshowDebugger.h │ │ │ │ │ ├── IKSlideshowElement.h │ │ │ │ │ ├── IKSlideshowExporter.h │ │ │ │ │ ├── IKSlideshowHandler.h │ │ │ │ │ ├── IKSlideshowImage.h │ │ │ │ │ ├── IKSlideshowItemLoadOperation.h │ │ │ │ │ ├── IKSlideshowItemLoadThumbnailOperation.h │ │ │ │ │ ├── IKSlideshowPDF.h │ │ │ │ │ ├── IKSlideshowQL.h │ │ │ │ │ ├── IKSpacerButton.h │ │ │ │ │ ├── IKSpinnerLayer.h │ │ │ │ │ ├── IKStatusLayer.h │ │ │ │ │ ├── IKSyncTaskBag.h │ │ │ │ │ ├── IKSyncTaskBagItem.h │ │ │ │ │ ├── IKTabView.h │ │ │ │ │ ├── IKTaskAsyncOperation.h │ │ │ │ │ ├── IKTaskManager.h │ │ │ │ │ ├── IKTempDirectoryHandler.h │ │ │ │ │ ├── IKTemperatureCorrection.h │ │ │ │ │ ├── IKTemplateLayer.h │ │ │ │ │ ├── IKTextAnnotation.h │ │ │ │ │ ├── IKTextDriver.h │ │ │ │ │ ├── IKTextField.h │ │ │ │ │ ├── IKTextFieldContentView.h │ │ │ │ │ ├── IKTextFieldWindow.h │ │ │ │ │ ├── IKTexturePacker.h │ │ │ │ │ ├── IKTexturePackerItem.h │ │ │ │ │ ├── IKTexturePackerView.h │ │ │ │ │ ├── IKTheme.h │ │ │ │ │ ├── IKThresholdCorrection.h │ │ │ │ │ ├── IKThumbnailBuilder.h │ │ │ │ │ ├── IKThumbnailBuilderQueue.h │ │ │ │ │ ├── IKThumbnailOperation.h │ │ │ │ │ ├── IKTintCorrection.h │ │ │ │ │ ├── IKTransitionAnimation.h │ │ │ │ │ ├── IKUIHelper.h │ │ │ │ │ ├── IKVImageCorrection.h │ │ │ │ │ ├── IKVRamManager.h │ │ │ │ │ ├── IKVRamManagerDelegateProtocol.h │ │ │ │ │ ├── IKViewController.h │ │ │ │ │ ├── IKWindowEffect.h │ │ │ │ │ ├── IKWindowTransitionAnimation.h │ │ │ │ │ ├── IKiOSStyleGroupCell.h │ │ │ │ │ ├── ImageKit.h │ │ │ │ │ ├── MKAnnotation.h │ │ │ │ │ ├── MTKViewDelegate.h │ │ │ │ │ ├── NSAffineTransform+CIFilterUIViewCreationAddition.h │ │ │ │ │ ├── NSAffineTransformView.h │ │ │ │ │ ├── NSAnimationDelegate.h │ │ │ │ │ ├── NSArray+IKPictureTakerAdditions.h │ │ │ │ │ ├── NSAttributedString+IKEditingExtensions.h │ │ │ │ │ ├── NSBezierPath+IKAddition.h │ │ │ │ │ ├── NSBitmapImageRep+ik_cgexamples.h │ │ │ │ │ ├── NSButton+IKScanButton.h │ │ │ │ │ ├── NSCollectionView+IK.h │ │ │ │ │ ├── NSCollectionViewDataSource.h │ │ │ │ │ ├── NSCollectionViewDelegate.h │ │ │ │ │ ├── NSCollectionViewDelegateFlowLayout.h │ │ │ │ │ ├── NSColor+IKAdditions.h │ │ │ │ │ ├── NSComboBoxDelegate.h │ │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ │ ├── NSDraggingSource.h │ │ │ │ │ ├── NSFileManager+IKPictureTakerAdditions.h │ │ │ │ │ ├── NSFont+IKCommonFonts.h │ │ │ │ │ ├── NSGraphicsContext+IKScan.h │ │ │ │ │ ├── NSImage+IKAdditions.h │ │ │ │ │ ├── NSImageRep+IKAdditions.h │ │ │ │ │ ├── NSImageView+IC.h │ │ │ │ │ ├── NSMenu+FileFormat.h │ │ │ │ │ ├── NSMenuDelegate.h │ │ │ │ │ ├── NSMenuItemValidation.h │ │ │ │ │ ├── NSMutableAffineTransform.h │ │ │ │ │ ├── NSNumber+CIFilterUIViewCreationAddition.h │ │ │ │ │ ├── NSObject+IKInterThread.h │ │ │ │ │ ├── NSPopUpButton+IKSO.h │ │ │ │ │ ├── NSPopoverDelegate.h │ │ │ │ │ ├── NSScroller+IKImageBrowserAdditions.h │ │ │ │ │ ├── NSString+IKCocoaFixes.h │ │ │ │ │ ├── NSTableViewDataSource.h │ │ │ │ │ ├── NSTableViewDelegate.h │ │ │ │ │ ├── NSTextFieldDelegate.h │ │ │ │ │ ├── NSTreeNode+IK.h │ │ │ │ │ ├── NSUserInterfaceItemIdentification.h │ │ │ │ │ ├── NSView+DelayedHide.h │ │ │ │ │ ├── NSWindow+IKPictureTakerAdditions.h │ │ │ │ │ ├── NSWindowDelegate.h │ │ │ │ │ ├── QLPreviewItem.h │ │ │ │ │ ├── VKCImageAnalysisOverlayViewDelegate.h │ │ │ │ │ ├── _IKIRLMainProxy.h │ │ │ │ │ ├── _IKTypeSelectData.h │ │ │ │ │ └── _IKiOSStyleGroupCell.h │ │ │ └── src │ │ │ │ ├── CALayer+LayerExtra.m │ │ │ │ ├── CAShapeLayer+IKNImageView.m │ │ │ │ ├── CIColor+CIFilterUIViewCreationAddition.m │ │ │ │ ├── CIFilter+IKFilterUIAddition.m │ │ │ │ ├── CIFilterListProvider.m │ │ │ │ ├── CIImage+CIFilterUIViewCreationAddition.m │ │ │ │ ├── CIMutableVector.m │ │ │ │ ├── CIVector+CIFilterUIViewCreationAddition.m │ │ │ │ ├── CIVectorView.m │ │ │ │ ├── EncapsulatedTextValueTransformer.m │ │ │ │ ├── GPSTextFieldCell.m │ │ │ │ ├── HorizontalSlider.m │ │ │ │ ├── HorizontalSliderCell.m │ │ │ │ ├── ICCameraFile+IK.m │ │ │ │ ├── ICDevice+IKDeviceBrowserViewExtension.m │ │ │ │ ├── IK2PartVertical.m │ │ │ │ ├── IK3PartHorizontal.m │ │ │ │ ├── IKAccessoryView.m │ │ │ │ ├── IKAccessoryViewController.m │ │ │ │ ├── IKAdjustSlider.m │ │ │ │ ├── IKAnimationData.m │ │ │ │ ├── IKAnimationGroup.m │ │ │ │ ├── IKAnimationManager.m │ │ │ │ ├── IKAnnotation.m │ │ │ │ ├── IKAnnotationLayer.m │ │ │ │ ├── IKAnnotationPanel.m │ │ │ │ ├── IKAppKitTextDriver.m │ │ │ │ ├── IKArrowAnnotation.m │ │ │ │ ├── IKAutoDetection.m │ │ │ │ ├── IKAutodetectedItem.m │ │ │ │ ├── IKAutolayoutImageView.m │ │ │ │ ├── IKBookletCell.m │ │ │ │ ├── IKBookletPlasticCover.m │ │ │ │ ├── IKBorderedView.m │ │ │ │ ├── IKBox.m │ │ │ │ ├── IKCGRenderer.m │ │ │ │ ├── IKCIFilterCorrection.m │ │ │ │ ├── IKCacheContext.m │ │ │ │ ├── IKCacheData.m │ │ │ │ ├── IKCacheDatabase.m │ │ │ │ ├── IKCacheDatabaseEntry.m │ │ │ │ ├── IKCacheDatabaseUIDInfo.m │ │ │ │ ├── IKCacheFragHandler.m │ │ │ │ ├── IKCacheFragHandlerView.m │ │ │ │ ├── IKCacheFragHandler_Hole.m │ │ │ │ ├── IKCacheManager.m │ │ │ │ ├── IKCacheManagerRegistry.m │ │ │ │ ├── IKCacheNode.m │ │ │ │ ├── IKCacheRamNode.m │ │ │ │ ├── IKCacheTimeOutLauncher.m │ │ │ │ ├── IKCacheVRamNode.m │ │ │ │ ├── IKCameraBackgroundView.m │ │ │ │ ├── IKCameraCollectionViewItem.m │ │ │ │ ├── IKCameraDeviceView.m │ │ │ │ ├── IKCameraDeviceViewHandler.m │ │ │ │ ├── IKCameraDeviceViewHandlerIB.m │ │ │ │ ├── IKCameraDownloader.m │ │ │ │ ├── IKCameraFolderWatcher.m │ │ │ │ ├── IKCameraIconCellView.m │ │ │ │ ├── IKCameraItem.m │ │ │ │ ├── IKCameraServices.m │ │ │ │ ├── IKCameraTableView.m │ │ │ │ ├── IKCenteredLayer.m │ │ │ │ ├── IKCenteringClipView.m │ │ │ │ ├── IKCircleAnnotation.m │ │ │ │ ├── IKCircleSelection.m │ │ │ │ ├── IKCollageCell.m │ │ │ │ ├── IKColor.m │ │ │ │ ├── IKColorValueTransformer.m │ │ │ │ ├── IKColorView.m │ │ │ │ ├── IKComposer.m │ │ │ │ ├── IKCropLayer.m │ │ │ │ ├── IKCropRectSelection.m │ │ │ │ ├── IKCustomPathPopupButton.m │ │ │ │ ├── IKDVGrabber.m │ │ │ │ ├── IKDatasourceDiff.m │ │ │ │ ├── IKDatasourceDiffResult.m │ │ │ │ ├── IKDatasourceProxy.m │ │ │ │ ├── IKDeviceBrowserDataView.m │ │ │ │ ├── IKDeviceBrowserHandler.m │ │ │ │ ├── IKDeviceBrowserHandlerIB.m │ │ │ │ ├── IKDeviceBrowserHeaderView.m │ │ │ │ ├── IKDeviceBrowserOutlineView.m │ │ │ │ ├── IKDeviceBrowserView.m │ │ │ │ ├── IKDeviceItem.m │ │ │ │ ├── IKDrawing.m │ │ │ │ ├── IKEmbeddedImageEditToolbar.m │ │ │ │ ├── IKEmbeddedImageView.m │ │ │ │ ├── IKFSEvent.m │ │ │ │ ├── IKFilterBrowserPanel.m │ │ │ │ ├── IKFilterBrowserView.m │ │ │ │ ├── IKFilterChain.m │ │ │ │ ├── IKFilterPreviewView.m │ │ │ │ ├── IKFilterUIView.m │ │ │ │ ├── IKFinderCell.m │ │ │ │ ├── IKFinderReflectiveIconCell.m │ │ │ │ ├── IKFinderStackIconCell.m │ │ │ │ ├── IKFlippedView.m │ │ │ │ ├── IKFlockingDatasourceItem.m │ │ │ │ ├── IKGLLayer.m │ │ │ │ ├── IKGLScroller.m │ │ │ │ ├── IKGLSharedContextRegistry.m │ │ │ │ ├── IKGLTextCache.m │ │ │ │ ├── IKGLTextCacheFragHandler.m │ │ │ │ ├── IKGLTextGenerator.m │ │ │ │ ├── IKGLTextInfo.m │ │ │ │ ├── IKGLTextRenderer.m │ │ │ │ ├── IKGLTextSizeCache.m │ │ │ │ ├── IKGLTextSubpixelShader.m │ │ │ │ ├── IKGradientHorizontalSeparatorGrooved.m │ │ │ │ ├── IKGradientHorizontalSeparatorTapered.m │ │ │ │ ├── IKGradientImageButton.m │ │ │ │ ├── IKGradientImageButtonCell.m │ │ │ │ ├── IKGraySlider.m │ │ │ │ ├── IKGraySliderCell.m │ │ │ │ ├── IKGuidesLayer.m │ │ │ │ ├── IKHardwareCapsChangeNotifier.m │ │ │ │ ├── IKHierarchicalDatasourceAdaptor.m │ │ │ │ ├── IKICInfoHandler.m │ │ │ │ ├── IKIMGPreviewCell.m │ │ │ │ ├── IKIconCell.m │ │ │ │ ├── IKIconDatabase.m │ │ │ │ ├── IKImageAdjust.m │ │ │ │ ├── IKImageAdjustSlider.m │ │ │ │ ├── IKImageAdjustSliderCell.m │ │ │ │ ├── IKImageAdjustView.m │ │ │ │ ├── IKImageAnalysisManager.m │ │ │ │ ├── IKImageBackgroundLayer.m │ │ │ │ ├── IKImageBackgroundThumbnailMaskLayer.m │ │ │ │ ├── IKImageBannerView.m │ │ │ │ ├── IKImageBlockLayer.m │ │ │ │ ├── IKImageBrowserAccessibilityCell.m │ │ │ │ ├── IKImageBrowserAppearAnimation.m │ │ │ │ ├── IKImageBrowserBookletGrid.m │ │ │ │ ├── IKImageBrowserCell.m │ │ │ │ ├── IKImageBrowserCellOffscreenRenderer.m │ │ │ │ ├── IKImageBrowserCoverFlowGrid.m │ │ │ │ ├── IKImageBrowserCoverFlowIntertiaAnimation.m │ │ │ │ ├── IKImageBrowserCoverFlowScrollingAnimation.m │ │ │ │ ├── IKImageBrowserDisappearAnimation.m │ │ │ │ ├── IKImageBrowserExpandCollapseGroupAnimation.m │ │ │ │ ├── IKImageBrowserExpandCollapseItemsAnimation.m │ │ │ │ ├── IKImageBrowserExpandCollapseiOSGroupAnimation.m │ │ │ │ ├── IKImageBrowserFloatingGroupGrid.m │ │ │ │ ├── IKImageBrowserFreeFormLayout.m │ │ │ │ ├── IKImageBrowserFreezeAnimation.m │ │ │ │ ├── IKImageBrowserGenieEffectManager.m │ │ │ │ ├── IKImageBrowserGenieView.m │ │ │ │ ├── IKImageBrowserGenieWindow.m │ │ │ │ ├── IKImageBrowserGrid.m │ │ │ │ ├── IKImageBrowserGridGroup.m │ │ │ │ ├── IKImageBrowserImportAnimation.m │ │ │ │ ├── IKImageBrowserLayoutManager.m │ │ │ │ ├── IKImageBrowserMagnifying.m │ │ │ │ ├── IKImageBrowserReorderAnimation.m │ │ │ │ ├── IKImageBrowserScrollAnimation.m │ │ │ │ ├── IKImageBrowserSubsetLayoutManager.m │ │ │ │ ├── IKImageBrowserVMScheduler.m │ │ │ │ ├── IKImageBrowserView.m │ │ │ │ ├── IKImageBrowseriOSGroupDimCellsAnimation.m │ │ │ │ ├── IKImageBrowseriOSGroupGrid.m │ │ │ │ ├── IKImageBrowseriOSGroupHighlightCellAnimation.m │ │ │ │ ├── IKImageCell.m │ │ │ │ ├── IKImageCellDatasourceProxy.m │ │ │ │ ├── IKImageCellReservedIvars.m │ │ │ │ ├── IKImageCellTrackingViewDatasourceProxy.m │ │ │ │ ├── IKImageClipView.m │ │ │ │ ├── IKImageContentView.m │ │ │ │ ├── IKImageCorrection.m │ │ │ │ ├── IKImageCorrectionHandler.m │ │ │ │ ├── IKImageCropPRS.m │ │ │ │ ├── IKImageCropView.m │ │ │ │ ├── IKImageCropViewEffect.m │ │ │ │ ├── IKImageCropViewSlider.m │ │ │ │ ├── IKImageEditDSHandler.m │ │ │ │ ├── IKImageEditFrame.m │ │ │ │ ├── IKImageEditFrameToolbar.m │ │ │ │ ├── IKImageEditPanel.m │ │ │ │ ├── IKImageEditPanelButton.m │ │ │ │ ├── IKImageEditPanelController.m │ │ │ │ ├── IKImageEditPanelPrivateData.m │ │ │ │ ├── IKImageEditView.m │ │ │ │ ├── IKImageEditWorldMap.m │ │ │ │ ├── IKImageEditWorldMapOld.m │ │ │ │ ├── IKImageEffects.m │ │ │ │ ├── IKImageEffectsView.m │ │ │ │ ├── IKImageFlowAccessibilityCell.m │ │ │ │ ├── IKImageFlowAccessibilityList.m │ │ │ │ ├── IKImageFlowAppearAnimation.m │ │ │ │ ├── IKImageFlowCell.m │ │ │ │ ├── IKImageFlowDisappearAnimation.m │ │ │ │ ├── IKImageFlowFlipAnimation.m │ │ │ │ ├── IKImageFlowImportAnimation.m │ │ │ │ ├── IKImageFlowScrollingAnimation.m │ │ │ │ ├── IKImageFlowView.m │ │ │ │ ├── IKImageGridItem.m │ │ │ │ ├── IKImageHistogram.m │ │ │ │ ├── IKImageInfo.m │ │ │ │ ├── IKImageInfoView.m │ │ │ │ ├── IKImageLayer.m │ │ │ │ ├── IKImagePasteboardLayer.m │ │ │ │ ├── IKImagePicker.m │ │ │ │ ├── IKImageRenderInfo.m │ │ │ │ ├── IKImageState.m │ │ │ │ ├── IKImageTextureRange.m │ │ │ │ ├── IKImageView.m │ │ │ │ ├── IKImageView2.m │ │ │ │ ├── IKImageView2ScrollView.m │ │ │ │ ├── IKImageViewLayerQueue.m │ │ │ │ ├── IKImageViewPrivateData.m │ │ │ │ ├── IKImageViewUtils.m │ │ │ │ ├── IKImageWrapper.m │ │ │ │ ├── IKImageWrapperAnimatedGifCache.m │ │ │ │ ├── IKInfoTabView.m │ │ │ │ ├── IKInterfaceBuilderImage.m │ │ │ │ ├── IKInterfaceBuilderSharedDatasource.m │ │ │ │ ├── IKInterfaceBuilderSharedDelegate.m │ │ │ │ ├── IKIrisListener.m │ │ │ │ ├── IKKnob.m │ │ │ │ ├── IKKnobLayer.m │ │ │ │ ├── IKLassoSelection.m │ │ │ │ ├── IKLayerRenderer.m │ │ │ │ ├── IKLinkedList.m │ │ │ │ ├── IKLinkedListLink.m │ │ │ │ ├── IKLinkedListNode.m │ │ │ │ ├── IKLinkedListNodePool.m │ │ │ │ ├── IKMediaPlugin.m │ │ │ │ ├── IKMetadataHandler.m │ │ │ │ ├── IKMipmapImage.m │ │ │ │ ├── IKMipmapItem.m │ │ │ │ ├── IKMonitorBrightnessController.m │ │ │ │ ├── IKMultipleSegmentedRawDataBuffer.m │ │ │ │ ├── IKNAnnotation.m │ │ │ │ ├── IKNCustomLayer.m │ │ │ │ ├── IKNImageLayer.m │ │ │ │ ├── IKNImageView.m │ │ │ │ ├── IKNImageViewHandler.m │ │ │ │ ├── IKNKnobsLayer.m │ │ │ │ ├── IKNProgressLayer.m │ │ │ │ ├── IKNRootLayer.m │ │ │ │ ├── IKNSelection.m │ │ │ │ ├── IKNStatusRoot.m │ │ │ │ ├── IKNStatusView.m │ │ │ │ ├── IKNStatusView2.m │ │ │ │ ├── IKNavigationImageLayer.m │ │ │ │ ├── IKNavigationLayer.m │ │ │ │ ├── IKNavigationRectLayer.m │ │ │ │ ├── IKNoActionShapeLayer.m │ │ │ │ ├── IKOpenGLRenderer.m │ │ │ │ ├── IKOpenGLRoundedRectRenderer.m │ │ │ │ ├── IKOpenGLRoundedRectRendererCache.m │ │ │ │ ├── IKPBNotePlayer.m │ │ │ │ ├── IKPPFloatingWindow.m │ │ │ │ ├── IKPPFloatingWindowAnimation.m │ │ │ │ ├── IKPTArrowButton.m │ │ │ │ ├── IKPTBackgroundWindow.m │ │ │ │ ├── IKPTBorderView.m │ │ │ │ ├── IKPTCenteredTextLayer.m │ │ │ │ ├── IKPTContentViewController.m │ │ │ │ ├── IKPTCountdownView.m │ │ │ │ ├── IKPTCropView.m │ │ │ │ ├── IKPTEditorController.m │ │ │ │ ├── IKPTEffectsController.m │ │ │ │ ├── IKPTFxButton.m │ │ │ │ ├── IKPTGridMaskLayer.m │ │ │ │ ├── IKPTImageGridCell.m │ │ │ │ ├── IKPTImageGridView.m │ │ │ │ ├── IKPTImageViewForAnimation.m │ │ │ │ ├── IKPTImporterController.m │ │ │ │ ├── IKPTRoundedButton.m │ │ │ │ ├── IKPTRoundedButtonCell.m │ │ │ │ ├── IKPTSidebar.m │ │ │ │ ├── IKPTSidebarRowView.m │ │ │ │ ├── IKPTSlider.m │ │ │ │ ├── IKPTSliderCell.m │ │ │ │ ├── IKPTSquareButton.m │ │ │ │ ├── IKPTSquareButtonCell.m │ │ │ │ ├── IKPTTitleCell.m │ │ │ │ ├── IKPastedImage.m │ │ │ │ ├── IKPathPopupButton.m │ │ │ │ ├── IKPathToCIImageValueTransformer.m │ │ │ │ ├── IKPictureTaker.m │ │ │ │ ├── IKPictureTakerController.m │ │ │ │ ├── IKPictureTakerNibInterface.m │ │ │ │ ├── IKPictureTakerRecentPicture.m │ │ │ │ ├── IKPictureTakerRecentPictureRepository.m │ │ │ │ ├── IKPictureTakerRecentsManager.m │ │ │ │ ├── IKPictureTakerView.m │ │ │ │ ├── IKPlaceholderItem.m │ │ │ │ ├── IKPlaceholderLayer.m │ │ │ │ ├── IKProKitCell.m │ │ │ │ ├── IKProfilePictureAttributedImage.m │ │ │ │ ├── IKProfilePictureRolloverLayer.m │ │ │ │ ├── IKProfilePictureView.m │ │ │ │ ├── IKRadianToDegreeValueTransformer.m │ │ │ │ ├── IKRamManager.m │ │ │ │ ├── IKRangeFormatter.m │ │ │ │ ├── IKRectAnnotation.m │ │ │ │ ├── IKRectSelection.m │ │ │ │ ├── IKRectSelectionImageCapture.m │ │ │ │ ├── IKRectanglePacker.m │ │ │ │ ├── IKReflectionCell.m │ │ │ │ ├── IKReflectiveIconCell.m │ │ │ │ ├── IKRootLayer.m │ │ │ │ ├── IKRootLayout.m │ │ │ │ ├── IKRotationLayer.m │ │ │ │ ├── IKSFCropElement.m │ │ │ │ ├── IKSFEffectDescription.m │ │ │ │ ├── IKSFElement.m │ │ │ │ ├── IKSSBackgroundImageView.m │ │ │ │ ├── IKSSBackgroundWindow.m │ │ │ │ ├── IKSSButton.m │ │ │ │ ├── IKSSContentLayer.m │ │ │ │ ├── IKSSEventLessLayer.m │ │ │ │ ├── IKSSGradientLayer.m │ │ │ │ ├── IKSSImageView.m │ │ │ │ ├── IKSSIndexHandler.m │ │ │ │ ├── IKSSIndexSheetSelectionLayer.m │ │ │ │ ├── IKSSIndexSheetTextLayer.m │ │ │ │ ├── IKSSIndexView.m │ │ │ │ ├── IKSSPDFView.m │ │ │ │ ├── IKSSPanel.m │ │ │ │ ├── IKSSThumbnailLayer.m │ │ │ │ ├── IKSSToolTip.m │ │ │ │ ├── IKSSToolTipView.m │ │ │ │ ├── IKSaveOptions.m │ │ │ │ ├── IKSaveOptionsHandler.m │ │ │ │ ├── IKScan.m │ │ │ │ ├── IKScanArea.m │ │ │ │ ├── IKScanInfo.m │ │ │ │ ├── IKScanResult.m │ │ │ │ ├── IKScanResultsHandler.m │ │ │ │ ├── IKScanResultsTextCellView.m │ │ │ │ ├── IKScanUIController.m │ │ │ │ ├── IKScanUIControllerAdvanced.m │ │ │ │ ├── IKScanUIControllerSimple.m │ │ │ │ ├── IKScanUIViewAdvanced.m │ │ │ │ ├── IKScanUIViewSimple.m │ │ │ │ ├── IKScannerDeviceView.m │ │ │ │ ├── IKScannerDeviceViewHandler.m │ │ │ │ ├── IKScannerDeviceViewHandlerIB.m │ │ │ │ ├── IKScannerNoDeviceView.m │ │ │ │ ├── IKScannerParameterView.m │ │ │ │ ├── IKScannerPreviewAdvanced.m │ │ │ │ ├── IKScannerPreviewSimple.m │ │ │ │ ├── IKScannerSelfTest.m │ │ │ │ ├── IKSegmentedRawDataBuffer.m │ │ │ │ ├── IKSelection.m │ │ │ │ ├── IKSelectionLayer.m │ │ │ │ ├── IKSelfTestHandler.m │ │ │ │ ├── IKShadowTool.m │ │ │ │ ├── IKSingleImageEffect.m │ │ │ │ ├── IKSlider.m │ │ │ │ ├── IKSliderCell.m │ │ │ │ ├── IKSlideshow.m │ │ │ │ ├── IKSlideshowAudioPlayer.m │ │ │ │ ├── IKSlideshowDataSourceHandler.m │ │ │ │ ├── IKSlideshowDebugItem.m │ │ │ │ ├── IKSlideshowDebugger.m │ │ │ │ ├── IKSlideshowElement.m │ │ │ │ ├── IKSlideshowExporter.m │ │ │ │ ├── IKSlideshowHandler.m │ │ │ │ ├── IKSlideshowImage.m │ │ │ │ ├── IKSlideshowItemLoadOperation.m │ │ │ │ ├── IKSlideshowItemLoadThumbnailOperation.m │ │ │ │ ├── IKSlideshowPDF.m │ │ │ │ ├── IKSlideshowQL.m │ │ │ │ ├── IKSpacerButton.m │ │ │ │ ├── IKSpinnerLayer.m │ │ │ │ ├── IKStatusLayer.m │ │ │ │ ├── IKSyncTaskBag.m │ │ │ │ ├── IKSyncTaskBagItem.m │ │ │ │ ├── IKTabView.m │ │ │ │ ├── IKTaskAsyncOperation.m │ │ │ │ ├── IKTaskManager.m │ │ │ │ ├── IKTempDirectoryHandler.m │ │ │ │ ├── IKTemperatureCorrection.m │ │ │ │ ├── IKTemplateLayer.m │ │ │ │ ├── IKTextAnnotation.m │ │ │ │ ├── IKTextField.m │ │ │ │ ├── IKTextFieldContentView.m │ │ │ │ ├── IKTextFieldWindow.m │ │ │ │ ├── IKTexturePacker.m │ │ │ │ ├── IKTexturePackerItem.m │ │ │ │ ├── IKTexturePackerView.m │ │ │ │ ├── IKTheme.m │ │ │ │ ├── IKThresholdCorrection.m │ │ │ │ ├── IKThumbnailBuilder.m │ │ │ │ ├── IKThumbnailBuilderQueue.m │ │ │ │ ├── IKThumbnailOperation.m │ │ │ │ ├── IKTintCorrection.m │ │ │ │ ├── IKTransitionAnimation.m │ │ │ │ ├── IKUIHelper.m │ │ │ │ ├── IKVImageCorrection.m │ │ │ │ ├── IKVRamManager.m │ │ │ │ ├── IKViewController.m │ │ │ │ ├── IKWindowEffect.m │ │ │ │ ├── IKWindowTransitionAnimation.m │ │ │ │ ├── IKiOSStyleGroupCell.m │ │ │ │ ├── ImageKit.m │ │ │ │ ├── NSAffineTransform+CIFilterUIViewCreationAddition.m │ │ │ │ ├── NSAffineTransformView.m │ │ │ │ ├── NSArray+IKPictureTakerAdditions.m │ │ │ │ ├── NSAttributedString+IKEditingExtensions.m │ │ │ │ ├── NSBezierPath+IKAddition.m │ │ │ │ ├── NSBitmapImageRep+ik_cgexamples.m │ │ │ │ ├── NSButton+IKScanButton.m │ │ │ │ ├── NSCollectionView+IK.m │ │ │ │ ├── NSColor+IKAdditions.m │ │ │ │ ├── NSFileManager+IKPictureTakerAdditions.m │ │ │ │ ├── NSFont+IKCommonFonts.m │ │ │ │ ├── NSGraphicsContext+IKScan.m │ │ │ │ ├── NSImage+IKAdditions.m │ │ │ │ ├── NSImageRep+IKAdditions.m │ │ │ │ ├── NSImageView+IC.m │ │ │ │ ├── NSMenu+FileFormat.m │ │ │ │ ├── NSMutableAffineTransform.m │ │ │ │ ├── NSNumber+CIFilterUIViewCreationAddition.m │ │ │ │ ├── NSObject+IKInterThread.m │ │ │ │ ├── NSPopUpButton+IKSO.m │ │ │ │ ├── NSScroller+IKImageBrowserAdditions.m │ │ │ │ ├── NSString+IKCocoaFixes.m │ │ │ │ ├── NSTreeNode+IK.m │ │ │ │ ├── NSView+DelayedHide.m │ │ │ │ ├── NSWindow+IKPictureTakerAdditions.m │ │ │ │ ├── _IKIRLMainProxy.m │ │ │ │ ├── _IKTypeSelectData.m │ │ │ │ └── _IKiOSStyleGroupCell.m │ │ ├── QuartzComposer │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── QuartzComposer │ │ │ │ │ ├── CAAction.h │ │ │ │ │ ├── CAAnimation+SceneKitAdditions.h │ │ │ │ │ ├── GFBase.h │ │ │ │ │ ├── GFConnection.h │ │ │ │ │ ├── GFGraph.h │ │ │ │ │ ├── GFGraphBrowserView.h │ │ │ │ │ ├── GFGraphEditorInspector.h │ │ │ │ │ ├── GFGraphEditorView.h │ │ │ │ │ ├── GFGraphPathView.h │ │ │ │ │ ├── GFGraphView.h │ │ │ │ │ ├── GFInspectorWindow.h │ │ │ │ │ ├── GFList.h │ │ │ │ │ ├── GFNode.h │ │ │ │ │ ├── GFNodeActor.h │ │ │ │ │ ├── GFNodeClassDescription.h │ │ │ │ │ ├── GFNodeClassDescriptionRegistry.h │ │ │ │ │ ├── GFNodeInspectorViewsController.h │ │ │ │ │ ├── GFNodeManager.h │ │ │ │ │ ├── GFNodeManagerView.h │ │ │ │ │ ├── GFPlugInRegistration.h │ │ │ │ │ ├── GFPort.h │ │ │ │ │ ├── GFSettingsColumn.h │ │ │ │ │ ├── GFSettingsView.h │ │ │ │ │ ├── GFStringEditor.h │ │ │ │ │ ├── GFStringEditorWindow.h │ │ │ │ │ ├── GFTooltipView.h │ │ │ │ │ ├── GFTooltipWindow.h │ │ │ │ │ ├── GLSLParameterInfo.h │ │ │ │ │ ├── NSColor+QCSCN_Additions.h │ │ │ │ │ ├── NSFastEnumeration.h │ │ │ │ │ ├── NSImage+QCSCN_Addition.h │ │ │ │ │ ├── NSImageRep+QCSCN_Additions.h │ │ │ │ │ ├── NSMutableDictionary+GFPrivateExtensions.h │ │ │ │ │ ├── NSObject+GFSettingsViewDelegate.h │ │ │ │ │ ├── NSOpenGLContext_QuartzComposer.h │ │ │ │ │ ├── NSString+QCTextRenderer.h │ │ │ │ │ ├── NSTextDelegate.h │ │ │ │ │ ├── NSTextView+GFLogMessage.h │ │ │ │ │ ├── NSTextViewDelegate.h │ │ │ │ │ ├── NSURLConnectionDelegate.h │ │ │ │ │ ├── NSValue+Core3DKitAdditions.h │ │ │ │ │ ├── QCAgeProfileView.h │ │ │ │ │ ├── QCAnchorPosition.h │ │ │ │ │ ├── QCAppleRemote.h │ │ │ │ │ ├── QCArray.h │ │ │ │ │ ├── QCArrayBufferObject.h │ │ │ │ │ ├── QCArrayMemObject.h │ │ │ │ │ ├── QCArrayTexture3D.h │ │ │ │ │ ├── QCBasicImageBufferConverter.h │ │ │ │ │ ├── QCBillboard.h │ │ │ │ │ ├── QCBillboardUI.h │ │ │ │ │ ├── QCBonjourServices.h │ │ │ │ │ ├── QCBonjourServicesUI.h │ │ │ │ │ ├── QCBooleanPort.h │ │ │ │ │ ├── QCCGLContext.h │ │ │ │ │ ├── QCCGLRootContext.h │ │ │ │ │ ├── QCCLContext.h │ │ │ │ │ ├── QCCLProgram.h │ │ │ │ │ ├── QCCache.h │ │ │ │ │ ├── QCCamera.h │ │ │ │ │ ├── QCCirclePatchActor.h │ │ │ │ │ ├── QCCircularSlider.h │ │ │ │ │ ├── QCClear.h │ │ │ │ │ ├── QCClearUI.h │ │ │ │ │ ├── QCClock.h │ │ │ │ │ ├── QCColorCell.h │ │ │ │ │ ├── QCColorFromComponents.h │ │ │ │ │ ├── QCColorMask.h │ │ │ │ │ ├── QCColorMixer.h │ │ │ │ │ ├── QCColorPort.h │ │ │ │ │ ├── QCColorToComponents.h │ │ │ │ │ ├── QCColorTransform.h │ │ │ │ │ ├── QCComposition.h │ │ │ │ │ ├── QCCompositionCellLayer.h │ │ │ │ │ ├── QCCompositionEditor.h │ │ │ │ │ ├── QCCompositionLayer.h │ │ │ │ │ ├── QCCompositionLayer_QCViewBacking.h │ │ │ │ │ ├── QCCompositionParameterView.h │ │ │ │ │ ├── QCCompositionPickerController.h │ │ │ │ │ ├── QCCompositionPickerGridCellLayer.h │ │ │ │ │ ├── QCCompositionPickerGridLayer.h │ │ │ │ │ ├── QCCompositionPickerInfos.h │ │ │ │ │ ├── QCCompositionPickerLayer.h │ │ │ │ │ ├── QCCompositionPickerNavigationView.h │ │ │ │ │ ├── QCCompositionPickerPanel.h │ │ │ │ │ ├── QCCompositionPickerView.h │ │ │ │ │ ├── QCCompositionRenderer.h │ │ │ │ │ ├── QCCompositionRepository.h │ │ │ │ │ ├── QCCompositionSortDescriptor.h │ │ │ │ │ ├── QCConditional.h │ │ │ │ │ ├── QCContact.h │ │ │ │ │ ├── QCContext.h │ │ │ │ │ ├── QCContextProExtension.h │ │ │ │ │ ├── QCConverter_CoreGraphics.h │ │ │ │ │ ├── QCConverter_CoreImage.h │ │ │ │ │ ├── QCConverter_GLImageLib.h │ │ │ │ │ ├── QCConverter_OpenGL.h │ │ │ │ │ ├── QCConverter_XRGB.h │ │ │ │ │ ├── QCConverter_YUV422.h │ │ │ │ │ ├── QCCore3DLoader.h │ │ │ │ │ ├── QCCore3DLoaderUI.h │ │ │ │ │ ├── QCCounter.h │ │ │ │ │ ├── QCCroppedImageProvider.h │ │ │ │ │ ├── QCCroppedProvider_CoreGraphics.h │ │ │ │ │ ├── QCCroppedProvider_CoreText.h │ │ │ │ │ ├── QCCube.h │ │ │ │ │ ├── QCDashboardButton.h │ │ │ │ │ ├── QCDataImage.h │ │ │ │ │ ├── QCDatagramBroadcaster.h │ │ │ │ │ ├── QCDatagramReceiver.h │ │ │ │ │ ├── QCDatagramSocket.h │ │ │ │ │ ├── QCDateFormatter.h │ │ │ │ │ ├── QCDateFormatterUI.h │ │ │ │ │ ├── QCDemultiplexer.h │ │ │ │ │ ├── QCDemultiplexerUI.h │ │ │ │ │ ├── QCDepthBlurEffectDetector.h │ │ │ │ │ ├── QCDepthBlurEffectEditor.h │ │ │ │ │ ├── QCDepthBlurEffectImage.h │ │ │ │ │ ├── QCDepthBlurEffectParameters.h │ │ │ │ │ ├── QCDetector.h │ │ │ │ │ ├── QCDifferentialValue.h │ │ │ │ │ ├── QCDirectoryScanner.h │ │ │ │ │ ├── QCDirectoryScannerUI.h │ │ │ │ │ ├── QCDownloadPatch.h │ │ │ │ │ ├── QCEventManager.h │ │ │ │ │ ├── QCExporter_CoreAnimation.h │ │ │ │ │ ├── QCExporter_CoreGraphics.h │ │ │ │ │ ├── QCExporter_CoreImage.h │ │ │ │ │ ├── QCExporter_CoreImage_Provider.h │ │ │ │ │ ├── QCExporter_CoreVideo.h │ │ │ │ │ ├── QCExporter_NSImage.h │ │ │ │ │ ├── QCExporter_OpenCL.h │ │ │ │ │ ├── QCExpression.h │ │ │ │ │ ├── QCExpressionUI.h │ │ │ │ │ ├── QCFPSDisplay.h │ │ │ │ │ ├── QCFakePatch.h │ │ │ │ │ ├── QCFilter.h │ │ │ │ │ ├── QCFlameImage.h │ │ │ │ │ ├── QCFlameImageUI.h │ │ │ │ │ ├── QCFog.h │ │ │ │ │ ├── QCFullScreenWindow.h │ │ │ │ │ ├── QCGLSLShader.h │ │ │ │ │ ├── QCGLSLShaderUI.h │ │ │ │ │ ├── QCGradient.h │ │ │ │ │ ├── QCGraphicsContext.h │ │ │ │ │ ├── QCGraphicsRenderState.h │ │ │ │ │ ├── QCGrid.h │ │ │ │ │ ├── QCHIDInput.h │ │ │ │ │ ├── QCHIDInputUI.h │ │ │ │ │ ├── QCHostInfo.h │ │ │ │ │ ├── QCHotZone.h │ │ │ │ │ ├── QCImage.h │ │ │ │ │ ├── QCImage2DMemObject.h │ │ │ │ │ ├── QCImage3DMemObject.h │ │ │ │ │ ├── QCImageAccumulator.h │ │ │ │ │ ├── QCImageAccumulatorUI.h │ │ │ │ │ ├── QCImageBuffer.h │ │ │ │ │ ├── QCImageBufferConverter.h │ │ │ │ │ ├── QCImageBufferProvider.h │ │ │ │ │ ├── QCImageBuffer_GCCacheResource.h │ │ │ │ │ ├── QCImageColorMatchingProperties.h │ │ │ │ │ ├── QCImageConversionSequence.h │ │ │ │ │ ├── QCImageCrop.h │ │ │ │ │ ├── QCImageDimensions.h │ │ │ │ │ ├── QCImageDownloader.h │ │ │ │ │ ├── QCImageDownloaderUI.h │ │ │ │ │ ├── QCImageExporter.h │ │ │ │ │ ├── QCImageFilter.h │ │ │ │ │ ├── QCImageFocusRect.h │ │ │ │ │ ├── QCImageHistogram.h │ │ │ │ │ ├── QCImageInfo.h │ │ │ │ │ ├── QCImageKernel.h │ │ │ │ │ ├── QCImageKernelUI.h │ │ │ │ │ ├── QCImageLoader.h │ │ │ │ │ ├── QCImageLoaderUI.h │ │ │ │ │ ├── QCImageLoaderView.h │ │ │ │ │ ├── QCImageManager.h │ │ │ │ │ ├── QCImageManagerAgeProfileView.h │ │ │ │ │ ├── QCImageManagerProfileView.h │ │ │ │ │ ├── QCImageMetadata.h │ │ │ │ │ ├── QCImageOrigin.h │ │ │ │ │ ├── QCImagePixel.h │ │ │ │ │ ├── QCImagePixelBuffer.h │ │ │ │ │ ├── QCImagePort.h │ │ │ │ │ ├── QCImagePort_Cache.h │ │ │ │ │ ├── QCImageProperties.h │ │ │ │ │ ├── QCImageProvider.h │ │ │ │ │ ├── QCImageResize.h │ │ │ │ │ ├── QCImageSurfaceBuffer.h │ │ │ │ │ ├── QCImageTextureBuffer.h │ │ │ │ │ ├── QCImageTextureBuffer_CVOpenGLTexture.h │ │ │ │ │ ├── QCImageTexturingProperties.h │ │ │ │ │ ├── QCImageTransform.h │ │ │ │ │ ├── QCImageView.h │ │ │ │ │ ├── QCIndexMenuValueTransformer.h │ │ │ │ │ ├── QCIndexPort.h │ │ │ │ │ ├── QCInfo.h │ │ │ │ │ ├── QCInspector.h │ │ │ │ │ ├── QCInteractionManager.h │ │ │ │ │ ├── QCInteractionPatch.h │ │ │ │ │ ├── QCInteractionPatchActor.h │ │ │ │ │ ├── QCInteractionPort.h │ │ │ │ │ ├── QCInterpolation.h │ │ │ │ │ ├── QCInterpolationPort.h │ │ │ │ │ ├── QCInterpolationUI.h │ │ │ │ │ ├── QCInterpolationView.h │ │ │ │ │ ├── QCIterator.h │ │ │ │ │ ├── QCIteratorVariables.h │ │ │ │ │ ├── QCKeyFrameEditor.h │ │ │ │ │ ├── QCKeyFrameEditorView.h │ │ │ │ │ ├── QCKeyFrameEditorWindow.h │ │ │ │ │ ├── QCKeyFrameList.h │ │ │ │ │ ├── QCKeyboard.h │ │ │ │ │ ├── QCKeyboardTableView.h │ │ │ │ │ ├── QCKeyboardUI.h │ │ │ │ │ ├── QCLFO.h │ │ │ │ │ ├── QCLighting.h │ │ │ │ │ ├── QCLine.h │ │ │ │ │ ├── QCLines.h │ │ │ │ │ ├── QCLink.h │ │ │ │ │ ├── QCList.h │ │ │ │ │ ├── QCLog.h │ │ │ │ │ ├── QCLogView.h │ │ │ │ │ ├── QCLogic.h │ │ │ │ │ ├── QCMath.h │ │ │ │ │ ├── QCMathematicalExpression.h │ │ │ │ │ ├── QCMemObject.h │ │ │ │ │ ├── QCMesh.h │ │ │ │ │ ├── QCMeshCreator.h │ │ │ │ │ ├── QCMeshMaterialGetter.h │ │ │ │ │ ├── QCMeshMaterialSetter.h │ │ │ │ │ ├── QCMeshPort.h │ │ │ │ │ ├── QCMeshPropertyGetter.h │ │ │ │ │ ├── QCMeshPropertySetter.h │ │ │ │ │ ├── QCMeshRenderer.h │ │ │ │ │ ├── QCMeshTransform.h │ │ │ │ │ ├── QCMiniPatchActor.h │ │ │ │ │ ├── QCMouse.h │ │ │ │ │ ├── QCMouseInteraction.h │ │ │ │ │ ├── QCMultiplexer.h │ │ │ │ │ ├── QCMultiplexerBooleanPort.h │ │ │ │ │ ├── QCMultiplexerColorPort.h │ │ │ │ │ ├── QCMultiplexerImagePort.h │ │ │ │ │ ├── QCMultiplexerIndexPort.h │ │ │ │ │ ├── QCMultiplexerMeshPort.h │ │ │ │ │ ├── QCMultiplexerNumberPort.h │ │ │ │ │ ├── QCMultiplexerStringPort.h │ │ │ │ │ ├── QCMultiplexerStructurePort.h │ │ │ │ │ ├── QCMultiplexerUI.h │ │ │ │ │ ├── QCMultiplexerVirtualPort.h │ │ │ │ │ ├── QCNSBitmapImageRep.h │ │ │ │ │ ├── QCNetworkBroadcaster.h │ │ │ │ │ ├── QCNetworkBroadcasterUI.h │ │ │ │ │ ├── QCNetworkPatch.h │ │ │ │ │ ├── QCNetworkPatchUI.h │ │ │ │ │ ├── QCNetworkReceiver.h │ │ │ │ │ ├── QCNetworkReceiverUI.h │ │ │ │ │ ├── QCNetworkSynchronizer.h │ │ │ │ │ ├── QCNetworkSynchronizerUI.h │ │ │ │ │ ├── QCNodeManager.h │ │ │ │ │ ├── QCNoise.h │ │ │ │ │ ├── QCNumberFormatter.h │ │ │ │ │ ├── QCNumberFormatterUI.h │ │ │ │ │ ├── QCNumberPort.h │ │ │ │ │ ├── QCNumericalFormatter.h │ │ │ │ │ ├── QCOSCBroadcaster.h │ │ │ │ │ ├── QCOSCBroadcasterUI.h │ │ │ │ │ ├── QCOSCPatch.h │ │ │ │ │ ├── QCOSCPatchUI.h │ │ │ │ │ ├── QCOSCReceiver.h │ │ │ │ │ ├── QCOSCReceiverUI.h │ │ │ │ │ ├── QCObject.h │ │ │ │ │ ├── QCObjectPort.h │ │ │ │ │ ├── QCOpenCL.h │ │ │ │ │ ├── QCOpenCLConverter.h │ │ │ │ │ ├── QCOpenCLInfo.h │ │ │ │ │ ├── QCOpenCLUI.h │ │ │ │ │ ├── QCOpenGLContext.h │ │ │ │ │ ├── QCOpenGLInfo.h │ │ │ │ │ ├── QCOpenGLInfoUI.h │ │ │ │ │ ├── QCOpenGLPort.h │ │ │ │ │ ├── QCOpenGLPort_Blending.h │ │ │ │ │ ├── QCOpenGLPort_Color.h │ │ │ │ │ ├── QCOpenGLPort_Culling.h │ │ │ │ │ ├── QCOpenGLPort_Image.h │ │ │ │ │ ├── QCOpenGLPort_Mesh.h │ │ │ │ │ ├── QCOpenGLPort_SceneKitBlending.h │ │ │ │ │ ├── QCOpenGLPort_SceneKitCulling.h │ │ │ │ │ ├── QCOpenGLPort_ZBuffer.h │ │ │ │ │ ├── QCOpenGLRenderState.h │ │ │ │ │ ├── QCParameterInfo.h │ │ │ │ │ ├── QCParticleSystem.h │ │ │ │ │ ├── QCParticleSystemUI.h │ │ │ │ │ ├── QCPatch.h │ │ │ │ │ ├── QCPatchActor.h │ │ │ │ │ ├── QCPatchBrowserView.h │ │ │ │ │ ├── QCPatchClassDescription.h │ │ │ │ │ ├── QCPatchController.h │ │ │ │ │ ├── QCPatchEditorView.h │ │ │ │ │ ├── QCPatchInfo.h │ │ │ │ │ ├── QCPatchManagerView.h │ │ │ │ │ ├── QCPatchParameterView.h │ │ │ │ │ ├── QCPatchParametersView.h │ │ │ │ │ ├── QCPatchPathView.h │ │ │ │ │ ├── QCPatchProExtension.h │ │ │ │ │ ├── QCPatchProfileView.h │ │ │ │ │ ├── QCPatchRenderer.h │ │ │ │ │ ├── QCPatchRendererUI.h │ │ │ │ │ ├── QCPatchRenderingInfo.h │ │ │ │ │ ├── QCPatchView.h │ │ │ │ │ ├── QCPhysics.h │ │ │ │ │ ├── QCPhysicsEffect.h │ │ │ │ │ ├── QCPickerSelectionLayer.h │ │ │ │ │ ├── QCPixelFormat.h │ │ │ │ │ ├── QCPixelFormat_422YpCbCr8_601.h │ │ │ │ │ ├── QCPixelFormat_422YpCbCr8_709.h │ │ │ │ │ ├── QCPixelFormat_ARGB8.h │ │ │ │ │ ├── QCPixelFormat_BGRA8.h │ │ │ │ │ ├── QCPixelFormat_BGRX8.h │ │ │ │ │ ├── QCPixelFormat_CMYK16.h │ │ │ │ │ ├── QCPixelFormat_CMYK8.h │ │ │ │ │ ├── QCPixelFormat_CMYKf.h │ │ │ │ │ ├── QCPixelFormat_I16.h │ │ │ │ │ ├── QCPixelFormat_I8.h │ │ │ │ │ ├── QCPixelFormat_If.h │ │ │ │ │ ├── QCPixelFormat_Ih.h │ │ │ │ │ ├── QCPixelFormat_KYMC8.h │ │ │ │ │ ├── QCPixelFormat_M_I16.h │ │ │ │ │ ├── QCPixelFormat_M_I8.h │ │ │ │ │ ├── QCPixelFormat_M_If.h │ │ │ │ │ ├── QCPixelFormat_M_Ih.h │ │ │ │ │ ├── QCPixelFormat_RGB16.h │ │ │ │ │ ├── QCPixelFormat_RGB8.h │ │ │ │ │ ├── QCPixelFormat_RGBA16.h │ │ │ │ │ ├── QCPixelFormat_RGBA8.h │ │ │ │ │ ├── QCPixelFormat_RGBAf.h │ │ │ │ │ ├── QCPixelFormat_RGBAh.h │ │ │ │ │ ├── QCPixelFormat_RGBX8.h │ │ │ │ │ ├── QCPixelFormat_RGBf.h │ │ │ │ │ ├── QCPixelFormat_RGBh.h │ │ │ │ │ ├── QCPixelFormat_XRGB8.h │ │ │ │ │ ├── QCPixelFormat_YUVS.h │ │ │ │ │ ├── QCPlasmaImage.h │ │ │ │ │ ├── QCPlasmaImageUI.h │ │ │ │ │ ├── QCPlugIn.h │ │ │ │ │ ├── QCPlugInContext.h │ │ │ │ │ ├── QCPlugInInputImage.h │ │ │ │ │ ├── QCPlugInInputImageSource.h │ │ │ │ │ ├── QCPlugInInspector.h │ │ │ │ │ ├── QCPlugInOutputImageProvider.h │ │ │ │ │ ├── QCPlugInPatch.h │ │ │ │ │ ├── QCPlugInViewController.h │ │ │ │ │ ├── QCPlugOutputImage.h │ │ │ │ │ ├── QCPort.h │ │ │ │ │ ├── QCPortGLView.h │ │ │ │ │ ├── QCPortTooltipView.h │ │ │ │ │ ├── QCPortView.h │ │ │ │ │ ├── QCProfileConfigurationView.h │ │ │ │ │ ├── QCProfileView.h │ │ │ │ │ ├── QCProgrammablePatch.h │ │ │ │ │ ├── QCProgrammablePatchView.h │ │ │ │ │ ├── QCProjection.h │ │ │ │ │ ├── QCProviderImageCache.h │ │ │ │ │ ├── QCProvider_CoreAnimation.h │ │ │ │ │ ├── QCProvider_CoreGraphics.h │ │ │ │ │ ├── QCProvider_CoreImage.h │ │ │ │ │ ├── QCProvider_CoreText.h │ │ │ │ │ ├── QCProvider_CoreVideo.h │ │ │ │ │ ├── QCProvider_OpenCL.h │ │ │ │ │ ├── QCProvider_SceneKit.h │ │ │ │ │ ├── QCProxyPort.h │ │ │ │ │ ├── QCPsychedelic.h │ │ │ │ │ ├── QCPsychedelicUI.h │ │ │ │ │ ├── QCPulse.h │ │ │ │ │ ├── QCQuadric.h │ │ │ │ │ ├── QCQuadricUI.h │ │ │ │ │ ├── QCQueue.h │ │ │ │ │ ├── QCRandom.h │ │ │ │ │ ├── QCRangeValue.h │ │ │ │ │ ├── QCRawFilter.h │ │ │ │ │ ├── QCRecursor.h │ │ │ │ │ ├── QCRegion.h │ │ │ │ │ ├── QCRenderInImage.h │ │ │ │ │ ├── QCRenderInImageUI.h │ │ │ │ │ ├── QCRenderState.h │ │ │ │ │ ├── QCRenderView.h │ │ │ │ │ ├── QCRenderer.h │ │ │ │ │ ├── QCRenderingManager.h │ │ │ │ │ ├── QCRenderingPatch.h │ │ │ │ │ ├── QCReplicator.h │ │ │ │ │ ├── QCRepositoryCompositions.h │ │ │ │ │ ├── QCResource.h │ │ │ │ │ ├── QCResourcePool.h │ │ │ │ │ ├── QCRoundValue.h │ │ │ │ │ ├── QCRunLoopPatch.h │ │ │ │ │ ├── QCSCN_Animatable.h │ │ │ │ │ ├── QCSCN_AnimationInfo.h │ │ │ │ │ ├── QCSCN_BackingLayer.h │ │ │ │ │ ├── QCSCN_BasicLayerAnimation.h │ │ │ │ │ ├── QCSCN_BoundingBox.h │ │ │ │ │ ├── QCSCN_BoundingSphere.h │ │ │ │ │ ├── QCSCN_BoundingVolume.h │ │ │ │ │ ├── QCSCN_CARendererRegistry.h │ │ │ │ │ ├── QCSCN_Camera.h │ │ │ │ │ ├── QCSCN_CameraControlEventHandler.h │ │ │ │ │ ├── QCSCN_CameraControlEventHandlerReserved.h │ │ │ │ │ ├── QCSCN_CameraReserved.h │ │ │ │ │ ├── QCSCN_DelegateSource.h │ │ │ │ │ ├── QCSCN_EdgeAntialiasingOptions.h │ │ │ │ │ ├── QCSCN_EdgeAntialiasingOptionsReserved.h │ │ │ │ │ ├── QCSCN_EventHandler.h │ │ │ │ │ ├── QCSCN_EventHandlerReserved.h │ │ │ │ │ ├── QCSCN_Geometry.h │ │ │ │ │ ├── QCSCN_GeometryElement.h │ │ │ │ │ ├── QCSCN_GeometryElementReserved.h │ │ │ │ │ ├── QCSCN_GeometryReserved.h │ │ │ │ │ ├── QCSCN_GeometrySource.h │ │ │ │ │ ├── QCSCN_GeometrySourceReserved.h │ │ │ │ │ ├── QCSCN_HitTestResult.h │ │ │ │ │ ├── QCSCN_HitTestResultReserved.h │ │ │ │ │ ├── QCSCN_ImageSource.h │ │ │ │ │ ├── QCSCN_Layer.h │ │ │ │ │ ├── QCSCN_LayerFixedPipeline.h │ │ │ │ │ ├── QCSCN_LayerReserved.h │ │ │ │ │ ├── QCSCN_LayerSource.h │ │ │ │ │ ├── QCSCN_Light.h │ │ │ │ │ ├── QCSCN_LightReserved.h │ │ │ │ │ ├── QCSCN_LoadingLayer.h │ │ │ │ │ ├── QCSCN_LoadingProgressIndicatorLayer.h │ │ │ │ │ ├── QCSCN_Material.h │ │ │ │ │ ├── QCSCN_MaterialAttachment.h │ │ │ │ │ ├── QCSCN_MaterialProperty.h │ │ │ │ │ ├── QCSCN_MaterialPropertyReserved.h │ │ │ │ │ ├── QCSCN_MaterialReserved.h │ │ │ │ │ ├── QCSCN_Morpher.h │ │ │ │ │ ├── QCSCN_MorpherReserved.h │ │ │ │ │ ├── QCSCN_Node.h │ │ │ │ │ ├── QCSCN_NodeReserved.h │ │ │ │ │ ├── QCSCN_Parameter.h │ │ │ │ │ ├── QCSCN_ParameterReserved.h │ │ │ │ │ ├── QCSCN_Program.h │ │ │ │ │ ├── QCSCN_ProgramReserved.h │ │ │ │ │ ├── QCSCN_Renderer.h │ │ │ │ │ ├── QCSCN_RendererCameraModifier.h │ │ │ │ │ ├── QCSCN_RendererReserved.h │ │ │ │ │ ├── QCSCN_Scene.h │ │ │ │ │ ├── QCSCN_SceneRenderer.h │ │ │ │ │ ├── QCSCN_SceneReserved.h │ │ │ │ │ ├── QCSCN_SceneSource.h │ │ │ │ │ ├── QCSCN_SceneSourceReserved.h │ │ │ │ │ ├── QCSCN_Skinner.h │ │ │ │ │ ├── QCSCN_TextureDelegateSource.h │ │ │ │ │ ├── QCSCN_TextureLayerSource.h │ │ │ │ │ ├── QCSCN_TextureOffscreenRenderingSource.h │ │ │ │ │ ├── QCSCN_TextureSource.h │ │ │ │ │ ├── QCSCN_Transaction.h │ │ │ │ │ ├── QCSCN_View.h │ │ │ │ │ ├── QCSCN_ViewReserved.h │ │ │ │ │ ├── QCSampleHold.h │ │ │ │ │ ├── QCScaledNumberPort.h │ │ │ │ │ ├── QCScreenInfo.h │ │ │ │ │ ├── QCScreenInfoUI.h │ │ │ │ │ ├── QCSetStructureValue.h │ │ │ │ │ ├── QCSharedPatchActor.h │ │ │ │ │ ├── QCSharedTimers.h │ │ │ │ │ ├── QCSignal.h │ │ │ │ │ ├── QCSlideShowController.h │ │ │ │ │ ├── QCSmooth.h │ │ │ │ │ ├── QCSourceCodeView.h │ │ │ │ │ ├── QCSourceRulerView.h │ │ │ │ │ ├── QCSourceTextView.h │ │ │ │ │ ├── QCSplitter.h │ │ │ │ │ ├── QCSplitterIndexPort.h │ │ │ │ │ ├── QCSplitterUI.h │ │ │ │ │ ├── QCSpotlight.h │ │ │ │ │ ├── QCSprite.h │ │ │ │ │ ├── QCStream.h │ │ │ │ │ ├── QCStreamExporter.h │ │ │ │ │ ├── QCStreamExporter_QCArray.h │ │ │ │ │ ├── QCStreamManager.h │ │ │ │ │ ├── QCStreamProvider.h │ │ │ │ │ ├── QCStreamProvider_Core3D.h │ │ │ │ │ ├── QCStreamProvider_QCArray.h │ │ │ │ │ ├── QCStreamProvider_QCMemObject.h │ │ │ │ │ ├── QCStringCase.h │ │ │ │ │ ├── QCStringCompare.h │ │ │ │ │ ├── QCStringComponents.h │ │ │ │ │ ├── QCStringFormat.h │ │ │ │ │ ├── QCStringLength.h │ │ │ │ │ ├── QCStringMD5.h │ │ │ │ │ ├── QCStringPort.h │ │ │ │ │ ├── QCStringRange.h │ │ │ │ │ ├── QCStringReplace.h │ │ │ │ │ ├── QCStringTimecode.h │ │ │ │ │ ├── QCStringTruncate.h │ │ │ │ │ ├── QCStructure.h │ │ │ │ │ ├── QCStructureArrayPort.h │ │ │ │ │ ├── QCStructureAsString.h │ │ │ │ │ ├── QCStructureCIVectorPort.h │ │ │ │ │ ├── QCStructureCount.h │ │ │ │ │ ├── QCStructureDictionaryPort.h │ │ │ │ │ ├── QCStructureMember.h │ │ │ │ │ ├── QCStructurePort.h │ │ │ │ │ ├── QCStructureRange.h │ │ │ │ │ ├── QCStructureReverse.h │ │ │ │ │ ├── QCStructureSort.h │ │ │ │ │ ├── QCSynchronousURLConnectionDelegate.h │ │ │ │ │ ├── QCSystemTime.h │ │ │ │ │ ├── QCTableView.h │ │ │ │ │ ├── QCTablet.h │ │ │ │ │ ├── QCTeapot.h │ │ │ │ │ ├── QCTextImage.h │ │ │ │ │ ├── QCTextImageUI.h │ │ │ │ │ ├── QCTextRenderer.h │ │ │ │ │ ├── QCTextView.h │ │ │ │ │ ├── QCThreadPatch.h │ │ │ │ │ ├── QCTime.h │ │ │ │ │ ├── QCTimeLine.h │ │ │ │ │ ├── QCTimeLineEditorView.h │ │ │ │ │ ├── QCTimeLineLegendColorWell.h │ │ │ │ │ ├── QCTimeLineLegendTextField.h │ │ │ │ │ ├── QCTimeLineUI.h │ │ │ │ │ ├── QCTimeLineView.h │ │ │ │ │ ├── QCTimeLoop.h │ │ │ │ │ ├── QCTrackBall.h │ │ │ │ │ ├── QCTrackBallUI.h │ │ │ │ │ ├── QCURLConnection.h │ │ │ │ │ ├── QCView.h │ │ │ │ │ ├── QCVirtualPort.h │ │ │ │ │ ├── QCWatcher.h │ │ │ │ │ ├── QCWatcherUI.h │ │ │ │ │ ├── QCXMLDownloader.h │ │ │ │ │ ├── QCZoomView.h │ │ │ │ │ └── QuartzComposer.h │ │ │ └── src │ │ │ │ ├── CAAnimation+SceneKitAdditions.m │ │ │ │ ├── GFConnection.m │ │ │ │ ├── GFGraph.m │ │ │ │ ├── GFGraphBrowserView.m │ │ │ │ ├── GFGraphEditorInspector.m │ │ │ │ ├── GFGraphEditorView.m │ │ │ │ ├── GFGraphPathView.m │ │ │ │ ├── GFGraphView.m │ │ │ │ ├── GFInspectorWindow.m │ │ │ │ ├── GFList.m │ │ │ │ ├── GFNode.m │ │ │ │ ├── GFNodeActor.m │ │ │ │ ├── GFNodeClassDescription.m │ │ │ │ ├── GFNodeClassDescriptionRegistry.m │ │ │ │ ├── GFNodeInspectorViewsController.m │ │ │ │ ├── GFNodeManager.m │ │ │ │ ├── GFNodeManagerView.m │ │ │ │ ├── GFPort.m │ │ │ │ ├── GFSettingsColumn.m │ │ │ │ ├── GFSettingsView.m │ │ │ │ ├── GFStringEditor.m │ │ │ │ ├── GFStringEditorWindow.m │ │ │ │ ├── GFTooltipView.m │ │ │ │ ├── GFTooltipWindow.m │ │ │ │ ├── GLSLParameterInfo.m │ │ │ │ ├── NSColor+QCSCN_Additions.m │ │ │ │ ├── NSImage+QCSCN_Addition.m │ │ │ │ ├── NSImageRep+QCSCN_Additions.m │ │ │ │ ├── NSMutableDictionary+GFPrivateExtensions.m │ │ │ │ ├── NSObject+GFSettingsViewDelegate.m │ │ │ │ ├── NSOpenGLContext_QuartzComposer.m │ │ │ │ ├── NSString+QCTextRenderer.m │ │ │ │ ├── NSTextView+GFLogMessage.m │ │ │ │ ├── NSValue+Core3DKitAdditions.m │ │ │ │ ├── QCAgeProfileView.m │ │ │ │ ├── QCAnchorPosition.m │ │ │ │ ├── QCAppleRemote.m │ │ │ │ ├── QCArray.m │ │ │ │ ├── QCArrayBufferObject.m │ │ │ │ ├── QCArrayMemObject.m │ │ │ │ ├── QCArrayTexture3D.m │ │ │ │ ├── QCBasicImageBufferConverter.m │ │ │ │ ├── QCBillboard.m │ │ │ │ ├── QCBillboardUI.m │ │ │ │ ├── QCBonjourServices.m │ │ │ │ ├── QCBonjourServicesUI.m │ │ │ │ ├── QCBooleanPort.m │ │ │ │ ├── QCCGLContext.m │ │ │ │ ├── QCCGLRootContext.m │ │ │ │ ├── QCCLContext.m │ │ │ │ ├── QCCLProgram.m │ │ │ │ ├── QCCache.m │ │ │ │ ├── QCCamera.m │ │ │ │ ├── QCCirclePatchActor.m │ │ │ │ ├── QCCircularSlider.m │ │ │ │ ├── QCClear.m │ │ │ │ ├── QCClearUI.m │ │ │ │ ├── QCClock.m │ │ │ │ ├── QCColorCell.m │ │ │ │ ├── QCColorFromComponents.m │ │ │ │ ├── QCColorMask.m │ │ │ │ ├── QCColorMixer.m │ │ │ │ ├── QCColorPort.m │ │ │ │ ├── QCColorToComponents.m │ │ │ │ ├── QCColorTransform.m │ │ │ │ ├── QCComposition.m │ │ │ │ ├── QCCompositionCellLayer.m │ │ │ │ ├── QCCompositionEditor.m │ │ │ │ ├── QCCompositionLayer.m │ │ │ │ ├── QCCompositionLayer_QCViewBacking.m │ │ │ │ ├── QCCompositionParameterView.m │ │ │ │ ├── QCCompositionPickerController.m │ │ │ │ ├── QCCompositionPickerGridCellLayer.m │ │ │ │ ├── QCCompositionPickerGridLayer.m │ │ │ │ ├── QCCompositionPickerInfos.m │ │ │ │ ├── QCCompositionPickerLayer.m │ │ │ │ ├── QCCompositionPickerNavigationView.m │ │ │ │ ├── QCCompositionPickerPanel.m │ │ │ │ ├── QCCompositionPickerView.m │ │ │ │ ├── QCCompositionRepository.m │ │ │ │ ├── QCCompositionSortDescriptor.m │ │ │ │ ├── QCConditional.m │ │ │ │ ├── QCContact.m │ │ │ │ ├── QCContext.m │ │ │ │ ├── QCContextProExtension.m │ │ │ │ ├── QCConverter_CoreGraphics.m │ │ │ │ ├── QCConverter_CoreImage.m │ │ │ │ ├── QCConverter_GLImageLib.m │ │ │ │ ├── QCConverter_OpenGL.m │ │ │ │ ├── QCConverter_XRGB.m │ │ │ │ ├── QCConverter_YUV422.m │ │ │ │ ├── QCCore3DLoader.m │ │ │ │ ├── QCCore3DLoaderUI.m │ │ │ │ ├── QCCounter.m │ │ │ │ ├── QCCroppedImageProvider.m │ │ │ │ ├── QCCroppedProvider_CoreGraphics.m │ │ │ │ ├── QCCroppedProvider_CoreText.m │ │ │ │ ├── QCCube.m │ │ │ │ ├── QCDashboardButton.m │ │ │ │ ├── QCDataImage.m │ │ │ │ ├── QCDatagramBroadcaster.m │ │ │ │ ├── QCDatagramReceiver.m │ │ │ │ ├── QCDatagramSocket.m │ │ │ │ ├── QCDateFormatter.m │ │ │ │ ├── QCDateFormatterUI.m │ │ │ │ ├── QCDemultiplexer.m │ │ │ │ ├── QCDemultiplexerUI.m │ │ │ │ ├── QCDepthBlurEffectDetector.m │ │ │ │ ├── QCDepthBlurEffectEditor.m │ │ │ │ ├── QCDepthBlurEffectImage.m │ │ │ │ ├── QCDepthBlurEffectParameters.m │ │ │ │ ├── QCDetector.m │ │ │ │ ├── QCDifferentialValue.m │ │ │ │ ├── QCDirectoryScanner.m │ │ │ │ ├── QCDirectoryScannerUI.m │ │ │ │ ├── QCDownloadPatch.m │ │ │ │ ├── QCEventManager.m │ │ │ │ ├── QCExporter_CoreAnimation.m │ │ │ │ ├── QCExporter_CoreGraphics.m │ │ │ │ ├── QCExporter_CoreImage.m │ │ │ │ ├── QCExporter_CoreImage_Provider.m │ │ │ │ ├── QCExporter_CoreVideo.m │ │ │ │ ├── QCExporter_NSImage.m │ │ │ │ ├── QCExporter_OpenCL.m │ │ │ │ ├── QCExpression.m │ │ │ │ ├── QCExpressionUI.m │ │ │ │ ├── QCFPSDisplay.m │ │ │ │ ├── QCFakePatch.m │ │ │ │ ├── QCFilter.m │ │ │ │ ├── QCFlameImage.m │ │ │ │ ├── QCFlameImageUI.m │ │ │ │ ├── QCFog.m │ │ │ │ ├── QCFullScreenWindow.m │ │ │ │ ├── QCGLSLShader.m │ │ │ │ ├── QCGLSLShaderUI.m │ │ │ │ ├── QCGradient.m │ │ │ │ ├── QCGraphicsContext.m │ │ │ │ ├── QCGraphicsRenderState.m │ │ │ │ ├── QCGrid.m │ │ │ │ ├── QCHIDInput.m │ │ │ │ ├── QCHIDInputUI.m │ │ │ │ ├── QCHostInfo.m │ │ │ │ ├── QCHotZone.m │ │ │ │ ├── QCImage.m │ │ │ │ ├── QCImage2DMemObject.m │ │ │ │ ├── QCImage3DMemObject.m │ │ │ │ ├── QCImageAccumulator.m │ │ │ │ ├── QCImageAccumulatorUI.m │ │ │ │ ├── QCImageBuffer.m │ │ │ │ ├── QCImageBufferConverter.m │ │ │ │ ├── QCImageBufferProvider.m │ │ │ │ ├── QCImageBuffer_GCCacheResource.m │ │ │ │ ├── QCImageColorMatchingProperties.m │ │ │ │ ├── QCImageConversionSequence.m │ │ │ │ ├── QCImageCrop.m │ │ │ │ ├── QCImageDimensions.m │ │ │ │ ├── QCImageDownloader.m │ │ │ │ ├── QCImageDownloaderUI.m │ │ │ │ ├── QCImageExporter.m │ │ │ │ ├── QCImageFilter.m │ │ │ │ ├── QCImageFocusRect.m │ │ │ │ ├── QCImageHistogram.m │ │ │ │ ├── QCImageInfo.m │ │ │ │ ├── QCImageKernel.m │ │ │ │ ├── QCImageKernelUI.m │ │ │ │ ├── QCImageLoader.m │ │ │ │ ├── QCImageLoaderUI.m │ │ │ │ ├── QCImageLoaderView.m │ │ │ │ ├── QCImageManager.m │ │ │ │ ├── QCImageManagerAgeProfileView.m │ │ │ │ ├── QCImageManagerProfileView.m │ │ │ │ ├── QCImageMetadata.m │ │ │ │ ├── QCImageOrigin.m │ │ │ │ ├── QCImagePixel.m │ │ │ │ ├── QCImagePixelBuffer.m │ │ │ │ ├── QCImagePort.m │ │ │ │ ├── QCImagePort_Cache.m │ │ │ │ ├── QCImageProperties.m │ │ │ │ ├── QCImageProvider.m │ │ │ │ ├── QCImageResize.m │ │ │ │ ├── QCImageSurfaceBuffer.m │ │ │ │ ├── QCImageTextureBuffer.m │ │ │ │ ├── QCImageTextureBuffer_CVOpenGLTexture.m │ │ │ │ ├── QCImageTexturingProperties.m │ │ │ │ ├── QCImageTransform.m │ │ │ │ ├── QCImageView.m │ │ │ │ ├── QCIndexMenuValueTransformer.m │ │ │ │ ├── QCIndexPort.m │ │ │ │ ├── QCInfo.m │ │ │ │ ├── QCInspector.m │ │ │ │ ├── QCInteractionManager.m │ │ │ │ ├── QCInteractionPatchActor.m │ │ │ │ ├── QCInteractionPort.m │ │ │ │ ├── QCInterpolation.m │ │ │ │ ├── QCInterpolationPort.m │ │ │ │ ├── QCInterpolationUI.m │ │ │ │ ├── QCInterpolationView.m │ │ │ │ ├── QCIterator.m │ │ │ │ ├── QCIteratorVariables.m │ │ │ │ ├── QCKeyFrameEditor.m │ │ │ │ ├── QCKeyFrameEditorView.m │ │ │ │ ├── QCKeyFrameEditorWindow.m │ │ │ │ ├── QCKeyFrameList.m │ │ │ │ ├── QCKeyboard.m │ │ │ │ ├── QCKeyboardTableView.m │ │ │ │ ├── QCKeyboardUI.m │ │ │ │ ├── QCLFO.m │ │ │ │ ├── QCLighting.m │ │ │ │ ├── QCLine.m │ │ │ │ ├── QCLines.m │ │ │ │ ├── QCLink.m │ │ │ │ ├── QCList.m │ │ │ │ ├── QCLog.m │ │ │ │ ├── QCLogView.m │ │ │ │ ├── QCLogic.m │ │ │ │ ├── QCMath.m │ │ │ │ ├── QCMathematicalExpression.m │ │ │ │ ├── QCMemObject.m │ │ │ │ ├── QCMesh.m │ │ │ │ ├── QCMeshCreator.m │ │ │ │ ├── QCMeshMaterialGetter.m │ │ │ │ ├── QCMeshMaterialSetter.m │ │ │ │ ├── QCMeshPort.m │ │ │ │ ├── QCMeshPropertyGetter.m │ │ │ │ ├── QCMeshPropertySetter.m │ │ │ │ ├── QCMeshRenderer.m │ │ │ │ ├── QCMeshTransform.m │ │ │ │ ├── QCMiniPatchActor.m │ │ │ │ ├── QCMouse.m │ │ │ │ ├── QCMouseInteraction.m │ │ │ │ ├── QCMultiplexer.m │ │ │ │ ├── QCMultiplexerBooleanPort.m │ │ │ │ ├── QCMultiplexerColorPort.m │ │ │ │ ├── QCMultiplexerImagePort.m │ │ │ │ ├── QCMultiplexerIndexPort.m │ │ │ │ ├── QCMultiplexerMeshPort.m │ │ │ │ ├── QCMultiplexerNumberPort.m │ │ │ │ ├── QCMultiplexerStringPort.m │ │ │ │ ├── QCMultiplexerStructurePort.m │ │ │ │ ├── QCMultiplexerUI.m │ │ │ │ ├── QCMultiplexerVirtualPort.m │ │ │ │ ├── QCNSBitmapImageRep.m │ │ │ │ ├── QCNetworkBroadcaster.m │ │ │ │ ├── QCNetworkBroadcasterUI.m │ │ │ │ ├── QCNetworkPatch.m │ │ │ │ ├── QCNetworkPatchUI.m │ │ │ │ ├── QCNetworkReceiver.m │ │ │ │ ├── QCNetworkReceiverUI.m │ │ │ │ ├── QCNetworkSynchronizer.m │ │ │ │ ├── QCNetworkSynchronizerUI.m │ │ │ │ ├── QCNodeManager.m │ │ │ │ ├── QCNoise.m │ │ │ │ ├── QCNumberFormatter.m │ │ │ │ ├── QCNumberFormatterUI.m │ │ │ │ ├── QCNumberPort.m │ │ │ │ ├── QCNumericalFormatter.m │ │ │ │ ├── QCOSCBroadcaster.m │ │ │ │ ├── QCOSCBroadcasterUI.m │ │ │ │ ├── QCOSCPatch.m │ │ │ │ ├── QCOSCPatchUI.m │ │ │ │ ├── QCOSCReceiver.m │ │ │ │ ├── QCOSCReceiverUI.m │ │ │ │ ├── QCObject.m │ │ │ │ ├── QCObjectPort.m │ │ │ │ ├── QCOpenCL.m │ │ │ │ ├── QCOpenCLConverter.m │ │ │ │ ├── QCOpenCLInfo.m │ │ │ │ ├── QCOpenCLUI.m │ │ │ │ ├── QCOpenGLContext.m │ │ │ │ ├── QCOpenGLInfo.m │ │ │ │ ├── QCOpenGLInfoUI.m │ │ │ │ ├── QCOpenGLPort_Blending.m │ │ │ │ ├── QCOpenGLPort_Color.m │ │ │ │ ├── QCOpenGLPort_Culling.m │ │ │ │ ├── QCOpenGLPort_Image.m │ │ │ │ ├── QCOpenGLPort_Mesh.m │ │ │ │ ├── QCOpenGLPort_SceneKitBlending.m │ │ │ │ ├── QCOpenGLPort_SceneKitCulling.m │ │ │ │ ├── QCOpenGLPort_ZBuffer.m │ │ │ │ ├── QCOpenGLRenderState.m │ │ │ │ ├── QCParameterInfo.m │ │ │ │ ├── QCParticleSystem.m │ │ │ │ ├── QCParticleSystemUI.m │ │ │ │ ├── QCPatch.m │ │ │ │ ├── QCPatchActor.m │ │ │ │ ├── QCPatchBrowserView.m │ │ │ │ ├── QCPatchClassDescription.m │ │ │ │ ├── QCPatchController.m │ │ │ │ ├── QCPatchEditorView.m │ │ │ │ ├── QCPatchInfo.m │ │ │ │ ├── QCPatchManagerView.m │ │ │ │ ├── QCPatchParameterView.m │ │ │ │ ├── QCPatchParametersView.m │ │ │ │ ├── QCPatchPathView.m │ │ │ │ ├── QCPatchProExtension.m │ │ │ │ ├── QCPatchProfileView.m │ │ │ │ ├── QCPatchRenderer.m │ │ │ │ ├── QCPatchRendererUI.m │ │ │ │ ├── QCPatchRenderingInfo.m │ │ │ │ ├── QCPatchView.m │ │ │ │ ├── QCPhysics.m │ │ │ │ ├── QCPhysicsEffect.m │ │ │ │ ├── QCPickerSelectionLayer.m │ │ │ │ ├── QCPixelFormat.m │ │ │ │ ├── QCPixelFormat_422YpCbCr8_601.m │ │ │ │ ├── QCPixelFormat_422YpCbCr8_709.m │ │ │ │ ├── QCPixelFormat_ARGB8.m │ │ │ │ ├── QCPixelFormat_BGRA8.m │ │ │ │ ├── QCPixelFormat_BGRX8.m │ │ │ │ ├── QCPixelFormat_CMYK16.m │ │ │ │ ├── QCPixelFormat_CMYK8.m │ │ │ │ ├── QCPixelFormat_CMYKf.m │ │ │ │ ├── QCPixelFormat_I16.m │ │ │ │ ├── QCPixelFormat_I8.m │ │ │ │ ├── QCPixelFormat_If.m │ │ │ │ ├── QCPixelFormat_Ih.m │ │ │ │ ├── QCPixelFormat_KYMC8.m │ │ │ │ ├── QCPixelFormat_M_I16.m │ │ │ │ ├── QCPixelFormat_M_I8.m │ │ │ │ ├── QCPixelFormat_M_If.m │ │ │ │ ├── QCPixelFormat_M_Ih.m │ │ │ │ ├── QCPixelFormat_RGB16.m │ │ │ │ ├── QCPixelFormat_RGB8.m │ │ │ │ ├── QCPixelFormat_RGBA16.m │ │ │ │ ├── QCPixelFormat_RGBA8.m │ │ │ │ ├── QCPixelFormat_RGBAf.m │ │ │ │ ├── QCPixelFormat_RGBAh.m │ │ │ │ ├── QCPixelFormat_RGBX8.m │ │ │ │ ├── QCPixelFormat_RGBf.m │ │ │ │ ├── QCPixelFormat_RGBh.m │ │ │ │ ├── QCPixelFormat_XRGB8.m │ │ │ │ ├── QCPixelFormat_YUVS.m │ │ │ │ ├── QCPlasmaImage.m │ │ │ │ ├── QCPlasmaImageUI.m │ │ │ │ ├── QCPlugIn.m │ │ │ │ ├── QCPlugInInputImage.m │ │ │ │ ├── QCPlugInInspector.m │ │ │ │ ├── QCPlugInPatch.m │ │ │ │ ├── QCPlugInViewController.m │ │ │ │ ├── QCPlugOutputImage.m │ │ │ │ ├── QCPort.m │ │ │ │ ├── QCPortGLView.m │ │ │ │ ├── QCPortTooltipView.m │ │ │ │ ├── QCPortView.m │ │ │ │ ├── QCProfileConfigurationView.m │ │ │ │ ├── QCProfileView.m │ │ │ │ ├── QCProgrammablePatch.m │ │ │ │ ├── QCProgrammablePatchView.m │ │ │ │ ├── QCProjection.m │ │ │ │ ├── QCProviderImageCache.m │ │ │ │ ├── QCProvider_CoreAnimation.m │ │ │ │ ├── QCProvider_CoreGraphics.m │ │ │ │ ├── QCProvider_CoreImage.m │ │ │ │ ├── QCProvider_CoreText.m │ │ │ │ ├── QCProvider_CoreVideo.m │ │ │ │ ├── QCProvider_OpenCL.m │ │ │ │ ├── QCProvider_SceneKit.m │ │ │ │ ├── QCProxyPort.m │ │ │ │ ├── QCPsychedelic.m │ │ │ │ ├── QCPsychedelicUI.m │ │ │ │ ├── QCPulse.m │ │ │ │ ├── QCQuadric.m │ │ │ │ ├── QCQuadricUI.m │ │ │ │ ├── QCQueue.m │ │ │ │ ├── QCRandom.m │ │ │ │ ├── QCRangeValue.m │ │ │ │ ├── QCRawFilter.m │ │ │ │ ├── QCRecursor.m │ │ │ │ ├── QCRegion.m │ │ │ │ ├── QCRenderInImage.m │ │ │ │ ├── QCRenderInImageUI.m │ │ │ │ ├── QCRenderState.m │ │ │ │ ├── QCRenderView.m │ │ │ │ ├── QCRenderer.m │ │ │ │ ├── QCRenderingManager.m │ │ │ │ ├── QCRenderingPatch.m │ │ │ │ ├── QCReplicator.m │ │ │ │ ├── QCRepositoryCompositions.m │ │ │ │ ├── QCResource.m │ │ │ │ ├── QCResourcePool.m │ │ │ │ ├── QCRoundValue.m │ │ │ │ ├── QCRunLoopPatch.m │ │ │ │ ├── QCSCN_AnimationInfo.m │ │ │ │ ├── QCSCN_BackingLayer.m │ │ │ │ ├── QCSCN_BasicLayerAnimation.m │ │ │ │ ├── QCSCN_BoundingBox.m │ │ │ │ ├── QCSCN_BoundingSphere.m │ │ │ │ ├── QCSCN_CARendererRegistry.m │ │ │ │ ├── QCSCN_Camera.m │ │ │ │ ├── QCSCN_CameraControlEventHandler.m │ │ │ │ ├── QCSCN_CameraControlEventHandlerReserved.m │ │ │ │ ├── QCSCN_CameraReserved.m │ │ │ │ ├── QCSCN_DelegateSource.m │ │ │ │ ├── QCSCN_EdgeAntialiasingOptions.m │ │ │ │ ├── QCSCN_EdgeAntialiasingOptionsReserved.m │ │ │ │ ├── QCSCN_EventHandler.m │ │ │ │ ├── QCSCN_EventHandlerReserved.m │ │ │ │ ├── QCSCN_Geometry.m │ │ │ │ ├── QCSCN_GeometryElement.m │ │ │ │ ├── QCSCN_GeometryElementReserved.m │ │ │ │ ├── QCSCN_GeometryReserved.m │ │ │ │ ├── QCSCN_GeometrySource.m │ │ │ │ ├── QCSCN_GeometrySourceReserved.m │ │ │ │ ├── QCSCN_HitTestResult.m │ │ │ │ ├── QCSCN_HitTestResultReserved.m │ │ │ │ ├── QCSCN_ImageSource.m │ │ │ │ ├── QCSCN_Layer.m │ │ │ │ ├── QCSCN_LayerFixedPipeline.m │ │ │ │ ├── QCSCN_LayerReserved.m │ │ │ │ ├── QCSCN_LayerSource.m │ │ │ │ ├── QCSCN_Light.m │ │ │ │ ├── QCSCN_LightReserved.m │ │ │ │ ├── QCSCN_LoadingLayer.m │ │ │ │ ├── QCSCN_LoadingProgressIndicatorLayer.m │ │ │ │ ├── QCSCN_Material.m │ │ │ │ ├── QCSCN_MaterialAttachment.m │ │ │ │ ├── QCSCN_MaterialProperty.m │ │ │ │ ├── QCSCN_MaterialPropertyReserved.m │ │ │ │ ├── QCSCN_MaterialReserved.m │ │ │ │ ├── QCSCN_Morpher.m │ │ │ │ ├── QCSCN_MorpherReserved.m │ │ │ │ ├── QCSCN_Node.m │ │ │ │ ├── QCSCN_NodeReserved.m │ │ │ │ ├── QCSCN_Parameter.m │ │ │ │ ├── QCSCN_ParameterReserved.m │ │ │ │ ├── QCSCN_Program.m │ │ │ │ ├── QCSCN_ProgramReserved.m │ │ │ │ ├── QCSCN_Renderer.m │ │ │ │ ├── QCSCN_RendererCameraModifier.m │ │ │ │ ├── QCSCN_RendererReserved.m │ │ │ │ ├── QCSCN_Scene.m │ │ │ │ ├── QCSCN_SceneReserved.m │ │ │ │ ├── QCSCN_SceneSource.m │ │ │ │ ├── QCSCN_SceneSourceReserved.m │ │ │ │ ├── QCSCN_Skinner.m │ │ │ │ ├── QCSCN_TextureDelegateSource.m │ │ │ │ ├── QCSCN_TextureLayerSource.m │ │ │ │ ├── QCSCN_TextureOffscreenRenderingSource.m │ │ │ │ ├── QCSCN_TextureSource.m │ │ │ │ ├── QCSCN_Transaction.m │ │ │ │ ├── QCSCN_View.m │ │ │ │ ├── QCSCN_ViewReserved.m │ │ │ │ ├── QCSampleHold.m │ │ │ │ ├── QCScaledNumberPort.m │ │ │ │ ├── QCScreenInfo.m │ │ │ │ ├── QCScreenInfoUI.m │ │ │ │ ├── QCSetStructureValue.m │ │ │ │ ├── QCSharedPatchActor.m │ │ │ │ ├── QCSharedTimers.m │ │ │ │ ├── QCSignal.m │ │ │ │ ├── QCSlideShowController.m │ │ │ │ ├── QCSmooth.m │ │ │ │ ├── QCSourceCodeView.m │ │ │ │ ├── QCSourceRulerView.m │ │ │ │ ├── QCSourceTextView.m │ │ │ │ ├── QCSplitter.m │ │ │ │ ├── QCSplitterIndexPort.m │ │ │ │ ├── QCSplitterUI.m │ │ │ │ ├── QCSpotlight.m │ │ │ │ ├── QCSprite.m │ │ │ │ ├── QCStream.m │ │ │ │ ├── QCStreamExporter.m │ │ │ │ ├── QCStreamExporter_QCArray.m │ │ │ │ ├── QCStreamManager.m │ │ │ │ ├── QCStreamProvider.m │ │ │ │ ├── QCStreamProvider_Core3D.m │ │ │ │ ├── QCStreamProvider_QCArray.m │ │ │ │ ├── QCStreamProvider_QCMemObject.m │ │ │ │ ├── QCStringCase.m │ │ │ │ ├── QCStringCompare.m │ │ │ │ ├── QCStringComponents.m │ │ │ │ ├── QCStringFormat.m │ │ │ │ ├── QCStringLength.m │ │ │ │ ├── QCStringMD5.m │ │ │ │ ├── QCStringPort.m │ │ │ │ ├── QCStringRange.m │ │ │ │ ├── QCStringReplace.m │ │ │ │ ├── QCStringTimecode.m │ │ │ │ ├── QCStringTruncate.m │ │ │ │ ├── QCStructure.m │ │ │ │ ├── QCStructureArrayPort.m │ │ │ │ ├── QCStructureAsString.m │ │ │ │ ├── QCStructureCIVectorPort.m │ │ │ │ ├── QCStructureCount.m │ │ │ │ ├── QCStructureDictionaryPort.m │ │ │ │ ├── QCStructureMember.m │ │ │ │ ├── QCStructurePort.m │ │ │ │ ├── QCStructureRange.m │ │ │ │ ├── QCStructureReverse.m │ │ │ │ ├── QCStructureSort.m │ │ │ │ ├── QCSynchronousURLConnectionDelegate.m │ │ │ │ ├── QCSystemTime.m │ │ │ │ ├── QCTableView.m │ │ │ │ ├── QCTablet.m │ │ │ │ ├── QCTeapot.m │ │ │ │ ├── QCTextImage.m │ │ │ │ ├── QCTextImageUI.m │ │ │ │ ├── QCTextRenderer.m │ │ │ │ ├── QCTextView.m │ │ │ │ ├── QCThreadPatch.m │ │ │ │ ├── QCTime.m │ │ │ │ ├── QCTimeLine.m │ │ │ │ ├── QCTimeLineEditorView.m │ │ │ │ ├── QCTimeLineLegendColorWell.m │ │ │ │ ├── QCTimeLineLegendTextField.m │ │ │ │ ├── QCTimeLineUI.m │ │ │ │ ├── QCTimeLineView.m │ │ │ │ ├── QCTimeLoop.m │ │ │ │ ├── QCTrackBall.m │ │ │ │ ├── QCTrackBallUI.m │ │ │ │ ├── QCURLConnection.m │ │ │ │ ├── QCView.m │ │ │ │ ├── QCVirtualPort.m │ │ │ │ ├── QCWatcher.m │ │ │ │ ├── QCWatcherUI.m │ │ │ │ ├── QCXMLDownloader.m │ │ │ │ ├── QCZoomView.m │ │ │ │ └── QuartzComposer.m │ │ ├── QuartzFilters │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── QuartzFilters │ │ │ │ │ ├── AssignComponentInfo.h │ │ │ │ │ ├── DefaultComponentInfo.h │ │ │ │ │ ├── IntermediateComponentInfo.h │ │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ │ ├── NSTableViewDelegate.h │ │ │ │ │ ├── NSTextFieldDelegate.h │ │ │ │ │ ├── QComponentAssignProfileCellView.h │ │ │ │ │ ├── QComponentConvertToProfileCellView.h │ │ │ │ │ ├── QComponentDefaultProfileCellView.h │ │ │ │ │ ├── QComponentImageMonoSamplingCellView.h │ │ │ │ │ ├── QComponentImageSamplingCellView.h │ │ │ │ │ ├── QComponentInfoTuple.h │ │ │ │ │ ├── QComponentIntermediateCellView.h │ │ │ │ │ ├── QComponentPDFX3OptionsCellView.h │ │ │ │ │ ├── QComponentRenderingIntentCellView.h │ │ │ │ │ ├── QComponentTupleSetCellView.h │ │ │ │ │ ├── QCompressionIsJPEGTransformer.h │ │ │ │ │ ├── QConvolutionIsNotNone.h │ │ │ │ │ ├── QEditableTextField.h │ │ │ │ │ ├── QFilter.h │ │ │ │ │ ├── QFilterActionMenu.h │ │ │ │ │ ├── QFilterButton.h │ │ │ │ │ ├── QFilterCategory.h │ │ │ │ │ ├── QFilterComponent.h │ │ │ │ │ ├── QFilterComponentAssignProfile.h │ │ │ │ │ ├── QFilterComponentChild.h │ │ │ │ │ ├── QFilterComponentComments.h │ │ │ │ │ ├── QFilterComponentConvertToProfile.h │ │ │ │ │ ├── QFilterComponentDefaultProfile.h │ │ │ │ │ ├── QFilterComponentDomains.h │ │ │ │ │ ├── QFilterComponentImageCompression.h │ │ │ │ │ ├── QFilterComponentImageConvolution.h │ │ │ │ │ ├── QFilterComponentImageMonoSampling.h │ │ │ │ │ ├── QFilterComponentImageSampling.h │ │ │ │ │ ├── QFilterComponentIntermediate.h │ │ │ │ │ ├── QFilterComponentPDFPolicies.h │ │ │ │ │ ├── QFilterComponentPDFX3Options.h │ │ │ │ │ ├── QFilterComponentRenderingIntent.h │ │ │ │ │ ├── QFilterImageInfo.h │ │ │ │ │ ├── QFilterInfo.h │ │ │ │ │ ├── QFilterOutlineView.h │ │ │ │ │ ├── QFilterPDFX3Info.h │ │ │ │ │ ├── QFilterPanel.h │ │ │ │ │ ├── QFilterPanelPrivate.h │ │ │ │ │ ├── QFilterTableCellView.h │ │ │ │ │ ├── QFilterUndoController.h │ │ │ │ │ ├── QFilterUndoControllerDelegate.h │ │ │ │ │ ├── QFilterView.h │ │ │ │ │ ├── QFilterViewController.h │ │ │ │ │ ├── QFilterViewControllerDelegate.h │ │ │ │ │ ├── QImageQualityTransformer.h │ │ │ │ │ ├── QIntentTuple.h │ │ │ │ │ ├── QIntermediateTuple.h │ │ │ │ │ ├── QProfileTuple.h │ │ │ │ │ ├── QProfileTupleCellView.h │ │ │ │ │ ├── QRectObject.h │ │ │ │ │ ├── QSizeObject.h │ │ │ │ │ ├── QValueIsNonzeroTransformer.h │ │ │ │ │ ├── QuartzFilter.h │ │ │ │ │ ├── QuartzFilterInternal.h │ │ │ │ │ ├── QuartzFilterManager.h │ │ │ │ │ ├── QuartzFilterManagerInternal.h │ │ │ │ │ ├── QuartzFilterView.h │ │ │ │ │ ├── QuartzFilters.h │ │ │ │ │ ├── RenderingIntentInfo.h │ │ │ │ │ └── TargetComponentInfo.h │ │ │ └── src │ │ │ │ ├── AssignComponentInfo.m │ │ │ │ ├── DefaultComponentInfo.m │ │ │ │ ├── IntermediateComponentInfo.m │ │ │ │ ├── QComponentAssignProfileCellView.m │ │ │ │ ├── QComponentConvertToProfileCellView.m │ │ │ │ ├── QComponentDefaultProfileCellView.m │ │ │ │ ├── QComponentImageMonoSamplingCellView.m │ │ │ │ ├── QComponentImageSamplingCellView.m │ │ │ │ ├── QComponentInfoTuple.m │ │ │ │ ├── QComponentIntermediateCellView.m │ │ │ │ ├── QComponentPDFX3OptionsCellView.m │ │ │ │ ├── QComponentRenderingIntentCellView.m │ │ │ │ ├── QComponentTupleSetCellView.m │ │ │ │ ├── QCompressionIsJPEGTransformer.m │ │ │ │ ├── QConvolutionIsNotNone.m │ │ │ │ ├── QEditableTextField.m │ │ │ │ ├── QFilter.m │ │ │ │ ├── QFilterActionMenu.m │ │ │ │ ├── QFilterButton.m │ │ │ │ ├── QFilterCategory.m │ │ │ │ ├── QFilterComponent.m │ │ │ │ ├── QFilterComponentAssignProfile.m │ │ │ │ ├── QFilterComponentChild.m │ │ │ │ ├── QFilterComponentComments.m │ │ │ │ ├── QFilterComponentConvertToProfile.m │ │ │ │ ├── QFilterComponentDefaultProfile.m │ │ │ │ ├── QFilterComponentDomains.m │ │ │ │ ├── QFilterComponentImageCompression.m │ │ │ │ ├── QFilterComponentImageConvolution.m │ │ │ │ ├── QFilterComponentImageMonoSampling.m │ │ │ │ ├── QFilterComponentImageSampling.m │ │ │ │ ├── QFilterComponentIntermediate.m │ │ │ │ ├── QFilterComponentPDFPolicies.m │ │ │ │ ├── QFilterComponentPDFX3Options.m │ │ │ │ ├── QFilterComponentRenderingIntent.m │ │ │ │ ├── QFilterImageInfo.m │ │ │ │ ├── QFilterInfo.m │ │ │ │ ├── QFilterOutlineView.m │ │ │ │ ├── QFilterPDFX3Info.m │ │ │ │ ├── QFilterPanel.m │ │ │ │ ├── QFilterPanelPrivate.m │ │ │ │ ├── QFilterTableCellView.m │ │ │ │ ├── QFilterUndoController.m │ │ │ │ ├── QFilterView.m │ │ │ │ ├── QFilterViewController.m │ │ │ │ ├── QImageQualityTransformer.m │ │ │ │ ├── QIntentTuple.m │ │ │ │ ├── QIntermediateTuple.m │ │ │ │ ├── QProfileTuple.m │ │ │ │ ├── QProfileTupleCellView.m │ │ │ │ ├── QRectObject.m │ │ │ │ ├── QSizeObject.m │ │ │ │ ├── QValueIsNonzeroTransformer.m │ │ │ │ ├── QuartzFilter.m │ │ │ │ ├── QuartzFilterInternal.m │ │ │ │ ├── QuartzFilterManager.m │ │ │ │ ├── QuartzFilterManagerInternal.m │ │ │ │ ├── QuartzFilterView.m │ │ │ │ ├── QuartzFilters.m │ │ │ │ ├── RenderingIntentInfo.m │ │ │ │ └── TargetComponentInfo.m │ │ ├── QuickLookUI │ │ │ ├── include │ │ │ │ └── QuickLookUI │ │ │ │ │ ├── QLPreviewPanel.h │ │ │ │ │ ├── QLPreviewView.h │ │ │ │ │ └── QuickLookUI.h │ │ │ └── src │ │ │ │ ├── QLPreviewPanel.m │ │ │ │ └── QLPreviewView.m │ │ ├── TODO.md │ │ ├── include │ │ │ └── Quartz │ │ │ │ └── Quartz.h │ │ └── src │ │ │ └── Quartz.c │ ├── QuickLook │ │ ├── CMakeLists.txt │ │ ├── constants.c │ │ ├── include │ │ │ └── QuickLook │ │ │ │ ├── QLDebugController.h │ │ │ │ ├── QLDebugSatelliteController.h │ │ │ │ ├── QLDebugServerController.h │ │ │ │ ├── QLImageWrapper.h │ │ │ │ ├── QLPreview.h │ │ │ │ ├── QLTestingLog.h │ │ │ │ └── QuickLook.h │ │ └── src │ │ │ ├── QLDebugController.m │ │ │ ├── QLDebugSatelliteController.m │ │ │ ├── QLDebugServerController.m │ │ │ ├── QLImageWrapper.m │ │ │ ├── QLPreview.m │ │ │ ├── QLTestingLog.m │ │ │ └── QuickLook.m │ ├── SceneKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── SceneKit │ │ │ │ ├── AVAudio3DMixing.h │ │ │ │ ├── AVCaptureVideoDataOutputSampleBufferDelegate.h │ │ │ │ ├── C3DAnimationBinding.h │ │ │ │ ├── C3DBinding.h │ │ │ │ ├── C3DEngineNotificationQueueTransientWrapper.h │ │ │ │ ├── C3DIONSZipFileArchive.h │ │ │ │ ├── CAAnimation+SceneKitAdditions.h │ │ │ │ ├── CAKeyframeAnimation+SCNAddition.h │ │ │ │ ├── CALayer+SCN_JSSupport.h │ │ │ │ ├── JSExport.h │ │ │ │ ├── MDLAsset+SCNModelIO.h │ │ │ │ ├── MDLCamera+SCNModelIO.h │ │ │ │ ├── MDLComponent.h │ │ │ │ ├── MDLLight+SCNModelIO.h │ │ │ │ ├── MDLLightProbe+SCNModelIO.h │ │ │ │ ├── MDLMaterial+SCNModelIO.h │ │ │ │ ├── MDLMesh+SCNModelIO.h │ │ │ │ ├── MDLMorphDeformerComponent.h │ │ │ │ ├── MDLObject+SCNModelIO.h │ │ │ │ ├── MDLSkinDeformerComponent.h │ │ │ │ ├── MDLSubmesh+SCNModelIO.h │ │ │ │ ├── MTLBuffer.h │ │ │ │ ├── MTLDevice.h │ │ │ │ ├── MTLResource.h │ │ │ │ ├── MTLTexture.h │ │ │ │ ├── NSArray+SCNAdditions.h │ │ │ │ ├── NSCoder+SCNExtensions.h │ │ │ │ ├── NSColor+SCNAdditions.h │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ ├── NSData+SCNExtensions.h │ │ │ │ ├── NSDictionary+SCNAdditions.h │ │ │ │ ├── NSImage+SCNAddition.h │ │ │ │ ├── NSImageRep+SCNAdditions.h │ │ │ │ ├── NSKeyedUnarchiverDelegate.h │ │ │ │ ├── NSObject+SCN_DisplayLinkExtensions.h │ │ │ │ ├── NSOutlineViewDataSource.h │ │ │ │ ├── NSOutlineViewDelegate.h │ │ │ │ ├── NSString+SCNExtensions.h │ │ │ │ ├── NSValue+Core3DKitAdditions.h │ │ │ │ ├── SCN3DConnexionDevice.h │ │ │ │ ├── SCNAVPlayerSource.h │ │ │ │ ├── SCNAccelerationConstraint.h │ │ │ │ ├── SCNAction.h │ │ │ │ ├── SCNActionCustom.h │ │ │ │ ├── SCNActionFade.h │ │ │ │ ├── SCNActionGroup.h │ │ │ │ ├── SCNActionHide.h │ │ │ │ ├── SCNActionJSExport.h │ │ │ │ ├── SCNActionJavaScript.h │ │ │ │ ├── SCNActionMove.h │ │ │ │ ├── SCNActionPerformSelector.h │ │ │ │ ├── SCNActionPlaySound.h │ │ │ │ ├── SCNActionReference.h │ │ │ │ ├── SCNActionRemove.h │ │ │ │ ├── SCNActionRepeat.h │ │ │ │ ├── SCNActionRotate.h │ │ │ │ ├── SCNActionRunAction.h │ │ │ │ ├── SCNActionRunBlock.h │ │ │ │ ├── SCNActionScale.h │ │ │ │ ├── SCNActionSequence.h │ │ │ │ ├── SCNActionTargetState.h │ │ │ │ ├── SCNActionWait.h │ │ │ │ ├── SCNActionable.h │ │ │ │ ├── SCNAnimatable.h │ │ │ │ ├── SCNAnimation.h │ │ │ │ ├── SCNAnimationEvent.h │ │ │ │ ├── SCNAnimationEventJSExport.h │ │ │ │ ├── SCNAnimationPlayer.h │ │ │ │ ├── SCNAnimationReference.h │ │ │ │ ├── SCNAssetCatalog.h │ │ │ │ ├── SCNAssetCatalogCacheEntry.h │ │ │ │ ├── SCNAudioPlayer.h │ │ │ │ ├── SCNAudioSource.h │ │ │ │ ├── SCNAuthoringEnvironment.h │ │ │ │ ├── SCNAuthoringEnvironment2.h │ │ │ │ ├── SCNAvoidOccluderConstraint.h │ │ │ │ ├── SCNBackingLayer.h │ │ │ │ ├── SCNBillboardConstraint.h │ │ │ │ ├── SCNBoundingBox.h │ │ │ │ ├── SCNBoundingBoxJSExport.h │ │ │ │ ├── SCNBoundingSphere.h │ │ │ │ ├── SCNBoundingSphereJSExport.h │ │ │ │ ├── SCNBoundingVolume.h │ │ │ │ ├── SCNBox.h │ │ │ │ ├── SCNBoxJSExport.h │ │ │ │ ├── SCNBufferBinding.h │ │ │ │ ├── SCNBufferStream.h │ │ │ │ ├── SCNCOLLADAExportOperation.h │ │ │ │ ├── SCNCamera.h │ │ │ │ ├── SCNCameraControlConfiguration.h │ │ │ │ ├── SCNCameraControlEventHandler.h │ │ │ │ ├── SCNCameraController.h │ │ │ │ ├── SCNCameraControllerDelegate.h │ │ │ │ ├── SCNCameraJSExport.h │ │ │ │ ├── SCNCameraNavigationController.h │ │ │ │ ├── SCNCapsule.h │ │ │ │ ├── SCNCapsuleJSExport.h │ │ │ │ ├── SCNCaptureDeviceOutputConsumer.h │ │ │ │ ├── SCNCaptureDeviceOutputConsumerSource.h │ │ │ │ ├── SCNCaptureDeviceSource.h │ │ │ │ ├── SCNColorJSExport.h │ │ │ │ ├── SCNCommonProfileProgramCache.h │ │ │ │ ├── SCNCommonProfileProgramGenerator.h │ │ │ │ ├── SCNCommonProfileProgramGeneratorGL.h │ │ │ │ ├── SCNCommonProfileProgramGeneratorMetal.h │ │ │ │ ├── SCNCone.h │ │ │ │ ├── SCNConeJSExport.h │ │ │ │ ├── SCNConstantScaleConstraint.h │ │ │ │ ├── SCNConstraint.h │ │ │ │ ├── SCNConstraintJSExport.h │ │ │ │ ├── SCNCoreAnimationSource.h │ │ │ │ ├── SCNCylinder.h │ │ │ │ ├── SCNCylinderJSExport.h │ │ │ │ ├── SCNDeferredProgramGeneratorMetal.h │ │ │ │ ├── SCNDelegateSource.h │ │ │ │ ├── SCNDisplayLink.h │ │ │ │ ├── SCNDistanceConstraint.h │ │ │ │ ├── SCNEffect.h │ │ │ │ ├── SCNEventHandler.h │ │ │ │ ├── SCNExportOperation.h │ │ │ │ ├── SCNFixedSizePage.h │ │ │ │ ├── SCNFloor.h │ │ │ │ ├── SCNFloorJSExport.h │ │ │ │ ├── SCNGeometry.h │ │ │ │ ├── SCNGeometryDeformer.h │ │ │ │ ├── SCNGeometryElement.h │ │ │ │ ├── SCNGeometryElementJSExport.h │ │ │ │ ├── SCNGeometryJSExport.h │ │ │ │ ├── SCNGeometrySource.h │ │ │ │ ├── SCNGeometrySourceJSExport.h │ │ │ │ ├── SCNGeometryTessellator.h │ │ │ │ ├── SCNHitTestResult.h │ │ │ │ ├── SCNHitTestResultJSExport.h │ │ │ │ ├── SCNIKConstraint.h │ │ │ │ ├── SCNIKConstraintJSExport.h │ │ │ │ ├── SCNIKJoint.h │ │ │ │ ├── SCNImageSource.h │ │ │ │ ├── SCNJSAnimationGroupJSExport.h │ │ │ │ ├── SCNJSBasicAnimationJSExport.h │ │ │ │ ├── SCNJSImage.h │ │ │ │ ├── SCNJSImageJSExport.h │ │ │ │ ├── SCNJSKeyframeAnimationJSExport.h │ │ │ │ ├── SCNJSLayerJSExport.h │ │ │ │ ├── SCNJSMediaTimingFunctionJSExport.h │ │ │ │ ├── SCNJSValue.h │ │ │ │ ├── SCNJSValueSExport.h │ │ │ │ ├── SCNJSValueTmpImp.h │ │ │ │ ├── SCNJitterer.h │ │ │ │ ├── SCNKeyedArchiver.h │ │ │ │ ├── SCNKeyedUnarchiver.h │ │ │ │ ├── SCNLayer.h │ │ │ │ ├── SCNLevelOfDetail.h │ │ │ │ ├── SCNLevelOfDetailJSExport.h │ │ │ │ ├── SCNLight.h │ │ │ │ ├── SCNLightJSExport.h │ │ │ │ ├── SCNLookAtConstraint.h │ │ │ │ ├── SCNLookAtConstraintJSExport.h │ │ │ │ ├── SCNLowLatencyMetalLayer.h │ │ │ │ ├── SCNMTLArgumentBinder.h │ │ │ │ ├── SCNMTLBuffer.h │ │ │ │ ├── SCNMTLBufferAllocator.h │ │ │ │ ├── SCNMTLBufferAllocatorSubBuffer.h │ │ │ │ ├── SCNMTLComputePipeline.h │ │ │ │ ├── SCNMTLLibrary.h │ │ │ │ ├── SCNMTLLibraryManager.h │ │ │ │ ├── SCNMTLMesh.h │ │ │ │ ├── SCNMTLMeshElement.h │ │ │ │ ├── SCNMTLMorph.h │ │ │ │ ├── SCNMTLPassResourceBinding.h │ │ │ │ ├── SCNMTLRenderContext.h │ │ │ │ ├── SCNMTLRenderContextCommandBufferStatusMonitor.h │ │ │ │ ├── SCNMTLRenderContextResourceManagerMonitor.h │ │ │ │ ├── SCNMTLRenderPipeline.h │ │ │ │ ├── SCNMTLResourceBinding.h │ │ │ │ ├── SCNMTLResourceManager.h │ │ │ │ ├── SCNMTLSemanticResourceBinding.h │ │ │ │ ├── SCNMTLShadable.h │ │ │ │ ├── SCNMTLShadableKey.h │ │ │ │ ├── SCNMTLShaderBindingsGenerator.h │ │ │ │ ├── SCNMTLSkin.h │ │ │ │ ├── SCNMTLTessellator.h │ │ │ │ ├── SCNManipulableItem.h │ │ │ │ ├── SCNManipulator.h │ │ │ │ ├── SCNMaterial.h │ │ │ │ ├── SCNMaterialAttachment.h │ │ │ │ ├── SCNMaterialJSExport.h │ │ │ │ ├── SCNMaterialProperty.h │ │ │ │ ├── SCNMaterialPropertyJSExport.h │ │ │ │ ├── SCNMaterialPropertyTextureProvider.h │ │ │ │ ├── SCNMaterialPropertyTextureProviderHelper.h │ │ │ │ ├── SCNMaterialPropertyTextureProviderSource.h │ │ │ │ ├── SCNMetalBackingLayer.h │ │ │ │ ├── SCNMetalLayer.h │ │ │ │ ├── SCNMetalLayerJSExport.h │ │ │ │ ├── SCNMetalWireframeResource.h │ │ │ │ ├── SCNMonitor.h │ │ │ │ ├── SCNMorpher.h │ │ │ │ ├── SCNMorpherJSExport.h │ │ │ │ ├── SCNMovieExportOperation.h │ │ │ │ ├── SCNMutableGeometry.h │ │ │ │ ├── SCNMutableGeometrySource.h │ │ │ │ ├── SCNNode.h │ │ │ │ ├── SCNNodeComponent.h │ │ │ │ ├── SCNNodeJSExport.h │ │ │ │ ├── SCNNodeManipulableItem.h │ │ │ │ ├── SCNNodeReference.h │ │ │ │ ├── SCNNodeWeakComponent.h │ │ │ │ ├── SCNOffscreenRenderer.h │ │ │ │ ├── SCNOrderedDictionary.h │ │ │ │ ├── SCNParticlePropertyController.h │ │ │ │ ├── SCNParticlePropertyControllerJSExport.h │ │ │ │ ├── SCNParticleSystem.h │ │ │ │ ├── SCNParticleSystemJSExport.h │ │ │ │ ├── SCNPass.h │ │ │ │ ├── SCNPassContext.h │ │ │ │ ├── SCNPhysicsBallSocketJoint.h │ │ │ │ ├── SCNPhysicsBallSocketJointJSExport.h │ │ │ │ ├── SCNPhysicsBehavior.h │ │ │ │ ├── SCNPhysicsBehaviorJSExport.h │ │ │ │ ├── SCNPhysicsBody.h │ │ │ │ ├── SCNPhysicsBodyJSExport.h │ │ │ │ ├── SCNPhysicsCharacter.h │ │ │ │ ├── SCNPhysicsConeTwistJoint.h │ │ │ │ ├── SCNPhysicsContact.h │ │ │ │ ├── SCNPhysicsContactJSExport.h │ │ │ │ ├── SCNPhysicsCustomField.h │ │ │ │ ├── SCNPhysicsDragField.h │ │ │ │ ├── SCNPhysicsElectricField.h │ │ │ │ ├── SCNPhysicsField.h │ │ │ │ ├── SCNPhysicsFieldJSExport.h │ │ │ │ ├── SCNPhysicsHingeJoint.h │ │ │ │ ├── SCNPhysicsHingeJointJSExport.h │ │ │ │ ├── SCNPhysicsLinearGravityField.h │ │ │ │ ├── SCNPhysicsMagneticField.h │ │ │ │ ├── SCNPhysicsNoiseField.h │ │ │ │ ├── SCNPhysicsRadialGravityField.h │ │ │ │ ├── SCNPhysicsShape.h │ │ │ │ ├── SCNPhysicsShapeJSExport.h │ │ │ │ ├── SCNPhysicsSliderJoint.h │ │ │ │ ├── SCNPhysicsSliderJointJSExport.h │ │ │ │ ├── SCNPhysicsSpringField.h │ │ │ │ ├── SCNPhysicsTurbulenceField.h │ │ │ │ ├── SCNPhysicsVehicle.h │ │ │ │ ├── SCNPhysicsVehicleJSExport.h │ │ │ │ ├── SCNPhysicsVehicleWheel.h │ │ │ │ ├── SCNPhysicsVehicleWheelJSExport.h │ │ │ │ ├── SCNPhysicsVortexField.h │ │ │ │ ├── SCNPhysicsWorld.h │ │ │ │ ├── SCNPhysicsWorldJSExport.h │ │ │ │ ├── SCNPlane.h │ │ │ │ ├── SCNPlaneJSExport.h │ │ │ │ ├── SCNPrecomputedLightingEnvironment.h │ │ │ │ ├── SCNProgram.h │ │ │ │ ├── SCNProgramJSExport.h │ │ │ │ ├── SCNProgramSemanticInfo.h │ │ │ │ ├── SCNPyramid.h │ │ │ │ ├── SCNPyramidJSExport.h │ │ │ │ ├── SCNRecursiveLock.h │ │ │ │ ├── SCNReferenceNode.h │ │ │ │ ├── SCNRenderTarget.h │ │ │ │ ├── SCNRenderTargetView.h │ │ │ │ ├── SCNRenderer.h │ │ │ │ ├── SCNRendererEvents.h │ │ │ │ ├── SCNRendererJSExport.h │ │ │ │ ├── SCNRendererOptionsPanel.h │ │ │ │ ├── SCNRendererOptionsPanelController.h │ │ │ │ ├── SCNRendererTransitionContext.h │ │ │ │ ├── SCNRendererViewPoint.h │ │ │ │ ├── SCNReplicatorConstraint.h │ │ │ │ ├── SCNScene.h │ │ │ │ ├── SCNSceneDatabase.h │ │ │ │ ├── SCNSceneJSExport.h │ │ │ │ ├── SCNSceneLoaderProtocol.h │ │ │ │ ├── SCNSceneLookUpUnarchiver.h │ │ │ │ ├── SCNSceneRenderer.h │ │ │ │ ├── SCNSceneSource.h │ │ │ │ ├── SCNSceneSourceJSExport.h │ │ │ │ ├── SCNShadable.h │ │ │ │ ├── SCNShadableHelper.h │ │ │ │ ├── SCNShape.h │ │ │ │ ├── SCNShapeJSExport.h │ │ │ │ ├── SCNSkinner.h │ │ │ │ ├── SCNSliderConstraint.h │ │ │ │ ├── SCNSourceRendererRegistry.h │ │ │ │ ├── SCNSphere.h │ │ │ │ ├── SCNSphereJSExport.h │ │ │ │ ├── SCNSpriteKitEventHandler.h │ │ │ │ ├── SCNSpriteKitSource.h │ │ │ │ ├── SCNStatisticsProvider.h │ │ │ │ ├── SCNTechnique.h │ │ │ │ ├── SCNTechniqueJSExport.h │ │ │ │ ├── SCNTechniquePanel.h │ │ │ │ ├── SCNTechniquePanelController.h │ │ │ │ ├── SCNTechniqueSupport.h │ │ │ │ ├── SCNText.h │ │ │ │ ├── SCNTextJSExport.h │ │ │ │ ├── SCNTextureCoreAnimationSource.h │ │ │ │ ├── SCNTextureDelegateSource.h │ │ │ │ ├── SCNTextureOffscreenRenderingSource.h │ │ │ │ ├── SCNTextureSource.h │ │ │ │ ├── SCNTextureSpriteKitSource.h │ │ │ │ ├── SCNTimingFunction.h │ │ │ │ ├── SCNTorus.h │ │ │ │ ├── SCNTorusJSExport.h │ │ │ │ ├── SCNTransaction.h │ │ │ │ ├── SCNTransactionCommandObject.h │ │ │ │ ├── SCNTransactionJSExport.h │ │ │ │ ├── SCNTransformConstraint.h │ │ │ │ ├── SCNTransformConstraintJSExport.h │ │ │ │ ├── SCNTube.h │ │ │ │ ├── SCNTubeJSExport.h │ │ │ │ ├── SCNTypeInspector.h │ │ │ │ ├── SCNUIArrayEditor.h │ │ │ │ ├── SCNUIArrayEditorController.h │ │ │ │ ├── SCNUIBindableView.h │ │ │ │ ├── SCNUIColorWell.h │ │ │ │ ├── SCNUID_ConstantTransformer.h │ │ │ │ ├── SCNUID_NumberTransformer.h │ │ │ │ ├── SCNUIDynamicInspector.h │ │ │ │ ├── SCNUIDynamicInspectorConfiguration.h │ │ │ │ ├── SCNUIHandleButton.h │ │ │ │ ├── SCNUIImagePicker.h │ │ │ │ ├── SCNUIMatrix4TextField.h │ │ │ │ ├── SCNUIPopUpButton.h │ │ │ │ ├── SCNUIProperty.h │ │ │ │ ├── SCNUISceneGraphView.h │ │ │ │ ├── SCNUIScrubber.h │ │ │ │ ├── SCNUIScrubberCell.h │ │ │ │ ├── SCNUIVector2TextField.h │ │ │ │ ├── SCNUIVector3TextField.h │ │ │ │ ├── SCNUIVector4TextField.h │ │ │ │ ├── SCNView.h │ │ │ │ ├── SCNViewJSExport.h │ │ │ │ ├── SCNWeakPointer.h │ │ │ │ ├── SCN_CAKeyframeAnimation.h │ │ │ │ ├── SCN_NSImageFromImageValue.h │ │ │ │ ├── SCN_NSImageFromSlotContents.h │ │ │ │ ├── SceneKit.h │ │ │ │ ├── USKData_helper.h │ │ │ │ ├── USKHelper.h │ │ │ │ ├── USKObjectPath_helper.h │ │ │ │ ├── USKToken_helper.h │ │ │ │ ├── _C3DProgressDebugger.h │ │ │ │ ├── _SCNExportOperation.h │ │ │ │ └── _SCNShadableCompilationIssue.h │ │ └── src │ │ │ ├── C3DAnimationBinding.m │ │ │ ├── C3DBinding.m │ │ │ ├── C3DEngineNotificationQueueTransientWrapper.m │ │ │ ├── C3DIONSZipFileArchive.m │ │ │ ├── CAAnimation+SceneKitAdditions.m │ │ │ ├── CAKeyframeAnimation+SCNAddition.m │ │ │ ├── CALayer+SCN_JSSupport.m │ │ │ ├── MDLAsset+SCNModelIO.m │ │ │ ├── MDLCamera+SCNModelIO.m │ │ │ ├── MDLLight+SCNModelIO.m │ │ │ ├── MDLLightProbe+SCNModelIO.m │ │ │ ├── MDLMaterial+SCNModelIO.m │ │ │ ├── MDLMesh+SCNModelIO.m │ │ │ ├── MDLObject+SCNModelIO.m │ │ │ ├── MDLSubmesh+SCNModelIO.m │ │ │ ├── NSArray+SCNAdditions.m │ │ │ ├── NSCoder+SCNExtensions.m │ │ │ ├── NSColor+SCNAdditions.m │ │ │ ├── NSData+SCNExtensions.m │ │ │ ├── NSDictionary+SCNAdditions.m │ │ │ ├── NSImage+SCNAddition.m │ │ │ ├── NSImageRep+SCNAdditions.m │ │ │ ├── NSObject+SCN_DisplayLinkExtensions.m │ │ │ ├── NSString+SCNExtensions.m │ │ │ ├── NSValue+Core3DKitAdditions.m │ │ │ ├── SCN3DConnexionDevice.m │ │ │ ├── SCNAVPlayerSource.m │ │ │ ├── SCNAccelerationConstraint.m │ │ │ ├── SCNAction.m │ │ │ ├── SCNActionCustom.m │ │ │ ├── SCNActionFade.m │ │ │ ├── SCNActionGroup.m │ │ │ ├── SCNActionHide.m │ │ │ ├── SCNActionJavaScript.m │ │ │ ├── SCNActionMove.m │ │ │ ├── SCNActionPerformSelector.m │ │ │ ├── SCNActionPlaySound.m │ │ │ ├── SCNActionReference.m │ │ │ ├── SCNActionRemove.m │ │ │ ├── SCNActionRepeat.m │ │ │ ├── SCNActionRotate.m │ │ │ ├── SCNActionRunAction.m │ │ │ ├── SCNActionRunBlock.m │ │ │ ├── SCNActionScale.m │ │ │ ├── SCNActionSequence.m │ │ │ ├── SCNActionTargetState.m │ │ │ ├── SCNActionWait.m │ │ │ ├── SCNAnimation.m │ │ │ ├── SCNAnimationEvent.m │ │ │ ├── SCNAnimationPlayer.m │ │ │ ├── SCNAnimationReference.m │ │ │ ├── SCNAssetCatalog.m │ │ │ ├── SCNAssetCatalogCacheEntry.m │ │ │ ├── SCNAudioPlayer.m │ │ │ ├── SCNAudioSource.m │ │ │ ├── SCNAuthoringEnvironment.m │ │ │ ├── SCNAuthoringEnvironment2.m │ │ │ ├── SCNAvoidOccluderConstraint.m │ │ │ ├── SCNBackingLayer.m │ │ │ ├── SCNBillboardConstraint.m │ │ │ ├── SCNBoundingBox.m │ │ │ ├── SCNBoundingSphere.m │ │ │ ├── SCNBox.m │ │ │ ├── SCNBufferBinding.m │ │ │ ├── SCNCOLLADAExportOperation.m │ │ │ ├── SCNCamera.m │ │ │ ├── SCNCameraControlEventHandler.m │ │ │ ├── SCNCameraController.m │ │ │ ├── SCNCameraNavigationController.m │ │ │ ├── SCNCapsule.m │ │ │ ├── SCNCaptureDeviceOutputConsumerSource.m │ │ │ ├── SCNCaptureDeviceSource.m │ │ │ ├── SCNCommonProfileProgramCache.m │ │ │ ├── SCNCommonProfileProgramGenerator.m │ │ │ ├── SCNCommonProfileProgramGeneratorGL.m │ │ │ ├── SCNCommonProfileProgramGeneratorMetal.m │ │ │ ├── SCNCone.m │ │ │ ├── SCNConstantScaleConstraint.m │ │ │ ├── SCNConstraint.m │ │ │ ├── SCNCoreAnimationSource.m │ │ │ ├── SCNCylinder.m │ │ │ ├── SCNDeferredProgramGeneratorMetal.m │ │ │ ├── SCNDelegateSource.m │ │ │ ├── SCNDisplayLink.m │ │ │ ├── SCNDistanceConstraint.m │ │ │ ├── SCNEffect.m │ │ │ ├── SCNEventHandler.m │ │ │ ├── SCNExportOperation.m │ │ │ ├── SCNFixedSizePage.m │ │ │ ├── SCNFloor.m │ │ │ ├── SCNGeometry.m │ │ │ ├── SCNGeometryDeformer.m │ │ │ ├── SCNGeometryElement.m │ │ │ ├── SCNGeometrySource.m │ │ │ ├── SCNGeometryTessellator.m │ │ │ ├── SCNHitTestResult.m │ │ │ ├── SCNIKConstraint.m │ │ │ ├── SCNIKJoint.m │ │ │ ├── SCNImageSource.m │ │ │ ├── SCNJSImage.m │ │ │ ├── SCNJSValue.m │ │ │ ├── SCNJSValueTmpImp.m │ │ │ ├── SCNJitterer.m │ │ │ ├── SCNKeyedArchiver.m │ │ │ ├── SCNKeyedUnarchiver.m │ │ │ ├── SCNLayer.m │ │ │ ├── SCNLevelOfDetail.m │ │ │ ├── SCNLight.m │ │ │ ├── SCNLookAtConstraint.m │ │ │ ├── SCNLowLatencyMetalLayer.m │ │ │ ├── SCNMTLArgumentBinder.m │ │ │ ├── SCNMTLBuffer.m │ │ │ ├── SCNMTLBufferAllocator.m │ │ │ ├── SCNMTLBufferAllocatorSubBuffer.m │ │ │ ├── SCNMTLComputePipeline.m │ │ │ ├── SCNMTLLibrary.m │ │ │ ├── SCNMTLLibraryManager.m │ │ │ ├── SCNMTLMesh.m │ │ │ ├── SCNMTLMeshElement.m │ │ │ ├── SCNMTLMorph.m │ │ │ ├── SCNMTLPassResourceBinding.m │ │ │ ├── SCNMTLRenderContext.m │ │ │ ├── SCNMTLRenderPipeline.m │ │ │ ├── SCNMTLResourceBinding.m │ │ │ ├── SCNMTLResourceManager.m │ │ │ ├── SCNMTLSemanticResourceBinding.m │ │ │ ├── SCNMTLShadable.m │ │ │ ├── SCNMTLShadableKey.m │ │ │ ├── SCNMTLShaderBindingsGenerator.m │ │ │ ├── SCNMTLSkin.m │ │ │ ├── SCNMTLTessellator.m │ │ │ ├── SCNManipulableItem.m │ │ │ ├── SCNManipulator.m │ │ │ ├── SCNMaterial.m │ │ │ ├── SCNMaterialAttachment.m │ │ │ ├── SCNMaterialProperty.m │ │ │ ├── SCNMaterialPropertyTextureProviderSource.m │ │ │ ├── SCNMetalBackingLayer.m │ │ │ ├── SCNMetalLayer.m │ │ │ ├── SCNMetalWireframeResource.m │ │ │ ├── SCNMonitor.m │ │ │ ├── SCNMorpher.m │ │ │ ├── SCNMovieExportOperation.m │ │ │ ├── SCNMutableGeometry.m │ │ │ ├── SCNMutableGeometrySource.m │ │ │ ├── SCNNode.m │ │ │ ├── SCNNodeComponent.m │ │ │ ├── SCNNodeManipulableItem.m │ │ │ ├── SCNNodeReference.m │ │ │ ├── SCNNodeWeakComponent.m │ │ │ ├── SCNOffscreenRenderer.m │ │ │ ├── SCNOrderedDictionary.m │ │ │ ├── SCNParticlePropertyController.m │ │ │ ├── SCNParticleSystem.m │ │ │ ├── SCNPass.m │ │ │ ├── SCNPassContext.m │ │ │ ├── SCNPhysicsBallSocketJoint.m │ │ │ ├── SCNPhysicsBehavior.m │ │ │ ├── SCNPhysicsBody.m │ │ │ ├── SCNPhysicsCharacter.m │ │ │ ├── SCNPhysicsConeTwistJoint.m │ │ │ ├── SCNPhysicsContact.m │ │ │ ├── SCNPhysicsCustomField.m │ │ │ ├── SCNPhysicsDragField.m │ │ │ ├── SCNPhysicsElectricField.m │ │ │ ├── SCNPhysicsField.m │ │ │ ├── SCNPhysicsHingeJoint.m │ │ │ ├── SCNPhysicsLinearGravityField.m │ │ │ ├── SCNPhysicsMagneticField.m │ │ │ ├── SCNPhysicsNoiseField.m │ │ │ ├── SCNPhysicsRadialGravityField.m │ │ │ ├── SCNPhysicsShape.m │ │ │ ├── SCNPhysicsSliderJoint.m │ │ │ ├── SCNPhysicsSpringField.m │ │ │ ├── SCNPhysicsTurbulenceField.m │ │ │ ├── SCNPhysicsVehicle.m │ │ │ ├── SCNPhysicsVehicleWheel.m │ │ │ ├── SCNPhysicsVortexField.m │ │ │ ├── SCNPhysicsWorld.m │ │ │ ├── SCNPlane.m │ │ │ ├── SCNPrecomputedLightingEnvironment.m │ │ │ ├── SCNProgram.m │ │ │ ├── SCNProgramSemanticInfo.m │ │ │ ├── SCNPyramid.m │ │ │ ├── SCNRecursiveLock.m │ │ │ ├── SCNReferenceNode.m │ │ │ ├── SCNRenderTarget.m │ │ │ ├── SCNRenderTargetView.m │ │ │ ├── SCNRenderer.m │ │ │ ├── SCNRendererEvents.m │ │ │ ├── SCNRendererOptionsPanel.m │ │ │ ├── SCNRendererOptionsPanelController.m │ │ │ ├── SCNRendererTransitionContext.m │ │ │ ├── SCNRendererViewPoint.m │ │ │ ├── SCNReplicatorConstraint.m │ │ │ ├── SCNScene.m │ │ │ ├── SCNSceneDatabase.m │ │ │ ├── SCNSceneLookUpUnarchiver.m │ │ │ ├── SCNSceneSource.m │ │ │ ├── SCNShadableHelper.m │ │ │ ├── SCNShape.m │ │ │ ├── SCNSkinner.m │ │ │ ├── SCNSliderConstraint.m │ │ │ ├── SCNSourceRendererRegistry.m │ │ │ ├── SCNSphere.m │ │ │ ├── SCNSpriteKitEventHandler.m │ │ │ ├── SCNSpriteKitSource.m │ │ │ ├── SCNStatisticsProvider.m │ │ │ ├── SCNTechnique.m │ │ │ ├── SCNTechniquePanel.m │ │ │ ├── SCNTechniquePanelController.m │ │ │ ├── SCNText.m │ │ │ ├── SCNTextureCoreAnimationSource.m │ │ │ ├── SCNTextureDelegateSource.m │ │ │ ├── SCNTextureOffscreenRenderingSource.m │ │ │ ├── SCNTextureSource.m │ │ │ ├── SCNTextureSpriteKitSource.m │ │ │ ├── SCNTimingFunction.m │ │ │ ├── SCNTorus.m │ │ │ ├── SCNTransaction.m │ │ │ ├── SCNTransformConstraint.m │ │ │ ├── SCNTube.m │ │ │ ├── SCNTypeInspector.m │ │ │ ├── SCNUIArrayEditor.m │ │ │ ├── SCNUIArrayEditorController.m │ │ │ ├── SCNUIBindableView.m │ │ │ ├── SCNUIColorWell.m │ │ │ ├── SCNUID_ConstantTransformer.m │ │ │ ├── SCNUID_NumberTransformer.m │ │ │ ├── SCNUIDynamicInspector.m │ │ │ ├── SCNUIDynamicInspectorConfiguration.m │ │ │ ├── SCNUIHandleButton.m │ │ │ ├── SCNUIImagePicker.m │ │ │ ├── SCNUIMatrix4TextField.m │ │ │ ├── SCNUIPopUpButton.m │ │ │ ├── SCNUIProperty.m │ │ │ ├── SCNUISceneGraphView.m │ │ │ ├── SCNUIScrubber.m │ │ │ ├── SCNUIScrubberCell.m │ │ │ ├── SCNUIVector2TextField.m │ │ │ ├── SCNUIVector3TextField.m │ │ │ ├── SCNUIVector4TextField.m │ │ │ ├── SCNView.m │ │ │ ├── SCNWeakPointer.m │ │ │ ├── SCN_CAKeyframeAnimation.m │ │ │ ├── SCN_NSImageFromImageValue.m │ │ │ ├── SCN_NSImageFromSlotContents.m │ │ │ ├── SceneKit.m │ │ │ ├── USKData_helper.m │ │ │ ├── USKHelper.m │ │ │ ├── USKObjectPath_helper.m │ │ │ ├── USKToken_helper.m │ │ │ ├── _C3DProgressDebugger.m │ │ │ ├── _SCNExportOperation.m │ │ │ └── _SCNShadableCompilationIssue.m │ ├── ScreenSaver │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ScreenSaver │ │ │ │ ├── LegacyScreenSaverExtensionModule.h │ │ │ │ ├── LegacyScreenSaverModule.h │ │ │ │ ├── NSApplicationDelegate.h │ │ │ │ ├── NSExtensionRequestHandling.h │ │ │ │ ├── NSFileManagerDelegate.h │ │ │ │ ├── NSWindowDelegate.h │ │ │ │ ├── NSXPCListenerDelegate.h │ │ │ │ ├── ScreenSaver.h │ │ │ │ ├── ScreenSaverClockView.h │ │ │ │ ├── ScreenSaverClockWindow.h │ │ │ │ ├── ScreenSaverConfigurationViewController.h │ │ │ │ ├── ScreenSaverControl.h │ │ │ │ ├── ScreenSaverController.h │ │ │ │ ├── ScreenSaverDefaults.h │ │ │ │ ├── ScreenSaverDefaultsManager.h │ │ │ │ ├── ScreenSaverEngine.h │ │ │ │ ├── ScreenSaverExtension.h │ │ │ │ ├── ScreenSaverExtensionContext.h │ │ │ │ ├── ScreenSaverExtensionHosting.h │ │ │ │ ├── ScreenSaverExtensionManager.h │ │ │ │ ├── ScreenSaverExtensionModule.h │ │ │ │ ├── ScreenSaverExtensionPosting.h │ │ │ │ ├── ScreenSaverExtensionView.h │ │ │ │ ├── ScreenSaverHostExtensionContext.h │ │ │ │ ├── ScreenSaverMessage.h │ │ │ │ ├── ScreenSaverMessageTracerLogger.h │ │ │ │ ├── ScreenSaverModule.h │ │ │ │ ├── ScreenSaverModules.h │ │ │ │ ├── ScreenSaverPhotoChooser.h │ │ │ │ ├── ScreenSaverView.h │ │ │ │ ├── ScreenSaverViewController.h │ │ │ │ ├── ScreenSaverWindow.h │ │ │ │ └── inlines.h │ │ └── src │ │ │ ├── LegacyScreenSaverExtensionModule.m │ │ │ ├── LegacyScreenSaverModule.m │ │ │ ├── ScreenSaver.m │ │ │ ├── ScreenSaverClockView.m │ │ │ ├── ScreenSaverClockWindow.m │ │ │ ├── ScreenSaverConfigurationViewController.m │ │ │ ├── ScreenSaverController.m │ │ │ ├── ScreenSaverDefaults.m │ │ │ ├── ScreenSaverDefaultsManager.m │ │ │ ├── ScreenSaverEngine.m │ │ │ ├── ScreenSaverExtension.m │ │ │ ├── ScreenSaverExtensionContext.m │ │ │ ├── ScreenSaverExtensionManager.m │ │ │ ├── ScreenSaverExtensionModule.m │ │ │ ├── ScreenSaverExtensionView.m │ │ │ ├── ScreenSaverHostExtensionContext.m │ │ │ ├── ScreenSaverMessage.m │ │ │ ├── ScreenSaverMessageTracerLogger.m │ │ │ ├── ScreenSaverModule.m │ │ │ ├── ScreenSaverModules.m │ │ │ ├── ScreenSaverPhotoChooser.m │ │ │ ├── ScreenSaverView.m │ │ │ ├── ScreenSaverViewController.m │ │ │ └── ScreenSaverWindow.m │ ├── ScriptingBridge │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ScriptingBridge │ │ │ │ ├── SBApplication.h │ │ │ │ ├── SBElementArray.h │ │ │ │ ├── SBObject.h │ │ │ │ └── ScriptingBridge.h │ │ └── src │ │ │ ├── SBApplication.m │ │ │ ├── SBElementArray.m │ │ │ └── SBObject.m │ ├── SecurityFoundation │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── SecurityFoundation │ │ │ │ ├── APIMacros.h │ │ │ │ ├── CAAdditionalCertInfo.h │ │ │ │ ├── CABasicConstraintsExtension.h │ │ │ │ ├── CACertInfo.h │ │ │ │ ├── CAExtendedKeyUsageExtension.h │ │ │ │ ├── CAIdentityName.h │ │ │ │ ├── CAKeyPairAttributes.h │ │ │ │ ├── CAKeyUsageExtension.h │ │ │ │ ├── CASubjectAltNameExtension.h │ │ │ │ ├── KeychainProxyProtocol.h │ │ │ │ ├── OIDStringCache.h │ │ │ │ ├── SFAESEncryptionOperation.h │ │ │ │ ├── SFAESKeySpecifier_Ivars.h │ │ │ │ ├── SFAccessControlEntry.h │ │ │ │ ├── SFAccessControlEntry_Ivars.h │ │ │ │ ├── SFAuthenticatedCiphertext_Ivars.h │ │ │ │ ├── SFAuthenticatedEncryptionOperation_Ivars.h │ │ │ │ ├── SFAuthorization.h │ │ │ │ ├── SFCMACOperation.h │ │ │ │ ├── SFCMACOperation_Ivars.h │ │ │ │ ├── SFCSR.h │ │ │ │ ├── SFCertAuthorityInvitation.h │ │ │ │ ├── SFCertAuthorityInvitationSigner.h │ │ │ │ ├── SFCertificateAuthority.h │ │ │ │ ├── SFCertificateAuthorityClient.h │ │ │ │ ├── SFCertificateAuthority_ivars.h │ │ │ │ ├── SFCertificateData.h │ │ │ │ ├── SFCertificateData_ivars.h │ │ │ │ ├── SFCertificate_Ivars.h │ │ │ │ ├── SFCiphertext_Ivars.h │ │ │ │ ├── SFCoder.h │ │ │ │ ├── SFCoder_Ivars.h │ │ │ │ ├── SFCodingOptions.h │ │ │ │ ├── SFCodingOptions_Ivars.h │ │ │ │ ├── SFCredentialSearchFilter.h │ │ │ │ ├── SFCredentialSearchFilter_Ivars.h │ │ │ │ ├── SFCredentialStore_Private.h │ │ │ │ ├── SFCredential_Private.h │ │ │ │ ├── SFCryptoServicesErrors.h │ │ │ │ ├── SFDecoder.h │ │ │ │ ├── SFDecoder_Ivars.h │ │ │ │ ├── SFDigestOperation.h │ │ │ │ ├── SFDigestOperationInternal.h │ │ │ │ ├── SFECDHKeySource_Ivars.h │ │ │ │ ├── SFECDHOperation_Ivars.h │ │ │ │ ├── SFECKeySpecifier_Ivars.h │ │ │ │ ├── SFEC_X962SigningOperation_Ivars.h │ │ │ │ ├── SFEncryptionOperation.h │ │ │ │ ├── SFHMACOperation.h │ │ │ │ ├── SFHMACOperation_Ivars.h │ │ │ │ ├── SFHMACPseudoRandomFunction.h │ │ │ │ ├── SFHMACPseudoRandomFunction_Ivars.h │ │ │ │ ├── SFIESCiphertext_Ivars.h │ │ │ │ ├── SFIESOperation_Ivars.h │ │ │ │ ├── SFIVGenerator.h │ │ │ │ ├── SFIdentityAttributes.h │ │ │ │ ├── SFIdentityAttributes_Ivars.h │ │ │ │ ├── SFIdentitySearchFilter.h │ │ │ │ ├── SFIdentitySearchFilter_Ivars.h │ │ │ │ ├── SFIdentity_Ivars.h │ │ │ │ ├── SFIncrementingIVGenerator.h │ │ │ │ ├── SFIncrementingIVGenerator_Ivars.h │ │ │ │ ├── SFKey.h │ │ │ │ ├── SFKeyDerivingOperation.h │ │ │ │ ├── SFKeyPair_Ivars.h │ │ │ │ ├── SFKeySearchFilter.h │ │ │ │ ├── SFKeySearchFilter_Ivars.h │ │ │ │ ├── SFKey_Ivars.h │ │ │ │ ├── SFKey_Private.h │ │ │ │ ├── SFKeychain.h │ │ │ │ ├── SFKeychainData.h │ │ │ │ ├── SFKeychainDataAttributes.h │ │ │ │ ├── SFKeychainDataAttributes_Ivars.h │ │ │ │ ├── SFKeychainDataFetchResult.h │ │ │ │ ├── SFKeychainData_Ivars.h │ │ │ │ ├── SFKeychainFetchResult_Ivars.h │ │ │ │ ├── SFKeychainItemAttributes.h │ │ │ │ ├── SFKeychainManager_Ivars.h │ │ │ │ ├── SFKeychainServerProtocol.h │ │ │ │ ├── SFMD5DigestOperation_Ivars.h │ │ │ │ ├── SFMachPort.h │ │ │ │ ├── SFMaskGenerationFunction.h │ │ │ │ ├── SFMaskGenerationFunction1.h │ │ │ │ ├── SFMaskGenerationFunction1_Ivars.h │ │ │ │ ├── SFMessageAuthenticationCodeOperation.h │ │ │ │ ├── SFOidParser.h │ │ │ │ ├── SFPBKDF2Operation.h │ │ │ │ ├── SFPBKDF2Operation_Ivars.h │ │ │ │ ├── SFPseudoRandomFunction.h │ │ │ │ ├── SFPublicKey_Ivars.h │ │ │ │ ├── SFRSAEncryptionOperation.h │ │ │ │ ├── SFRSAEncryptionOperation_Ivars.h │ │ │ │ ├── SFRSAKeyPair.h │ │ │ │ ├── SFRSAKeySpecifier_Ivars.h │ │ │ │ ├── SFRSAPublicKey.h │ │ │ │ ├── SFRSASigningOperation.h │ │ │ │ ├── SFRSASigningOperation_Ivars.h │ │ │ │ ├── SFRSA_OAEPEncryptionOperation.h │ │ │ │ ├── SFRSA_OAEPEncryptionOperation_Ivars.h │ │ │ │ ├── SFRSA_PKCS1EncryptionOperation.h │ │ │ │ ├── SFRSA_PSSSigningOperation.h │ │ │ │ ├── SFRSA_PSSSigningOperation_Ivars.h │ │ │ │ ├── SFRSA_WrappedKeyEncryptionOperation.h │ │ │ │ ├── SFRSA_WrappedKeyEncryptionOperation_Ivars.h │ │ │ │ ├── SFRevocationPolicy.h │ │ │ │ ├── SFRevocationPolicy_Ivars.h │ │ │ │ ├── SFSHA1DigestOperation_Ivars.h │ │ │ │ ├── SFSHA224DigestOperation_Ivars.h │ │ │ │ ├── SFSHA256DigestOperation_Ivars.h │ │ │ │ ├── SFSHA384DigestOperation_Ivars.h │ │ │ │ ├── SFSHA512DigestOperation_Ivars.h │ │ │ │ ├── SFSSLClientTrustPolicy.h │ │ │ │ ├── SFSSLClientTrustPolicy_Ivars.h │ │ │ │ ├── SFSSLServerTrustPolicy.h │ │ │ │ ├── SFSSLServerTrustPolicy_Ivars.h │ │ │ │ ├── SFServiceIdentifier_Ivars.h │ │ │ │ ├── SFSignedData_Ivars.h │ │ │ │ ├── SFSigningOperation.h │ │ │ │ ├── SFSymmetricEncryptionOperation.h │ │ │ │ ├── SFSymmetricEncryptionOperation_Ivars.h │ │ │ │ ├── SFSymmetricKeyAttributes.h │ │ │ │ ├── SFSymmetricKeyAttributes_Ivars.h │ │ │ │ ├── SFSymmetricKey_Ivars.h │ │ │ │ ├── SFSyncManager.h │ │ │ │ ├── SFSyncManager_ivars.h │ │ │ │ ├── SFTripleDESEncryptionOperation.h │ │ │ │ ├── SFTripleDESKey.h │ │ │ │ ├── SFTrustEvaluator.h │ │ │ │ ├── SFTrustEvaluator_Ivars.h │ │ │ │ ├── SFTrustPolicy.h │ │ │ │ ├── SFWrappedKeyCiphertext.h │ │ │ │ ├── SFWrappedKeyCiphertext_Ivars.h │ │ │ │ ├── SFX509TrustPolicy.h │ │ │ │ ├── SFX963KeyDerivationOperation.h │ │ │ │ ├── SFX963KeyDerivationOperation_Ivars.h │ │ │ │ ├── SecFoundationModVector.h │ │ │ │ ├── SecurityFoundation.h │ │ │ │ ├── _SFAESKey.h │ │ │ │ ├── _SFAESKeySpecifier.h │ │ │ │ ├── _SFAccessPolicy.h │ │ │ │ ├── _SFAsymmetricKeyAttributes.h │ │ │ │ ├── _SFAsymmetricKeySpecifier.h │ │ │ │ ├── _SFAuthenticatedCiphertext.h │ │ │ │ ├── _SFAuthenticatedEncryptionOperation.h │ │ │ │ ├── _SFCertificate.h │ │ │ │ ├── _SFCiphertext.h │ │ │ │ ├── _SFCredential.h │ │ │ │ ├── _SFCredentialStore.h │ │ │ │ ├── _SFECDHKeySource.h │ │ │ │ ├── _SFECDHOperation.h │ │ │ │ ├── _SFECKeyPair.h │ │ │ │ ├── _SFECKeySpecifier.h │ │ │ │ ├── _SFECPublicKey.h │ │ │ │ ├── _SFEC_X962SigningOperation.h │ │ │ │ ├── _SFEncryptionOperation.h │ │ │ │ ├── _SFIESCiphertext.h │ │ │ │ ├── _SFIESOperation.h │ │ │ │ ├── _SFIdentity.h │ │ │ │ ├── _SFKey.h │ │ │ │ ├── _SFKeyAttributes.h │ │ │ │ ├── _SFKeyPair.h │ │ │ │ ├── _SFKeySpecifier.h │ │ │ │ ├── _SFKeychainFetchResult.h │ │ │ │ ├── _SFKeychainIdentityFetchResult.h │ │ │ │ ├── _SFKeychainKeyFetchResult.h │ │ │ │ ├── _SFKeychainManager.h │ │ │ │ ├── _SFMD5DigestOperation.h │ │ │ │ ├── _SFPasswordCredential.h │ │ │ │ ├── _SFPublicKey.h │ │ │ │ ├── _SFRSAKeySpecifier.h │ │ │ │ ├── _SFSHA1DigestOperation.h │ │ │ │ ├── _SFSHA224DigestOperation.h │ │ │ │ ├── _SFSHA256DigestOperation.h │ │ │ │ ├── _SFSHA384DigestOperation.h │ │ │ │ ├── _SFSHA512DigestOperation.h │ │ │ │ ├── _SFServiceIdentifier.h │ │ │ │ ├── _SFSignedData.h │ │ │ │ ├── _SFSymmetricKey.h │ │ │ │ ├── _SFSymmetricKeySpecifier.h │ │ │ │ └── _SFTripleDESKeySpecifier.h │ │ └── src │ │ │ ├── CAAdditionalCertInfo.m │ │ │ ├── CABasicConstraintsExtension.m │ │ │ ├── CACertInfo.m │ │ │ ├── CAExtendedKeyUsageExtension.m │ │ │ ├── CAIdentityName.m │ │ │ ├── CAKeyPairAttributes.m │ │ │ ├── CAKeyUsageExtension.m │ │ │ ├── CASubjectAltNameExtension.m │ │ │ ├── OIDStringCache.m │ │ │ ├── SFAESEncryptionOperation.m │ │ │ ├── SFAESKeySpecifier_Ivars.m │ │ │ ├── SFAccessControlEntry.m │ │ │ ├── SFAccessControlEntry_Ivars.m │ │ │ ├── SFAuthenticatedCiphertext_Ivars.m │ │ │ ├── SFAuthenticatedEncryptionOperation_Ivars.m │ │ │ ├── SFAuthorization.m │ │ │ ├── SFCMACOperation.m │ │ │ ├── SFCMACOperation_Ivars.m │ │ │ ├── SFCSR.m │ │ │ ├── SFCertAuthorityInvitation.m │ │ │ ├── SFCertAuthorityInvitationSigner.m │ │ │ ├── SFCertificateAuthority.m │ │ │ ├── SFCertificateAuthorityClient.m │ │ │ ├── SFCertificateAuthority_ivars.m │ │ │ ├── SFCertificateData.m │ │ │ ├── SFCertificateData_ivars.m │ │ │ ├── SFCertificate_Ivars.m │ │ │ ├── SFCiphertext_Ivars.m │ │ │ ├── SFCoder.m │ │ │ ├── SFCoder_Ivars.m │ │ │ ├── SFCodingOptions.m │ │ │ ├── SFCodingOptions_Ivars.m │ │ │ ├── SFCredentialSearchFilter.m │ │ │ ├── SFCredentialSearchFilter_Ivars.m │ │ │ ├── SFDecoder.m │ │ │ ├── SFDecoder_Ivars.m │ │ │ ├── SFECDHKeySource_Ivars.m │ │ │ ├── SFECDHOperation_Ivars.m │ │ │ ├── SFECKeySpecifier_Ivars.m │ │ │ ├── SFEC_X962SigningOperation_Ivars.m │ │ │ ├── SFHMACOperation.m │ │ │ ├── SFHMACOperation_Ivars.m │ │ │ ├── SFHMACPseudoRandomFunction.m │ │ │ ├── SFHMACPseudoRandomFunction_Ivars.m │ │ │ ├── SFIESCiphertext_Ivars.m │ │ │ ├── SFIESOperation_Ivars.m │ │ │ ├── SFIdentityAttributes.m │ │ │ ├── SFIdentityAttributes_Ivars.m │ │ │ ├── SFIdentitySearchFilter.m │ │ │ ├── SFIdentitySearchFilter_Ivars.m │ │ │ ├── SFIdentity_Ivars.m │ │ │ ├── SFIncrementingIVGenerator.m │ │ │ ├── SFIncrementingIVGenerator_Ivars.m │ │ │ ├── SFKeyPair_Ivars.m │ │ │ ├── SFKeySearchFilter.m │ │ │ ├── SFKeySearchFilter_Ivars.m │ │ │ ├── SFKey_Ivars.m │ │ │ ├── SFKeychain.m │ │ │ ├── SFKeychainData.m │ │ │ ├── SFKeychainDataAttributes.m │ │ │ ├── SFKeychainDataAttributes_Ivars.m │ │ │ ├── SFKeychainDataFetchResult.m │ │ │ ├── SFKeychainData_Ivars.m │ │ │ ├── SFKeychainFetchResult_Ivars.m │ │ │ ├── SFKeychainManager_Ivars.m │ │ │ ├── SFMD5DigestOperation_Ivars.m │ │ │ ├── SFMachPort.m │ │ │ ├── SFMaskGenerationFunction1.m │ │ │ ├── SFMaskGenerationFunction1_Ivars.m │ │ │ ├── SFMessageAuthenticationCodeOperation.m │ │ │ ├── SFOidParser.m │ │ │ ├── SFPBKDF2Operation.m │ │ │ ├── SFPBKDF2Operation_Ivars.m │ │ │ ├── SFPublicKey_Ivars.m │ │ │ ├── SFRSAEncryptionOperation.m │ │ │ ├── SFRSAEncryptionOperation_Ivars.m │ │ │ ├── SFRSAKeyPair.m │ │ │ ├── SFRSAKeySpecifier_Ivars.m │ │ │ ├── SFRSAPublicKey.m │ │ │ ├── SFRSASigningOperation.m │ │ │ ├── SFRSASigningOperation_Ivars.m │ │ │ ├── SFRSA_OAEPEncryptionOperation.m │ │ │ ├── SFRSA_OAEPEncryptionOperation_Ivars.m │ │ │ ├── SFRSA_PKCS1EncryptionOperation.m │ │ │ ├── SFRSA_PSSSigningOperation.m │ │ │ ├── SFRSA_PSSSigningOperation_Ivars.m │ │ │ ├── SFRSA_WrappedKeyEncryptionOperation.m │ │ │ ├── SFRSA_WrappedKeyEncryptionOperation_Ivars.m │ │ │ ├── SFRevocationPolicy.m │ │ │ ├── SFRevocationPolicy_Ivars.m │ │ │ ├── SFSHA1DigestOperation_Ivars.m │ │ │ ├── SFSHA224DigestOperation_Ivars.m │ │ │ ├── SFSHA256DigestOperation_Ivars.m │ │ │ ├── SFSHA384DigestOperation_Ivars.m │ │ │ ├── SFSHA512DigestOperation_Ivars.m │ │ │ ├── SFSSLClientTrustPolicy.m │ │ │ ├── SFSSLClientTrustPolicy_Ivars.m │ │ │ ├── SFSSLServerTrustPolicy.m │ │ │ ├── SFSSLServerTrustPolicy_Ivars.m │ │ │ ├── SFServiceIdentifier_Ivars.m │ │ │ ├── SFSignedData_Ivars.m │ │ │ ├── SFSymmetricEncryptionOperation.m │ │ │ ├── SFSymmetricEncryptionOperation_Ivars.m │ │ │ ├── SFSymmetricKeyAttributes.m │ │ │ ├── SFSymmetricKeyAttributes_Ivars.m │ │ │ ├── SFSymmetricKey_Ivars.m │ │ │ ├── SFSyncManager.m │ │ │ ├── SFSyncManager_ivars.m │ │ │ ├── SFTripleDESEncryptionOperation.m │ │ │ ├── SFTripleDESKey.m │ │ │ ├── SFTrustEvaluator.m │ │ │ ├── SFTrustEvaluator_Ivars.m │ │ │ ├── SFTrustPolicy.m │ │ │ ├── SFWrappedKeyCiphertext.m │ │ │ ├── SFWrappedKeyCiphertext_Ivars.m │ │ │ ├── SFX509TrustPolicy.m │ │ │ ├── SFX963KeyDerivationOperation.m │ │ │ ├── SFX963KeyDerivationOperation_Ivars.m │ │ │ ├── SecFoundationModVector.m │ │ │ ├── SecurityFoundation.m │ │ │ ├── _SFAESKey.m │ │ │ ├── _SFAESKeySpecifier.m │ │ │ ├── _SFAccessPolicy.m │ │ │ ├── _SFAsymmetricKeyAttributes.m │ │ │ ├── _SFAsymmetricKeySpecifier.m │ │ │ ├── _SFAuthenticatedCiphertext.m │ │ │ ├── _SFAuthenticatedEncryptionOperation.m │ │ │ ├── _SFCertificate.m │ │ │ ├── _SFCiphertext.m │ │ │ ├── _SFCredential.m │ │ │ ├── _SFCredentialStore.m │ │ │ ├── _SFECDHKeySource.m │ │ │ ├── _SFECDHOperation.m │ │ │ ├── _SFECKeyPair.m │ │ │ ├── _SFECKeySpecifier.m │ │ │ ├── _SFECPublicKey.m │ │ │ ├── _SFEC_X962SigningOperation.m │ │ │ ├── _SFIESCiphertext.m │ │ │ ├── _SFIESOperation.m │ │ │ ├── _SFIdentity.m │ │ │ ├── _SFKey.m │ │ │ ├── _SFKeyPair.m │ │ │ ├── _SFKeySpecifier.m │ │ │ ├── _SFKeychainFetchResult.m │ │ │ ├── _SFKeychainIdentityFetchResult.m │ │ │ ├── _SFKeychainKeyFetchResult.m │ │ │ ├── _SFKeychainManager.m │ │ │ ├── _SFMD5DigestOperation.m │ │ │ ├── _SFPasswordCredential.m │ │ │ ├── _SFPublicKey.m │ │ │ ├── _SFRSAKeySpecifier.m │ │ │ ├── _SFSHA1DigestOperation.m │ │ │ ├── _SFSHA224DigestOperation.m │ │ │ ├── _SFSHA256DigestOperation.m │ │ │ ├── _SFSHA384DigestOperation.m │ │ │ ├── _SFSHA512DigestOperation.m │ │ │ ├── _SFServiceIdentifier.m │ │ │ ├── _SFSignedData.m │ │ │ ├── _SFSymmetricKey.m │ │ │ ├── _SFSymmetricKeySpecifier.m │ │ │ └── _SFTripleDESKeySpecifier.m │ ├── SecurityInterface │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── SecurityInterface │ │ │ │ ├── AuthenticationHintsDelegate.h │ │ │ │ ├── AuthenticationHintsProvider.h │ │ │ │ ├── AuthorizationSpecialEngineRef.h │ │ │ │ ├── LAUIAuthenticationSheetDelegate.h │ │ │ │ ├── NSOpenSavePanelDelegate.h │ │ │ │ ├── NSSplitViewDelegate.h │ │ │ │ ├── PWALengthSlider.h │ │ │ │ ├── PWALengthSliderCell.h │ │ │ │ ├── SFAnimatedLockButton.h │ │ │ │ ├── SFAuthorizationPluginView.h │ │ │ │ ├── SFAuthorizationRights.h │ │ │ │ ├── SFAuthorizationView.h │ │ │ │ ├── SFAuthorizationView_ivars.h │ │ │ │ ├── SFAutoLockTextValue.h │ │ │ │ ├── SFBasicTLV.h │ │ │ │ ├── SFButtonNotBecomeKey.h │ │ │ │ ├── SFCertificateGroupView.h │ │ │ │ ├── SFCertificateImportManager.h │ │ │ │ ├── SFCertificateImportManager_ivars.h │ │ │ │ ├── SFCertificatePanel.h │ │ │ │ ├── SFCertificatePanel_ivars.h │ │ │ │ ├── SFCertificateTrust.h │ │ │ │ ├── SFCertificateTrustPanel.h │ │ │ │ ├── SFCertificateTrustPanel_ivars.h │ │ │ │ ├── SFCertificateTrust_ivars.h │ │ │ │ ├── SFCertificateView.h │ │ │ │ ├── SFCertificateView_ivars.h │ │ │ │ ├── SFChooseIdentityPanel.h │ │ │ │ ├── SFChooseIdentityPanel_ivars.h │ │ │ │ ├── SFChooseIdentityTableCellView.h │ │ │ │ ├── SFEntropyBarView.h │ │ │ │ ├── SFExpandableTextField.h │ │ │ │ ├── SFFlippedView.h │ │ │ │ ├── SFIconCache.h │ │ │ │ ├── SFIconCache_ivars.h │ │ │ │ ├── SFIconView.h │ │ │ │ ├── SFKeychainSavePanel.h │ │ │ │ ├── SFKeychainSavePanel_ivars.h │ │ │ │ ├── SFKeychainSettingsPanel.h │ │ │ │ ├── SFKeychainSettingsPanel_ivars.h │ │ │ │ ├── SFKeychainStorage.h │ │ │ │ ├── SFPasswordAssistantButton.h │ │ │ │ ├── SFPasswordAssistantInspectorController.h │ │ │ │ ├── SFPasswordAsstController.h │ │ │ │ ├── SFPasswordAsstModel.h │ │ │ │ ├── SFPasswordAsstView.h │ │ │ │ ├── SFPasswordErrorSource.h │ │ │ │ ├── SFPasswordStrengthController.h │ │ │ │ ├── SFPasswordStrengthTextField.h │ │ │ │ ├── SFPasswordStrengthView.h │ │ │ │ ├── SFPasswordStrengthView_ivars.h │ │ │ │ ├── SFTokenHIPlugin.h │ │ │ │ ├── SFTokenHIPluginSupport.h │ │ │ │ ├── SecurityInterface.h │ │ │ │ └── SheetSupport.h │ │ └── src │ │ │ ├── AuthorizationSpecialEngineRef.m │ │ │ ├── PWALengthSlider.m │ │ │ ├── PWALengthSliderCell.m │ │ │ ├── SFAnimatedLockButton.m │ │ │ ├── SFAuthorizationPluginView.m │ │ │ ├── SFAuthorizationRights.m │ │ │ ├── SFAuthorizationView.m │ │ │ ├── SFAuthorizationView_ivars.m │ │ │ ├── SFAutoLockTextValue.m │ │ │ ├── SFBasicTLV.m │ │ │ ├── SFButtonNotBecomeKey.m │ │ │ ├── SFCertificateGroupView.m │ │ │ ├── SFCertificateImportManager.m │ │ │ ├── SFCertificateImportManager_ivars.m │ │ │ ├── SFCertificatePanel.m │ │ │ ├── SFCertificatePanel_ivars.m │ │ │ ├── SFCertificateTrust.m │ │ │ ├── SFCertificateTrustPanel.m │ │ │ ├── SFCertificateTrustPanel_ivars.m │ │ │ ├── SFCertificateTrust_ivars.m │ │ │ ├── SFCertificateView.m │ │ │ ├── SFCertificateView_ivars.m │ │ │ ├── SFChooseIdentityPanel.m │ │ │ ├── SFChooseIdentityPanel_ivars.m │ │ │ ├── SFChooseIdentityTableCellView.m │ │ │ ├── SFEntropyBarView.m │ │ │ ├── SFExpandableTextField.m │ │ │ ├── SFFlippedView.m │ │ │ ├── SFIconCache.m │ │ │ ├── SFIconCache_ivars.m │ │ │ ├── SFIconView.m │ │ │ ├── SFKeychainSavePanel.m │ │ │ ├── SFKeychainSavePanel_ivars.m │ │ │ ├── SFKeychainSettingsPanel.m │ │ │ ├── SFKeychainSettingsPanel_ivars.m │ │ │ ├── SFKeychainStorage.m │ │ │ ├── SFPasswordAssistantButton.m │ │ │ ├── SFPasswordAssistantInspectorController.m │ │ │ ├── SFPasswordAsstController.m │ │ │ ├── SFPasswordAsstModel.m │ │ │ ├── SFPasswordAsstView.m │ │ │ ├── SFPasswordErrorSource.m │ │ │ ├── SFPasswordStrengthController.m │ │ │ ├── SFPasswordStrengthTextField.m │ │ │ ├── SFPasswordStrengthView.m │ │ │ ├── SFPasswordStrengthView_ivars.m │ │ │ ├── SFTokenHIPlugin.m │ │ │ ├── SFTokenHIPluginSupport.m │ │ │ ├── SecurityInterface.m │ │ │ └── SheetSupport.m │ ├── ServiceManagement │ │ ├── CMakeLists.txt │ │ ├── ServiceManagement.c │ │ └── include │ │ │ └── ServiceManagement │ │ │ ├── SMErrors.h │ │ │ ├── SMLoginItem.h │ │ │ └── ServiceManagement.h │ ├── ShazamKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ShazamKit │ │ │ │ ├── MRE.h │ │ │ │ ├── MREResult.h │ │ │ │ ├── MRESignature.h │ │ │ │ ├── NSError+SHError.h │ │ │ │ ├── SHAttribution.h │ │ │ │ ├── SHAudioConverter.h │ │ │ │ ├── SHAudioUtilities.h │ │ │ │ ├── SHCatalog.h │ │ │ │ ├── SHCatalogConfiguration.h │ │ │ │ ├── SHContinuityTracker.h │ │ │ │ ├── SHContinuityTrackerResult.h │ │ │ │ ├── SHCustomCatalog.h │ │ │ │ ├── SHCustomCatalogConfiguration.h │ │ │ │ ├── SHCustomCatalogContainer.h │ │ │ │ ├── SHCustomCatalogMatcher.h │ │ │ │ ├── SHCustomCatalogMatcherResultBuilder.h │ │ │ │ ├── SHCustomCatalogMemoryStorage.h │ │ │ │ ├── SHCustomCatalogStorage.h │ │ │ │ ├── SHCustomCatalogTracker.h │ │ │ │ ├── SHError.h │ │ │ │ ├── SHEventSignaller.h │ │ │ │ ├── SHEventSignalling.h │ │ │ │ ├── SHGroupMO.h │ │ │ │ ├── SHJSONLCustomCatalogTransformer.h │ │ │ │ ├── SHJSONLCustomCatalogTransformerDelegate.h │ │ │ │ ├── SHJSONLDataDetokenizerDelegate.h │ │ │ │ ├── SHLyricLine.h │ │ │ │ ├── SHManagedSession.h │ │ │ │ ├── SHManagedSessionDriver.h │ │ │ │ ├── SHManagedSessionDriverDaemonDelegate.h │ │ │ │ ├── SHMatch.h │ │ │ │ ├── SHMatchedMediaItem.h │ │ │ │ ├── SHMatcher.h │ │ │ │ ├── SHMatcherDelegate.h │ │ │ │ ├── SHMatcherRequest.h │ │ │ │ ├── SHMatcherResponse.h │ │ │ │ ├── SHMediaItem.h │ │ │ │ ├── SHMediaItemPresentation.h │ │ │ │ ├── SHMediaItemPresentationSettings.h │ │ │ │ ├── SHMediaItemPropertyUtilities.h │ │ │ │ ├── SHMediaItemProvider.h │ │ │ │ ├── SHMediaItemSerialization.h │ │ │ │ ├── SHMediaLibrary.h │ │ │ │ ├── SHMediaLibraryChange.h │ │ │ │ ├── SHMediaLibraryGroup.h │ │ │ │ ├── SHMediaLibraryInfo.h │ │ │ │ ├── SHMediaLibraryItem.h │ │ │ │ ├── SHMediaLibraryItemMetadata.h │ │ │ │ ├── SHMediaLibraryLabel.h │ │ │ │ ├── SHMediaLibraryQuery.h │ │ │ │ ├── SHMediaLibraryQueryParameters.h │ │ │ │ ├── SHMediaLibraryRequest.h │ │ │ │ ├── SHMediaLibrarySnapshot.h │ │ │ │ ├── SHMediaLibrarySync.h │ │ │ │ ├── SHMediaLibrarySyncDelegate.h │ │ │ │ ├── SHMediaLibraryTrack.h │ │ │ │ ├── SHMediaLibraryTrackBuilder.h │ │ │ │ ├── SHMediaLibraryTrackUpdate.h │ │ │ │ ├── SHMediaTimeline.h │ │ │ │ ├── SHMediaTimelineCustomCatalogMatcher.h │ │ │ │ ├── SHMediaTimelineDelegate.h │ │ │ │ ├── SHMetadataMO.h │ │ │ │ ├── SHMutableSignature.h │ │ │ │ ├── SHRange.h │ │ │ │ ├── SHReferenceSignature.h │ │ │ │ ├── SHRotatingInstallationID.h │ │ │ │ ├── SHSession.h │ │ │ │ ├── SHSessionDriver.h │ │ │ │ ├── SHSessionDriverDelegate.h │ │ │ │ ├── SHSessionDriverSignatureSlot.h │ │ │ │ ├── SHShazamCatalog.h │ │ │ │ ├── SHShazamKey.h │ │ │ │ ├── SHShazamKitClient.h │ │ │ │ ├── SHShazamKitService.h │ │ │ │ ├── SHShazamKitServiceConnection.h │ │ │ │ ├── SHShazamKitServiceConnectionClient.h │ │ │ │ ├── SHShazamKitServiceConnectionProvider.h │ │ │ │ ├── SHShazamKitServiceInterfaces.h │ │ │ │ ├── SHShazamKitUIService.h │ │ │ │ ├── SHShazamKitUIServiceInterfaces.h │ │ │ │ ├── SHSignature.h │ │ │ │ ├── SHSignatureBuffer.h │ │ │ │ ├── SHSignatureChunker.h │ │ │ │ ├── SHSignatureDataRepresentationValidator.h │ │ │ │ ├── SHSignatureGenerator.h │ │ │ │ ├── SHSignatureMetrics.h │ │ │ │ ├── SHStreamingSessionDriver.h │ │ │ │ ├── SHSyncedLyrics.h │ │ │ │ ├── SHTrackMO.h │ │ │ │ ├── ShazamKit.h │ │ │ │ ├── SigCrop.h │ │ │ │ ├── SigSonify.h │ │ │ │ ├── SigX.h │ │ │ │ ├── SignatureAlignmentTracker.h │ │ │ │ ├── SignatureAlignmentTrackerResult.h │ │ │ │ └── UTType+SHShazamAdditions.h │ │ └── src │ │ │ ├── MRE.m │ │ │ ├── MREResult.m │ │ │ ├── MRESignature.m │ │ │ ├── NSError+SHError.m │ │ │ ├── SHAttribution.m │ │ │ ├── SHAudioConverter.m │ │ │ ├── SHAudioUtilities.m │ │ │ ├── SHCatalog.m │ │ │ ├── SHCatalogConfiguration.m │ │ │ ├── SHContinuityTracker.m │ │ │ ├── SHContinuityTrackerResult.m │ │ │ ├── SHCustomCatalog.m │ │ │ ├── SHCustomCatalogConfiguration.m │ │ │ ├── SHCustomCatalogContainer.m │ │ │ ├── SHCustomCatalogMatcher.m │ │ │ ├── SHCustomCatalogMatcherResultBuilder.m │ │ │ ├── SHCustomCatalogMemoryStorage.m │ │ │ ├── SHCustomCatalogTracker.m │ │ │ ├── SHError.m │ │ │ ├── SHEventSignaller.m │ │ │ ├── SHGroupMO.m │ │ │ ├── SHJSONLCustomCatalogTransformer.m │ │ │ ├── SHLyricLine.m │ │ │ ├── SHManagedSession.m │ │ │ ├── SHManagedSessionDriver.m │ │ │ ├── SHManagedSessionDriverDaemonDelegate.m │ │ │ ├── SHMatch.m │ │ │ ├── SHMatchedMediaItem.m │ │ │ ├── SHMatcherRequest.m │ │ │ ├── SHMatcherResponse.m │ │ │ ├── SHMediaItem.m │ │ │ ├── SHMediaItemPresentationSettings.m │ │ │ ├── SHMediaItemPropertyUtilities.m │ │ │ ├── SHMediaItemSerialization.m │ │ │ ├── SHMediaLibrary.m │ │ │ ├── SHMediaLibraryChange.m │ │ │ ├── SHMediaLibraryGroup.m │ │ │ ├── SHMediaLibraryInfo.m │ │ │ ├── SHMediaLibraryItemMetadata.m │ │ │ ├── SHMediaLibraryLabel.m │ │ │ ├── SHMediaLibraryQueryParameters.m │ │ │ ├── SHMediaLibraryRequest.m │ │ │ ├── SHMediaLibrarySnapshot.m │ │ │ ├── SHMediaLibraryTrack.m │ │ │ ├── SHMediaLibraryTrackBuilder.m │ │ │ ├── SHMediaLibraryTrackUpdate.m │ │ │ ├── SHMediaTimeline.m │ │ │ ├── SHMediaTimelineCustomCatalogMatcher.m │ │ │ ├── SHMetadataMO.m │ │ │ ├── SHMutableSignature.m │ │ │ ├── SHRange.m │ │ │ ├── SHReferenceSignature.m │ │ │ ├── SHRotatingInstallationID.m │ │ │ ├── SHSession.m │ │ │ ├── SHSessionDriverSignatureSlot.m │ │ │ ├── SHShazamCatalog.m │ │ │ ├── SHShazamKey.m │ │ │ ├── SHShazamKitServiceConnection.m │ │ │ ├── SHShazamKitServiceConnectionClient.m │ │ │ ├── SHShazamKitServiceConnectionProvider.m │ │ │ ├── SHShazamKitServiceInterfaces.m │ │ │ ├── SHShazamKitUIServiceInterfaces.m │ │ │ ├── SHSignature.m │ │ │ ├── SHSignatureBuffer.m │ │ │ ├── SHSignatureChunker.m │ │ │ ├── SHSignatureDataRepresentationValidator.m │ │ │ ├── SHSignatureGenerator.m │ │ │ ├── SHSignatureMetrics.m │ │ │ ├── SHStreamingSessionDriver.m │ │ │ ├── SHSyncedLyrics.m │ │ │ ├── SHTrackMO.m │ │ │ ├── ShazamKit.m │ │ │ ├── SigCrop.m │ │ │ ├── SigSonify.m │ │ │ ├── SigX.m │ │ │ ├── SignatureAlignmentTracker.m │ │ │ ├── SignatureAlignmentTrackerResult.m │ │ │ └── UTType+SHShazamAdditions.m │ ├── Speech │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Speech │ │ │ │ ├── AFDictationDelegate.h │ │ │ │ ├── SFAcousticFeature.h │ │ │ │ ├── SFSpeechAudioBufferRecognitionRequest.h │ │ │ │ ├── SFSpeechRecognitionBufferDelegate.h │ │ │ │ ├── SFSpeechRecognitionRequest.h │ │ │ │ ├── SFSpeechRecognitionResult.h │ │ │ │ ├── SFSpeechRecognitionTask.h │ │ │ │ ├── SFSpeechRecognizer.h │ │ │ │ ├── SFSpeechURLRecognitionRequest.h │ │ │ │ ├── SFTranscription.h │ │ │ │ ├── SFTranscriptionSegment.h │ │ │ │ ├── SFVoiceAnalytics.h │ │ │ │ ├── Speech.h │ │ │ │ ├── _SFSearchRequest.h │ │ │ │ ├── _SFSearchResult.h │ │ │ │ ├── _SFSpeechRecognitionBlockTask.h │ │ │ │ └── _SFSpeechRecognitionDelegateTask.h │ │ └── src │ │ │ ├── SFAcousticFeature.m │ │ │ ├── SFSpeechAudioBufferRecognitionRequest.m │ │ │ ├── SFSpeechRecognitionRequest.m │ │ │ ├── SFSpeechRecognitionResult.m │ │ │ ├── SFSpeechRecognitionTask.m │ │ │ ├── SFSpeechRecognizer.m │ │ │ ├── SFSpeechURLRecognitionRequest.m │ │ │ ├── SFTranscription.m │ │ │ ├── SFTranscriptionSegment.m │ │ │ ├── SFVoiceAnalytics.m │ │ │ ├── Speech.m │ │ │ ├── _SFSearchRequest.m │ │ │ ├── _SFSearchResult.m │ │ │ ├── _SFSpeechRecognitionBlockTask.m │ │ │ └── _SFSpeechRecognitionDelegateTask.m │ ├── SpriteKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── SpriteKit │ │ │ │ ├── IKLink.h │ │ │ │ ├── NSKeyedArchiverDelegate.h │ │ │ │ ├── NSKeyedUnarchiverDelegate.h │ │ │ │ ├── SK3DNode.h │ │ │ │ ├── SKAction.h │ │ │ │ ├── SKActionTable.h │ │ │ │ ├── SKAnimate.h │ │ │ │ ├── SKAnimateWarp.h │ │ │ │ ├── SKAttribute.h │ │ │ │ ├── SKAttributeValue.h │ │ │ │ ├── SKAudioNode.h │ │ │ │ ├── SKBitmapFont.h │ │ │ │ ├── SKButtonNode.h │ │ │ │ ├── SKButtonNodeSprite.h │ │ │ │ ├── SKCameraNode.h │ │ │ │ ├── SKCaptureUnarchiverDelegate.h │ │ │ │ ├── SKColorize.h │ │ │ │ ├── SKConstraint.h │ │ │ │ ├── SKCropNode.h │ │ │ │ ├── SKCustomAction.h │ │ │ │ ├── SKCustomFieldNode.h │ │ │ │ ├── SKDisplayLink.h │ │ │ │ ├── SKDistanceConstraint.h │ │ │ │ ├── SKDragFieldNode.h │ │ │ │ ├── SKEffectNode.h │ │ │ │ ├── SKElectricFieldNode.h │ │ │ │ ├── SKEmitterNode.h │ │ │ │ ├── SKFade.h │ │ │ │ ├── SKFalloff.h │ │ │ │ ├── SKFieldNode.h │ │ │ │ ├── SKFollowPath.h │ │ │ │ ├── SKFrameCaptureDelegate.h │ │ │ │ ├── SKGlobalSharedContextRegistry.h │ │ │ │ ├── SKGroup.h │ │ │ │ ├── SKHide.h │ │ │ │ ├── SKJavaScriptAction.h │ │ │ │ ├── SKKeyedUnarchiver.h │ │ │ │ ├── SKKeyframeSequence.h │ │ │ │ ├── SKLabelNode.h │ │ │ │ ├── SKLightNode.h │ │ │ │ ├── SKLinearGravityFieldNode.h │ │ │ │ ├── SKMagneticFieldNode.h │ │ │ │ ├── SKMove.h │ │ │ │ ├── SKMutableTexture.h │ │ │ │ ├── SKNode.h │ │ │ │ ├── SKNodeCustomClassUnarchiver.h │ │ │ │ ├── SKNodeVisualRepresentationArchiver.h │ │ │ │ ├── SKNodeVisualRepresentationUnarchiver.h │ │ │ │ ├── SKNoiseFieldNode.h │ │ │ │ ├── SKOpenGLLayer.h │ │ │ │ ├── SKOpenGLNode.h │ │ │ │ ├── SKOrientationConstraint.h │ │ │ │ ├── SKParticleSystemNode.h │ │ │ │ ├── SKPerformSelector.h │ │ │ │ ├── SKPhysicsBody.h │ │ │ │ ├── SKPhysicsContact.h │ │ │ │ ├── SKPhysicsGrid.h │ │ │ │ ├── SKPhysicsJoint.h │ │ │ │ ├── SKPhysicsJointFixed.h │ │ │ │ ├── SKPhysicsJointLimit.h │ │ │ │ ├── SKPhysicsJointPin.h │ │ │ │ ├── SKPhysicsJointSliding.h │ │ │ │ ├── SKPhysicsJointSpring.h │ │ │ │ ├── SKPhysicsWorld.h │ │ │ │ ├── SKPlaySound.h │ │ │ │ ├── SKPositionConstraint.h │ │ │ │ ├── SKRadialGravityFieldNode.h │ │ │ │ ├── SKRange.h │ │ │ │ ├── SKReach.h │ │ │ │ ├── SKReachConstraints.h │ │ │ │ ├── SKReferenceNode.h │ │ │ │ ├── SKReferencedAction.h │ │ │ │ ├── SKRegion.h │ │ │ │ ├── SKRemove.h │ │ │ │ ├── SKRenderer.h │ │ │ │ ├── SKRepeat.h │ │ │ │ ├── SKResize.h │ │ │ │ ├── SKRotate.h │ │ │ │ ├── SKRotationConstraint.h │ │ │ │ ├── SKRunAction.h │ │ │ │ ├── SKRunBlock.h │ │ │ │ ├── SKSCNRenderer.h │ │ │ │ ├── SKScale.h │ │ │ │ ├── SKScaleConstraint.h │ │ │ │ ├── SKScene.h │ │ │ │ ├── SKSceneUnarchiveDummy.h │ │ │ │ ├── SKSequence.h │ │ │ │ ├── SKShader.h │ │ │ │ ├── SKShapeNode.h │ │ │ │ ├── SKSizeConstraint.h │ │ │ │ ├── SKSoundBuffer.h │ │ │ │ ├── SKSoundContext.h │ │ │ │ ├── SKSoundSource.h │ │ │ │ ├── SKSpeed.h │ │ │ │ ├── SKSpringFieldNode.h │ │ │ │ ├── SKSpriteNode.h │ │ │ │ ├── SKStrength.h │ │ │ │ ├── SKTexture.h │ │ │ │ ├── SKTextureAtlas.h │ │ │ │ ├── SKTextureAtlasPacker.h │ │ │ │ ├── SKTextureCache.h │ │ │ │ ├── SKThreadSafeMapTable.h │ │ │ │ ├── SKThreadSafeMutableArray.h │ │ │ │ ├── SKThreadSafeMutableDictionary.h │ │ │ │ ├── SKTileDefinition.h │ │ │ │ ├── SKTileGroup.h │ │ │ │ ├── SKTileGroupRule.h │ │ │ │ ├── SKTileMapNode.h │ │ │ │ ├── SKTileSet.h │ │ │ │ ├── SKTileStamp.h │ │ │ │ ├── SKTransformNode.h │ │ │ │ ├── SKTransition.h │ │ │ │ ├── SKTurbulenceFieldNode.h │ │ │ │ ├── SKUniform.h │ │ │ │ ├── SKUniformInfo.h │ │ │ │ ├── SKUniformShaderReference.h │ │ │ │ ├── SKVelocityFieldNode.h │ │ │ │ ├── SKVideoNode.h │ │ │ │ ├── SKView.h │ │ │ │ ├── SKVortexFieldNode.h │ │ │ │ ├── SKWait.h │ │ │ │ ├── SKWarpGeometry.h │ │ │ │ ├── SKWarpGeometryGrid.h │ │ │ │ ├── SKWarpable.h │ │ │ │ └── SpriteKit.h │ │ └── src │ │ │ ├── IKLink.m │ │ │ ├── SK3DNode.m │ │ │ ├── SKAction.m │ │ │ ├── SKActionTable.m │ │ │ ├── SKAnimate.m │ │ │ ├── SKAnimateWarp.m │ │ │ ├── SKAttribute.m │ │ │ ├── SKAttributeValue.m │ │ │ ├── SKAudioNode.m │ │ │ ├── SKBitmapFont.m │ │ │ ├── SKButtonNode.m │ │ │ ├── SKButtonNodeSprite.m │ │ │ ├── SKCameraNode.m │ │ │ ├── SKCaptureUnarchiverDelegate.m │ │ │ ├── SKColorize.m │ │ │ ├── SKConstraint.m │ │ │ ├── SKCropNode.m │ │ │ ├── SKCustomAction.m │ │ │ ├── SKCustomFieldNode.m │ │ │ ├── SKDisplayLink.m │ │ │ ├── SKDistanceConstraint.m │ │ │ ├── SKDragFieldNode.m │ │ │ ├── SKEffectNode.m │ │ │ ├── SKElectricFieldNode.m │ │ │ ├── SKEmitterNode.m │ │ │ ├── SKFade.m │ │ │ ├── SKFalloff.m │ │ │ ├── SKFieldNode.m │ │ │ ├── SKFollowPath.m │ │ │ ├── SKFrameCaptureDelegate.m │ │ │ ├── SKGlobalSharedContextRegistry.m │ │ │ ├── SKGroup.m │ │ │ ├── SKHide.m │ │ │ ├── SKJavaScriptAction.m │ │ │ ├── SKKeyedUnarchiver.m │ │ │ ├── SKKeyframeSequence.m │ │ │ ├── SKLabelNode.m │ │ │ ├── SKLightNode.m │ │ │ ├── SKLinearGravityFieldNode.m │ │ │ ├── SKMagneticFieldNode.m │ │ │ ├── SKMove.m │ │ │ ├── SKMutableTexture.m │ │ │ ├── SKNode.m │ │ │ ├── SKNodeCustomClassUnarchiver.m │ │ │ ├── SKNodeVisualRepresentationArchiver.m │ │ │ ├── SKNodeVisualRepresentationUnarchiver.m │ │ │ ├── SKNoiseFieldNode.m │ │ │ ├── SKOpenGLLayer.m │ │ │ ├── SKOpenGLNode.m │ │ │ ├── SKOrientationConstraint.m │ │ │ ├── SKParticleSystemNode.m │ │ │ ├── SKPerformSelector.m │ │ │ ├── SKPhysicsBody.m │ │ │ ├── SKPhysicsContact.m │ │ │ ├── SKPhysicsGrid.m │ │ │ ├── SKPhysicsJoint.m │ │ │ ├── SKPhysicsJointFixed.m │ │ │ ├── SKPhysicsJointLimit.m │ │ │ ├── SKPhysicsJointPin.m │ │ │ ├── SKPhysicsJointSliding.m │ │ │ ├── SKPhysicsJointSpring.m │ │ │ ├── SKPhysicsWorld.m │ │ │ ├── SKPlaySound.m │ │ │ ├── SKPositionConstraint.m │ │ │ ├── SKRadialGravityFieldNode.m │ │ │ ├── SKRange.m │ │ │ ├── SKReach.m │ │ │ ├── SKReachConstraints.m │ │ │ ├── SKReferenceNode.m │ │ │ ├── SKReferencedAction.m │ │ │ ├── SKRegion.m │ │ │ ├── SKRemove.m │ │ │ ├── SKRenderer.m │ │ │ ├── SKRepeat.m │ │ │ ├── SKResize.m │ │ │ ├── SKRotate.m │ │ │ ├── SKRotationConstraint.m │ │ │ ├── SKRunAction.m │ │ │ ├── SKRunBlock.m │ │ │ ├── SKSCNRenderer.m │ │ │ ├── SKScale.m │ │ │ ├── SKScaleConstraint.m │ │ │ ├── SKScene.m │ │ │ ├── SKSceneUnarchiveDummy.m │ │ │ ├── SKSequence.m │ │ │ ├── SKShader.m │ │ │ ├── SKShapeNode.m │ │ │ ├── SKSizeConstraint.m │ │ │ ├── SKSoundBuffer.m │ │ │ ├── SKSoundContext.m │ │ │ ├── SKSoundSource.m │ │ │ ├── SKSpeed.m │ │ │ ├── SKSpringFieldNode.m │ │ │ ├── SKSpriteNode.m │ │ │ ├── SKStrength.m │ │ │ ├── SKTexture.m │ │ │ ├── SKTextureAtlas.m │ │ │ ├── SKTextureAtlasPacker.m │ │ │ ├── SKTextureCache.m │ │ │ ├── SKThreadSafeMapTable.m │ │ │ ├── SKThreadSafeMutableArray.m │ │ │ ├── SKThreadSafeMutableDictionary.m │ │ │ ├── SKTileDefinition.m │ │ │ ├── SKTileGroup.m │ │ │ ├── SKTileGroupRule.m │ │ │ ├── SKTileMapNode.m │ │ │ ├── SKTileSet.m │ │ │ ├── SKTileStamp.m │ │ │ ├── SKTransformNode.m │ │ │ ├── SKTransition.m │ │ │ ├── SKTurbulenceFieldNode.m │ │ │ ├── SKUniform.m │ │ │ ├── SKUniformInfo.m │ │ │ ├── SKUniformShaderReference.m │ │ │ ├── SKVelocityFieldNode.m │ │ │ ├── SKVideoNode.m │ │ │ ├── SKView.m │ │ │ ├── SKVortexFieldNode.m │ │ │ ├── SKWait.m │ │ │ ├── SKWarpGeometry.m │ │ │ ├── SKWarpGeometryGrid.m │ │ │ └── SpriteKit.m │ ├── StoreKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── StoreKit │ │ │ │ ├── SKDownload.h │ │ │ │ ├── SKDownloadChangeset.h │ │ │ │ ├── SKDownloadInternal.h │ │ │ │ ├── SKHandleInvalidReceiptRequest.h │ │ │ │ ├── SKInAppClient.h │ │ │ │ ├── SKInAppService.h │ │ │ │ ├── SKMutablePayment.h │ │ │ │ ├── SKPayment.h │ │ │ │ ├── SKPaymentDiscount.h │ │ │ │ ├── SKPaymentDiscountInternal.h │ │ │ │ ├── SKPaymentInternal.h │ │ │ │ ├── SKPaymentQueue.h │ │ │ │ ├── SKPaymentQueueClient.h │ │ │ │ ├── SKPaymentQueueInternal.h │ │ │ │ ├── SKPaymentTransaction.h │ │ │ │ ├── SKPaymentTransactionInternal.h │ │ │ │ ├── SKProduct.h │ │ │ │ ├── SKProductDiscount.h │ │ │ │ ├── SKProductDiscountInternal.h │ │ │ │ ├── SKProductInternal.h │ │ │ │ ├── SKProductSubscriptionPeriod.h │ │ │ │ ├── SKProductSubscriptionPeriodInternal.h │ │ │ │ ├── SKProductsRequest.h │ │ │ │ ├── SKProductsRequestInternal.h │ │ │ │ ├── SKProductsResponse.h │ │ │ │ ├── SKProductsResponseInternal.h │ │ │ │ ├── SKReceiptRefreshRequest.h │ │ │ │ ├── SKRequest.h │ │ │ │ ├── SKRequestInternal.h │ │ │ │ ├── SKServiceClient.h │ │ │ │ ├── SKServiceProxy.h │ │ │ │ ├── SKStoreReviewController.h │ │ │ │ ├── SKXPCConnection.h │ │ │ │ └── StoreKit.h │ │ └── src │ │ │ ├── SKDownload.m │ │ │ ├── SKDownloadChangeset.m │ │ │ ├── SKDownloadInternal.m │ │ │ ├── SKHandleInvalidReceiptRequest.m │ │ │ ├── SKMutablePayment.m │ │ │ ├── SKPayment.m │ │ │ ├── SKPaymentDiscount.m │ │ │ ├── SKPaymentDiscountInternal.m │ │ │ ├── SKPaymentInternal.m │ │ │ ├── SKPaymentQueue.m │ │ │ ├── SKPaymentQueueClient.m │ │ │ ├── SKPaymentQueueInternal.m │ │ │ ├── SKPaymentTransaction.m │ │ │ ├── SKPaymentTransactionInternal.m │ │ │ ├── SKProduct.m │ │ │ ├── SKProductDiscount.m │ │ │ ├── SKProductDiscountInternal.m │ │ │ ├── SKProductInternal.m │ │ │ ├── SKProductSubscriptionPeriod.m │ │ │ ├── SKProductSubscriptionPeriodInternal.m │ │ │ ├── SKProductsRequest.m │ │ │ ├── SKProductsRequestInternal.m │ │ │ ├── SKProductsResponse.m │ │ │ ├── SKProductsResponseInternal.m │ │ │ ├── SKReceiptRefreshRequest.m │ │ │ ├── SKRequest.m │ │ │ ├── SKRequestInternal.m │ │ │ ├── SKServiceClient.m │ │ │ ├── SKServiceProxy.m │ │ │ ├── SKStoreReviewController.m │ │ │ ├── SKXPCConnection.m │ │ │ └── StoreKit.m │ ├── SyncServices │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── SyncServices │ │ │ │ ├── DataMgrBasedNameNumberProvider.h │ │ │ │ ├── DefaultNameNumberProvider.h │ │ │ │ ├── IDMapping.h │ │ │ │ ├── ISDAdminDatabase.h │ │ │ │ ├── ISDCallHistory.h │ │ │ │ ├── ISDChange.h │ │ │ │ ├── ISDChangeBuilder.h │ │ │ │ ├── ISDChangeEnumerator.h │ │ │ │ ├── ISDChangePuller.h │ │ │ │ ├── ISDChangePusher.h │ │ │ │ ├── ISDChangeSource.h │ │ │ │ ├── ISDChangeStore.h │ │ │ │ ├── ISDClient.h │ │ │ │ ├── ISDClientState.h │ │ │ │ ├── ISDConflict.h │ │ │ │ ├── ISDConflictAddEnumerator.h │ │ │ │ ├── ISDConflictChangeEnumerator.h │ │ │ │ ├── ISDConflictManager.h │ │ │ │ ├── ISDDataClass.h │ │ │ │ ├── ISDDataDatabase.h │ │ │ │ ├── ISDDataDirectoryVersion.h │ │ │ │ ├── ISDDataManager.h │ │ │ │ ├── ISDDataObject.h │ │ │ │ ├── ISDDataReference.h │ │ │ │ ├── ISDDataWrapper.h │ │ │ │ ├── ISDDatabase.h │ │ │ │ ├── ISDDigestMaker.h │ │ │ │ ├── ISDDisabledServer.h │ │ │ │ ├── ISDEntity.h │ │ │ │ ├── ISDEntityComponent.h │ │ │ │ ├── ISDException.h │ │ │ │ ├── ISDFastCDSyncHelper.h │ │ │ │ ├── ISDFileReference.h │ │ │ │ ├── ISDFiltratorThingy.h │ │ │ │ ├── ISDGlobalId.h │ │ │ │ ├── ISDIdMapDatabase.h │ │ │ │ ├── ISDInstrumentedEnumerator.h │ │ │ │ ├── ISDKeyedArchiverHelperToRemoveSyncStates.h │ │ │ │ ├── ISDNameNumberMapping.h │ │ │ │ ├── ISDNameNumberProvider.h │ │ │ │ ├── ISDObjectGraphWrapper.h │ │ │ │ ├── ISDPersistentStoreSyncer.h │ │ │ │ ├── ISDPreNameNumberMapIdMapDatabase.h │ │ │ │ ├── ISDProperty.h │ │ │ │ ├── ISDPropertyChange.h │ │ │ │ ├── ISDPropertyConflict.h │ │ │ │ ├── ISDPropertyValue.h │ │ │ │ ├── ISDQuickDirtyCoder.h │ │ │ │ ├── ISDRecord.h │ │ │ │ ├── ISDRecordIdMap.h │ │ │ │ ├── ISDRecordIdMapDatabase.h │ │ │ │ ├── ISDRecordIdMapper.h │ │ │ │ ├── ISDRecordStore.h │ │ │ │ ├── ISDRelationship.h │ │ │ │ ├── ISDSaveSyncServicesDirectoryCopyHandler.h │ │ │ │ ├── ISDSchema.h │ │ │ │ ├── ISDSchemaParser.h │ │ │ │ ├── ISDServer.h │ │ │ │ ├── ISDServerFileLockerDelegate.h │ │ │ │ ├── ISDSqliteChangeStore.h │ │ │ │ ├── ISDSqliteChangeStoreDatabase.h │ │ │ │ ├── ISDSqliteRecordIdMapper.h │ │ │ │ ├── ISDStructuredDelta.h │ │ │ │ ├── ISDSyncJob.h │ │ │ │ ├── ISDSyncManager.h │ │ │ │ ├── ISDSyncParticipant.h │ │ │ │ ├── ISDSyncPlan.h │ │ │ │ ├── ISDSyncState.h │ │ │ │ ├── ISyncAlertCallback.h │ │ │ │ ├── ISyncAlwaysAcceptFilter.h │ │ │ │ ├── ISyncChange.h │ │ │ │ ├── ISyncClient.h │ │ │ │ ├── ISyncConcreteChange.h │ │ │ │ ├── ISyncConcreteClient.h │ │ │ │ ├── ISyncConcreteManager.h │ │ │ │ ├── ISyncConcreteRecordGraphNode.h │ │ │ │ ├── ISyncConcreteRecordReference.h │ │ │ │ ├── ISyncConcreteRecordSnapshot.h │ │ │ │ ├── ISyncConcreteRecordView.h │ │ │ │ ├── ISyncConcreteSession.h │ │ │ │ ├── ISyncConcreteSessionDriver.h │ │ │ │ ├── ISyncConflictPropertyType.h │ │ │ │ ├── ISyncConjunctionFilter.h │ │ │ │ ├── ISyncFileLocker.h │ │ │ │ ├── ISyncFilter.h │ │ │ │ ├── ISyncFiltering.h │ │ │ │ ├── ISyncInstrumentedSession.h │ │ │ │ ├── ISyncManager.h │ │ │ │ ├── ISyncNameNumberProvider.h │ │ │ │ ├── ISyncPlan.h │ │ │ │ ├── ISyncRecordGraphNode.h │ │ │ │ ├── ISyncRecordReference.h │ │ │ │ ├── ISyncRecordSnapshot.h │ │ │ │ ├── ISyncRecordView.h │ │ │ │ ├── ISyncRecordViewWithConflicts.h │ │ │ │ ├── ISyncRecordWithConflictGraphNode.h │ │ │ │ ├── ISyncServer.h │ │ │ │ ├── ISyncServerUIHandling.h │ │ │ │ ├── ISyncSession.h │ │ │ │ ├── ISyncSessionCallback.h │ │ │ │ ├── ISyncSessionDriver.h │ │ │ │ ├── ISyncSimplyIgnoreLocalsFilter.h │ │ │ │ ├── ISyncTCCAccessOperation.h │ │ │ │ ├── MinglerSyncStateMutating.h │ │ │ │ ├── NSKeyedArchiverDelegate.h │ │ │ │ ├── NSKeyedUnarchiverDelegate.h │ │ │ │ ├── NSMachPortDelegate.h │ │ │ │ ├── NSPortDelegate.h │ │ │ │ ├── PresetNameNumberProvider.h │ │ │ │ ├── RelationshipInformation.h │ │ │ │ ├── SchemaModificationCallbacks.h │ │ │ │ ├── ServerBasedNameNumberProvider.h │ │ │ │ ├── SyncClientNameNumberProvider.h │ │ │ │ ├── SyncServices.h │ │ │ │ └── manual.h │ │ └── src │ │ │ ├── DataMgrBasedNameNumberProvider.m │ │ │ ├── DefaultNameNumberProvider.m │ │ │ ├── IDMapping.m │ │ │ ├── ISDAdminDatabase.m │ │ │ ├── ISDCallHistory.m │ │ │ ├── ISDChange.m │ │ │ ├── ISDChangeBuilder.m │ │ │ ├── ISDChangeEnumerator.m │ │ │ ├── ISDChangePuller.m │ │ │ ├── ISDChangePusher.m │ │ │ ├── ISDChangeStore.m │ │ │ ├── ISDClient.m │ │ │ ├── ISDClientState.m │ │ │ ├── ISDConflict.m │ │ │ ├── ISDConflictAddEnumerator.m │ │ │ ├── ISDConflictChangeEnumerator.m │ │ │ ├── ISDConflictManager.m │ │ │ ├── ISDDataClass.m │ │ │ ├── ISDDataDatabase.m │ │ │ ├── ISDDataDirectoryVersion.m │ │ │ ├── ISDDataManager.m │ │ │ ├── ISDDataObject.m │ │ │ ├── ISDDataReference.m │ │ │ ├── ISDDataWrapper.m │ │ │ ├── ISDDatabase.m │ │ │ ├── ISDDigestMaker.m │ │ │ ├── ISDDisabledServer.m │ │ │ ├── ISDEntity.m │ │ │ ├── ISDEntityComponent.m │ │ │ ├── ISDException.m │ │ │ ├── ISDFastCDSyncHelper.m │ │ │ ├── ISDFileReference.m │ │ │ ├── ISDFiltratorThingy.m │ │ │ ├── ISDGlobalId.m │ │ │ ├── ISDIdMapDatabase.m │ │ │ ├── ISDInstrumentedEnumerator.m │ │ │ ├── ISDKeyedArchiverHelperToRemoveSyncStates.m │ │ │ ├── ISDNameNumberMapping.m │ │ │ ├── ISDNameNumberProvider.m │ │ │ ├── ISDObjectGraphWrapper.m │ │ │ ├── ISDPersistentStoreSyncer.m │ │ │ ├── ISDPreNameNumberMapIdMapDatabase.m │ │ │ ├── ISDProperty.m │ │ │ ├── ISDPropertyChange.m │ │ │ ├── ISDPropertyConflict.m │ │ │ ├── ISDPropertyValue.m │ │ │ ├── ISDQuickDirtyCoder.m │ │ │ ├── ISDRecord.m │ │ │ ├── ISDRecordIdMap.m │ │ │ ├── ISDRecordIdMapDatabase.m │ │ │ ├── ISDRecordIdMapper.m │ │ │ ├── ISDRecordStore.m │ │ │ ├── ISDRelationship.m │ │ │ ├── ISDSaveSyncServicesDirectoryCopyHandler.m │ │ │ ├── ISDSchema.m │ │ │ ├── ISDSchemaParser.m │ │ │ ├── ISDServer.m │ │ │ ├── ISDServerFileLockerDelegate.m │ │ │ ├── ISDSqliteChangeStore.m │ │ │ ├── ISDSqliteChangeStoreDatabase.m │ │ │ ├── ISDSqliteRecordIdMapper.m │ │ │ ├── ISDStructuredDelta.m │ │ │ ├── ISDSyncJob.m │ │ │ ├── ISDSyncManager.m │ │ │ ├── ISDSyncParticipant.m │ │ │ ├── ISDSyncPlan.m │ │ │ ├── ISDSyncState.m │ │ │ ├── ISyncAlwaysAcceptFilter.m │ │ │ ├── ISyncChange.m │ │ │ ├── ISyncClient.m │ │ │ ├── ISyncConcreteChange.m │ │ │ ├── ISyncConcreteClient.m │ │ │ ├── ISyncConcreteManager.m │ │ │ ├── ISyncConcreteRecordGraphNode.m │ │ │ ├── ISyncConcreteRecordReference.m │ │ │ ├── ISyncConcreteRecordSnapshot.m │ │ │ ├── ISyncConcreteRecordView.m │ │ │ ├── ISyncConcreteSession.m │ │ │ ├── ISyncConcreteSessionDriver.m │ │ │ ├── ISyncConjunctionFilter.m │ │ │ ├── ISyncFileLocker.m │ │ │ ├── ISyncFilter.m │ │ │ ├── ISyncInstrumentedSession.m │ │ │ ├── ISyncManager.m │ │ │ ├── ISyncPlan.m │ │ │ ├── ISyncRecordGraphNode.m │ │ │ ├── ISyncRecordReference.m │ │ │ ├── ISyncRecordSnapshot.m │ │ │ ├── ISyncRecordView.m │ │ │ ├── ISyncRecordViewWithConflicts.m │ │ │ ├── ISyncRecordWithConflictGraphNode.m │ │ │ ├── ISyncSession.m │ │ │ ├── ISyncSessionDriver.m │ │ │ ├── ISyncSimplyIgnoreLocalsFilter.m │ │ │ ├── ISyncTCCAccessOperation.m │ │ │ ├── PresetNameNumberProvider.m │ │ │ ├── RelationshipInformation.m │ │ │ ├── ServerBasedNameNumberProvider.m │ │ │ ├── SyncClientNameNumberProvider.m │ │ │ └── SyncServices.m │ ├── SystemConfiguration │ │ ├── CMakeLists.txt │ │ ├── SCDynamicStoreCopySpecific.cpp │ │ ├── SCNetworkConnection.c │ │ ├── SCNetworkReachability.c │ │ ├── SCSchemaDefinitions.c │ │ ├── include │ │ │ └── SystemConfiguration │ │ │ │ ├── CaptiveNetwork.h │ │ │ │ ├── DHCPClientPreferences.h │ │ │ │ ├── SCD.h │ │ │ │ ├── SCDPlugin.h │ │ │ │ ├── SCDynamicStore.h │ │ │ │ ├── SCDynamicStoreCopyDHCPInfo.h │ │ │ │ ├── SCDynamicStoreCopySpecific.h │ │ │ │ ├── SCDynamicStoreCopySpecificPrivate.h │ │ │ │ ├── SCDynamicStoreInternal.h │ │ │ │ ├── SCDynamicStoreKey.h │ │ │ │ ├── SCDynamicStorePrivate.h │ │ │ │ ├── SCDynamicStoreSetSpecificPrivate.h │ │ │ │ ├── SCHelper_client.h │ │ │ │ ├── SCNetwork.h │ │ │ │ ├── SCNetworkConfiguration.h │ │ │ │ ├── SCNetworkConfigurationInternal.h │ │ │ │ ├── SCNetworkConfigurationPrivate.h │ │ │ │ ├── SCNetworkConnection.h │ │ │ │ ├── SCNetworkConnectionInternal.h │ │ │ │ ├── SCNetworkConnectionPrivate.h │ │ │ │ ├── SCNetworkInterfaceProvider.h │ │ │ │ ├── SCNetworkReachability.h │ │ │ │ ├── SCNetworkReachabilityInternal.h │ │ │ │ ├── SCNetworkReachabilityLogging.h │ │ │ │ ├── SCNetworkSignature.h │ │ │ │ ├── SCNetworkSignaturePrivate.h │ │ │ │ ├── SCPreferences.h │ │ │ │ ├── SCPreferencesGetSpecificPrivate.h │ │ │ │ ├── SCPreferencesInternal.h │ │ │ │ ├── SCPreferencesKeychainPrivate.h │ │ │ │ ├── SCPreferencesPath.h │ │ │ │ ├── SCPreferencesPathKey.h │ │ │ │ ├── SCPreferencesPrivate.h │ │ │ │ ├── SCPreferencesSetSpecific.h │ │ │ │ ├── SCPreferencesSetSpecificPrivate.h │ │ │ │ ├── SCPrivate.h │ │ │ │ ├── SCSchemaDefinitions.h │ │ │ │ ├── SCSchemaDefinitionsPrivate.h │ │ │ │ ├── SCValidation.h │ │ │ │ ├── SNHelperPrivate.h │ │ │ │ ├── SystemConfiguration.h │ │ │ │ ├── SystemConfigurationInternal.h │ │ │ │ ├── VPNAppLayerPrivate.h │ │ │ │ ├── VPNConfiguration.h │ │ │ │ ├── VPNFlow.h │ │ │ │ ├── VPNPrivate.h │ │ │ │ ├── VPNTunnel.h │ │ │ │ ├── VPNTunnelPrivate.h │ │ │ │ ├── config_types.h │ │ │ │ ├── dy_framework.h │ │ │ │ ├── helper_types.h │ │ │ │ └── scprefs_observer.h │ │ └── stubs.c │ ├── UniformTypeIdentifiers │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── UniformTypeIdentifiers │ │ │ │ ├── NSItemProvider+UTType.h │ │ │ │ ├── NSString+UTAdditions.h │ │ │ │ ├── NSURL+UTAdditions.h │ │ │ │ ├── UTType.h │ │ │ │ ├── UniformTypeIdentifiers.h │ │ │ │ ├── _UTConstantType.h │ │ │ │ ├── _UTCoreType+UTRefCounting.h │ │ │ │ ├── _UTCoreType.h │ │ │ │ ├── _UTRuntimeConstantType.h │ │ │ │ └── _UTTaggedType.h │ │ └── src │ │ │ ├── NSItemProvider+UTType.m │ │ │ ├── NSString+UTAdditions.m │ │ │ ├── NSURL+UTAdditions.m │ │ │ ├── UTType.m │ │ │ ├── UniformTypeIdentifiers.m │ │ │ ├── _UTConstantType.m │ │ │ ├── _UTCoreType+UTRefCounting.m │ │ │ ├── _UTCoreType.m │ │ │ ├── _UTRuntimeConstantType.m │ │ │ └── _UTTaggedType.m │ ├── UserNotifications │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── UserNotifications │ │ │ │ ├── BSXPCCoding.h │ │ │ │ ├── NSExtensionRequestHandling.h │ │ │ │ ├── NSXPCListenerDelegate.h │ │ │ │ ├── UNAudioNotificationAttachmentOptions.h │ │ │ │ ├── UNCalendarNotificationTrigger.h │ │ │ │ ├── UNImageNotificationAttachmentOptions.h │ │ │ │ ├── UNLegacyNotificationTrigger.h │ │ │ │ ├── UNLocalizedString.h │ │ │ │ ├── UNLocalizedStringFactory.h │ │ │ │ ├── UNLocationNotificationTrigger.h │ │ │ │ ├── UNMovieNotificationAttachmentOptions.h │ │ │ │ ├── UNMutableNotificationCategory.h │ │ │ │ ├── UNMutableNotificationContent.h │ │ │ │ ├── UNMutableNotificationSettings.h │ │ │ │ ├── UNMutableNotificationSound.h │ │ │ │ ├── UNNotification.h │ │ │ │ ├── UNNotificationAction.h │ │ │ │ ├── UNNotificationAttachment.h │ │ │ │ ├── UNNotificationAttachmentOptions.h │ │ │ │ ├── UNNotificationAttachmentThumbnailOptions.h │ │ │ │ ├── UNNotificationCategory.h │ │ │ │ ├── UNNotificationContent.h │ │ │ │ ├── UNNotificationIcon.h │ │ │ │ ├── UNNotificationRequest.h │ │ │ │ ├── UNNotificationResponse.h │ │ │ │ ├── UNNotificationServiceExtension.h │ │ │ │ ├── UNNotificationSettings.h │ │ │ │ ├── UNNotificationSound.h │ │ │ │ ├── UNNotificationTopic.h │ │ │ │ ├── UNNotificationTopicRequest.h │ │ │ │ ├── UNNotificationTrigger.h │ │ │ │ ├── UNPushNotificationRequestBuilder.h │ │ │ │ ├── UNPushNotificationTrigger.h │ │ │ │ ├── UNSecurityScopedURL.h │ │ │ │ ├── UNTextInputNotificationAction.h │ │ │ │ ├── UNTextInputNotificationResponse.h │ │ │ │ ├── UNTimeIntervalNotificationTrigger.h │ │ │ │ ├── UNUserNotificationCenter.h │ │ │ │ ├── UNUserNotificationCenterDelegateConnectionListener.h │ │ │ │ ├── UNUserNotificationCenterDelegateConnectionListenerDelegate.h │ │ │ │ ├── UNUserNotificationCenterDelegateService.h │ │ │ │ ├── UNUserNotificationCenterDelegateServiceProtocol.h │ │ │ │ ├── UNUserNotificationClientProtocol.h │ │ │ │ ├── UNUserNotificationServerProtocol.h │ │ │ │ ├── UNUserNotificationService.h │ │ │ │ ├── UNUserNotificationServiceConnection.h │ │ │ │ ├── UNUserNotificationServiceConnectionObserver.h │ │ │ │ ├── UserNotifications.h │ │ │ │ ├── _UNNotificationServiceExtensionContext.h │ │ │ │ ├── _UNNotificationServiceExtensionHostContext.h │ │ │ │ ├── _UNNotificationServiceExtensionHostXPCInterface.h │ │ │ │ ├── _UNNotificationServiceExtensionRemoteContext.h │ │ │ │ ├── _UNNotificationServiceExtensionRemoteXPCInterface.h │ │ │ │ └── _UNNotificationServiceExtensionXPCInterface.h │ │ └── src │ │ │ ├── UNAudioNotificationAttachmentOptions.m │ │ │ ├── UNCalendarNotificationTrigger.m │ │ │ ├── UNImageNotificationAttachmentOptions.m │ │ │ ├── UNLegacyNotificationTrigger.m │ │ │ ├── UNLocalizedString.m │ │ │ ├── UNLocalizedStringFactory.m │ │ │ ├── UNLocationNotificationTrigger.m │ │ │ ├── UNMovieNotificationAttachmentOptions.m │ │ │ ├── UNMutableNotificationCategory.m │ │ │ ├── UNMutableNotificationContent.m │ │ │ ├── UNMutableNotificationSettings.m │ │ │ ├── UNMutableNotificationSound.m │ │ │ ├── UNNotification.m │ │ │ ├── UNNotificationAction.m │ │ │ ├── UNNotificationAttachment.m │ │ │ ├── UNNotificationAttachmentOptions.m │ │ │ ├── UNNotificationCategory.m │ │ │ ├── UNNotificationContent.m │ │ │ ├── UNNotificationIcon.m │ │ │ ├── UNNotificationRequest.m │ │ │ ├── UNNotificationResponse.m │ │ │ ├── UNNotificationServiceExtension.m │ │ │ ├── UNNotificationSettings.m │ │ │ ├── UNNotificationSound.m │ │ │ ├── UNNotificationTopic.m │ │ │ ├── UNNotificationTopicRequest.m │ │ │ ├── UNNotificationTrigger.m │ │ │ ├── UNPushNotificationRequestBuilder.m │ │ │ ├── UNPushNotificationTrigger.m │ │ │ ├── UNSecurityScopedURL.m │ │ │ ├── UNTextInputNotificationAction.m │ │ │ ├── UNTextInputNotificationResponse.m │ │ │ ├── UNTimeIntervalNotificationTrigger.m │ │ │ ├── UNUserNotificationCenter.m │ │ │ ├── UNUserNotificationCenterDelegateConnectionListener.m │ │ │ ├── UNUserNotificationCenterDelegateService.m │ │ │ ├── UNUserNotificationService.m │ │ │ ├── UNUserNotificationServiceConnection.m │ │ │ ├── UserNotifications.m │ │ │ ├── _UNNotificationServiceExtensionContext.m │ │ │ ├── _UNNotificationServiceExtensionHostContext.m │ │ │ └── _UNNotificationServiceExtensionRemoteContext.m │ ├── VideoDecodeAcceleration │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── VideoDecodeAcceleration │ │ │ │ └── VideoDecodeAcceleration.h │ │ └── src │ │ │ └── VideoDecodeAcceleration.c │ ├── VideoToolbox │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── VideoToolbox │ │ │ │ ├── FigMetalTransferHelper.h │ │ │ │ └── VideoToolbox.h │ │ └── src │ │ │ ├── FigMetalTransferHelper.m │ │ │ └── VideoToolbox.m │ ├── Vision │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Vision │ │ │ │ ├── ANFDDetectedObject.h │ │ │ │ ├── BurstActionClassifier.h │ │ │ │ ├── BurstClusterDivider.h │ │ │ │ ├── BurstFaceConfigEntry.h │ │ │ │ ├── BurstFaceInfo.h │ │ │ │ ├── BurstFaceScoreEntry.h │ │ │ │ ├── BurstFaceStat.h │ │ │ │ ├── BurstImageFaceAnalysisContext.h │ │ │ │ ├── BurstImageSetInternal.h │ │ │ │ ├── BurstImageStat.h │ │ │ │ ├── BurstThumbnailCluster.h │ │ │ │ ├── CCCharBoxContext.h │ │ │ │ ├── CCTextDetector.h │ │ │ │ ├── CVMLFaceprint_LegacySupportDoNotChange.h │ │ │ │ ├── CVMLImageprintObservation_LegacySupportDoNotChange.h │ │ │ │ ├── CVMLObservation_LegacySupportDoNotChange.h │ │ │ │ ├── CVML_Error.h │ │ │ │ ├── ImageProcessing_CoreImageUtils.h │ │ │ │ ├── LKTGPU.h │ │ │ │ ├── LKTMetalContext.h │ │ │ │ ├── MLFeatureProvider.h │ │ │ │ ├── MPImageDescriptor_LegacySupportDoNotChange.h │ │ │ │ ├── SaliencyExtrema.h │ │ │ │ ├── ShotflowDetection.h │ │ │ │ ├── ShotflowDetector.h │ │ │ │ ├── ShotflowDetectorANFDv1.h │ │ │ │ ├── ShotflowDetectorANFDv2.h │ │ │ │ ├── ShotflowNetwork.h │ │ │ │ ├── ShotflowNetworkANFDv1.h │ │ │ │ ├── ShotflowNetworkANFDv2.h │ │ │ │ ├── VNANEProcessingDevice.h │ │ │ │ ├── VNANERuntimeDirectProcessingDevice.h │ │ │ │ ├── VNANERuntimeProcessingDevice.h │ │ │ │ ├── VNANFDDetectorCompoundRequest.h │ │ │ │ ├── VNANFDDetectorCompoundRequestConfiguration.h │ │ │ │ ├── VNANFDDetectorCompoundRequestConfigurationGroups.h │ │ │ │ ├── VNANFDMultiDetector.h │ │ │ │ ├── VNANFDMultiDetectorOriginalRequestInfo.h │ │ │ │ ├── VNAlignFaceRectangleRequest.h │ │ │ │ ├── VNAlignFaceRectangleRequestConfiguration.h │ │ │ │ ├── VNAppendBurstSequenceFrameRequest.h │ │ │ │ ├── VNBarcodeObservation.h │ │ │ │ ├── VNBlacklist.h │ │ │ │ ├── VNBlurMeasure.h │ │ │ │ ├── VNBlurSignature.h │ │ │ │ ├── VNBrightnessMeasure.h │ │ │ │ ├── VNBurstAnalysisResultsRequest.h │ │ │ │ ├── VNBurstAnalysisResultsRequestConfiguration.h │ │ │ │ ├── VNBurstContext.h │ │ │ │ ├── VNBurstObservation.h │ │ │ │ ├── VNCPUProcessingDevice.h │ │ │ │ ├── VNCVPixelBufferConversionHelpers.h │ │ │ │ ├── VNCanceller.h │ │ │ │ ├── VNClassificationCustomHierarchy.h │ │ │ │ ├── VNClassificationObservation.h │ │ │ │ ├── VNClassifyFaceAttributesRequest.h │ │ │ │ ├── VNClassifyImageAestheticsRequest.h │ │ │ │ ├── VNClassifyImageAestheticsRequestConfiguration.h │ │ │ │ ├── VNClassifyImageRequest.h │ │ │ │ ├── VNClassifyImageRequestConfiguration.h │ │ │ │ ├── VNClassifyJunkImageRequest.h │ │ │ │ ├── VNClassifyJunkImageRequestConfiguration.h │ │ │ │ ├── VNClassifyPipelineImageCorrectionNeed1Request.h │ │ │ │ ├── VNCluster.h │ │ │ │ ├── VNClusterObservation.h │ │ │ │ ├── VNClustererBuilder.h │ │ │ │ ├── VNClustererBuilderOptions.h │ │ │ │ ├── VNClustererContextBase.h │ │ │ │ ├── VNClustererModelBuilding.h │ │ │ │ ├── VNClustererModelQuerying.h │ │ │ │ ├── VNClustererOptions.h │ │ │ │ ├── VNClustererQuery.h │ │ │ │ ├── VNClustererQueryOptions.h │ │ │ │ ├── VNClustererReadOnlyContext.h │ │ │ │ ├── VNClustererReadWriteContext.h │ │ │ │ ├── VNClusteringCancelling.h │ │ │ │ ├── VNClusteringLogger.h │ │ │ │ ├── VNClusteringReadOnly.h │ │ │ │ ├── VNClusteringWritable.h │ │ │ │ ├── VNCompoundRequest.h │ │ │ │ ├── VNCoreMLFeatureValueObservation.h │ │ │ │ ├── VNCoreMLModel.h │ │ │ │ ├── VNCoreMLRequest.h │ │ │ │ ├── VNCoreMLRequestConfiguration.h │ │ │ │ ├── VNCoreMLTransformer.h │ │ │ │ ├── VNCreateFaceRegionMapRequest.h │ │ │ │ ├── VNCreateFaceTorsoprintRequest.h │ │ │ │ ├── VNCreateFaceprintRequest.h │ │ │ │ ├── VNCreateFaceprintRequestConfiguration.h │ │ │ │ ├── VNCreateImageprintRequest.h │ │ │ │ ├── VNCreateImageprintRequestConfiguration.h │ │ │ │ ├── VNCreateSceneprintRequest.h │ │ │ │ ├── VNCreateSceneprintRequestConfiguration.h │ │ │ │ ├── VNCreateSmartCamprintRequest.h │ │ │ │ ├── VNCreateSmartCamprintRequestConfiguration.h │ │ │ │ ├── VNCreateTorsoprintRequest.h │ │ │ │ ├── VNDebugHelpers.h │ │ │ │ ├── VNDetectAnimalRectanglesRequest.h │ │ │ │ ├── VNDetectBarcodesRequest.h │ │ │ │ ├── VNDetectBarcodesRequestConfiguration.h │ │ │ │ ├── VNDetectFace3DLandmarksRequest.h │ │ │ │ ├── VNDetectFaceCaptureQualityRequest.h │ │ │ │ ├── VNDetectFaceExpressionsRequest.h │ │ │ │ ├── VNDetectFaceLandmarksRequest.h │ │ │ │ ├── VNDetectFaceLandmarksRequestConfiguration.h │ │ │ │ ├── VNDetectFacePoseRequest.h │ │ │ │ ├── VNDetectFaceRectanglesRequest.h │ │ │ │ ├── VNDetectHorizonRequest.h │ │ │ │ ├── VNDetectHumanHeadRectanglesRequest.h │ │ │ │ ├── VNDetectHumanRectanglesRequest.h │ │ │ │ ├── VNDetectRectanglesRequest.h │ │ │ │ ├── VNDetectRectanglesRequestConfiguration.h │ │ │ │ ├── VNDetectTextRectanglesRequest.h │ │ │ │ ├── VNDetectTextRectanglesRequestConfiguration.h │ │ │ │ ├── VNDetectedObjectObservation.h │ │ │ │ ├── VNDetector.h │ │ │ │ ├── VNDetectorIdealImageSizeProviding.h │ │ │ │ ├── VNDetectorKeyProviding.h │ │ │ │ ├── VNDetectorManager.h │ │ │ │ ├── VNError.h │ │ │ │ ├── VNEspressoDetectedObject.h │ │ │ │ ├── VNEspressoHelpers.h │ │ │ │ ├── VNEspressoModelClassifier.h │ │ │ │ ├── VNEspressoModelFileBasedDetector.h │ │ │ │ ├── VNEspressoModelImageprint.h │ │ │ │ ├── VNEspressoResources.h │ │ │ │ ├── VNFaceAnalyzerCompoundRequest.h │ │ │ │ ├── VNFaceAnalyzerCompoundRequestConfiguration.h │ │ │ │ ├── VNFaceAnalyzerCompoundRequestConfigurationGroups.h │ │ │ │ ├── VNFaceAnalyzerFaceObservationGrouping.h │ │ │ │ ├── VNFaceAnalyzerMultiDetector.h │ │ │ │ ├── VNFaceAttributeCategory.h │ │ │ │ ├── VNFaceAttributes.h │ │ │ │ ├── VNFaceBBoxAligner.h │ │ │ │ ├── VNFaceDetector.h │ │ │ │ ├── VNFaceDetectorRevision1.h │ │ │ │ ├── VNFaceDetectorRevision2.h │ │ │ │ ├── VNFaceExpressionDetector.h │ │ │ │ ├── VNFaceGeometryEstimator.h │ │ │ │ ├── VNFaceLandmarkDetector.h │ │ │ │ ├── VNFaceLandmarkDetectorDNN.h │ │ │ │ ├── VNFaceLandmarkDetectorRevision1.h │ │ │ │ ├── VNFaceLandmarkDetectorRevision2.h │ │ │ │ ├── VNFaceLandmarkDetectorRevision3.h │ │ │ │ ├── VNFaceLandmarkRegion.h │ │ │ │ ├── VNFaceLandmarkRegion2D.h │ │ │ │ ├── VNFaceLandmarkRegion3D.h │ │ │ │ ├── VNFaceLandmarks.h │ │ │ │ ├── VNFaceLandmarks2D.h │ │ │ │ ├── VNFaceLandmarks3D.h │ │ │ │ ├── VNFaceObservation.h │ │ │ │ ├── VNFaceObservationAccepting.h │ │ │ │ ├── VNFaceObservationAcceptingInternal.h │ │ │ │ ├── VNFaceQualityGenerator.h │ │ │ │ ├── VNFaceRegionMap.h │ │ │ │ ├── VNFaceRegionMapGenerator.h │ │ │ │ ├── VNFaceSegmentGenerator.h │ │ │ │ ├── VNFaceSegments.h │ │ │ │ ├── VNFaceTorsoprint.h │ │ │ │ ├── VNFaceprint.h │ │ │ │ ├── VNFaceprintGenerator.h │ │ │ │ ├── VNFaceprintGeneratorRevision1.h │ │ │ │ ├── VNFeaturePrintObservation.h │ │ │ │ ├── VNGenerateAttentionBasedSaliencyImageRequest.h │ │ │ │ ├── VNGenerateAttentionBasedSaliencyImageRequestConfiguration.h │ │ │ │ ├── VNGenerateFaceSegmentsRequest.h │ │ │ │ ├── VNGenerateFaceSegmentsRequestConfiguration.h │ │ │ │ ├── VNGenerateImageFeaturePrintRequest.h │ │ │ │ ├── VNGenerateImageFeaturePrintRequestConfiguration.h │ │ │ │ ├── VNGenerateImageSaliencyRequest.h │ │ │ │ ├── VNGenerateImageSaliencyRequestConfiguration.h │ │ │ │ ├── VNGenerateObjectnessBasedSaliency544x544Detector.h │ │ │ │ ├── VNGenerateObjectnessBasedSaliencyDetector.h │ │ │ │ ├── VNGenerateObjectnessBasedSaliencyImageRequest.h │ │ │ │ ├── VNGenerateObjectnessBasedSaliencyImageRequestConfiguration.h │ │ │ │ ├── VNGenerateOpticalFlowRequest.h │ │ │ │ ├── VNGreedyClusteringReadOnly.h │ │ │ │ ├── VNGreedyClusteringReadWrite.h │ │ │ │ ├── VNGroupImagesByTimeAndContentRequest.h │ │ │ │ ├── VNHeatMapExtrema.h │ │ │ │ ├── VNHeatMapUtilities.h │ │ │ │ ├── VNHomographicImageRegistrationRequest.h │ │ │ │ ├── VNHomologousObservationClassCompoundRequest.h │ │ │ │ ├── VNHorizonDetector.h │ │ │ │ ├── VNHorizonObservation.h │ │ │ │ ├── VNIdentifyJunkRequest.h │ │ │ │ ├── VNImageAestheticsObservation.h │ │ │ │ ├── VNImageAlignmentObservation.h │ │ │ │ ├── VNImageAnalyzerCompoundRequest.h │ │ │ │ ├── VNImageAnalyzerCompoundRequestConfiguration.h │ │ │ │ ├── VNImageAnalyzerCompoundRequestGroupingConfiguration.h │ │ │ │ ├── VNImageAnalyzerCompoundRequestGroupingConfigurations.h │ │ │ │ ├── VNImageAnalyzerMultiDetector.h │ │ │ │ ├── VNImageBasedRequest.h │ │ │ │ ├── VNImageBasedRequestConfiguration.h │ │ │ │ ├── VNImageBlurObservation.h │ │ │ │ ├── VNImageBlurScoreRequest.h │ │ │ │ ├── VNImageBlurScoreRequestConfiguration.h │ │ │ │ ├── VNImageBrightnessObservation.h │ │ │ │ ├── VNImageBuffer.h │ │ │ │ ├── VNImageBufferManager.h │ │ │ │ ├── VNImageBufferProviding.h │ │ │ │ ├── VNImageClassifier.h │ │ │ │ ├── VNImageExposureScoreRequest.h │ │ │ │ ├── VNImageGrouper.h │ │ │ │ ├── VNImageHomographicAlignmentObservation.h │ │ │ │ ├── VNImageIdealImageSizeProviding.h │ │ │ │ ├── VNImageRegistration.h │ │ │ │ ├── VNImageRegistrationRequest.h │ │ │ │ ├── VNImageRegistrationSignature.h │ │ │ │ ├── VNImageRequestHandler.h │ │ │ │ ├── VNImageSaliencyObservation.h │ │ │ │ ├── VNImageScoreObservation.h │ │ │ │ ├── VNImageSourceManager.h │ │ │ │ ├── VNImageSpecifier.h │ │ │ │ ├── VNImageTranslationAlignmentObservation.h │ │ │ │ ├── VNImageprint.h │ │ │ │ ├── VNImageprintGenerator.h │ │ │ │ ├── VNImageprintObservation.h │ │ │ │ ├── VNJunkIdentifier.h │ │ │ │ ├── VNMLFeatureProvider.h │ │ │ │ ├── VNMPClusteringTreeNodeWrapper.h │ │ │ │ ├── VNMPContext.h │ │ │ │ ├── VNMPImageData.h │ │ │ │ ├── VNMPImageDescriptor.h │ │ │ │ ├── VNMPImageGrouping.h │ │ │ │ ├── VNMPImageQuality.h │ │ │ │ ├── VNMPImageSharpness.h │ │ │ │ ├── VNMPUtils.h │ │ │ │ ├── VNMetalContext.h │ │ │ │ ├── VNMetalProcessingDevice.h │ │ │ │ ├── VNModelFile.h │ │ │ │ ├── VNModelFileImpl.h │ │ │ │ ├── VNModelFilesCache.h │ │ │ │ ├── VNMomentProcessor.h │ │ │ │ ├── VNMutablePersonsModel.h │ │ │ │ ├── VNNOPRequest.h │ │ │ │ ├── VNNOPRequestConfiguration.h │ │ │ │ ├── VNObjectTracker.h │ │ │ │ ├── VNObjectTrackerRevision1.h │ │ │ │ ├── VNObjectTrackerRevision2.h │ │ │ │ ├── VNObservation.h │ │ │ │ ├── VNObservationsCache.h │ │ │ │ ├── VNOperationPoints.h │ │ │ │ ├── VNOperationPointsProvider.h │ │ │ │ ├── VNOperationPointsProviding.h │ │ │ │ ├── VNOpticalFlowObservation.h │ │ │ │ ├── VNPersonsModel.h │ │ │ │ ├── VNPersonsModelConfiguration.h │ │ │ │ ├── VNPersonsModelData.h │ │ │ │ ├── VNPersonsModelDataDelegate.h │ │ │ │ ├── VNPersonsModelDataSource.h │ │ │ │ ├── VNPersonsModelFaceModel.h │ │ │ │ ├── VNPersonsModelFaceModelDataProvider.h │ │ │ │ ├── VNPersonsModelInformation.h │ │ │ │ ├── VNPersonsModelPrediction.h │ │ │ │ ├── VNPersonsModelReadOptions.h │ │ │ │ ├── VNPersonsModelWriteOptions.h │ │ │ │ ├── VNPhotosRequestHandler.h │ │ │ │ ├── VNPixelBufferObservation.h │ │ │ │ ├── VNProcessingDevice.h │ │ │ │ ├── VNRPNTrackerEspressoModelCacheManager.h │ │ │ │ ├── VNReadOnlyPersonsModel.h │ │ │ │ ├── VNRecognizeAnimalsRequest.h │ │ │ │ ├── VNRecognizeTextRequest.h │ │ │ │ ├── VNRecognizeTextRequestConfiguration.h │ │ │ │ ├── VNRecognizedObjectObservation.h │ │ │ │ ├── VNRecognizedText.h │ │ │ │ ├── VNRecognizedTextObservation.h │ │ │ │ ├── VNRectangleDetector.h │ │ │ │ ├── VNRectangleObservation.h │ │ │ │ ├── VNRectangleTracker.h │ │ │ │ ├── VNRequest.h │ │ │ │ ├── VNRequestCancelling.h │ │ │ │ ├── VNRequestConfiguration.h │ │ │ │ ├── VNRequestForensics.h │ │ │ │ ├── VNRequestPerformer.h │ │ │ │ ├── VNRequestPerformingContext.h │ │ │ │ ├── VNRequestProgressProviding.h │ │ │ │ ├── VNRequestRevisionProviding.h │ │ │ │ ├── VNRequestWarming.h │ │ │ │ ├── VNRuntimeUtilities.h │ │ │ │ ├── VNSaliencyHeatmapBoundingBoxGenerator.h │ │ │ │ ├── VNSaliencyImageObservation.h │ │ │ │ ├── VNSceneClassificationRequest.h │ │ │ │ ├── VNSceneClassificationRequestConfiguration.h │ │ │ │ ├── VNSceneClassifier.h │ │ │ │ ├── VNSceneFeaturePrint.h │ │ │ │ ├── VNSceneObservation.h │ │ │ │ ├── VNSceneTaxonomyOperationPoints.h │ │ │ │ ├── VNSceneprint.h │ │ │ │ ├── VNSequenceRequestHandler.h │ │ │ │ ├── VNSequencedRequestSupporting.h │ │ │ │ ├── VNSerializing.h │ │ │ │ ├── VNSerializingInternal.h │ │ │ │ ├── VNSingleHeadSceneprintGenerator.h │ │ │ │ ├── VNSizeRange.h │ │ │ │ ├── VNSmartCamClassifier.h │ │ │ │ ├── VNSmartCamCombinedAestheticsAndSaliencyDetector.h │ │ │ │ ├── VNSmartCamObservation.h │ │ │ │ ├── VNSmartCamprint.h │ │ │ │ ├── VNSuggestionsLogger.h │ │ │ │ ├── VNSupportedImageSize.h │ │ │ │ ├── VNTargetedImageRequest.h │ │ │ │ ├── VNTextObservation.h │ │ │ │ ├── VNTorsoprint.h │ │ │ │ ├── VNTorsoprintGenerator.h │ │ │ │ ├── VNTrackObjectRequest.h │ │ │ │ ├── VNTrackRectangleRequest.h │ │ │ │ ├── VNTracker.h │ │ │ │ ├── VNTrackerManager.h │ │ │ │ ├── VNTrackerProviding.h │ │ │ │ ├── VNTrackingRequest.h │ │ │ │ ├── VNTranslationalImageRegistrationRequest.h │ │ │ │ ├── VNUniqueObservationClassCompoundRequest.h │ │ │ │ ├── VNValidationUtilities.h │ │ │ │ ├── VNVersionParser.h │ │ │ │ ├── VNWarningRecorder.h │ │ │ │ ├── Vision.h │ │ │ │ ├── _VNCGImageSpecifier.h │ │ │ │ ├── _VNCIImageSpecifier.h │ │ │ │ ├── _VNDataImageSpecifier.h │ │ │ │ ├── _VNImageAnalyzerMultiDetectorClassificationCustomHierarchy.h │ │ │ │ ├── _VNImageAnalyzerMultiDetectorSceneOperationPointsCache.h │ │ │ │ ├── _VNImageAnalyzerMultiDetectorSceneOperationPointsProvider.h │ │ │ │ ├── _VNPersonsModelDataSourceBasedDataProvider.h │ │ │ │ ├── _VNPixelBufferSpecifier.h │ │ │ │ ├── _VNRequestForensicsParentChildRequests.h │ │ │ │ ├── _VNRequestForensicsRequestAndErrorTuple.h │ │ │ │ ├── _VNRequestForensicsRequestAndObservationsCacheKeyTuple.h │ │ │ │ ├── _VNSceneClassifierClassificationCustomHierarchy.h │ │ │ │ ├── _VNTextObservationCharacterBox.h │ │ │ │ ├── _VNURLImageSpecifier.h │ │ │ │ └── _VNUnspecifiedOperationPoints.h │ │ └── src │ │ │ ├── ANFDDetectedObject.m │ │ │ ├── BurstActionClassifier.m │ │ │ ├── BurstClusterDivider.m │ │ │ ├── BurstFaceConfigEntry.m │ │ │ ├── BurstFaceInfo.m │ │ │ ├── BurstFaceScoreEntry.m │ │ │ ├── BurstFaceStat.m │ │ │ ├── BurstImageFaceAnalysisContext.m │ │ │ ├── BurstImageSetInternal.m │ │ │ ├── BurstImageStat.m │ │ │ ├── BurstThumbnailCluster.m │ │ │ ├── CCCharBoxContext.m │ │ │ ├── CCTextDetector.m │ │ │ ├── CVMLFaceprint_LegacySupportDoNotChange.m │ │ │ ├── CVMLImageprintObservation_LegacySupportDoNotChange.m │ │ │ ├── CVMLObservation_LegacySupportDoNotChange.m │ │ │ ├── CVML_Error.m │ │ │ ├── ImageProcessing_CoreImageUtils.m │ │ │ ├── LKTGPU.m │ │ │ ├── LKTMetalContext.m │ │ │ ├── MPImageDescriptor_LegacySupportDoNotChange.m │ │ │ ├── SaliencyExtrema.m │ │ │ ├── ShotflowDetection.m │ │ │ ├── ShotflowDetector.m │ │ │ ├── ShotflowDetectorANFDv1.m │ │ │ ├── ShotflowDetectorANFDv2.m │ │ │ ├── ShotflowNetwork.m │ │ │ ├── ShotflowNetworkANFDv1.m │ │ │ ├── ShotflowNetworkANFDv2.m │ │ │ ├── VNANEProcessingDevice.m │ │ │ ├── VNANERuntimeDirectProcessingDevice.m │ │ │ ├── VNANERuntimeProcessingDevice.m │ │ │ ├── VNANFDDetectorCompoundRequest.m │ │ │ ├── VNANFDDetectorCompoundRequestConfiguration.m │ │ │ ├── VNANFDDetectorCompoundRequestConfigurationGroups.m │ │ │ ├── VNANFDMultiDetector.m │ │ │ ├── VNANFDMultiDetectorOriginalRequestInfo.m │ │ │ ├── VNAlignFaceRectangleRequest.m │ │ │ ├── VNAlignFaceRectangleRequestConfiguration.m │ │ │ ├── VNAppendBurstSequenceFrameRequest.m │ │ │ ├── VNBarcodeObservation.m │ │ │ ├── VNBlacklist.m │ │ │ ├── VNBlurMeasure.m │ │ │ ├── VNBlurSignature.m │ │ │ ├── VNBrightnessMeasure.m │ │ │ ├── VNBurstAnalysisResultsRequest.m │ │ │ ├── VNBurstAnalysisResultsRequestConfiguration.m │ │ │ ├── VNBurstContext.m │ │ │ ├── VNBurstObservation.m │ │ │ ├── VNCPUProcessingDevice.m │ │ │ ├── VNCVPixelBufferConversionHelpers.m │ │ │ ├── VNCanceller.m │ │ │ ├── VNClassificationCustomHierarchy.m │ │ │ ├── VNClassificationObservation.m │ │ │ ├── VNClassifyFaceAttributesRequest.m │ │ │ ├── VNClassifyImageAestheticsRequest.m │ │ │ ├── VNClassifyImageAestheticsRequestConfiguration.m │ │ │ ├── VNClassifyImageRequest.m │ │ │ ├── VNClassifyImageRequestConfiguration.m │ │ │ ├── VNClassifyJunkImageRequest.m │ │ │ ├── VNClassifyJunkImageRequestConfiguration.m │ │ │ ├── VNClassifyPipelineImageCorrectionNeed1Request.m │ │ │ ├── VNCluster.m │ │ │ ├── VNClusterObservation.m │ │ │ ├── VNClustererBuilder.m │ │ │ ├── VNClustererBuilderOptions.m │ │ │ ├── VNClustererContextBase.m │ │ │ ├── VNClustererOptions.m │ │ │ ├── VNClustererQuery.m │ │ │ ├── VNClustererQueryOptions.m │ │ │ ├── VNClustererReadOnlyContext.m │ │ │ ├── VNClustererReadWriteContext.m │ │ │ ├── VNClusteringLogger.m │ │ │ ├── VNCompoundRequest.m │ │ │ ├── VNCoreMLFeatureValueObservation.m │ │ │ ├── VNCoreMLModel.m │ │ │ ├── VNCoreMLRequest.m │ │ │ ├── VNCoreMLRequestConfiguration.m │ │ │ ├── VNCoreMLTransformer.m │ │ │ ├── VNCreateFaceRegionMapRequest.m │ │ │ ├── VNCreateFaceTorsoprintRequest.m │ │ │ ├── VNCreateFaceprintRequest.m │ │ │ ├── VNCreateFaceprintRequestConfiguration.m │ │ │ ├── VNCreateImageprintRequest.m │ │ │ ├── VNCreateImageprintRequestConfiguration.m │ │ │ ├── VNCreateSceneprintRequest.m │ │ │ ├── VNCreateSceneprintRequestConfiguration.m │ │ │ ├── VNCreateSmartCamprintRequest.m │ │ │ ├── VNCreateSmartCamprintRequestConfiguration.m │ │ │ ├── VNCreateTorsoprintRequest.m │ │ │ ├── VNDebugHelpers.m │ │ │ ├── VNDetectAnimalRectanglesRequest.m │ │ │ ├── VNDetectBarcodesRequest.m │ │ │ ├── VNDetectBarcodesRequestConfiguration.m │ │ │ ├── VNDetectFace3DLandmarksRequest.m │ │ │ ├── VNDetectFaceCaptureQualityRequest.m │ │ │ ├── VNDetectFaceExpressionsRequest.m │ │ │ ├── VNDetectFaceLandmarksRequest.m │ │ │ ├── VNDetectFaceLandmarksRequestConfiguration.m │ │ │ ├── VNDetectFacePoseRequest.m │ │ │ ├── VNDetectFaceRectanglesRequest.m │ │ │ ├── VNDetectHorizonRequest.m │ │ │ ├── VNDetectHumanHeadRectanglesRequest.m │ │ │ ├── VNDetectHumanRectanglesRequest.m │ │ │ ├── VNDetectRectanglesRequest.m │ │ │ ├── VNDetectRectanglesRequestConfiguration.m │ │ │ ├── VNDetectTextRectanglesRequest.m │ │ │ ├── VNDetectTextRectanglesRequestConfiguration.m │ │ │ ├── VNDetectedObjectObservation.m │ │ │ ├── VNDetector.m │ │ │ ├── VNDetectorManager.m │ │ │ ├── VNError.m │ │ │ ├── VNEspressoDetectedObject.m │ │ │ ├── VNEspressoHelpers.m │ │ │ ├── VNEspressoModelClassifier.m │ │ │ ├── VNEspressoModelFileBasedDetector.m │ │ │ ├── VNEspressoModelImageprint.m │ │ │ ├── VNEspressoResources.m │ │ │ ├── VNFaceAnalyzerCompoundRequest.m │ │ │ ├── VNFaceAnalyzerCompoundRequestConfiguration.m │ │ │ ├── VNFaceAnalyzerCompoundRequestConfigurationGroups.m │ │ │ ├── VNFaceAnalyzerFaceObservationGrouping.m │ │ │ ├── VNFaceAnalyzerMultiDetector.m │ │ │ ├── VNFaceAttributeCategory.m │ │ │ ├── VNFaceAttributes.m │ │ │ ├── VNFaceBBoxAligner.m │ │ │ ├── VNFaceDetector.m │ │ │ ├── VNFaceDetectorRevision1.m │ │ │ ├── VNFaceDetectorRevision2.m │ │ │ ├── VNFaceExpressionDetector.m │ │ │ ├── VNFaceGeometryEstimator.m │ │ │ ├── VNFaceLandmarkDetector.m │ │ │ ├── VNFaceLandmarkDetectorDNN.m │ │ │ ├── VNFaceLandmarkDetectorRevision1.m │ │ │ ├── VNFaceLandmarkDetectorRevision2.m │ │ │ ├── VNFaceLandmarkDetectorRevision3.m │ │ │ ├── VNFaceLandmarkRegion.m │ │ │ ├── VNFaceLandmarkRegion2D.m │ │ │ ├── VNFaceLandmarkRegion3D.m │ │ │ ├── VNFaceLandmarks.m │ │ │ ├── VNFaceLandmarks2D.m │ │ │ ├── VNFaceLandmarks3D.m │ │ │ ├── VNFaceObservation.m │ │ │ ├── VNFaceQualityGenerator.m │ │ │ ├── VNFaceRegionMap.m │ │ │ ├── VNFaceRegionMapGenerator.m │ │ │ ├── VNFaceSegmentGenerator.m │ │ │ ├── VNFaceSegments.m │ │ │ ├── VNFaceTorsoprint.m │ │ │ ├── VNFaceprint.m │ │ │ ├── VNFaceprintGenerator.m │ │ │ ├── VNFaceprintGeneratorRevision1.m │ │ │ ├── VNFeaturePrintObservation.m │ │ │ ├── VNGenerateAttentionBasedSaliencyImageRequest.m │ │ │ ├── VNGenerateAttentionBasedSaliencyImageRequestConfiguration.m │ │ │ ├── VNGenerateFaceSegmentsRequest.m │ │ │ ├── VNGenerateFaceSegmentsRequestConfiguration.m │ │ │ ├── VNGenerateImageFeaturePrintRequest.m │ │ │ ├── VNGenerateImageFeaturePrintRequestConfiguration.m │ │ │ ├── VNGenerateImageSaliencyRequest.m │ │ │ ├── VNGenerateImageSaliencyRequestConfiguration.m │ │ │ ├── VNGenerateObjectnessBasedSaliency544x544Detector.m │ │ │ ├── VNGenerateObjectnessBasedSaliencyDetector.m │ │ │ ├── VNGenerateObjectnessBasedSaliencyImageRequest.m │ │ │ ├── VNGenerateObjectnessBasedSaliencyImageRequestConfiguration.m │ │ │ ├── VNGenerateOpticalFlowRequest.m │ │ │ ├── VNGreedyClusteringReadOnly.m │ │ │ ├── VNGreedyClusteringReadWrite.m │ │ │ ├── VNGroupImagesByTimeAndContentRequest.m │ │ │ ├── VNHeatMapExtrema.m │ │ │ ├── VNHeatMapUtilities.m │ │ │ ├── VNHomographicImageRegistrationRequest.m │ │ │ ├── VNHomologousObservationClassCompoundRequest.m │ │ │ ├── VNHorizonDetector.m │ │ │ ├── VNHorizonObservation.m │ │ │ ├── VNIdentifyJunkRequest.m │ │ │ ├── VNImageAestheticsObservation.m │ │ │ ├── VNImageAlignmentObservation.m │ │ │ ├── VNImageAnalyzerCompoundRequest.m │ │ │ ├── VNImageAnalyzerCompoundRequestConfiguration.m │ │ │ ├── VNImageAnalyzerCompoundRequestGroupingConfiguration.m │ │ │ ├── VNImageAnalyzerCompoundRequestGroupingConfigurations.m │ │ │ ├── VNImageAnalyzerMultiDetector.m │ │ │ ├── VNImageBasedRequest.m │ │ │ ├── VNImageBasedRequestConfiguration.m │ │ │ ├── VNImageBlurObservation.m │ │ │ ├── VNImageBlurScoreRequest.m │ │ │ ├── VNImageBlurScoreRequestConfiguration.m │ │ │ ├── VNImageBrightnessObservation.m │ │ │ ├── VNImageBuffer.m │ │ │ ├── VNImageBufferManager.m │ │ │ ├── VNImageClassifier.m │ │ │ ├── VNImageExposureScoreRequest.m │ │ │ ├── VNImageGrouper.m │ │ │ ├── VNImageHomographicAlignmentObservation.m │ │ │ ├── VNImageRegistration.m │ │ │ ├── VNImageRegistrationRequest.m │ │ │ ├── VNImageRegistrationSignature.m │ │ │ ├── VNImageRequestHandler.m │ │ │ ├── VNImageSaliencyObservation.m │ │ │ ├── VNImageScoreObservation.m │ │ │ ├── VNImageSourceManager.m │ │ │ ├── VNImageSpecifier.m │ │ │ ├── VNImageTranslationAlignmentObservation.m │ │ │ ├── VNImageprint.m │ │ │ ├── VNImageprintGenerator.m │ │ │ ├── VNImageprintObservation.m │ │ │ ├── VNJunkIdentifier.m │ │ │ ├── VNMLFeatureProvider.m │ │ │ ├── VNMPClusteringTreeNodeWrapper.m │ │ │ ├── VNMPContext.m │ │ │ ├── VNMPImageData.m │ │ │ ├── VNMPImageDescriptor.m │ │ │ ├── VNMPImageGrouping.m │ │ │ ├── VNMPImageQuality.m │ │ │ ├── VNMPImageSharpness.m │ │ │ ├── VNMPUtils.m │ │ │ ├── VNMetalContext.m │ │ │ ├── VNMetalProcessingDevice.m │ │ │ ├── VNModelFileImpl.m │ │ │ ├── VNModelFilesCache.m │ │ │ ├── VNMomentProcessor.m │ │ │ ├── VNMutablePersonsModel.m │ │ │ ├── VNNOPRequest.m │ │ │ ├── VNNOPRequestConfiguration.m │ │ │ ├── VNObjectTracker.m │ │ │ ├── VNObjectTrackerRevision1.m │ │ │ ├── VNObjectTrackerRevision2.m │ │ │ ├── VNObservation.m │ │ │ ├── VNObservationsCache.m │ │ │ ├── VNOperationPoints.m │ │ │ ├── VNOperationPointsProvider.m │ │ │ ├── VNOpticalFlowObservation.m │ │ │ ├── VNPersonsModel.m │ │ │ ├── VNPersonsModelConfiguration.m │ │ │ ├── VNPersonsModelData.m │ │ │ ├── VNPersonsModelFaceModel.m │ │ │ ├── VNPersonsModelInformation.m │ │ │ ├── VNPersonsModelPrediction.m │ │ │ ├── VNPersonsModelReadOptions.m │ │ │ ├── VNPersonsModelWriteOptions.m │ │ │ ├── VNPhotosRequestHandler.m │ │ │ ├── VNPixelBufferObservation.m │ │ │ ├── VNProcessingDevice.m │ │ │ ├── VNRPNTrackerEspressoModelCacheManager.m │ │ │ ├── VNReadOnlyPersonsModel.m │ │ │ ├── VNRecognizeAnimalsRequest.m │ │ │ ├── VNRecognizeTextRequest.m │ │ │ ├── VNRecognizeTextRequestConfiguration.m │ │ │ ├── VNRecognizedObjectObservation.m │ │ │ ├── VNRecognizedText.m │ │ │ ├── VNRecognizedTextObservation.m │ │ │ ├── VNRectangleDetector.m │ │ │ ├── VNRectangleObservation.m │ │ │ ├── VNRectangleTracker.m │ │ │ ├── VNRequest.m │ │ │ ├── VNRequestConfiguration.m │ │ │ ├── VNRequestForensics.m │ │ │ ├── VNRequestPerformer.m │ │ │ ├── VNRequestPerformingContext.m │ │ │ ├── VNRuntimeUtilities.m │ │ │ ├── VNSaliencyHeatmapBoundingBoxGenerator.m │ │ │ ├── VNSaliencyImageObservation.m │ │ │ ├── VNSceneClassificationRequest.m │ │ │ ├── VNSceneClassificationRequestConfiguration.m │ │ │ ├── VNSceneClassifier.m │ │ │ ├── VNSceneFeaturePrint.m │ │ │ ├── VNSceneObservation.m │ │ │ ├── VNSceneTaxonomyOperationPoints.m │ │ │ ├── VNSceneprint.m │ │ │ ├── VNSequenceRequestHandler.m │ │ │ ├── VNSingleHeadSceneprintGenerator.m │ │ │ ├── VNSizeRange.m │ │ │ ├── VNSmartCamClassifier.m │ │ │ ├── VNSmartCamCombinedAestheticsAndSaliencyDetector.m │ │ │ ├── VNSmartCamObservation.m │ │ │ ├── VNSmartCamprint.m │ │ │ ├── VNSuggestionsLogger.m │ │ │ ├── VNSupportedImageSize.m │ │ │ ├── VNTargetedImageRequest.m │ │ │ ├── VNTextObservation.m │ │ │ ├── VNTorsoprint.m │ │ │ ├── VNTorsoprintGenerator.m │ │ │ ├── VNTrackObjectRequest.m │ │ │ ├── VNTrackRectangleRequest.m │ │ │ ├── VNTracker.m │ │ │ ├── VNTrackerManager.m │ │ │ ├── VNTrackingRequest.m │ │ │ ├── VNTranslationalImageRegistrationRequest.m │ │ │ ├── VNUniqueObservationClassCompoundRequest.m │ │ │ ├── VNValidationUtilities.m │ │ │ ├── VNVersionParser.m │ │ │ ├── VNWarningRecorder.m │ │ │ ├── Vision.m │ │ │ ├── _VNCGImageSpecifier.m │ │ │ ├── _VNCIImageSpecifier.m │ │ │ ├── _VNDataImageSpecifier.m │ │ │ ├── _VNImageAnalyzerMultiDetectorClassificationCustomHierarchy.m │ │ │ ├── _VNImageAnalyzerMultiDetectorSceneOperationPointsCache.m │ │ │ ├── _VNImageAnalyzerMultiDetectorSceneOperationPointsProvider.m │ │ │ ├── _VNPersonsModelDataSourceBasedDataProvider.m │ │ │ ├── _VNPixelBufferSpecifier.m │ │ │ ├── _VNRequestForensicsParentChildRequests.m │ │ │ ├── _VNRequestForensicsRequestAndErrorTuple.m │ │ │ ├── _VNRequestForensicsRequestAndObservationsCacheKeyTuple.m │ │ │ ├── _VNSceneClassifierClassificationCustomHierarchy.m │ │ │ ├── _VNTextObservationCharacterBox.m │ │ │ ├── _VNURLImageSpecifier.m │ │ │ └── _VNUnspecifiedOperationPoints.m │ ├── WebKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── WebKit │ │ │ │ ├── CAAnimationDelegate.h │ │ │ │ ├── DOMNode.h │ │ │ │ ├── DOMObject.h │ │ │ │ ├── NSCandidateListTouchBarItemDelegate.h │ │ │ │ ├── NSGestureRecognizerDelegate.h │ │ │ │ ├── NSImmediateActionAnimationController.h │ │ │ │ ├── NSImmediateActionGestureRecognizerDelegate.h │ │ │ │ ├── NSSharingServiceDelegate.h │ │ │ │ ├── NSSharingServicePickerDelegate.h │ │ │ │ ├── NSTextFinderAsynchronousDocumentFindMatch.h │ │ │ │ ├── NSTextInputClient.h │ │ │ │ ├── NSTouchBarDelegate.h │ │ │ │ ├── NSTouchBarProvider.h │ │ │ │ ├── NSURLAuthenticationChallengeSender.h │ │ │ │ ├── NSURLConnectionDelegate.h │ │ │ │ ├── NSUserInterfaceValidations.h │ │ │ │ ├── NSWindowDelegate.h │ │ │ │ ├── PDFLayerControllerDelegate.h │ │ │ │ ├── PKPaymentAuthorizationViewControllerDelegate.h │ │ │ │ ├── PKPaymentAuthorizationViewControllerPrivateDelegate.h │ │ │ │ ├── QLPreviewMenuItemDelegate.h │ │ │ │ ├── WKAccessibilitySettingsObserver.h │ │ │ │ ├── WKAccessibilityWebPageObject.h │ │ │ │ ├── WKAccessibilityWebPageObjectBase.h │ │ │ │ ├── WKAnimationController.h │ │ │ │ ├── WKAnimationDelegate.h │ │ │ │ ├── WKBackForwardList.h │ │ │ │ ├── WKBackForwardListItem.h │ │ │ │ ├── WKBrowsingContextController.h │ │ │ │ ├── WKBrowsingContextGroup.h │ │ │ │ ├── WKBrowsingContextHandle.h │ │ │ │ ├── WKConnection.h │ │ │ │ ├── WKContentRuleList.h │ │ │ │ ├── WKContentRuleListStore.h │ │ │ │ ├── WKCustomProtocol.h │ │ │ │ ├── WKCustomProtocolLoader.h │ │ │ │ ├── WKDOMDocument.h │ │ │ │ ├── WKDOMElement.h │ │ │ │ ├── WKDOMNode.h │ │ │ │ ├── WKDOMRange.h │ │ │ │ ├── WKDOMText.h │ │ │ │ ├── WKDOMTextIterator.h │ │ │ │ ├── WKEditCommandObjC.h │ │ │ │ ├── WKEditorUndoTargetObjC.h │ │ │ │ ├── WKFlippedView.h │ │ │ │ ├── WKFrameInfo.h │ │ │ │ ├── WKFullKeyboardAccessWatcher.h │ │ │ │ ├── WKFullScreenWindowController.h │ │ │ │ ├── WKHTTPCookieStore.h │ │ │ │ ├── WKImmediateActionController.h │ │ │ │ ├── WKInspectorViewController.h │ │ │ │ ├── WKInspectorViewControllerDelegate.h │ │ │ │ ├── WKInspectorWKWebView.h │ │ │ │ ├── WKInspectorWKWebViewDelegate.h │ │ │ │ ├── WKLayerHostView.h │ │ │ │ ├── WKMenuTarget.h │ │ │ │ ├── WKNSArray.h │ │ │ │ ├── WKNSData.h │ │ │ │ ├── WKNSDictionary.h │ │ │ │ ├── WKNSError.h │ │ │ │ ├── WKNSNumber.h │ │ │ │ ├── WKNSString.h │ │ │ │ ├── WKNSURL.h │ │ │ │ ├── WKNSURLAuthenticationChallenge.h │ │ │ │ ├── WKNSURLAuthenticationChallengeSender.h │ │ │ │ ├── WKNSURLRequest.h │ │ │ │ ├── WKNavigation.h │ │ │ │ ├── WKNavigationAction.h │ │ │ │ ├── WKNavigationData.h │ │ │ │ ├── WKNavigationDelegate.h │ │ │ │ ├── WKNavigationResponse.h │ │ │ │ ├── WKNetworkSessionDelegate.h │ │ │ │ ├── WKObject.h │ │ │ │ ├── WKObservablePageState.h │ │ │ │ ├── WKOpenPanelParameters.h │ │ │ │ ├── WKPDFLayerControllerDelegate.h │ │ │ │ ├── WKPDFPluginAccessibilityObject.h │ │ │ │ ├── WKPDFPluginScrollbarLayer.h │ │ │ │ ├── WKPaymentAuthorizationViewControllerDelegate.h │ │ │ │ ├── WKPlaceholderModalWindow.h │ │ │ │ ├── WKPreferences.h │ │ │ │ ├── WKPrintingView.h │ │ │ │ ├── WKProcessGroup.h │ │ │ │ ├── WKProcessPool.h │ │ │ │ ├── WKReloadFrameErrorRecoveryAttempter.h │ │ │ │ ├── WKRemoteObject.h │ │ │ │ ├── WKRemoteObjectDecoder.h │ │ │ │ ├── WKRemoteObjectEncoder.h │ │ │ │ ├── WKRemoteWebInspectorProxyObjCAdapter.h │ │ │ │ ├── WKResponderChainSink.h │ │ │ │ ├── WKScriptMessage.h │ │ │ │ ├── WKSecurityOrigin.h │ │ │ │ ├── WKSelectionHandlerWrapper.h │ │ │ │ ├── WKSharingServicePickerDelegate.h │ │ │ │ ├── WKSnapshotConfiguration.h │ │ │ │ ├── WKSwipeCancellationTracker.h │ │ │ │ ├── WKTextFinderClient.h │ │ │ │ ├── WKTextFinderMatch.h │ │ │ │ ├── WKTextInputPanel.h │ │ │ │ ├── WKTextInputView.h │ │ │ │ ├── WKTextInputWindowController.h │ │ │ │ ├── WKTextListTouchBarViewController.h │ │ │ │ ├── WKTextTouchBarItemController.h │ │ │ │ ├── WKTypeRefWrapper.h │ │ │ │ ├── WKUIDelegate.h │ │ │ │ ├── WKURLSchemeTask.h │ │ │ │ ├── WKURLSchemeTaskImpl.h │ │ │ │ ├── WKURLSchemeTaskPrivate.h │ │ │ │ ├── WKUserContentController.h │ │ │ │ ├── WKUserDataWrapper.h │ │ │ │ ├── WKUserScript.h │ │ │ │ ├── WKView.h │ │ │ │ ├── WKViewData.h │ │ │ │ ├── WKViewDynamicSizeComputedFromMinimumDocumentSizeLayoutStrategy.h │ │ │ │ ├── WKViewDynamicSizeComputedFromViewScaleLayoutStrategy.h │ │ │ │ ├── WKViewFixedSizeLayoutStrategy.h │ │ │ │ ├── WKViewLayoutStrategy.h │ │ │ │ ├── WKViewViewSizeLayoutStrategy.h │ │ │ │ ├── WKWebInspectorProxyObjCAdapter.h │ │ │ │ ├── WKWebProcessBundleParameters.h │ │ │ │ ├── WKWebProcessPlugIn.h │ │ │ │ ├── WKWebProcessPlugInBrowserContextController.h │ │ │ │ ├── WKWebProcessPlugInController.h │ │ │ │ ├── WKWebProcessPlugInFrame.h │ │ │ │ ├── WKWebProcessPlugInHitTestResult.h │ │ │ │ ├── WKWebProcessPlugInNodeHandle.h │ │ │ │ ├── WKWebProcessPlugInPageGroup.h │ │ │ │ ├── WKWebProcessPlugInRangeHandle.h │ │ │ │ ├── WKWebProcessPlugInScriptWorld.h │ │ │ │ ├── WKWebView.h │ │ │ │ ├── WKWebViewConfiguration.h │ │ │ │ ├── WKWebsiteDataRecord.h │ │ │ │ ├── WKWebsiteDataStore.h │ │ │ │ ├── WKWindowFeatures.h │ │ │ │ ├── WKWindowVisibilityObserver.h │ │ │ │ ├── WebDownload.h │ │ │ │ ├── WebHistory.h │ │ │ │ ├── WebKit.h │ │ │ │ ├── WebScriptObject.h │ │ │ │ ├── WebView.h │ │ │ │ ├── WebViewImplDelegate.h │ │ │ │ ├── _WKActivatedElementInfo.h │ │ │ │ ├── _WKApplicationManifest.h │ │ │ │ ├── _WKAttachment.h │ │ │ │ ├── _WKAttachmentDisplayOptions.h │ │ │ │ ├── _WKAutomationSession.h │ │ │ │ ├── _WKAutomationSessionConfiguration.h │ │ │ │ ├── _WKContextMenuElementInfo.h │ │ │ │ ├── _WKDownload.h │ │ │ │ ├── _WKErrorRecoveryAttempting.h │ │ │ │ ├── _WKExperimentalFeature.h │ │ │ │ ├── _WKFrameHandle.h │ │ │ │ ├── _WKHitTestResult.h │ │ │ │ ├── _WKLinkIconParameters.h │ │ │ │ ├── _WKObservablePageState.h │ │ │ │ ├── _WKProcessPoolConfiguration.h │ │ │ │ ├── _WKRemoteObjectInterface.h │ │ │ │ ├── _WKRemoteObjectRegistry.h │ │ │ │ ├── _WKRemoteWebInspectorViewController.h │ │ │ │ ├── _WKSessionState.h │ │ │ │ ├── _WKThumbnailView.h │ │ │ │ ├── _WKUserContentExtensionStore.h │ │ │ │ ├── _WKUserContentFilter.h │ │ │ │ ├── _WKUserContentWorld.h │ │ │ │ ├── _WKUserInitiatedAction.h │ │ │ │ ├── _WKUserStyleSheet.h │ │ │ │ ├── _WKVisitedLinkStore.h │ │ │ │ ├── _WKWebsiteDataSize.h │ │ │ │ ├── _WKWebsiteDataStore.h │ │ │ │ ├── _WKWebsiteDataStoreConfiguration.h │ │ │ │ └── _WKWebsitePolicies.h │ │ └── src │ │ │ ├── DOMNode.m │ │ │ ├── DOMObject.m │ │ │ ├── WKAccessibilitySettingsObserver.m │ │ │ ├── WKAccessibilityWebPageObject.m │ │ │ ├── WKAccessibilityWebPageObjectBase.m │ │ │ ├── WKAnimationController.m │ │ │ ├── WKAnimationDelegate.m │ │ │ ├── WKBackForwardList.m │ │ │ ├── WKBackForwardListItem.m │ │ │ ├── WKBrowsingContextController.m │ │ │ ├── WKBrowsingContextGroup.m │ │ │ ├── WKBrowsingContextHandle.m │ │ │ ├── WKConnection.m │ │ │ ├── WKContentRuleList.m │ │ │ ├── WKContentRuleListStore.m │ │ │ ├── WKCustomProtocol.m │ │ │ ├── WKCustomProtocolLoader.m │ │ │ ├── WKDOMDocument.m │ │ │ ├── WKDOMElement.m │ │ │ ├── WKDOMNode.m │ │ │ ├── WKDOMRange.m │ │ │ ├── WKDOMText.m │ │ │ ├── WKDOMTextIterator.m │ │ │ ├── WKEditCommandObjC.m │ │ │ ├── WKEditorUndoTargetObjC.m │ │ │ ├── WKFlippedView.m │ │ │ ├── WKFrameInfo.m │ │ │ ├── WKFullKeyboardAccessWatcher.m │ │ │ ├── WKFullScreenWindowController.m │ │ │ ├── WKHTTPCookieStore.m │ │ │ ├── WKImmediateActionController.m │ │ │ ├── WKInspectorViewController.m │ │ │ ├── WKInspectorWKWebView.m │ │ │ ├── WKLayerHostView.m │ │ │ ├── WKMenuTarget.m │ │ │ ├── WKNSArray.m │ │ │ ├── WKNSData.m │ │ │ ├── WKNSDictionary.m │ │ │ ├── WKNSError.m │ │ │ ├── WKNSNumber.m │ │ │ ├── WKNSString.m │ │ │ ├── WKNSURL.m │ │ │ ├── WKNSURLAuthenticationChallenge.m │ │ │ ├── WKNSURLAuthenticationChallengeSender.m │ │ │ ├── WKNSURLRequest.m │ │ │ ├── WKNavigation.m │ │ │ ├── WKNavigationAction.m │ │ │ ├── WKNavigationData.m │ │ │ ├── WKNavigationResponse.m │ │ │ ├── WKNetworkSessionDelegate.m │ │ │ ├── WKObject.m │ │ │ ├── WKObservablePageState.m │ │ │ ├── WKOpenPanelParameters.m │ │ │ ├── WKPDFLayerControllerDelegate.m │ │ │ ├── WKPDFPluginAccessibilityObject.m │ │ │ ├── WKPDFPluginScrollbarLayer.m │ │ │ ├── WKPaymentAuthorizationViewControllerDelegate.m │ │ │ ├── WKPlaceholderModalWindow.m │ │ │ ├── WKPreferences.m │ │ │ ├── WKPrintingView.m │ │ │ ├── WKProcessGroup.m │ │ │ ├── WKProcessPool.m │ │ │ ├── WKReloadFrameErrorRecoveryAttempter.m │ │ │ ├── WKRemoteObject.m │ │ │ ├── WKRemoteObjectDecoder.m │ │ │ ├── WKRemoteObjectEncoder.m │ │ │ ├── WKRemoteWebInspectorProxyObjCAdapter.m │ │ │ ├── WKResponderChainSink.m │ │ │ ├── WKScriptMessage.m │ │ │ ├── WKSecurityOrigin.m │ │ │ ├── WKSelectionHandlerWrapper.m │ │ │ ├── WKSharingServicePickerDelegate.m │ │ │ ├── WKSnapshotConfiguration.m │ │ │ ├── WKSwipeCancellationTracker.m │ │ │ ├── WKTextFinderClient.m │ │ │ ├── WKTextFinderMatch.m │ │ │ ├── WKTextInputPanel.m │ │ │ ├── WKTextInputView.m │ │ │ ├── WKTextInputWindowController.m │ │ │ ├── WKTextListTouchBarViewController.m │ │ │ ├── WKTextTouchBarItemController.m │ │ │ ├── WKTypeRefWrapper.m │ │ │ ├── WKURLSchemeTaskImpl.m │ │ │ ├── WKUserContentController.m │ │ │ ├── WKUserDataWrapper.m │ │ │ ├── WKUserScript.m │ │ │ ├── WKView.m │ │ │ ├── WKViewData.m │ │ │ ├── WKViewDynamicSizeComputedFromMinimumDocumentSizeLayoutStrategy.m │ │ │ ├── WKViewDynamicSizeComputedFromViewScaleLayoutStrategy.m │ │ │ ├── WKViewFixedSizeLayoutStrategy.m │ │ │ ├── WKViewLayoutStrategy.m │ │ │ ├── WKViewViewSizeLayoutStrategy.m │ │ │ ├── WKWebInspectorProxyObjCAdapter.m │ │ │ ├── WKWebProcessBundleParameters.m │ │ │ ├── WKWebProcessPlugInBrowserContextController.m │ │ │ ├── WKWebProcessPlugInController.m │ │ │ ├── WKWebProcessPlugInFrame.m │ │ │ ├── WKWebProcessPlugInHitTestResult.m │ │ │ ├── WKWebProcessPlugInNodeHandle.m │ │ │ ├── WKWebProcessPlugInPageGroup.m │ │ │ ├── WKWebProcessPlugInRangeHandle.m │ │ │ ├── WKWebProcessPlugInScriptWorld.m │ │ │ ├── WKWebView.m │ │ │ ├── WKWebViewConfiguration.m │ │ │ ├── WKWebsiteDataRecord.m │ │ │ ├── WKWebsiteDataStore.m │ │ │ ├── WKWindowFeatures.m │ │ │ ├── WKWindowVisibilityObserver.m │ │ │ ├── WebDownload.m │ │ │ ├── WebHistory.m │ │ │ ├── WebKit.m │ │ │ ├── WebScriptObject.m │ │ │ ├── WebView.m │ │ │ ├── _WKActivatedElementInfo.m │ │ │ ├── _WKApplicationManifest.m │ │ │ ├── _WKAttachment.m │ │ │ ├── _WKAttachmentDisplayOptions.m │ │ │ ├── _WKAutomationSession.m │ │ │ ├── _WKAutomationSessionConfiguration.m │ │ │ ├── _WKContextMenuElementInfo.m │ │ │ ├── _WKDownload.m │ │ │ ├── _WKExperimentalFeature.m │ │ │ ├── _WKFrameHandle.m │ │ │ ├── _WKHitTestResult.m │ │ │ ├── _WKLinkIconParameters.m │ │ │ ├── _WKProcessPoolConfiguration.m │ │ │ ├── _WKRemoteObjectInterface.m │ │ │ ├── _WKRemoteObjectRegistry.m │ │ │ ├── _WKRemoteWebInspectorViewController.m │ │ │ ├── _WKSessionState.m │ │ │ ├── _WKThumbnailView.m │ │ │ ├── _WKUserContentExtensionStore.m │ │ │ ├── _WKUserContentFilter.m │ │ │ ├── _WKUserContentWorld.m │ │ │ ├── _WKUserInitiatedAction.m │ │ │ ├── _WKUserStyleSheet.m │ │ │ ├── _WKVisitedLinkStore.m │ │ │ ├── _WKWebsiteDataSize.m │ │ │ ├── _WKWebsiteDataStore.m │ │ │ ├── _WKWebsiteDataStoreConfiguration.m │ │ │ └── _WKWebsitePolicies.m │ └── dev-stubs │ │ ├── AppKit │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── classes.m │ │ │ └── main.m │ │ ├── AudioToolbox │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── classes.m │ │ │ └── main.m │ │ ├── Cocoa │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── classes.m │ │ │ └── main.m │ │ ├── CoreData │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── classes.m │ │ │ └── main.m │ │ ├── CoreGraphics │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── classes.m │ │ │ └── main.m │ │ ├── CoreText │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── classes.m │ │ │ └── main.m │ │ ├── ImageIO │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── classes.m │ │ │ └── main.m │ │ ├── OpenGL │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── classes.m │ │ │ └── main.m │ │ └── QuartzCore │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── classes.m │ │ └── main.m ├── hosttools │ ├── CMakeLists.txt │ ├── include │ │ └── coredump │ │ │ └── x86_64.h │ └── src │ │ └── coredump │ │ └── main.cpp ├── include │ └── darling-config.h.in ├── launchd │ ├── CMakeLists.txt │ ├── SystemStarter │ │ ├── IPC.c │ │ ├── IPC.h │ │ ├── StartupItemContext │ │ ├── StartupItemContext.8 │ │ ├── StartupItems.c │ │ ├── StartupItems.h │ │ ├── SystemStarter.8 │ │ ├── SystemStarter.c │ │ ├── SystemStarter.h │ │ ├── SystemStarterIPC.h │ │ ├── com.apple.SystemStarter.plist │ │ └── hostconfig │ ├── launchd.xcodeproj │ │ └── project.pbxproj │ ├── liblaunch │ │ ├── CMakeLists.txt │ │ ├── bootstrap.h │ │ ├── bootstrap_priv.h │ │ ├── helper.defs │ │ ├── job.defs │ │ ├── launch.h │ │ ├── launch_internal.h │ │ ├── launch_priv.h │ │ ├── launchd.ops │ │ ├── libbootstrap.c │ │ ├── liblaunch.c │ │ ├── libvproc.c │ │ ├── reboot2.h │ │ ├── vproc.h │ │ ├── vproc_internal.h │ │ └── vproc_priv.h │ ├── man │ │ ├── launchctl.1 │ │ ├── launchd.8 │ │ ├── launchd.conf.5 │ │ ├── launchd.plist.5 │ │ ├── launchproxy.8 │ │ ├── rc.8 │ │ └── wait4path.1 │ ├── rc │ │ ├── rc.common │ │ └── rc.netboot │ ├── src │ │ ├── CMakeLists.txt │ │ ├── config.h │ │ ├── core.c │ │ ├── core.h │ │ ├── helper.defs │ │ ├── internal.defs │ │ ├── ipc.c │ │ ├── ipc.h │ │ ├── job.defs │ │ ├── job_forward.defs │ │ ├── job_reply.defs │ │ ├── job_types.defs │ │ ├── kill2.c │ │ ├── kill2.h │ │ ├── ktrace.c │ │ ├── ktrace.h │ │ ├── launchd.c │ │ ├── launchd.h │ │ ├── log.c │ │ ├── log.h │ │ ├── mach_exc.defs │ │ ├── notify.defs │ │ ├── protocol_jobmgr.defs │ │ ├── runtime.c │ │ └── runtime.h │ ├── support │ │ ├── CMakeLists.txt │ │ ├── launchctl.c │ │ ├── launchproxy.c │ │ └── wait4path.c │ ├── xcconfigs │ │ ├── common.xcconfig │ │ ├── launchctl.xcconfig │ │ ├── launchd.xcconfig │ │ └── liblaunch.xcconfig │ └── xcscripts │ │ ├── SystemStarter-postflight.sh │ │ ├── launchctl-postflight.sh │ │ ├── launchd-postflight.sh │ │ └── liblaunch-postflight.sh ├── lib │ ├── CMakeLists.txt │ └── system │ │ ├── CMakeLists.txt │ │ └── dnssd │ │ ├── CMakeLists.txt │ │ ├── constants.txt │ │ ├── include │ │ └── system_dnssd │ │ │ └── system_dnssd.h │ │ └── src │ │ └── system_dnssd.c ├── libDiagnosticMessagesClient │ ├── CMakeLists.txt │ ├── include │ │ ├── DiagnosticMessagesClient.h │ │ ├── msgtracer_client.h │ │ └── msgtracer_keys.h │ └── src │ │ └── functions.c ├── libMobileGestalt │ ├── CMakeLists.txt │ ├── include │ │ └── MobileGestalt │ │ │ └── MobileGestalt.h │ └── src │ │ └── MobileGestalt.m ├── libaccessibility │ ├── CMakeLists.txt │ ├── include │ │ └── Accessibility │ │ │ ├── AXDefaultsObserverAction.h │ │ │ ├── AXDefaultsObserverExecuteBlockNotificationAction.h │ │ │ ├── AXDefaultsObserverPostDarwinNotificationAction.h │ │ │ ├── AXSupportDefaultsObserver.h │ │ │ ├── Accessibility.h │ │ │ └── AccessibilitySupportOverrides.h │ └── src │ │ ├── AXDefaultsObserverExecuteBlockNotificationAction.m │ │ ├── AXDefaultsObserverPostDarwinNotificationAction.m │ │ ├── AXSupportDefaultsObserver.m │ │ ├── Accessibility.m │ │ └── AccessibilitySupportOverrides.m ├── libacm │ ├── CMakeLists.txt │ ├── acmstub.c │ └── include │ │ ├── ACMAclDefs.h │ │ ├── ACMDefs.h │ │ └── ACMLib.h ├── libaks │ ├── CMakeLists.txt │ ├── include │ │ ├── libaks.h │ │ ├── libaks_acl_cf_keys.h │ │ └── libaks_smartcard.h │ └── libaks.c ├── libcache │ ├── CMakeLists.txt │ ├── include │ │ └── cache │ │ │ └── cache.h │ └── src │ │ └── cache.c ├── libcompression │ ├── CMakeLists.txt │ ├── include │ │ └── compression.h │ └── src │ │ └── compression.c ├── libcrashhandler │ ├── CMakeLists.txt │ └── crashhandler.m ├── libelfloader │ └── wrapgen │ │ ├── CMakeLists.txt │ │ ├── print_wrapped_elf.cpp │ │ ├── produce_stubs_example.h │ │ ├── stubgen32.cpp │ │ └── wrapgen.cpp ├── libgcc │ ├── CMakeLists.txt │ └── dummy.c ├── libgmalloc │ ├── CMakeLists.txt │ └── gmalloc.c ├── libm │ ├── CMakeLists.txt │ ├── Exports │ │ ├── darlingIntel.alias │ │ ├── libm_Intel.a.alias │ │ ├── libm_Intel.a.exp │ │ ├── libm_PowerPC.a.exp │ │ ├── libm_arm_softfp.a.exp │ │ ├── libm_arm_vfp.a.alias │ │ ├── libm_arm_vfp.a.exp │ │ ├── libm_ppc64.a.exp │ │ ├── libm_static_Intel.a.alias │ │ ├── libm_static_Intel.a.exp │ │ ├── libm_static_PowerPC.a.exp │ │ ├── libmathCommonIntel.alias │ │ ├── libmathCommonIntel.exp │ │ ├── libmathCommonPowerPC.exp │ │ ├── libmx.exp │ │ └── libmx_ppc.exp │ ├── Libm.xcodeproj │ │ ├── iano.mode1 │ │ ├── iano.pbxuser │ │ └── project.pbxproj │ ├── Source │ │ ├── ARM │ │ │ ├── abi.h │ │ │ ├── acos_freeBSD.c │ │ │ ├── acosh_freeBSD.c │ │ │ ├── asin_freeBSD.c │ │ │ ├── asinh_freeBSD.c │ │ │ ├── atanh_freeBSD.c │ │ │ ├── cbrt.c │ │ │ ├── complex.c │ │ │ ├── containsNothing.c │ │ │ ├── copysignf.c │ │ │ ├── cosh_freeBSD.c │ │ │ ├── d2i.h │ │ │ ├── e_rem_pio2_freeBSD.c │ │ │ ├── erf.c │ │ │ ├── erf.h │ │ │ ├── erfc.c │ │ │ ├── erfcf.c │ │ │ ├── erff.c │ │ │ ├── exp2.c │ │ │ ├── exp2_freeBSD.c │ │ │ ├── exp_freeBSD.c │ │ │ ├── expm1_freeBSD.c │ │ │ ├── f2i.h │ │ │ ├── fdim.c │ │ │ ├── fdimf.c │ │ │ ├── fegetfltrounds.c │ │ │ ├── fenv.c │ │ │ ├── fenv.h │ │ │ ├── fma_freeBSD.c │ │ │ ├── fmaf.c │ │ │ ├── fmod.c │ │ │ ├── fmodf.c │ │ │ ├── fpclassify.c │ │ │ ├── fpclassifyf.c │ │ │ ├── ilogb.c │ │ │ ├── ilogbf.c │ │ │ ├── j0y0_freeBSD.c │ │ │ ├── j1y1_freeBSD.c │ │ │ ├── jnyn_freeBSD.c │ │ │ ├── k_rem_pio2_freeBSD.c │ │ │ ├── k_tan_freeBSD.c │ │ │ ├── lgamma.c │ │ │ ├── lgammaf.c │ │ │ ├── llrint.c │ │ │ ├── llround.c │ │ │ ├── log.c │ │ │ ├── logb.c │ │ │ ├── logbf.c │ │ │ ├── lrint.c │ │ │ ├── math.h │ │ │ ├── math_errhandling.c │ │ │ ├── math_private.h │ │ │ ├── modf_IncrediblySkanky.c │ │ │ ├── nan.c │ │ │ ├── nan.h │ │ │ ├── nearbyint.c │ │ │ ├── nextafter.c │ │ │ ├── nextafterf.c │ │ │ ├── nexttoward.c │ │ │ ├── nexttowardf.c │ │ │ ├── remainder.c │ │ │ ├── remainderf.c │ │ │ ├── remquo.c │ │ │ ├── remquof.c │ │ │ ├── required_arithmetic.h │ │ │ ├── rint.c │ │ │ ├── scalb.c │ │ │ ├── scalbln.c │ │ │ ├── scalblnf.c │ │ │ ├── signgam.c │ │ │ ├── sinh_freeBSD.c │ │ │ ├── sqrt.c │ │ │ ├── sqrtf.c │ │ │ ├── tanf.h │ │ │ ├── tanh_freeBSD.c │ │ │ ├── tgamma.c │ │ │ ├── tgammaf.c │ │ │ └── version_info.c │ │ ├── Intel │ │ │ ├── Unused │ │ │ │ ├── e_minmax.s │ │ │ │ ├── s_ldexp.c │ │ │ │ └── xmm_dimMinMax.c │ │ │ ├── abi.h │ │ │ ├── acos.c │ │ │ ├── acosf.S │ │ │ ├── acoshf.S │ │ │ ├── asin.c │ │ │ ├── asinf.S │ │ │ ├── asinhf.S │ │ │ ├── atan.c │ │ │ ├── atan2f.S │ │ │ ├── atanf.S │ │ │ ├── atanhf.S │ │ │ ├── cbrtf.S │ │ │ ├── ceil.S │ │ │ ├── ceilf.S │ │ │ ├── ceill.S │ │ │ ├── complex.c │ │ │ ├── containsNothingIntel.c │ │ │ ├── copysign.S │ │ │ ├── cosh.S │ │ │ ├── coshf.S │ │ │ ├── e_acos.S │ │ │ ├── e_acosh.c │ │ │ ├── e_asin.S │ │ │ ├── e_atan2.S │ │ │ ├── e_atanh.c │ │ │ ├── e_cbrtl.S │ │ │ ├── e_cosh.c │ │ │ ├── e_exp.S │ │ │ ├── e_j0.c │ │ │ ├── e_j1.c │ │ │ ├── e_jn.c │ │ │ ├── e_log.S │ │ │ ├── e_log10.S │ │ │ ├── e_remainder.S │ │ │ ├── e_remquol.S │ │ │ ├── e_sinh.c │ │ │ ├── e_sqrt.S │ │ │ ├── exp.S │ │ │ ├── exp2.S │ │ │ ├── exp2f.S │ │ │ ├── expf.S │ │ │ ├── expf_logf_powf.c │ │ │ ├── expl.S │ │ │ ├── expm1.S │ │ │ ├── expm1f.S │ │ │ ├── fenv.c │ │ │ ├── fenv.h │ │ │ ├── floor.S │ │ │ ├── floorf.S │ │ │ ├── floorl.S │ │ │ ├── fmaf.c │ │ │ ├── fmaxfminfdim.S │ │ │ ├── fmod.S │ │ │ ├── frexp.S │ │ │ ├── fyl2x.S │ │ │ ├── hypot.S │ │ │ ├── hypotf.S │ │ │ ├── hypotl.S │ │ │ ├── i386 │ │ │ ├── ilogb.S │ │ │ ├── log.S │ │ │ ├── log10f.S │ │ │ ├── log1p.h │ │ │ ├── log2.S │ │ │ ├── log2f.S │ │ │ ├── log_universal.h │ │ │ ├── logf.S │ │ │ ├── lrintl.S │ │ │ ├── lround.S │ │ │ ├── lroundf.S │ │ │ ├── lroundl.S │ │ │ ├── machine │ │ │ │ └── asm.h │ │ │ ├── math.h │ │ │ ├── math_private.h │ │ │ ├── modf.S │ │ │ ├── modff.S │ │ │ ├── modfl.S │ │ │ ├── nan.c │ │ │ ├── nan.h │ │ │ ├── nanl.c │ │ │ ├── nearbyint.S │ │ │ ├── nearbyintf.S │ │ │ ├── nearbyintl.S │ │ │ ├── nextafter.S │ │ │ ├── nextafterf.S │ │ │ ├── nextafterl.S │ │ │ ├── powf.S │ │ │ ├── rint.S │ │ │ ├── rintf.S │ │ │ ├── rintl.S │ │ │ ├── rndtol.c │ │ │ ├── round.S │ │ │ ├── roundf.S │ │ │ ├── roundl.S │ │ │ ├── s_asinh.c │ │ │ ├── s_atan.S │ │ │ ├── s_cos.S │ │ │ ├── s_cosisin.S │ │ │ ├── s_ilogb.S │ │ │ ├── s_log1p.S │ │ │ ├── s_logb.S │ │ │ ├── s_matherr.c │ │ │ ├── s_rint.S │ │ │ ├── s_significand.S │ │ │ ├── s_sin.S │ │ │ ├── s_tan.S │ │ │ ├── s_tanh.c │ │ │ ├── scalbn.S │ │ │ ├── scalbnf.S │ │ │ ├── scalbnl.S │ │ │ ├── sincostan.c │ │ │ ├── sinfcosf.S │ │ │ ├── sinfcosfTable.s │ │ │ ├── sinh.S │ │ │ ├── sinhf.S │ │ │ ├── tanf.S │ │ │ ├── tanfTable.s │ │ │ ├── tanh.S │ │ │ ├── tanhf.S │ │ │ ├── trunc.S │ │ │ ├── truncf.S │ │ │ ├── truncl.S │ │ │ ├── x86_64 │ │ │ ├── xmmLibm_prefix.h │ │ │ ├── xmm_arcsincostan.c │ │ │ ├── xmm_erfgamma.c │ │ │ ├── xmm_exp.c │ │ │ ├── xmm_fma.c │ │ │ ├── xmm_log.c │ │ │ ├── xmm_misc.c │ │ │ ├── xmm_nextafter.c │ │ │ ├── xmm_power.c │ │ │ ├── xmm_remainder.c │ │ │ └── xmm_sqrt.c │ │ ├── PowerPC │ │ │ ├── ArcHyperbolicDD.c │ │ │ ├── ArcSinCosDD.c │ │ │ ├── ArcTanDD.c │ │ │ ├── AuxiliaryDD.c │ │ │ ├── DD.h │ │ │ ├── ErfDD.c │ │ │ ├── ExpDD.c │ │ │ ├── ExpTableLD.c │ │ │ ├── FastSinCos.c │ │ │ ├── GammaDD.c │ │ │ ├── HyperbolicDD.c │ │ │ ├── LogDD.c │ │ │ ├── LogTableLD.c │ │ │ ├── PowerDD.c │ │ │ ├── SinCosTanDD.c │ │ │ ├── SqrtDD.c │ │ │ ├── arctg.c │ │ │ ├── ashachath.c │ │ │ ├── asinacos.c │ │ │ ├── atan2.c │ │ │ ├── ceilfloor.c │ │ │ ├── complex.c │ │ │ ├── complexld64.c │ │ │ ├── containsNothingPowerPC.c │ │ │ ├── copysign.c │ │ │ ├── d3ops.c │ │ │ ├── e_j0.c │ │ │ ├── e_j1.c │ │ │ ├── e_jn.c │ │ │ ├── erfcerf.c │ │ │ ├── expTable.c │ │ │ ├── fabs.c │ │ │ ├── fenv.c │ │ │ ├── fenv.h │ │ │ ├── fenv_private.h │ │ │ ├── finite.c │ │ │ ├── floating.c │ │ │ ├── fp_private.h │ │ │ ├── fpmacros.c │ │ │ ├── frexpldexp.c │ │ │ ├── gamma.c │ │ │ ├── gamma9.c │ │ │ ├── hypot.c │ │ │ ├── ld64.c │ │ │ ├── lgamma.c │ │ │ ├── libversion.c │ │ │ ├── logTable.c │ │ │ ├── logb.c │ │ │ ├── math.h │ │ │ ├── math_private.h │ │ │ ├── matherr.c │ │ │ ├── minmaxdim.c │ │ │ ├── nan.c │ │ │ ├── nan.h │ │ │ ├── nanl.c │ │ │ ├── nanl64.c │ │ │ ├── nextafter.c │ │ │ ├── power.c │ │ │ ├── remmod.c │ │ │ ├── rndint.c │ │ │ ├── rndtol.c │ │ │ ├── s_cbrt.c │ │ │ ├── scalb.c │ │ │ ├── shchth.c │ │ │ ├── significand.c │ │ │ ├── sqrt.c │ │ │ ├── sqrt970.s │ │ │ ├── tableExpD.c │ │ │ ├── tableLogD.c │ │ │ ├── tanatantable.c │ │ │ ├── tg.c │ │ │ ├── w_cabs.c │ │ │ ├── w_drem.c │ │ │ └── w_scalb.c │ │ ├── abs.c │ │ ├── architecture │ │ │ └── i386 │ │ ├── complex.h │ │ ├── empty.c │ │ ├── exp10.c │ │ ├── fenv.h │ │ ├── fenv_private.h │ │ ├── libmx.s │ │ ├── math.h │ │ ├── nan.c │ │ ├── nan.h │ │ ├── nanl.c │ │ ├── sincos.c │ │ └── version_info.c │ ├── include │ │ ├── architecture │ │ │ └── i386 │ │ │ │ ├── fenv.h │ │ │ │ └── math.h │ │ ├── complex.h │ │ ├── fenv.h │ │ ├── fenv_private.h │ │ ├── math.h │ │ └── nan.h │ ├── man3 │ │ ├── FIXDATES.py │ │ ├── M_1_PI.3 │ │ ├── M_2_PI.3 │ │ ├── M_2_SQRTPI.3 │ │ ├── M_E.3 │ │ ├── M_LN10.3 │ │ ├── M_LN2.3 │ │ ├── M_LOG10E.3 │ │ ├── M_LOG2E.3 │ │ ├── M_PI.3 │ │ ├── M_PI_2.3 │ │ ├── M_PI_4.3 │ │ ├── M_SQRT2.3 │ │ ├── M_SQRT_1_2.3 │ │ ├── acos.3 │ │ ├── acosf.3 │ │ ├── acosh.3 │ │ ├── acoshf.3 │ │ ├── acoshl.3 │ │ ├── acosl.3 │ │ ├── asin.3 │ │ ├── asinf.3 │ │ ├── asinh.3 │ │ ├── asinhf.3 │ │ ├── asinhl.3 │ │ ├── asinl.3 │ │ ├── atan.3 │ │ ├── atan2.3 │ │ ├── atan2f.3 │ │ ├── atan2l.3 │ │ ├── atanf.3 │ │ ├── atanh.3 │ │ ├── atanhf.3 │ │ ├── atanhl.3 │ │ ├── atanl.3 │ │ ├── cabs.3 │ │ ├── cabsf.3 │ │ ├── cabsl.3 │ │ ├── cacos.3 │ │ ├── cacosf.3 │ │ ├── cacosh.3 │ │ ├── cacoshf.3 │ │ ├── cacoshl.3 │ │ ├── cacosl.3 │ │ ├── carg.3 │ │ ├── cargf.3 │ │ ├── cargl.3 │ │ ├── casin.3 │ │ ├── casinf.3 │ │ ├── casinh.3 │ │ ├── casinhf.3 │ │ ├── casinhl.3 │ │ ├── casinl.3 │ │ ├── catan.3 │ │ ├── catanf.3 │ │ ├── catanh.3 │ │ ├── catanhf.3 │ │ ├── catanhl.3 │ │ ├── catanl.3 │ │ ├── cbrt.3 │ │ ├── cbrtf.3 │ │ ├── cbrtl.3 │ │ ├── ccos.3 │ │ ├── ccosf.3 │ │ ├── ccosh.3 │ │ ├── ccoshf.3 │ │ ├── ccoshl.3 │ │ ├── ccosl.3 │ │ ├── ceil.3 │ │ ├── ceilf.3 │ │ ├── ceill.3 │ │ ├── cexp.3 │ │ ├── cexpf.3 │ │ ├── cexpl.3 │ │ ├── cimag.3 │ │ ├── cimagf.3 │ │ ├── cimagl.3 │ │ ├── clog.3 │ │ ├── clogf.3 │ │ ├── clogl.3 │ │ ├── complex.3 │ │ ├── conj.3 │ │ ├── conjf.3 │ │ ├── conjl.3 │ │ ├── copysign.3 │ │ ├── copysignf.3 │ │ ├── copysignl.3 │ │ ├── cos.3 │ │ ├── cosf.3 │ │ ├── cosh.3 │ │ ├── coshf.3 │ │ ├── coshl.3 │ │ ├── cosl.3 │ │ ├── cpow.3 │ │ ├── cpowf.3 │ │ ├── cpowl.3 │ │ ├── cproj.3 │ │ ├── cprojf.3 │ │ ├── cprojl.3 │ │ ├── creal.3 │ │ ├── crealf.3 │ │ ├── creall.3 │ │ ├── csin.3 │ │ ├── csinf.3 │ │ ├── csinh.3 │ │ ├── csinhf.3 │ │ ├── csinhl.3 │ │ ├── csinl.3 │ │ ├── csqrt.3 │ │ ├── csqrtf.3 │ │ ├── csqrtl.3 │ │ ├── ctan.3 │ │ ├── ctanf.3 │ │ ├── ctanh.3 │ │ ├── ctanhf.3 │ │ ├── ctanhl.3 │ │ ├── ctanl.3 │ │ ├── drem.3 │ │ ├── erf.3 │ │ ├── erfc.3 │ │ ├── erfcf.3 │ │ ├── erfcl.3 │ │ ├── erff.3 │ │ ├── erfl.3 │ │ ├── exp.3 │ │ ├── exp2.3 │ │ ├── exp2f.3 │ │ ├── exp2l.3 │ │ ├── expf.3 │ │ ├── expl.3 │ │ ├── expm1.3 │ │ ├── expm1f.3 │ │ ├── expm1l.3 │ │ ├── fabs.3 │ │ ├── fabsf.3 │ │ ├── fabsl.3 │ │ ├── fdim.3 │ │ ├── fdimf.3 │ │ ├── fdiml.3 │ │ ├── finite.3 │ │ ├── float.3 │ │ ├── floor.3 │ │ ├── floorf.3 │ │ ├── floorl.3 │ │ ├── fma.3 │ │ ├── fmaf.3 │ │ ├── fmal.3 │ │ ├── fmax.3 │ │ ├── fmaxf.3 │ │ ├── fmaxl.3 │ │ ├── fmin.3 │ │ ├── fminf.3 │ │ ├── fminl.3 │ │ ├── fmod.3 │ │ ├── fmodf.3 │ │ ├── fmodl.3 │ │ ├── fpclassify.3 │ │ ├── frexp.3 │ │ ├── frexpf.3 │ │ ├── frexpl.3 │ │ ├── gamma.3 │ │ ├── gamma_r.3 │ │ ├── hypot.3 │ │ ├── hypotf.3 │ │ ├── hypotl.3 │ │ ├── ilogb.3 │ │ ├── ilogbf.3 │ │ ├── ilogbl.3 │ │ ├── isfinite.3 │ │ ├── isgreater.3 │ │ ├── isgreaterequal.3 │ │ ├── isinf.3 │ │ ├── isless.3 │ │ ├── islessequal.3 │ │ ├── islessgreater.3 │ │ ├── isnan.3 │ │ ├── isnormal.3 │ │ ├── isunordered.3 │ │ ├── j0.3 │ │ ├── j1.3 │ │ ├── jn.3 │ │ ├── ldexp.3 │ │ ├── ldexpf.3 │ │ ├── ldexpl.3 │ │ ├── lgamma.3 │ │ ├── lgamma_r.3 │ │ ├── lgammaf.3 │ │ ├── lgammaf_r.3 │ │ ├── lgammal.3 │ │ ├── lgammal_r.3 │ │ ├── llrint.3 │ │ ├── llrintf.3 │ │ ├── llrintl.3 │ │ ├── llround.3 │ │ ├── llroundf.3 │ │ ├── llroundl.3 │ │ ├── log.3 │ │ ├── log10.3 │ │ ├── log10f.3 │ │ ├── log10l.3 │ │ ├── log1p.3 │ │ ├── log1pf.3 │ │ ├── log1pl.3 │ │ ├── log2.3 │ │ ├── log2f.3 │ │ ├── log2l.3 │ │ ├── logb.3 │ │ ├── logbf.3 │ │ ├── logbl.3 │ │ ├── logf.3 │ │ ├── logl.3 │ │ ├── lrint.3 │ │ ├── lrintf.3 │ │ ├── lrintl.3 │ │ ├── lround.3 │ │ ├── lroundf.3 │ │ ├── lroundl.3 │ │ ├── math.3 │ │ ├── matherr.3 │ │ ├── modf.3 │ │ ├── modff.3 │ │ ├── modfl.3 │ │ ├── nan.3 │ │ ├── nanf.3 │ │ ├── nanl.3 │ │ ├── nearbyint.3 │ │ ├── nearbyintf.3 │ │ ├── nearbyintl.3 │ │ ├── nextafter.3 │ │ ├── nextafterf.3 │ │ ├── nextafterl.3 │ │ ├── nexttoward.3 │ │ ├── nexttowardf.3 │ │ ├── nexttowardl.3 │ │ ├── pow.3 │ │ ├── powf.3 │ │ ├── powl.3 │ │ ├── remainder.3 │ │ ├── remainderf.3 │ │ ├── remainderl.3 │ │ ├── remquo.3 │ │ ├── remquof.3 │ │ ├── remquol.3 │ │ ├── rint.3 │ │ ├── rintf.3 │ │ ├── rintl.3 │ │ ├── rinttol.3 │ │ ├── round.3 │ │ ├── roundf.3 │ │ ├── roundl.3 │ │ ├── roundtol.3 │ │ ├── scalb.3 │ │ ├── scalbln.3 │ │ ├── scalblnf.3 │ │ ├── scalblnl.3 │ │ ├── scalbn.3 │ │ ├── scalbnf.3 │ │ ├── scalbnl.3 │ │ ├── sin.3 │ │ ├── sinf.3 │ │ ├── sinh.3 │ │ ├── sinhf.3 │ │ ├── sinhl.3 │ │ ├── sinl.3 │ │ ├── sqrt.3 │ │ ├── sqrtf.3 │ │ ├── sqrtl.3 │ │ ├── tan.3 │ │ ├── tanf.3 │ │ ├── tanh.3 │ │ ├── tanhf.3 │ │ ├── tanhl.3 │ │ ├── tanl.3 │ │ ├── tgamma.3 │ │ ├── tgammaf.3 │ │ ├── tgammal.3 │ │ ├── trunc.3 │ │ ├── truncf.3 │ │ ├── truncl.3 │ │ ├── y0.3 │ │ ├── y1.3 │ │ └── yn.3 │ └── rename_wrapper ├── libpmenergy │ ├── CMakeLists.txt │ ├── include │ │ ├── pmenergy.h │ │ └── pmsample.h │ └── src │ │ ├── pmenergy.c │ │ └── pmsample.c ├── libquit │ ├── CMakeLists.txt │ ├── include │ │ └── quit │ │ │ └── quit.h │ └── src │ │ └── quit.c ├── libsandbox │ ├── CMakeLists.txt │ ├── include │ │ └── sandbox │ │ │ └── sandbox.h │ └── src │ │ └── sandbox.c ├── libsimple │ ├── CMakeLists.txt │ ├── README.md │ ├── include │ │ └── libsimple │ │ │ ├── base.h │ │ │ └── lock.h │ └── src │ │ └── lock.c ├── libsysmon │ ├── CMakeLists.txt │ ├── include │ │ └── sysmon │ │ │ ├── OS_sysmon_object.h │ │ │ ├── OS_sysmon_request.h │ │ │ ├── OS_sysmon_row.h │ │ │ ├── OS_sysmon_table.h │ │ │ └── sysmon.h │ └── src │ │ ├── OS_sysmon_object.m │ │ ├── OS_sysmon_request.m │ │ ├── OS_sysmon_row.m │ │ ├── OS_sysmon_table.m │ │ └── sysmon.c ├── libsystem_coreservices │ ├── CMakeLists.txt │ ├── NSSystemDirectories.c │ ├── dirhelper.c │ ├── dirhelper_priv.h │ └── sysdir.c ├── native │ └── CMakeLists.txt ├── networkextension │ ├── CMakeLists.txt │ ├── NEHelperClient.c │ ├── include │ │ ├── NEHelperClient.h │ │ └── ne_session.h │ └── ne_session.c ├── opendirectory_internal │ ├── CMakeLists.txt │ ├── include │ │ └── opendirectory │ │ │ ├── CAuditUtils.h │ │ │ ├── CHandlers.h │ │ │ ├── CInternalDispatch.h │ │ │ ├── CLauncher.h │ │ │ ├── CNodeList.h │ │ │ ├── CPlugInList.h │ │ │ ├── CPluginConfig.h │ │ │ ├── CPluginHandler.h │ │ │ ├── CRefTable.h │ │ │ ├── CServerPlugin.h │ │ │ ├── CSrvrMessaging.h │ │ │ ├── DSMachEndian.h │ │ │ ├── DSSwapUtils.h │ │ │ ├── DSlibinfoMIG_types.h │ │ │ ├── DSmemberdMIG_types.h │ │ │ ├── DirServiceMain.h │ │ │ ├── DirectoryService │ │ │ ├── Mbrd_Cache.h │ │ │ ├── Mbrd_HashTable.h │ │ │ ├── Mbrd_MembershipResolver.h │ │ │ ├── Mbrd_UserGroup.h │ │ │ ├── ServerControl.h │ │ │ ├── od_passthru.h │ │ │ ├── odconstants.h │ │ │ ├── odipc.h │ │ │ ├── odutils.h │ │ │ └── rb.h │ └── src │ │ ├── odconstants.c │ │ └── odutils.c ├── pboard │ ├── CMakeLists.txt │ ├── pbcopy.m │ └── pbpaste.m ├── private-frameworks │ ├── AppleAccount │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AppleAccount │ │ │ │ ├── AAAbsintheContext.h │ │ │ │ ├── AAAbsintheContextProtocol.h │ │ │ │ ├── AAAbsintheSigner.h │ │ │ │ ├── AAAbsintheSignerContextCache.h │ │ │ │ ├── AAAcceptedTermsController.h │ │ │ │ ├── AAAccount.h │ │ │ │ ├── AAAccountBeneficiaryManagementViewModel.h │ │ │ │ ├── AAAccountContactPromptModel.h │ │ │ │ ├── AAAccountManagementUIResponse.h │ │ │ │ ├── AAAccountManager.h │ │ │ │ ├── AAAccountRecoveryManagementViewModel.h │ │ │ │ ├── AAAccountUserNotificationContext.h │ │ │ │ ├── AAAccountUserNotificationDaemonConnection.h │ │ │ │ ├── AAAccountUserNotificationDaemonInterface.h │ │ │ │ ├── AAAccountUserNotificationDaemonProtocol.h │ │ │ │ ├── AAAccountUserNotificationPublisher.h │ │ │ │ ├── AAAddEmailUIRequest.h │ │ │ │ ├── AAAppleIDLoginPlugin.h │ │ │ │ ├── AAAppleIDSettingsRequest.h │ │ │ │ ├── AAAppleTVRequest.h │ │ │ │ ├── AAAttestationSigner.h │ │ │ │ ├── AAAuthenticateRequest.h │ │ │ │ ├── AAAuthenticationResponse.h │ │ │ │ ├── AAAutoAccountVerifier.h │ │ │ │ ├── AAAvailabilityRequest.h │ │ │ │ ├── AAAvailabilityResponse.h │ │ │ │ ├── AABenefactorInfo.h │ │ │ │ ├── AABeneficiary.h │ │ │ │ ├── AABeneficiaryClaimUIRequest.h │ │ │ │ ├── AABeneficiaryInfo.h │ │ │ │ ├── AACNContactsManager.h │ │ │ │ ├── AACertificatePinner.h │ │ │ │ ├── AAChooseContactViewModel.h │ │ │ │ ├── AACloudKitDevicesListRequest.h │ │ │ │ ├── AACloudKitDevicesListResponse.h │ │ │ │ ├── AACloudKitMigrationStateRequest.h │ │ │ │ ├── AACloudKitMigrationStateResponse.h │ │ │ │ ├── AACloudKitStartMigrationRequest.h │ │ │ │ ├── AACloudKitStartMigrationResponse.h │ │ │ │ ├── AACompleteEmailVettingRequest.h │ │ │ │ ├── AACompleteEmailVettingResponse.h │ │ │ │ ├── AAContactsManager.h │ │ │ │ ├── AAContactsProvider.h │ │ │ │ ├── AACustodianChooseContactViewModel.h │ │ │ │ ├── AACustodianController.h │ │ │ │ ├── AACustodianDaemonConnection.h │ │ │ │ ├── AACustodianDaemonInterface.h │ │ │ │ ├── AACustodianDaemonProtocol.h │ │ │ │ ├── AACustodianDataRecoveryKeys.h │ │ │ │ ├── AACustodianInvitationResponseContext.h │ │ │ │ ├── AACustodianMessageInviteContext.h │ │ │ │ ├── AACustodianPasswordResetInformation.h │ │ │ │ ├── AACustodianRecoveryConfiguration.h │ │ │ │ ├── AACustodianRecoveryRequestContext.h │ │ │ │ ├── AACustodianSetupRequestContext.h │ │ │ │ ├── AACustodianshipInfo.h │ │ │ │ ├── AADaemonController.h │ │ │ │ ├── AADaemonProtocol.h │ │ │ │ ├── AADataclassManager.h │ │ │ │ ├── AADataclassVersionUpdateProtocol.h │ │ │ │ ├── AADependentAuthenticationUIRequest.h │ │ │ │ ├── AADevice.h │ │ │ │ ├── AADeviceInfo.h │ │ │ │ ├── AADeviceList.h │ │ │ │ ├── AADeviceListRequest.h │ │ │ │ ├── AADeviceListResponse.h │ │ │ │ ├── AADeviceProvisioningRequest.h │ │ │ │ ├── AADeviceProvisioningResponse.h │ │ │ │ ├── AADeviceProvisioningSession.h │ │ │ │ ├── AAEmailVettingRequest.h │ │ │ │ ├── AAFMIPAuthenticateRequest.h │ │ │ │ ├── AAFMIPAuthenticateResponse.h │ │ │ │ ├── AAFXPCSessionDelegate.h │ │ │ │ ├── AAFamilyDetailsRequest.h │ │ │ │ ├── AAFamilyDetailsResponse.h │ │ │ │ ├── AAFamilyEligibilityRequest.h │ │ │ │ ├── AAFamilyEligibilityResponse.h │ │ │ │ ├── AAFamilyInvite.h │ │ │ │ ├── AAFamilyMember.h │ │ │ │ ├── AAFamilyRequest.h │ │ │ │ ├── AAFlowPresenter.h │ │ │ │ ├── AAFlowPresenterHostInterface.h │ │ │ │ ├── AAFlowPresenterHostProtocol.h │ │ │ │ ├── AAFlowPresenterProtocol.h │ │ │ │ ├── AAFollowUpController.h │ │ │ │ ├── AAFollowUpProtocol.h │ │ │ │ ├── AAFollowUpUtilities.h │ │ │ │ ├── AAGenericTermsUIRequest.h │ │ │ │ ├── AAGenericTermsUIResponse.h │ │ │ │ ├── AAGrandSlamSigner.h │ │ │ │ ├── AAIDSMessagingService.h │ │ │ │ ├── AAIDSMessagingServiceInternal.h │ │ │ │ ├── AAInheritance.h │ │ │ │ ├── AAInheritanceContact.h │ │ │ │ ├── AAInheritanceContactController.h │ │ │ │ ├── AAInheritanceContactInfo.h │ │ │ │ ├── AAInheritanceContactsViewModel.h │ │ │ │ ├── AAInheritanceController.h │ │ │ │ ├── AAInheritanceDaemonProtocol.h │ │ │ │ ├── AAInheritanceInvitation.h │ │ │ │ ├── AAInheritanceMessageInviteContext.h │ │ │ │ ├── AAInitiateEmailVettingRequest.h │ │ │ │ ├── AAInviteCompletionInfo.h │ │ │ │ ├── AAKeychainManager.h │ │ │ │ ├── AALocalContactInfo.h │ │ │ │ ├── AALocalization.h │ │ │ │ ├── AALoginAccountRequest.h │ │ │ │ ├── AALoginAccountResponse.h │ │ │ │ ├── AALoginContextManager.h │ │ │ │ ├── AALoginContextTransientStorage.h │ │ │ │ ├── AALoginDelegatesRequest.h │ │ │ │ ├── AALoginDelegatesResponse.h │ │ │ │ ├── AALoginOrCreateDelegatesRequest.h │ │ │ │ ├── AALoginPluginManager.h │ │ │ │ ├── AALoginResponseAppleAccountInfo.h │ │ │ │ ├── AALoginResponseDataclasses.h │ │ │ │ ├── AALoginResponseiCloudTokens.h │ │ │ │ ├── AAMessage.h │ │ │ │ ├── AAMessagesInviteContext.h │ │ │ │ ├── AAMessagingAccount.h │ │ │ │ ├── AAMessagingCapability.h │ │ │ │ ├── AAMessagingContext.h │ │ │ │ ├── AAMessagingDestination.h │ │ │ │ ├── AAMessagingDevice.h │ │ │ │ ├── AAMessagingService.h │ │ │ │ ├── AAMobileMeOfferResponse.h │ │ │ │ ├── AAMyPhotoRequest.h │ │ │ │ ├── AAOBAddTrustedContactsModel.h │ │ │ │ ├── AAOBBulletPointModel.h │ │ │ │ ├── AAOBBulletPointModelProtocol.h │ │ │ │ ├── AAOBBulletedWelcomeControllerModelProtocol.h │ │ │ │ ├── AAOBCustodianContactSelectorModel.h │ │ │ │ ├── AAOBCustodianHelpNowModel.h │ │ │ │ ├── AAOBCustodianInvitationModel.h │ │ │ │ ├── AAOBCustodiansListViewModel.h │ │ │ │ ├── AAOBInheritanceContactPickerModel.h │ │ │ │ ├── AAOBInheritanceInvitationModel.h │ │ │ │ ├── AAOBInheritanceInviteMessageModel.h │ │ │ │ ├── AAOBInheritanceSetupCompleteModel.h │ │ │ │ ├── AAOBInheritanceShareAccessKeyOptionsModel.h │ │ │ │ ├── AAOBInheritanceShareDataModel.h │ │ │ │ ├── AAOBInvitationSentModel.h │ │ │ │ ├── AAOBModelHelper.h │ │ │ │ ├── AAOBTrustedContactInviteMessageModel.h │ │ │ │ ├── AAOBTrustedContactInviteMessageModelProtocol.h │ │ │ │ ├── AAOBWelcomeControllerModelProtocol.h │ │ │ │ ├── AAPasswordSecurityUIRequest.h │ │ │ │ ├── AAPaymentSummaryRequest.h │ │ │ │ ├── AAPaymentSummaryResponse.h │ │ │ │ ├── AAPaymentUIRequest.h │ │ │ │ ├── AAPendingIDSMessage.h │ │ │ │ ├── AAPersonaUtility.h │ │ │ │ ├── AAPersonalInfoUIRequest.h │ │ │ │ ├── AAPhotoResponse.h │ │ │ │ ├── AAPreferences.h │ │ │ │ ├── AAPrimaryAccountUpdater.h │ │ │ │ ├── AAProvisioningResponse.h │ │ │ │ ├── AAQuotaDepletionAlert.h │ │ │ │ ├── AAQuotaInfoRequest.h │ │ │ │ ├── AAQuotaInfoResponse.h │ │ │ │ ├── AARecoveryFactorController.h │ │ │ │ ├── AARegionInfo.h │ │ │ │ ├── AARegisterRequest.h │ │ │ │ ├── AARemoteServer.h │ │ │ │ ├── AARemoteServerConfigurationCache.h │ │ │ │ ├── AARemoteServerProtocol.h │ │ │ │ ├── AARequest.h │ │ │ │ ├── AARequester.h │ │ │ │ ├── AAResponse.h │ │ │ │ ├── AASecondaryAuthenticationRequest.h │ │ │ │ ├── AASecondaryAuthenticationResponse.h │ │ │ │ ├── AASetupAssistantAuthenticateRequest.h │ │ │ │ ├── AASetupAssistantConfigRequest.h │ │ │ │ ├── AASetupAssistantConfigResponse.h │ │ │ │ ├── AASetupAssistantCreateRequest.h │ │ │ │ ├── AASetupAssistantCreateResponse.h │ │ │ │ ├── AASetupAssistantService.h │ │ │ │ ├── AASetupAssistantSetupDelegatesRequest.h │ │ │ │ ├── AASetupAssistantSetupDelegatesResponse.h │ │ │ │ ├── AASetupAssistantTermsFetchRequest.h │ │ │ │ ├── AASetupAssistantUpdateRequest.h │ │ │ │ ├── AASetupAssistantUpgradeStatusRequest.h │ │ │ │ ├── AASetupAssistantUpgradeStatusResponse.h │ │ │ │ ├── AASignInFlowController.h │ │ │ │ ├── AASignInOperationHelper.h │ │ │ │ ├── AASignOutFlowController.h │ │ │ │ ├── AASigningSession.h │ │ │ │ ├── AASigningSessionRequest.h │ │ │ │ ├── AASigningSessionResponse.h │ │ │ │ ├── AAStorableLoginContext.h │ │ │ │ ├── AASuspensionInfo.h │ │ │ │ ├── AATermsReportUserActionRequest.h │ │ │ │ ├── AATermsReportUserActionResponse.h │ │ │ │ ├── AATermsUserActionReporter.h │ │ │ │ ├── AATrustedContact.h │ │ │ │ ├── AATrustedContactDetailsViewModel.h │ │ │ │ ├── AATrustedContactDetailsViewModelFactory.h │ │ │ │ ├── AATrustedContactFlowPresenter.h │ │ │ │ ├── AATrustedContactHealthInfo.h │ │ │ │ ├── AATrustedContactNotificationPublisher.h │ │ │ │ ├── AATrustedContactStringProvider.h │ │ │ │ ├── AATrustedContactsCustodianSplashScreenModel.h │ │ │ │ ├── AATrustedContactsInheritanceSplashScreenModel.h │ │ │ │ ├── AATrustedDevice.h │ │ │ │ ├── AATrustedDeviceListRequest.h │ │ │ │ ├── AATrustedDeviceListResponse.h │ │ │ │ ├── AAURLConfiguration.h │ │ │ │ ├── AAURLConfigurationRequest.h │ │ │ │ ├── AAURLProtocol.h │ │ │ │ ├── AAURLSession.h │ │ │ │ ├── AAURLSessionContext.h │ │ │ │ ├── AAURLSessionTaskProtocol.h │ │ │ │ ├── AAUniversalLinkHelper.h │ │ │ │ ├── AAUpdateAccountUIRequest.h │ │ │ │ ├── AAUpdateNameRequest.h │ │ │ │ ├── AAUpdateProvisioningRequest.h │ │ │ │ ├── AAUpgradeiOSTermsResponse.h │ │ │ │ ├── AAUserNotification.h │ │ │ │ ├── AAVersionUpdater.h │ │ │ │ ├── AAVersionUpdaterProtocol.h │ │ │ │ ├── AAVersionUpdaterProtocol_Internal.h │ │ │ │ ├── AAWalrusPCSAuthRequest.h │ │ │ │ ├── AAWalrusRecoveryContactRemovalAlertModel.h │ │ │ │ ├── AAWalrusRecoveryContactRemovedScreenModel.h │ │ │ │ ├── AAWalrusRecoveryKeyRemovalViewModel.h │ │ │ │ ├── AAWalrusStringProvider.h │ │ │ │ ├── AAiCloudLoginAccountRequester.h │ │ │ │ ├── AAiCloudTermsAgreeRequest.h │ │ │ │ ├── AAiCloudTermsAgreeResponse.h │ │ │ │ ├── AAiCloudTermsStringRequest.h │ │ │ │ ├── AAiCloudTermsStringResponse.h │ │ │ │ ├── ACAccount+AppleID.h │ │ │ │ ├── ACAccountStore+AppleID.h │ │ │ │ ├── ACDataclassAction+AppleAccount.h │ │ │ │ ├── ATVHighSecurityAccountDeviceList.h │ │ │ │ ├── ATVHighSecurityAccountDeviceListResponse.h │ │ │ │ ├── ATVHighSecurityAccountSendCode.h │ │ │ │ ├── ATVHighSecurityAccountSendCodeResponse.h │ │ │ │ ├── ATVHighSecurityAccountVerifyCode.h │ │ │ │ ├── ATVHighSecurityAccountVerifyCodeResponse.h │ │ │ │ ├── AppleAccount.h │ │ │ │ ├── AppleAccount_Private.h │ │ │ │ ├── IDSServiceDelegate.h │ │ │ │ ├── NSArray+AppleAccount.h │ │ │ │ ├── NSData+AppleAccount.h │ │ │ │ ├── NSDictionary+AppleAccount.h │ │ │ │ ├── NSError+AppleAccount.h │ │ │ │ ├── NSHTTPCookieStorage+AppleAccount.h │ │ │ │ ├── NSMutableArray+AppleAccount.h │ │ │ │ ├── NSMutableDictionary+AppleAccount.h │ │ │ │ ├── NSMutableURLRequest+AppleAccount.h │ │ │ │ ├── NSOperationQueue+AppleAccount.h │ │ │ │ ├── NSSet+AppleAccount.h │ │ │ │ ├── NSString+AAMessage.h │ │ │ │ ├── NSURL+AppleAccount.h │ │ │ │ ├── NSURLConnectionDelegate.h │ │ │ │ ├── NSURLRequest+AppleAccount.h │ │ │ │ ├── NSURLResponse+AppleAccount.h │ │ │ │ ├── NSURLSessionAppleIDContext.h │ │ │ │ ├── NSURLSessionConfiguration+AppleAccount.h │ │ │ │ ├── NSURLSessionDataDelegate.h │ │ │ │ ├── NSURLSessionDelegate.h │ │ │ │ ├── NSURLSessionTaskDelegate.h │ │ │ │ ├── NSXPCListenerDelegate.h │ │ │ │ ├── TrustedContactFlowPresenterProtocol.h │ │ │ │ ├── _AABasicGetRequest.h │ │ │ │ ├── _AAURLSessionConfigurationTask.h │ │ │ │ ├── _AAURLSessionDelegate.h │ │ │ │ └── _AAURLSessionOperation.h │ │ └── src │ │ │ ├── AAAbsintheContext.m │ │ │ ├── AAAbsintheSigner.m │ │ │ ├── AAAbsintheSignerContextCache.m │ │ │ ├── AAAcceptedTermsController.m │ │ │ ├── AAAccount.m │ │ │ ├── AAAccountBeneficiaryManagementViewModel.m │ │ │ ├── AAAccountContactPromptModel.m │ │ │ ├── AAAccountManagementUIResponse.m │ │ │ ├── AAAccountManager.m │ │ │ ├── AAAccountRecoveryManagementViewModel.m │ │ │ ├── AAAccountUserNotificationContext.m │ │ │ ├── AAAccountUserNotificationDaemonConnection.m │ │ │ ├── AAAccountUserNotificationDaemonInterface.m │ │ │ ├── AAAccountUserNotificationPublisher.m │ │ │ ├── AAAddEmailUIRequest.m │ │ │ ├── AAAppleIDSettingsRequest.m │ │ │ ├── AAAppleTVRequest.m │ │ │ ├── AAAttestationSigner.m │ │ │ ├── AAAuthenticateRequest.m │ │ │ ├── AAAuthenticationResponse.m │ │ │ ├── AAAutoAccountVerifier.m │ │ │ ├── AAAvailabilityRequest.m │ │ │ ├── AAAvailabilityResponse.m │ │ │ ├── AABenefactorInfo.m │ │ │ ├── AABeneficiary.m │ │ │ ├── AABeneficiaryClaimUIRequest.m │ │ │ ├── AABeneficiaryInfo.m │ │ │ ├── AACertificatePinner.m │ │ │ ├── AACloudKitDevicesListRequest.m │ │ │ ├── AACloudKitDevicesListResponse.m │ │ │ ├── AACloudKitMigrationStateRequest.m │ │ │ ├── AACloudKitMigrationStateResponse.m │ │ │ ├── AACloudKitStartMigrationRequest.m │ │ │ ├── AACloudKitStartMigrationResponse.m │ │ │ ├── AACompleteEmailVettingRequest.m │ │ │ ├── AACompleteEmailVettingResponse.m │ │ │ ├── AAContactsManager.m │ │ │ ├── AAContactsProvider.m │ │ │ ├── AACustodianChooseContactViewModel.m │ │ │ ├── AACustodianController.m │ │ │ ├── AACustodianDaemonConnection.m │ │ │ ├── AACustodianDaemonInterface.m │ │ │ ├── AACustodianDataRecoveryKeys.m │ │ │ ├── AACustodianInvitationResponseContext.m │ │ │ ├── AACustodianMessageInviteContext.m │ │ │ ├── AACustodianPasswordResetInformation.m │ │ │ ├── AACustodianRecoveryConfiguration.m │ │ │ ├── AACustodianRecoveryRequestContext.m │ │ │ ├── AACustodianSetupRequestContext.m │ │ │ ├── AACustodianshipInfo.m │ │ │ ├── AADaemonController.m │ │ │ ├── AADataclassManager.m │ │ │ ├── AADependentAuthenticationUIRequest.m │ │ │ ├── AADevice.m │ │ │ ├── AADeviceInfo.m │ │ │ ├── AADeviceList.m │ │ │ ├── AADeviceListRequest.m │ │ │ ├── AADeviceListResponse.m │ │ │ ├── AADeviceProvisioningRequest.m │ │ │ ├── AADeviceProvisioningResponse.m │ │ │ ├── AADeviceProvisioningSession.m │ │ │ ├── AAEmailVettingRequest.m │ │ │ ├── AAFMIPAuthenticateRequest.m │ │ │ ├── AAFMIPAuthenticateResponse.m │ │ │ ├── AAFamilyDetailsRequest.m │ │ │ ├── AAFamilyDetailsResponse.m │ │ │ ├── AAFamilyEligibilityRequest.m │ │ │ ├── AAFamilyEligibilityResponse.m │ │ │ ├── AAFamilyInvite.m │ │ │ ├── AAFamilyMember.m │ │ │ ├── AAFamilyRequest.m │ │ │ ├── AAFlowPresenter.m │ │ │ ├── AAFlowPresenterHostInterface.m │ │ │ ├── AAFollowUpController.m │ │ │ ├── AAFollowUpUtilities.m │ │ │ ├── AAGenericTermsUIRequest.m │ │ │ ├── AAGenericTermsUIResponse.m │ │ │ ├── AAGrandSlamSigner.m │ │ │ ├── AAInheritance.m │ │ │ ├── AAInheritanceContactController.m │ │ │ ├── AAInheritanceContactsViewModel.m │ │ │ ├── AAInheritanceController.m │ │ │ ├── AAInheritanceInvitation.m │ │ │ ├── AAInheritanceMessageInviteContext.m │ │ │ ├── AAInitiateEmailVettingRequest.m │ │ │ ├── AAInviteCompletionInfo.m │ │ │ ├── AAKeychainManager.m │ │ │ ├── AALocalContactInfo.m │ │ │ ├── AALocalization.m │ │ │ ├── AALoginAccountRequest.m │ │ │ ├── AALoginAccountResponse.m │ │ │ ├── AALoginContextManager.m │ │ │ ├── AALoginContextTransientStorage.m │ │ │ ├── AALoginDelegatesRequest.m │ │ │ ├── AALoginDelegatesResponse.m │ │ │ ├── AALoginOrCreateDelegatesRequest.m │ │ │ ├── AALoginPluginManager.m │ │ │ ├── AALoginResponseAppleAccountInfo.m │ │ │ ├── AALoginResponseDataclasses.m │ │ │ ├── AALoginResponseiCloudTokens.m │ │ │ ├── AAMessage.m │ │ │ ├── AAMessagesInviteContext.m │ │ │ ├── AAMessagingAccount.m │ │ │ ├── AAMessagingCapability.m │ │ │ ├── AAMessagingContext.m │ │ │ ├── AAMessagingDestination.m │ │ │ ├── AAMessagingDevice.m │ │ │ ├── AAMessagingService.m │ │ │ ├── AAMobileMeOfferResponse.m │ │ │ ├── AAMyPhotoRequest.m │ │ │ ├── AAOBAddTrustedContactsModel.m │ │ │ ├── AAOBBulletPointModel.m │ │ │ ├── AAOBCustodianContactSelectorModel.m │ │ │ ├── AAOBCustodianHelpNowModel.m │ │ │ ├── AAOBCustodianInvitationModel.m │ │ │ ├── AAOBCustodiansListViewModel.m │ │ │ ├── AAOBInheritanceContactPickerModel.m │ │ │ ├── AAOBInheritanceInvitationModel.m │ │ │ ├── AAOBInheritanceInviteMessageModel.m │ │ │ ├── AAOBInheritanceSetupCompleteModel.m │ │ │ ├── AAOBInheritanceShareAccessKeyOptionsModel.m │ │ │ ├── AAOBInheritanceShareDataModel.m │ │ │ ├── AAOBInvitationSentModel.m │ │ │ ├── AAOBModelHelper.m │ │ │ ├── AAOBTrustedContactInviteMessageModel.m │ │ │ ├── AAPasswordSecurityUIRequest.m │ │ │ ├── AAPaymentSummaryRequest.m │ │ │ ├── AAPaymentSummaryResponse.m │ │ │ ├── AAPaymentUIRequest.m │ │ │ ├── AAPendingIDSMessage.m │ │ │ ├── AAPersonaUtility.m │ │ │ ├── AAPersonalInfoUIRequest.m │ │ │ ├── AAPhotoResponse.m │ │ │ ├── AAPreferences.m │ │ │ ├── AAPrimaryAccountUpdater.m │ │ │ ├── AAProvisioningResponse.m │ │ │ ├── AAQuotaDepletionAlert.m │ │ │ ├── AAQuotaInfoRequest.m │ │ │ ├── AAQuotaInfoResponse.m │ │ │ ├── AARecoveryFactorController.m │ │ │ ├── AARegionInfo.m │ │ │ ├── AARegisterRequest.m │ │ │ ├── AARemoteServer.m │ │ │ ├── AARemoteServerConfigurationCache.m │ │ │ ├── AARequest.m │ │ │ ├── AARequester.m │ │ │ ├── AAResponse.m │ │ │ ├── AASecondaryAuthenticationRequest.m │ │ │ ├── AASecondaryAuthenticationResponse.m │ │ │ ├── AASetupAssistantAuthenticateRequest.m │ │ │ ├── AASetupAssistantConfigRequest.m │ │ │ ├── AASetupAssistantConfigResponse.m │ │ │ ├── AASetupAssistantCreateRequest.m │ │ │ ├── AASetupAssistantCreateResponse.m │ │ │ ├── AASetupAssistantService.m │ │ │ ├── AASetupAssistantSetupDelegatesRequest.m │ │ │ ├── AASetupAssistantSetupDelegatesResponse.m │ │ │ ├── AASetupAssistantTermsFetchRequest.m │ │ │ ├── AASetupAssistantUpdateRequest.m │ │ │ ├── AASetupAssistantUpgradeStatusRequest.m │ │ │ ├── AASetupAssistantUpgradeStatusResponse.m │ │ │ ├── AASignInFlowController.m │ │ │ ├── AASignInOperationHelper.m │ │ │ ├── AASignOutFlowController.m │ │ │ ├── AASigningSession.m │ │ │ ├── AASigningSessionRequest.m │ │ │ ├── AASigningSessionResponse.m │ │ │ ├── AAStorableLoginContext.m │ │ │ ├── AASuspensionInfo.m │ │ │ ├── AATermsReportUserActionRequest.m │ │ │ ├── AATermsReportUserActionResponse.m │ │ │ ├── AATermsUserActionReporter.m │ │ │ ├── AATrustedContact.m │ │ │ ├── AATrustedContactDetailsViewModel.m │ │ │ ├── AATrustedContactDetailsViewModelFactory.m │ │ │ ├── AATrustedContactFlowPresenter.m │ │ │ ├── AATrustedContactHealthInfo.m │ │ │ ├── AATrustedContactNotificationPublisher.m │ │ │ ├── AATrustedContactStringProvider.m │ │ │ ├── AATrustedContactsCustodianSplashScreenModel.m │ │ │ ├── AATrustedContactsInheritanceSplashScreenModel.m │ │ │ ├── AATrustedDevice.m │ │ │ ├── AATrustedDeviceListRequest.m │ │ │ ├── AATrustedDeviceListResponse.m │ │ │ ├── AAURLConfiguration.m │ │ │ ├── AAURLConfigurationRequest.m │ │ │ ├── AAURLProtocol.m │ │ │ ├── AAURLSession.m │ │ │ ├── AAURLSessionContext.m │ │ │ ├── AAUniversalLinkHelper.m │ │ │ ├── AAUpdateAccountUIRequest.m │ │ │ ├── AAUpdateNameRequest.m │ │ │ ├── AAUpdateProvisioningRequest.m │ │ │ ├── AAUpgradeiOSTermsResponse.m │ │ │ ├── AAUserNotification.m │ │ │ ├── AAVersionUpdater.m │ │ │ ├── AAWalrusPCSAuthRequest.m │ │ │ ├── AAWalrusRecoveryContactRemovalAlertModel.m │ │ │ ├── AAWalrusRecoveryContactRemovedScreenModel.m │ │ │ ├── AAWalrusRecoveryKeyRemovalViewModel.m │ │ │ ├── AAWalrusStringProvider.m │ │ │ ├── AAiCloudLoginAccountRequester.m │ │ │ ├── AAiCloudTermsAgreeRequest.m │ │ │ ├── AAiCloudTermsAgreeResponse.m │ │ │ ├── AAiCloudTermsStringRequest.m │ │ │ ├── AAiCloudTermsStringResponse.m │ │ │ ├── ACAccount+AppleID.m │ │ │ ├── ACAccountStore+AppleID.m │ │ │ ├── ACDataclassAction+AppleAccount.m │ │ │ ├── ATVHighSecurityAccountDeviceList.m │ │ │ ├── ATVHighSecurityAccountDeviceListResponse.m │ │ │ ├── ATVHighSecurityAccountSendCode.m │ │ │ ├── ATVHighSecurityAccountSendCodeResponse.m │ │ │ ├── ATVHighSecurityAccountVerifyCode.m │ │ │ ├── ATVHighSecurityAccountVerifyCodeResponse.m │ │ │ ├── AppleAccount.m │ │ │ ├── NSArray+AppleAccount.m │ │ │ ├── NSData+AppleAccount.m │ │ │ ├── NSDictionary+AppleAccount.m │ │ │ ├── NSError+AppleAccount.m │ │ │ ├── NSHTTPCookieStorage+AppleAccount.m │ │ │ ├── NSMutableArray+AppleAccount.m │ │ │ ├── NSMutableDictionary+AppleAccount.m │ │ │ ├── NSMutableURLRequest+AppleAccount.m │ │ │ ├── NSOperationQueue+AppleAccount.m │ │ │ ├── NSSet+AppleAccount.m │ │ │ ├── NSString+AAMessage.m │ │ │ ├── NSURL+AppleAccount.m │ │ │ ├── NSURLRequest+AppleAccount.m │ │ │ ├── NSURLResponse+AppleAccount.m │ │ │ ├── NSURLSessionConfiguration+AppleAccount.m │ │ │ ├── _AABasicGetRequest.m │ │ │ ├── _AAURLSessionConfigurationTask.m │ │ │ ├── _AAURLSessionDelegate.m │ │ │ └── _AAURLSessionOperation.m │ ├── AppleFSCompression │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AppleFSCompression │ │ │ │ └── AppleFSCompression.h │ │ └── src │ │ │ └── AppleFSCompression.c │ ├── AppleSauce │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AppleSauce │ │ │ │ └── AppleSauce.h │ │ └── src │ │ │ └── AppleSauce.cpp │ ├── AppleSystemInfo │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AppleSystemInfo │ │ │ │ ├── AppleSystemInfo.h │ │ │ │ └── functions.h │ │ └── src │ │ │ ├── AppleSystemInfo.c │ │ │ └── functions.c │ ├── AssertionServices │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AssertionServices │ │ │ │ ├── AssertionServices.h │ │ │ │ ├── BKSApplicationStateMonitor.h │ │ │ │ ├── BKSAssertion.h │ │ │ │ ├── BKSLaunchdJobSpecification.h │ │ │ │ ├── BKSProcess.h │ │ │ │ ├── BKSProcessAssertion.h │ │ │ │ ├── BKSProcessExitContext.h │ │ │ │ ├── BKSTerminationAssertion.h │ │ │ │ ├── BKSTerminationAssertionObserverManager.h │ │ │ │ ├── BKSTerminationContext.h │ │ │ │ ├── BKSWorkspace.h │ │ │ │ ├── BSDescriptionProviding.h │ │ │ │ ├── BSXPCCoding.h │ │ │ │ ├── RBSAssertionObserving.h │ │ │ │ └── RBSServiceDelegate.h │ │ └── src │ │ │ ├── AssertionServices.m │ │ │ ├── BKSApplicationStateMonitor.m │ │ │ ├── BKSAssertion.m │ │ │ ├── BKSLaunchdJobSpecification.m │ │ │ ├── BKSProcess.m │ │ │ ├── BKSProcessAssertion.m │ │ │ ├── BKSProcessExitContext.m │ │ │ ├── BKSTerminationAssertion.m │ │ │ ├── BKSTerminationAssertionObserverManager.m │ │ │ ├── BKSTerminationContext.m │ │ │ └── BKSWorkspace.m │ ├── AssetCacheServices │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AssetCacheServices │ │ │ │ ├── ACSURLSession.h │ │ │ │ ├── ACSURLSessionDataTask.h │ │ │ │ ├── ACSURLSessionDownloadTask.h │ │ │ │ ├── ACSURLSessionTask.h │ │ │ │ ├── ACSURLSessionUploadTask.h │ │ │ │ └── AssetCacheServices.h │ │ └── src │ │ │ ├── ACSURLSession.m │ │ │ ├── ACSURLSessionDataTask.m │ │ │ ├── ACSURLSessionDownloadTask.m │ │ │ ├── ACSURLSessionTask.m │ │ │ ├── ACSURLSessionUploadTask.m │ │ │ └── AssetCacheServices.m │ ├── AssistantServices │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AssistantServices │ │ │ │ ├── AFAccessibilityListening.h │ │ │ │ ├── AFAccessibilityObserver.h │ │ │ │ ├── AFAccessibilityState.h │ │ │ │ ├── AFAccessibilityStateMutating.h │ │ │ │ ├── AFAccount.h │ │ │ │ ├── AFAceCommandDialogInfoExtracting.h │ │ │ │ ├── AFAggregator.h │ │ │ │ ├── AFAnalytics.h │ │ │ │ ├── AFAnalyticsConnection.h │ │ │ │ ├── AFAnalyticsContextVending.h │ │ │ │ ├── AFAnalyticsEvent.h │ │ │ │ ├── AFAnalyticsEventRecord.h │ │ │ │ ├── AFAnalyticsObservationService.h │ │ │ │ ├── AFAnalyticsObserver.h │ │ │ │ ├── AFAnalyticsObserverConnection.h │ │ │ │ ├── AFAnalyticsService.h │ │ │ │ ├── AFAnalyticsServiceDelegate.h │ │ │ │ ├── AFAnalyticsTurnBasedInstrumentationContext.h │ │ │ │ ├── AFAppContextAggregator.h │ │ │ │ ├── AFApplicationContext.h │ │ │ │ ├── AFApplicationContextMutating.h │ │ │ │ ├── AFApplicationInfo.h │ │ │ │ ├── AFAssistedDisambiguationRules.h │ │ │ │ ├── AFAudioAnalyzer.h │ │ │ │ ├── AFAudioDeviceInfo.h │ │ │ │ ├── AFAudioDeviceInfoMutating.h │ │ │ │ ├── AFAudioPlaybackRequest.h │ │ │ │ ├── AFAudioPlaybackRequestMutating.h │ │ │ │ ├── AFAudioPowerProviding.h │ │ │ │ ├── AFAudioPowerUpdater.h │ │ │ │ ├── AFAudioPowerUpdaterDelegate.h │ │ │ │ ├── AFAudioPowerXPCProvider.h │ │ │ │ ├── AFAudioState.h │ │ │ │ ├── AFBluetoothDeviceInfo.h │ │ │ │ ├── AFBluetoothDeviceInfoMutating.h │ │ │ │ ├── AFBluetoothHeadphoneInEarDetectionState.h │ │ │ │ ├── AFBluetoothHeadphoneInEarDetectionStateMutating.h │ │ │ │ ├── AFBluetoothWirelessSplitterSessionInfo.h │ │ │ │ ├── AFBluetoothWirelessSplitterSessionInfoMutating.h │ │ │ │ ├── AFBluetoothWirelessSplitterSessionStateObserver.h │ │ │ │ ├── AFBulletin.h │ │ │ │ ├── AFCallSiteInfo.h │ │ │ │ ├── AFCallSiteInfoMutating.h │ │ │ │ ├── AFChildConversationItemList.h │ │ │ │ ├── AFClientConfiguration.h │ │ │ │ ├── AFClientConfigurationMutating.h │ │ │ │ ├── AFClientInfo.h │ │ │ │ ├── AFClientInfoMutating.h │ │ │ │ ├── AFClientLite.h │ │ │ │ ├── AFClientLiteClientCommandHandling.h │ │ │ │ ├── AFClientLiteInternal.h │ │ │ │ ├── AFClientLiteRemoteCommandHandling.h │ │ │ │ ├── AFClientPlugin.h │ │ │ │ ├── AFClientPluginManager.h │ │ │ │ ├── AFClientService.h │ │ │ │ ├── AFClientServiceDelegate.h │ │ │ │ ├── AFClockAlarm.h │ │ │ │ ├── AFClockAlarmMutating.h │ │ │ │ ├── AFClockAlarmObserver.h │ │ │ │ ├── AFClockAlarmSnapshot.h │ │ │ │ ├── AFClockAlarmSnapshotMutating.h │ │ │ │ ├── AFClockItem.h │ │ │ │ ├── AFClockItemStorage.h │ │ │ │ ├── AFClockItemStorageDelegate.h │ │ │ │ ├── AFClockTimer.h │ │ │ │ ├── AFClockTimerMutating.h │ │ │ │ ├── AFClockTimerObserver.h │ │ │ │ ├── AFClockTimerSnapshot.h │ │ │ │ ├── AFClockTimerSnapshotMutating.h │ │ │ │ ├── AFCoercion.h │ │ │ │ ├── AFConnection.h │ │ │ │ ├── AFConnectionAvailabilityObserver.h │ │ │ │ ├── AFConnectionClientServiceDelegate.h │ │ │ │ ├── AFConnectionEntitlementCache.h │ │ │ │ ├── AFConnectionUserInteractionAssertion.h │ │ │ │ ├── AFContextCollating.h │ │ │ │ ├── AFContextManager.h │ │ │ │ ├── AFContextRequest.h │ │ │ │ ├── AFContextResponse.h │ │ │ │ ├── AFConversation.h │ │ │ │ ├── AFConversationError.h │ │ │ │ ├── AFConversationInsertion.h │ │ │ │ ├── AFConversationItem.h │ │ │ │ ├── AFConversationStorable.h │ │ │ │ ├── AFConversationStore.h │ │ │ │ ├── AFCreateAlarmRequest.h │ │ │ │ ├── AFCreateAlarmResponse.h │ │ │ │ ├── AFCreateMessageRequest.h │ │ │ │ ├── AFDataStore.h │ │ │ │ ├── AFDeleteAlarmRequest.h │ │ │ │ ├── AFDeleteSiriHistoryContext.h │ │ │ │ ├── AFDeleteSiriHistoryContextMutating.h │ │ │ │ ├── AFDeviceRingerSwitchListening.h │ │ │ │ ├── AFDeviceRingerSwitchObserver.h │ │ │ │ ├── AFDialogPhase.h │ │ │ │ ├── AFDictationConnection.h │ │ │ │ ├── AFDictationConnectionServiceDelegate.h │ │ │ │ ├── AFDictationOptions.h │ │ │ │ ├── AFDictationService.h │ │ │ │ ├── AFDictationServiceDelegate.h │ │ │ │ ├── AFDictionarySchema.h │ │ │ │ ├── AFDisambiguationAssistancePrivate.h │ │ │ │ ├── AFDisambiguationEvent.h │ │ │ │ ├── AFDisambiguationInfo.h │ │ │ │ ├── AFDisambiguationStore.h │ │ │ │ ├── AFError.h │ │ │ │ ├── AFExperiment.h │ │ │ │ ├── AFExperimentConfiguration.h │ │ │ │ ├── AFExperimentConfigurationMutating.h │ │ │ │ ├── AFExperimentContext.h │ │ │ │ ├── AFExperimentContextMutating.h │ │ │ │ ├── AFExperimentForSiriVOXSounds.h │ │ │ │ ├── AFExperimentForSiriVOXTapToSiriBehavior.h │ │ │ │ ├── AFExperimentGroup.h │ │ │ │ ├── AFExperimentGroupMutating.h │ │ │ │ ├── AFExperimentMutating.h │ │ │ │ ├── AFFuture.h │ │ │ │ ├── AFGetSettingsRequest.h │ │ │ │ ├── AFGetSettingsResponse.h │ │ │ │ ├── AFGetTimerRequest.h │ │ │ │ ├── AFGetTimerResponse.h │ │ │ │ ├── AFImagePNGData.h │ │ │ │ ├── AFInitiateCallRequest.h │ │ │ │ ├── AFInstrumentationObserverConnection.h │ │ │ │ ├── AFInterstitialCommandWrapper.h │ │ │ │ ├── AFInterstitialConfiguration.h │ │ │ │ ├── AFInterstitialConfigurationMutating.h │ │ │ │ ├── AFInterstitialProvider.h │ │ │ │ ├── AFInterstitialProviderDelegate.h │ │ │ │ ├── AFInvalidating.h │ │ │ │ ├── AFInvocationFeedbackExperiment.h │ │ │ │ ├── AFLanguageDetectionUserContext.h │ │ │ │ ├── AFLinkedListItem.h │ │ │ │ ├── AFLocalization.h │ │ │ │ ├── AFMachServiceSiriTaskDeliverer.h │ │ │ │ ├── AFManagedStorageConnection.h │ │ │ │ ├── AFManagedStorageService.h │ │ │ │ ├── AFManagedStore.h │ │ │ │ ├── AFMediaRemoteDeviceInfo.h │ │ │ │ ├── AFMemoryInfo.h │ │ │ │ ├── AFMemoryInfoMutating.h │ │ │ │ ├── AFMemoryPressureObserver.h │ │ │ │ ├── AFMetrics.h │ │ │ │ ├── AFMultiUserConnection.h │ │ │ │ ├── AFMultiUserService.h │ │ │ │ ├── AFMutableConversationItem.h │ │ │ │ ├── AFMyriadContext.h │ │ │ │ ├── AFMyriadContextMutating.h │ │ │ │ ├── AFMyriadCoordinator.h │ │ │ │ ├── AFMyriadEmergencyCallPunchout.h │ │ │ │ ├── AFMyriadEmergencyManager.h │ │ │ │ ├── AFMyriadMonitor.h │ │ │ │ ├── AFMyriadPerceptualAudioHash.h │ │ │ │ ├── AFMyriadPerceptualAudioHashMutating.h │ │ │ │ ├── AFMyriadRecord.h │ │ │ │ ├── AFNetworkAvailability.h │ │ │ │ ├── AFNetworkAvailabilityObserver.h │ │ │ │ ├── AFNotifyObserver.h │ │ │ │ ├── AFNotifyObserverDelegate.h │ │ │ │ ├── AFNotifyStatePublisher.h │ │ │ │ ├── AFNowPlayingObserver.h │ │ │ │ ├── AFObjectCreatedSiriResponse.h │ │ │ │ ├── AFObjectUpdatedSiriResponse.h │ │ │ │ ├── AFOneArgumentSafetyBlock.h │ │ │ │ ├── AFOpportuneSpeakable.h │ │ │ │ ├── AFOpportuneSpeakingModel.h │ │ │ │ ├── AFOpportuneSpeakingModelDelegate.h │ │ │ │ ├── AFOpportuneSpeakingModelFeedback.h │ │ │ │ ├── AFOpportuneSpeakingModelFeedbackManager.h │ │ │ │ ├── AFOpportuneSpeakingModelServiceProtocol.h │ │ │ │ ├── AFOpportuneSpeakingModuleDataCollection.h │ │ │ │ ├── AFOpportuneSpeakingModuleDataCollectionSanitizedSpeakable.h │ │ │ │ ├── AFPairedBluetoothDevicesObserver.h │ │ │ │ ├── AFPeerInfo.h │ │ │ │ ├── AFPendingSpeechRequestService.h │ │ │ │ ├── AFPhonemeMapper.h │ │ │ │ ├── AFPhonemeTranscription.h │ │ │ │ ├── AFPluginBundle.h │ │ │ │ ├── AFPluginManager.h │ │ │ │ ├── AFPowerAssertionManager.h │ │ │ │ ├── AFPreferences.h │ │ │ │ ├── AFQueue.h │ │ │ │ ├── AFRemoteRequest.h │ │ │ │ ├── AFRemoteRequestWatcher.h │ │ │ │ ├── AFRequestCompletionOptions.h │ │ │ │ ├── AFRequestInfo.h │ │ │ │ ├── AFSUPFunctionProvider.h │ │ │ │ ├── AFSafetyBlock.h │ │ │ │ ├── AFSearchAlarmsRequest.h │ │ │ │ ├── AFSearchAlarmsResponse.h │ │ │ │ ├── AFSecurityConnection.h │ │ │ │ ├── AFSecurityDigestibleChunksProviding.h │ │ │ │ ├── AFSecurityService.h │ │ │ │ ├── AFSetSettingsRequest.h │ │ │ │ ├── AFSetSettingsResponse.h │ │ │ │ ├── AFSetTimerRequest.h │ │ │ │ ├── AFSettingsConnection.h │ │ │ │ ├── AFSettingsConnectionServiceDelegate.h │ │ │ │ ├── AFSettingsDelegate.h │ │ │ │ ├── AFSettingsService.h │ │ │ │ ├── AFSettingsServiceDelegate.h │ │ │ │ ├── AFShowAlarmRequest.h │ │ │ │ ├── AFShowNextEventRequest.h │ │ │ │ ├── AFShowSettingRequest.h │ │ │ │ ├── AFShowTimerRequest.h │ │ │ │ ├── AFSiriAceRequest.h │ │ │ │ ├── AFSiriAcousticIDRequest.h │ │ │ │ ├── AFSiriActivationConnection.h │ │ │ │ ├── AFSiriActivationContext.h │ │ │ │ ├── AFSiriActivationContextMutating.h │ │ │ │ ├── AFSiriActivationHandlerAssistantDaemon.h │ │ │ │ ├── AFSiriActivationHandlerCoreSpeechDaemon.h │ │ │ │ ├── AFSiriActivationHandlerFrontendProcess.h │ │ │ │ ├── AFSiriActivationHandling.h │ │ │ │ ├── AFSiriActivationListener.h │ │ │ │ ├── AFSiriActivationListenerDelegate.h │ │ │ │ ├── AFSiriActivationRequest.h │ │ │ │ ├── AFSiriActivationResult.h │ │ │ │ ├── AFSiriActivationResultMutating.h │ │ │ │ ├── AFSiriActivationService.h │ │ │ │ ├── AFSiriAppContextProviding.h │ │ │ │ ├── AFSiriClientStateManager.h │ │ │ │ ├── AFSiriDebugUIRequest.h │ │ │ │ ├── AFSiriExternalRequest.h │ │ │ │ ├── AFSiriMusicSmartPlayRequest.h │ │ │ │ ├── AFSiriMusicSubscriptionLeaseTakenRequest.h │ │ │ │ ├── AFSiriNotificationRequest.h │ │ │ │ ├── AFSiriPhoneticContactNames.h │ │ │ │ ├── AFSiriRequest.h │ │ │ │ ├── AFSiriRequestFailureHandling.h │ │ │ │ ├── AFSiriRequestHandling.h │ │ │ │ ├── AFSiriRequestSucceededResponse.h │ │ │ │ ├── AFSiriResponse.h │ │ │ │ ├── AFSiriResponseHandling.h │ │ │ │ ├── AFSiriRingtone.h │ │ │ │ ├── AFSiriTask.h │ │ │ │ ├── AFSiriTaskContextProvider.h │ │ │ │ ├── AFSiriTaskDelivering.h │ │ │ │ ├── AFSiriTaskDeliveryHandler.h │ │ │ │ ├── AFSiriTaskExecution.h │ │ │ │ ├── AFSiriTaskService.h │ │ │ │ ├── AFSiriTaskUsageResult.h │ │ │ │ ├── AFSiriTaskmaster.h │ │ │ │ ├── AFSiriTether.h │ │ │ │ ├── AFSiriUsageResultHandling.h │ │ │ │ ├── AFSiriUserNotificationRequest.h │ │ │ │ ├── AFSiriUserNotificationRequestCapabilityManager.h │ │ │ │ ├── AFSpeakableNamespaceProvider.h │ │ │ │ ├── AFSpeakableUtteranceParser.h │ │ │ │ ├── AFSpeechAcousticFeature.h │ │ │ │ ├── AFSpeechAudioAnalytics.h │ │ │ │ ├── AFSpeechCorrectionInfo.h │ │ │ │ ├── AFSpeechInterpretation.h │ │ │ │ ├── AFSpeechPackage.h │ │ │ │ ├── AFSpeechPhrase.h │ │ │ │ ├── AFSpeechRecognition.h │ │ │ │ ├── AFSpeechRecordingEventListening.h │ │ │ │ ├── AFSpeechRequestOptions.h │ │ │ │ ├── AFSpeechService.h │ │ │ │ ├── AFSpeechServiceDelegate.h │ │ │ │ ├── AFSpeechSynthesisRecord.h │ │ │ │ ├── AFSpeechSynthesisRecordMutating.h │ │ │ │ ├── AFSpeechToken.h │ │ │ │ ├── AFSpeechUtterance.h │ │ │ │ ├── AFSyncInfo.h │ │ │ │ ├── AFSyncSnapshot.h │ │ │ │ ├── AFSynchronousClientLite.h │ │ │ │ ├── AFThreeArgumentSafetyBlock.h │ │ │ │ ├── AFTranscriptionType.h │ │ │ │ ├── AFTreeNode.h │ │ │ │ ├── AFTreeNodePropertyListSerialization.h │ │ │ │ ├── AFTriggerlessListeningOptions.h │ │ │ │ ├── AFTwoArgumentSafetyBlock.h │ │ │ │ ├── AFUIApplicationSiriTaskDeliverer.h │ │ │ │ ├── AFUpdateAlarmRequest.h │ │ │ │ ├── AFUpdateAlarmResponse.h │ │ │ │ ├── AFUpdateMessageRequest.h │ │ │ │ ├── AFUserNotificationProvider.h │ │ │ │ ├── AFUserNotificationService.h │ │ │ │ ├── AFUserNotificationServiceDelegate.h │ │ │ │ ├── AFUserUtterance.h │ │ │ │ ├── AFUserUtteranceSelectionResults.h │ │ │ │ ├── AFUtteranceSuggestions.h │ │ │ │ ├── AFVoiceInfo.h │ │ │ │ ├── AFWatchdogTimer.h │ │ │ │ ├── AFXPCWrapper.h │ │ │ │ ├── AssistantServices.h │ │ │ │ ├── BSXPCCoding.h │ │ │ │ ├── Endpointer.h │ │ │ │ ├── NSXPCListenerDelegate.h │ │ │ │ ├── SISchemaClientAnyEvent.h │ │ │ │ ├── SISchemaClientTurnBasedEvent.h │ │ │ │ ├── SISchemaClientTurnContext.h │ │ │ │ ├── STAlarm.h │ │ │ │ ├── STCall.h │ │ │ │ ├── STCity.h │ │ │ │ ├── STContactAddress.h │ │ │ │ ├── STPerson.h │ │ │ │ ├── STPersonContactHandle.h │ │ │ │ ├── STSetting.h │ │ │ │ ├── STSettingChange.h │ │ │ │ ├── STSiriContext.h │ │ │ │ ├── STSiriLocation.h │ │ │ │ ├── STSiriMessage.h │ │ │ │ ├── STSiriModelObject.h │ │ │ │ ├── STTimer.h │ │ │ │ ├── SiriCoreSQLiteRecord.h │ │ │ │ ├── WPHeySiriProtocol.h │ │ │ │ ├── _AFAccessibilityStateMutation.h │ │ │ │ ├── _AFApplicationContextMutation.h │ │ │ │ ├── _AFAudioDeviceInfoMutation.h │ │ │ │ ├── _AFAudioPlaybackRequestMutation.h │ │ │ │ ├── _AFAudioPowerXPCSharedMemory.h │ │ │ │ ├── _AFBluetoothDeviceInfoMutation.h │ │ │ │ ├── _AFBluetoothHeadphoneInEarDetectionStateMutation.h │ │ │ │ ├── _AFBluetoothWirelessSplitterSessionInfoMutation.h │ │ │ │ ├── _AFCallSiteInfoMutation.h │ │ │ │ ├── _AFClientConfigurationMutation.h │ │ │ │ ├── _AFClientInfoMutation.h │ │ │ │ ├── _AFClockAlarmMutation.h │ │ │ │ ├── _AFClockAlarmSnapshotMutation.h │ │ │ │ ├── _AFClockTimerMutation.h │ │ │ │ ├── _AFClockTimerSnapshotMutation.h │ │ │ │ ├── _AFDataStoreEntry.h │ │ │ │ ├── _AFDeleteSiriHistoryContextMutation.h │ │ │ │ ├── _AFExperimentConfigurationMutation.h │ │ │ │ ├── _AFExperimentContextMutation.h │ │ │ │ ├── _AFExperimentGroupMutation.h │ │ │ │ ├── _AFExperimentMutation.h │ │ │ │ ├── _AFInterstitialAction.h │ │ │ │ ├── _AFInterstitialConfigurationMutation.h │ │ │ │ ├── _AFMemoryInfoMutation.h │ │ │ │ ├── _AFMyriadContextMutation.h │ │ │ │ ├── _AFMyriadPerceptualAudioHashMutation.h │ │ │ │ ├── _AFSiriActivationContextMutation.h │ │ │ │ ├── _AFSiriActivationResultMutation.h │ │ │ │ ├── _AFSiriClientState.h │ │ │ │ ├── _AFSpeakableUtterancePassThroughProvider.h │ │ │ │ └── _AFSpeechSynthesisRecordMutation.h │ │ └── src │ │ │ ├── AFAccessibilityObserver.m │ │ │ ├── AFAccessibilityState.m │ │ │ ├── AFAccount.m │ │ │ ├── AFAggregator.m │ │ │ ├── AFAnalytics.m │ │ │ ├── AFAnalyticsConnection.m │ │ │ ├── AFAnalyticsEvent.m │ │ │ ├── AFAnalyticsEventRecord.m │ │ │ ├── AFAnalyticsObserverConnection.m │ │ │ ├── AFAnalyticsTurnBasedInstrumentationContext.m │ │ │ ├── AFAppContextAggregator.m │ │ │ ├── AFApplicationContext.m │ │ │ ├── AFApplicationInfo.m │ │ │ ├── AFAssistedDisambiguationRules.m │ │ │ ├── AFAudioAnalyzer.m │ │ │ ├── AFAudioDeviceInfo.m │ │ │ ├── AFAudioPlaybackRequest.m │ │ │ ├── AFAudioPowerUpdater.m │ │ │ ├── AFAudioPowerXPCProvider.m │ │ │ ├── AFAudioState.m │ │ │ ├── AFBluetoothDeviceInfo.m │ │ │ ├── AFBluetoothHeadphoneInEarDetectionState.m │ │ │ ├── AFBluetoothWirelessSplitterSessionInfo.m │ │ │ ├── AFBluetoothWirelessSplitterSessionStateObserver.m │ │ │ ├── AFBulletin.m │ │ │ ├── AFCallSiteInfo.m │ │ │ ├── AFChildConversationItemList.m │ │ │ ├── AFClientConfiguration.m │ │ │ ├── AFClientInfo.m │ │ │ ├── AFClientLite.m │ │ │ ├── AFClientLiteInternal.m │ │ │ ├── AFClientPluginManager.m │ │ │ ├── AFClockAlarm.m │ │ │ ├── AFClockAlarmObserver.m │ │ │ ├── AFClockAlarmSnapshot.m │ │ │ ├── AFClockItemStorage.m │ │ │ ├── AFClockTimer.m │ │ │ ├── AFClockTimerObserver.m │ │ │ ├── AFClockTimerSnapshot.m │ │ │ ├── AFCoercion.m │ │ │ ├── AFConnection.m │ │ │ ├── AFConnectionAvailabilityObserver.m │ │ │ ├── AFConnectionClientServiceDelegate.m │ │ │ ├── AFConnectionEntitlementCache.m │ │ │ ├── AFConnectionUserInteractionAssertion.m │ │ │ ├── AFContextManager.m │ │ │ ├── AFContextRequest.m │ │ │ ├── AFContextResponse.m │ │ │ ├── AFConversation.m │ │ │ ├── AFConversationError.m │ │ │ ├── AFConversationInsertion.m │ │ │ ├── AFConversationItem.m │ │ │ ├── AFConversationStore.m │ │ │ ├── AFCreateAlarmRequest.m │ │ │ ├── AFCreateAlarmResponse.m │ │ │ ├── AFCreateMessageRequest.m │ │ │ ├── AFDataStore.m │ │ │ ├── AFDeleteAlarmRequest.m │ │ │ ├── AFDeleteSiriHistoryContext.m │ │ │ ├── AFDeviceRingerSwitchObserver.m │ │ │ ├── AFDialogPhase.m │ │ │ ├── AFDictationConnection.m │ │ │ ├── AFDictationConnectionServiceDelegate.m │ │ │ ├── AFDictationOptions.m │ │ │ ├── AFDictionarySchema.m │ │ │ ├── AFDisambiguationEvent.m │ │ │ ├── AFDisambiguationInfo.m │ │ │ ├── AFDisambiguationStore.m │ │ │ ├── AFError.m │ │ │ ├── AFExperiment.m │ │ │ ├── AFExperimentConfiguration.m │ │ │ ├── AFExperimentContext.m │ │ │ ├── AFExperimentGroup.m │ │ │ ├── AFFuture.m │ │ │ ├── AFGetSettingsRequest.m │ │ │ ├── AFGetSettingsResponse.m │ │ │ ├── AFGetTimerRequest.m │ │ │ ├── AFGetTimerResponse.m │ │ │ ├── AFImagePNGData.m │ │ │ ├── AFInitiateCallRequest.m │ │ │ ├── AFInstrumentationObserverConnection.m │ │ │ ├── AFInterstitialCommandWrapper.m │ │ │ ├── AFInterstitialConfiguration.m │ │ │ ├── AFInterstitialProvider.m │ │ │ ├── AFLanguageDetectionUserContext.m │ │ │ ├── AFLinkedListItem.m │ │ │ ├── AFLocalization.m │ │ │ ├── AFMachServiceSiriTaskDeliverer.m │ │ │ ├── AFManagedStorageConnection.m │ │ │ ├── AFMediaRemoteDeviceInfo.m │ │ │ ├── AFMemoryInfo.m │ │ │ ├── AFMemoryPressureObserver.m │ │ │ ├── AFMetrics.m │ │ │ ├── AFMultiUserConnection.m │ │ │ ├── AFMutableConversationItem.m │ │ │ ├── AFMyriadContext.m │ │ │ ├── AFMyriadCoordinator.m │ │ │ ├── AFMyriadEmergencyCallPunchout.m │ │ │ ├── AFMyriadEmergencyManager.m │ │ │ ├── AFMyriadMonitor.m │ │ │ ├── AFMyriadPerceptualAudioHash.m │ │ │ ├── AFMyriadRecord.m │ │ │ ├── AFNetworkAvailability.m │ │ │ ├── AFNotifyObserver.m │ │ │ ├── AFNotifyStatePublisher.m │ │ │ ├── AFNowPlayingObserver.m │ │ │ ├── AFObjectCreatedSiriResponse.m │ │ │ ├── AFObjectUpdatedSiriResponse.m │ │ │ ├── AFOneArgumentSafetyBlock.m │ │ │ ├── AFOpportuneSpeakingModelFeedback.m │ │ │ ├── AFOpportuneSpeakingModelFeedbackManager.m │ │ │ ├── AFOpportuneSpeakingModuleDataCollection.m │ │ │ ├── AFOpportuneSpeakingModuleDataCollectionSanitizedSpeakable.m │ │ │ ├── AFPairedBluetoothDevicesObserver.m │ │ │ ├── AFPeerInfo.m │ │ │ ├── AFPhonemeMapper.m │ │ │ ├── AFPhonemeTranscription.m │ │ │ ├── AFPluginBundle.m │ │ │ ├── AFPluginManager.m │ │ │ ├── AFPowerAssertionManager.m │ │ │ ├── AFPreferences.m │ │ │ ├── AFQueue.m │ │ │ ├── AFRemoteRequest.m │ │ │ ├── AFRemoteRequestWatcher.m │ │ │ ├── AFRequestCompletionOptions.m │ │ │ ├── AFRequestInfo.m │ │ │ ├── AFSUPFunctionProvider.m │ │ │ ├── AFSafetyBlock.m │ │ │ ├── AFSearchAlarmsRequest.m │ │ │ ├── AFSearchAlarmsResponse.m │ │ │ ├── AFSecurityConnection.m │ │ │ ├── AFSetSettingsRequest.m │ │ │ ├── AFSetSettingsResponse.m │ │ │ ├── AFSetTimerRequest.m │ │ │ ├── AFSettingsConnection.m │ │ │ ├── AFSettingsConnectionServiceDelegate.m │ │ │ ├── AFShowAlarmRequest.m │ │ │ ├── AFShowNextEventRequest.m │ │ │ ├── AFShowSettingRequest.m │ │ │ ├── AFShowTimerRequest.m │ │ │ ├── AFSiriAceRequest.m │ │ │ ├── AFSiriAcousticIDRequest.m │ │ │ ├── AFSiriActivationConnection.m │ │ │ ├── AFSiriActivationContext.m │ │ │ ├── AFSiriActivationHandlerAssistantDaemon.m │ │ │ ├── AFSiriActivationHandlerCoreSpeechDaemon.m │ │ │ ├── AFSiriActivationHandlerFrontendProcess.m │ │ │ ├── AFSiriActivationListener.m │ │ │ ├── AFSiriActivationRequest.m │ │ │ ├── AFSiriActivationResult.m │ │ │ ├── AFSiriClientStateManager.m │ │ │ ├── AFSiriDebugUIRequest.m │ │ │ ├── AFSiriMusicSmartPlayRequest.m │ │ │ ├── AFSiriMusicSubscriptionLeaseTakenRequest.m │ │ │ ├── AFSiriNotificationRequest.m │ │ │ ├── AFSiriPhoneticContactNames.m │ │ │ ├── AFSiriRequest.m │ │ │ ├── AFSiriRequestSucceededResponse.m │ │ │ ├── AFSiriResponse.m │ │ │ ├── AFSiriRingtone.m │ │ │ ├── AFSiriTask.m │ │ │ ├── AFSiriTaskContextProvider.m │ │ │ ├── AFSiriTaskDeliveryHandler.m │ │ │ ├── AFSiriTaskExecution.m │ │ │ ├── AFSiriTaskService.m │ │ │ ├── AFSiriTaskUsageResult.m │ │ │ ├── AFSiriTaskmaster.m │ │ │ ├── AFSiriTether.m │ │ │ ├── AFSiriUserNotificationRequest.m │ │ │ ├── AFSiriUserNotificationRequestCapabilityManager.m │ │ │ ├── AFSpeakableUtteranceParser.m │ │ │ ├── AFSpeechAcousticFeature.m │ │ │ ├── AFSpeechAudioAnalytics.m │ │ │ ├── AFSpeechCorrectionInfo.m │ │ │ ├── AFSpeechInterpretation.m │ │ │ ├── AFSpeechPackage.m │ │ │ ├── AFSpeechPhrase.m │ │ │ ├── AFSpeechRecognition.m │ │ │ ├── AFSpeechRequestOptions.m │ │ │ ├── AFSpeechSynthesisRecord.m │ │ │ ├── AFSpeechToken.m │ │ │ ├── AFSpeechUtterance.m │ │ │ ├── AFSyncInfo.m │ │ │ ├── AFSyncSnapshot.m │ │ │ ├── AFSynchronousClientLite.m │ │ │ ├── AFThreeArgumentSafetyBlock.m │ │ │ ├── AFTreeNode.m │ │ │ ├── AFTreeNodePropertyListSerialization.m │ │ │ ├── AFTriggerlessListeningOptions.m │ │ │ ├── AFTwoArgumentSafetyBlock.m │ │ │ ├── AFUIApplicationSiriTaskDeliverer.m │ │ │ ├── AFUpdateAlarmRequest.m │ │ │ ├── AFUpdateAlarmResponse.m │ │ │ ├── AFUpdateMessageRequest.m │ │ │ ├── AFUserNotificationProvider.m │ │ │ ├── AFUserUtterance.m │ │ │ ├── AFUserUtteranceSelectionResults.m │ │ │ ├── AFUtteranceSuggestions.m │ │ │ ├── AFVoiceInfo.m │ │ │ ├── AFWatchdogTimer.m │ │ │ ├── AFXPCWrapper.m │ │ │ ├── AssistantServices.m │ │ │ ├── SISchemaClientAnyEvent.m │ │ │ ├── SISchemaClientTurnBasedEvent.m │ │ │ ├── SISchemaClientTurnContext.m │ │ │ ├── STAlarm.m │ │ │ ├── STCall.m │ │ │ ├── STCity.m │ │ │ ├── STContactAddress.m │ │ │ ├── STPerson.m │ │ │ ├── STPersonContactHandle.m │ │ │ ├── STSetting.m │ │ │ ├── STSettingChange.m │ │ │ ├── STSiriContext.m │ │ │ ├── STSiriLocation.m │ │ │ ├── STSiriMessage.m │ │ │ ├── STSiriModelObject.m │ │ │ ├── STTimer.m │ │ │ ├── _AFAccessibilityStateMutation.m │ │ │ ├── _AFApplicationContextMutation.m │ │ │ ├── _AFAudioDeviceInfoMutation.m │ │ │ ├── _AFAudioPlaybackRequestMutation.m │ │ │ ├── _AFAudioPowerXPCSharedMemory.m │ │ │ ├── _AFBluetoothDeviceInfoMutation.m │ │ │ ├── _AFBluetoothHeadphoneInEarDetectionStateMutation.m │ │ │ ├── _AFBluetoothWirelessSplitterSessionInfoMutation.m │ │ │ ├── _AFCallSiteInfoMutation.m │ │ │ ├── _AFClientConfigurationMutation.m │ │ │ ├── _AFClientInfoMutation.m │ │ │ ├── _AFClockAlarmMutation.m │ │ │ ├── _AFClockAlarmSnapshotMutation.m │ │ │ ├── _AFClockTimerMutation.m │ │ │ ├── _AFClockTimerSnapshotMutation.m │ │ │ ├── _AFDataStoreEntry.m │ │ │ ├── _AFDeleteSiriHistoryContextMutation.m │ │ │ ├── _AFExperimentConfigurationMutation.m │ │ │ ├── _AFExperimentContextMutation.m │ │ │ ├── _AFExperimentGroupMutation.m │ │ │ ├── _AFExperimentMutation.m │ │ │ ├── _AFInterstitialAction.m │ │ │ ├── _AFInterstitialConfigurationMutation.m │ │ │ ├── _AFMemoryInfoMutation.m │ │ │ ├── _AFMyriadContextMutation.m │ │ │ ├── _AFMyriadPerceptualAudioHashMutation.m │ │ │ ├── _AFSiriActivationContextMutation.m │ │ │ ├── _AFSiriActivationResultMutation.m │ │ │ ├── _AFSiriClientState.m │ │ │ ├── _AFSpeakableUtterancePassThroughProvider.m │ │ │ └── _AFSpeechSynthesisRecordMutation.m │ ├── AuthKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AuthKit │ │ │ │ ├── AKAbsintheSigner.h │ │ │ │ ├── AKAccountManager.h │ │ │ │ ├── AKAnisetteData.h │ │ │ │ ├── AKAnisetteProvisioningController.h │ │ │ │ ├── AKAnisetteProvisioningDaemonInterface.h │ │ │ │ ├── AKAppleIDAuthenticationClientInterface.h │ │ │ │ ├── AKAppleIDAuthenticationContext.h │ │ │ │ ├── AKAppleIDAuthenticationController.h │ │ │ │ ├── AKAppleIDAuthenticationDaemonInterface.h │ │ │ │ ├── AKAppleIDServerResourceLoadDelegate.h │ │ │ │ ├── AKAppleIDSession.h │ │ │ │ ├── AKCDPFactory.h │ │ │ │ ├── AKCertificatePinning.h │ │ │ │ ├── AKCircleRequestContext.h │ │ │ │ ├── AKCircleRequestPayload.h │ │ │ │ ├── AKConfiguration.h │ │ │ │ ├── AKDevice.h │ │ │ │ ├── AKDeviceListRequestContext.h │ │ │ │ ├── AKFollowUpFactoryImpl.h │ │ │ │ ├── AKFollowUpProviderImpl.h │ │ │ │ ├── AKFollowUpTearDownContext.h │ │ │ │ ├── AKMasterToken.h │ │ │ │ ├── AKRemoteDevice.h │ │ │ │ ├── AKToken.h │ │ │ │ ├── AKURLBag.h │ │ │ │ ├── AKURLDataTask.h │ │ │ │ ├── AKURLSession.h │ │ │ │ ├── AuthKit.h │ │ │ │ ├── AuthKit_Private.h │ │ │ │ └── _AKAppleIDAuthenticationContextManager.h │ │ └── src │ │ │ ├── AKAbsintheSigner.m │ │ │ ├── AKAccountManager.m │ │ │ ├── AKAnisetteData.m │ │ │ ├── AKAnisetteProvisioningController.m │ │ │ ├── AKAnisetteProvisioningDaemonInterface.m │ │ │ ├── AKAppleIDAuthenticationClientInterface.m │ │ │ ├── AKAppleIDAuthenticationContext.m │ │ │ ├── AKAppleIDAuthenticationController.m │ │ │ ├── AKAppleIDAuthenticationDaemonInterface.m │ │ │ ├── AKAppleIDServerResourceLoadDelegate.m │ │ │ ├── AKAppleIDSession.m │ │ │ ├── AKCDPFactory.m │ │ │ ├── AKCertificatePinning.m │ │ │ ├── AKCircleRequestContext.m │ │ │ ├── AKCircleRequestPayload.m │ │ │ ├── AKConfiguration.m │ │ │ ├── AKDevice.m │ │ │ ├── AKDeviceListRequestContext.m │ │ │ ├── AKFollowUpFactoryImpl.m │ │ │ ├── AKFollowUpProviderImpl.m │ │ │ ├── AKFollowUpTearDownContext.m │ │ │ ├── AKMasterToken.m │ │ │ ├── AKToken.m │ │ │ ├── AKURLBag.m │ │ │ ├── AKURLDataTask.m │ │ │ ├── AKURLSession.m │ │ │ ├── _AKAppleIDAuthenticationContextManager.m │ │ │ └── functions.c │ ├── AuthKitUI │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── AuthKitUI │ │ │ │ ├── AKAccessibleContainerView.h │ │ │ │ ├── AKAppleIDAuthenticationDelegate.h │ │ │ │ ├── AKAppleIDAuthenticationInAppContext.h │ │ │ │ ├── AKAppleIDAuthenticationInAppContextAlertDelegate.h │ │ │ │ ├── AKAppleIDAuthenticationInAppContextPasswordDelegate.h │ │ │ │ ├── AKAppleIDAuthenticationInAssistantContext.h │ │ │ │ ├── AKAppleIDAuthenticationLimitedUIProvider.h │ │ │ │ ├── AKAppleIDAuthenticationMacOSExtenstionContext.h │ │ │ │ ├── AKAppleIDAuthenticationSurrogateUIProvider.h │ │ │ │ ├── AKAppleIDAuthenticationUIProvider.h │ │ │ │ ├── AKAppleIDAuthenticationUISurrogateContext.h │ │ │ │ ├── AKAppleIDAuthenticationiCloudPrefPaneContext.h │ │ │ │ ├── AKAppleIDAuthenticationiCloudPrefPaneSecondFactorViewController.h │ │ │ │ ├── AKAppleIDAuthenticationiCloudPrefPaneViewController.h │ │ │ │ ├── AKAppleIDServerAuthenticationUIProvider.h │ │ │ │ ├── AKAppleIDServerUIContextController.h │ │ │ │ ├── AKAppleIDServerUIDataHarvester.h │ │ │ │ ├── AKAuthWebTabView.h │ │ │ │ ├── AKAuthenticationPromptController.h │ │ │ │ ├── AKAuthorizationButton.h │ │ │ │ ├── AKAuthorizationConfirmPaneViewController.h │ │ │ │ ├── AKAuthorizationEditableDataSources.h │ │ │ │ ├── AKAuthorizationEmailScopeViewController.h │ │ │ │ ├── AKAuthorizationEmailScopeViewControllerDelegate.h │ │ │ │ ├── AKAuthorizationFirstTimePaneViewController.h │ │ │ │ ├── AKAuthorizationFirstTimeView.h │ │ │ │ ├── AKAuthorizationLoginChoiceView.h │ │ │ │ ├── AKAuthorizationNameFormatter.h │ │ │ │ ├── AKAuthorizationNameScopeView.h │ │ │ │ ├── AKAuthorizationNameScopeViewController.h │ │ │ │ ├── AKAuthorizationNameScopeViewControllerDelegate.h │ │ │ │ ├── AKAuthorizationNavigationController.h │ │ │ │ ├── AKAuthorizationPaneAutomaticResizeDelegate.h │ │ │ │ ├── AKAuthorizationPaneContext.h │ │ │ │ ├── AKAuthorizationPaneViewController.h │ │ │ │ ├── AKAuthorizationPaneViewControllerDelegate.h │ │ │ │ ├── AKAuthorizationPasswordAuthenticationDelegate.h │ │ │ │ ├── AKAuthorizationPasswordAuthenticationViewController.h │ │ │ │ ├── AKAuthorizationPasswordRequestViewController.h │ │ │ │ ├── AKAuthorizationPresenterViewController.h │ │ │ │ ├── AKAuthorizationRadioButtonView.h │ │ │ │ ├── AKAuthorizationRightUI.h │ │ │ │ ├── AKAuthorizationScopeChoices.h │ │ │ │ ├── AKAuthorizationSubPane.h │ │ │ │ ├── AKAuthorizationSubPaneAdding.h │ │ │ │ ├── AKAuthorizationSubPaneConfirmButton.h │ │ │ │ ├── AKAuthorizationSubPaneConfirmButtonDelegate.h │ │ │ │ ├── AKAuthorizationSubPaneImage.h │ │ │ │ ├── AKAuthorizationSubPaneInfoLabel.h │ │ │ │ ├── AKAuthorizationSubPaneLoginChoice.h │ │ │ │ ├── AKAuthorizationSubPaneLoginChoiceDelegate.h │ │ │ │ ├── AKAuthorizationSubPanePrivacyLink.h │ │ │ │ ├── AKAuthorizationSubPaneSeparator.h │ │ │ │ ├── AKAuthorizationUIProvider.h │ │ │ │ ├── AKAuthorizationUIProviderImp.h │ │ │ │ ├── AKAuthorizationViewController.h │ │ │ │ ├── AKAuthorizationViewHelper.h │ │ │ │ ├── AKAuthorizationViewHostDelegate.h │ │ │ │ ├── AKAuthorizationViewRemoteDelegate.h │ │ │ │ ├── AKAuthorizationWindowController.h │ │ │ │ ├── AKBarButtonItem.h │ │ │ │ ├── AKBaseSignInViewController.h │ │ │ │ ├── AKBasicLoginActions.h │ │ │ │ ├── AKBasicLoginAnimateProtocol.h │ │ │ │ ├── AKBasicLoginSecondFactorActions.h │ │ │ │ ├── AKCAReporter.h │ │ │ │ ├── AKCurvePoint.h │ │ │ │ ├── AKDateFormatter.h │ │ │ │ ├── AKDeviceInfo.h │ │ │ │ ├── AKGeneratedComplexCodeFormatter.h │ │ │ │ ├── AKICAUIDelegate.h │ │ │ │ ├── AKICAWebKitViewController.h │ │ │ │ ├── AKICAWebKitViewControllerDelegate.h │ │ │ │ ├── AKIDPHandler.h │ │ │ │ ├── AKIDPPresentationController.h │ │ │ │ ├── AKIDPProvidedSignInViewController.h │ │ │ │ ├── AKIDPProvidedSignInWindow.h │ │ │ │ ├── AKIcon.h │ │ │ │ ├── AKInAppAuthenticationMacOSUIProvider.h │ │ │ │ ├── AKInAppAuthenticationUIProvider.h │ │ │ │ ├── AKInAssistantNavigationHandler.h │ │ │ │ ├── AKInAssistantSecondFactorCodeEntry.h │ │ │ │ ├── AKInfoLabel.h │ │ │ │ ├── AKInlineSignInViewController.h │ │ │ │ ├── AKKeepUsingController.h │ │ │ │ ├── AKLegacyInlineSignInViewController.h │ │ │ │ ├── AKMBICAUIDelegate.h │ │ │ │ ├── AKMaxLengthFormatter.h │ │ │ │ ├── AKNameTextField.h │ │ │ │ ├── AKNameTextFieldDelegate.h │ │ │ │ ├── AKNavigationController.h │ │ │ │ ├── AKNavigationItem.h │ │ │ │ ├── AKNoCodeReceivedController.h │ │ │ │ ├── AKPaddedTextFieldCell.h │ │ │ │ ├── AKPinFieldBoxUIElement.h │ │ │ │ ├── AKPinFieldView.h │ │ │ │ ├── AKPinFieldViewDelegate.h │ │ │ │ ├── AKRoundLoginContainerView.h │ │ │ │ ├── AKRoundedPath.h │ │ │ │ ├── AKSatoriReport.h │ │ │ │ ├── AKSecondFactorCodeEntryController.h │ │ │ │ ├── AKSecondFactorCodeEntryDelegate.h │ │ │ │ ├── AKShortInlineSignInViewController.h │ │ │ │ ├── AKSignInPromptController.h │ │ │ │ ├── AKTapToSignInViewController.h │ │ │ │ ├── AKTextualLinkButton.h │ │ │ │ ├── AKTiburonAuthorizationUIReport.h │ │ │ │ ├── AKTiburonPasswordUIReport.h │ │ │ │ ├── AKTiburonRequestAttemptReport.h │ │ │ │ ├── AKTiburonRequestReport.h │ │ │ │ ├── AKTooManyAttemptsController.h │ │ │ │ ├── AKTouchBarController.h │ │ │ │ ├── AKTrustedDeviceViewItem.h │ │ │ │ ├── AKURLRequestApprover.h │ │ │ │ ├── AKWebKitController.h │ │ │ │ ├── AKWebKitControllerDelegate.h │ │ │ │ ├── AKWebViewButtonBar.h │ │ │ │ ├── AKWebViewButtonBarDelegate.h │ │ │ │ ├── AKiCDPDeviceValidationFlowViewController.h │ │ │ │ ├── AKiCDPEnrollmentDeviceListViewController.h │ │ │ │ ├── AKiCDPEnrollmentDevicePasscodeViewController.h │ │ │ │ ├── AKiCDPRecoveryKeyDelegate.h │ │ │ │ ├── AKiCDPRecoveryKeyViewController.h │ │ │ │ ├── AKiCDPValidationDelegate.h │ │ │ │ ├── AKiCDPValidationDevice.h │ │ │ │ ├── AKiCDPWaitForApprovalViewController.h │ │ │ │ ├── AKiCSCEntryView.h │ │ │ │ ├── AKiCSCEntryViewDelegate.h │ │ │ │ ├── AuthKitUI.h │ │ │ │ ├── AuthWebViewDelegate.h │ │ │ │ ├── InternetAccountExportsAuthKit.h │ │ │ │ ├── JSExport.h │ │ │ │ ├── MBUIDelegate.h │ │ │ │ ├── MBWebKitViewControllerDelegate.h │ │ │ │ ├── NSControlTextEditingDelegate.h │ │ │ │ ├── NSTableViewDelegate.h │ │ │ │ ├── NSTextFieldDelegate.h │ │ │ │ ├── NSTouchBarProvider.h │ │ │ │ ├── WKNavigationDelegate.h │ │ │ │ ├── WebFrameLoadDelegate.h │ │ │ │ ├── WebResourceLoadDelegate.h │ │ │ │ └── WebUIDelegate.h │ │ └── src │ │ │ ├── AKAccessibleContainerView.m │ │ │ ├── AKAppleIDAuthenticationInAppContext.m │ │ │ ├── AKAppleIDAuthenticationInAssistantContext.m │ │ │ ├── AKAppleIDAuthenticationMacOSExtenstionContext.m │ │ │ ├── AKAppleIDAuthenticationUISurrogateContext.m │ │ │ ├── AKAppleIDAuthenticationiCloudPrefPaneContext.m │ │ │ ├── AKAppleIDAuthenticationiCloudPrefPaneSecondFactorViewController.m │ │ │ ├── AKAppleIDAuthenticationiCloudPrefPaneViewController.m │ │ │ ├── AKAppleIDServerUIContextController.m │ │ │ ├── AKAppleIDServerUIDataHarvester.m │ │ │ ├── AKAuthWebTabView.m │ │ │ ├── AKAuthenticationPromptController.m │ │ │ ├── AKAuthorizationButton.m │ │ │ ├── AKAuthorizationConfirmPaneViewController.m │ │ │ ├── AKAuthorizationEmailScopeViewController.m │ │ │ ├── AKAuthorizationFirstTimePaneViewController.m │ │ │ ├── AKAuthorizationFirstTimeView.m │ │ │ ├── AKAuthorizationLoginChoiceView.m │ │ │ ├── AKAuthorizationNameFormatter.m │ │ │ ├── AKAuthorizationNameScopeView.m │ │ │ ├── AKAuthorizationNameScopeViewController.m │ │ │ ├── AKAuthorizationNavigationController.m │ │ │ ├── AKAuthorizationPaneContext.m │ │ │ ├── AKAuthorizationPaneViewController.m │ │ │ ├── AKAuthorizationPasswordAuthenticationViewController.m │ │ │ ├── AKAuthorizationPasswordRequestViewController.m │ │ │ ├── AKAuthorizationPresenterViewController.m │ │ │ ├── AKAuthorizationRadioButtonView.m │ │ │ ├── AKAuthorizationRightUI.m │ │ │ ├── AKAuthorizationScopeChoices.m │ │ │ ├── AKAuthorizationSubPane.m │ │ │ ├── AKAuthorizationSubPaneConfirmButton.m │ │ │ ├── AKAuthorizationSubPaneImage.m │ │ │ ├── AKAuthorizationSubPaneInfoLabel.m │ │ │ ├── AKAuthorizationSubPaneLoginChoice.m │ │ │ ├── AKAuthorizationSubPanePrivacyLink.m │ │ │ ├── AKAuthorizationSubPaneSeparator.m │ │ │ ├── AKAuthorizationUIProviderImp.m │ │ │ ├── AKAuthorizationViewController.m │ │ │ ├── AKAuthorizationViewHelper.m │ │ │ ├── AKAuthorizationWindowController.m │ │ │ ├── AKBarButtonItem.m │ │ │ ├── AKBaseSignInViewController.m │ │ │ ├── AKBasicLoginActions.m │ │ │ ├── AKBasicLoginSecondFactorActions.m │ │ │ ├── AKCAReporter.m │ │ │ ├── AKCurvePoint.m │ │ │ ├── AKDateFormatter.m │ │ │ ├── AKDeviceInfo.m │ │ │ ├── AKGeneratedComplexCodeFormatter.m │ │ │ ├── AKICAWebKitViewController.m │ │ │ ├── AKIDPHandler.m │ │ │ ├── AKIDPProvidedSignInViewController.m │ │ │ ├── AKIDPProvidedSignInWindow.m │ │ │ ├── AKIcon.m │ │ │ ├── AKInAppAuthenticationMacOSUIProvider.m │ │ │ ├── AKInAssistantSecondFactorCodeEntry.m │ │ │ ├── AKInfoLabel.m │ │ │ ├── AKInlineSignInViewController.m │ │ │ ├── AKKeepUsingController.m │ │ │ ├── AKLegacyInlineSignInViewController.m │ │ │ ├── AKMaxLengthFormatter.m │ │ │ ├── AKNameTextField.m │ │ │ ├── AKNavigationController.m │ │ │ ├── AKNavigationItem.m │ │ │ ├── AKNoCodeReceivedController.m │ │ │ ├── AKPaddedTextFieldCell.m │ │ │ ├── AKPinFieldBoxUIElement.m │ │ │ ├── AKPinFieldView.m │ │ │ ├── AKRoundLoginContainerView.m │ │ │ ├── AKRoundedPath.m │ │ │ ├── AKSatoriReport.m │ │ │ ├── AKSecondFactorCodeEntryController.m │ │ │ ├── AKShortInlineSignInViewController.m │ │ │ ├── AKSignInPromptController.m │ │ │ ├── AKTapToSignInViewController.m │ │ │ ├── AKTextualLinkButton.m │ │ │ ├── AKTiburonAuthorizationUIReport.m │ │ │ ├── AKTiburonPasswordUIReport.m │ │ │ ├── AKTiburonRequestAttemptReport.m │ │ │ ├── AKTiburonRequestReport.m │ │ │ ├── AKTooManyAttemptsController.m │ │ │ ├── AKTouchBarController.m │ │ │ ├── AKTrustedDeviceViewItem.m │ │ │ ├── AKURLRequestApprover.m │ │ │ ├── AKWebKitController.m │ │ │ ├── AKWebViewButtonBar.m │ │ │ ├── AKiCDPDeviceValidationFlowViewController.m │ │ │ ├── AKiCDPEnrollmentDeviceListViewController.m │ │ │ ├── AKiCDPEnrollmentDevicePasscodeViewController.m │ │ │ ├── AKiCDPRecoveryKeyViewController.m │ │ │ ├── AKiCDPValidationDevice.m │ │ │ ├── AKiCDPWaitForApprovalViewController.m │ │ │ ├── AKiCSCEntryView.m │ │ │ └── AuthKitUI.m │ ├── Bom │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Bom │ │ │ │ └── Bom.h │ │ └── src │ │ │ └── Bom.c │ ├── CMakeLists.txt │ ├── ConfigurationProfiles │ │ ├── CMakeLists.txt │ │ ├── constants.m │ │ ├── include │ │ │ └── ConfigurationProfiles │ │ │ │ ├── CPBootstrapToken.h │ │ │ │ ├── CPCompositorWatcher.h │ │ │ │ ├── CPIdentificationPayloads.h │ │ │ │ ├── CPMCXTools.h │ │ │ │ ├── CPProfile.h │ │ │ │ ├── CPProfileAdditionalWarningsHelper.h │ │ │ │ ├── CPProfileDomainService.h │ │ │ │ ├── CPProfileDomainServiceConnectionHandler.h │ │ │ │ ├── CPProfileDomainServiceHostXPCProtocol.h │ │ │ │ ├── CPProfileDomainServiceRequestProtocol.h │ │ │ │ ├── CPProfileDomainServiceXPCProtocol.h │ │ │ │ ├── CPProfileManager.h │ │ │ │ ├── CPProfileMissingFieldHelper.h │ │ │ │ ├── CPProfileMissingFieldHelperProtocol.h │ │ │ │ ├── CPProvisioningManager.h │ │ │ │ ├── CPProvisioningProfile.h │ │ │ │ ├── ConfigurationProfiles.h │ │ │ │ ├── MCTeslaConfiguration.h │ │ │ │ ├── MCTeslaConfigurationFetchInterface.h │ │ │ │ ├── MCXPlugInKitManagement.h │ │ │ │ ├── MCXPlugInKitManagementCache.h │ │ │ │ ├── NSXPCConnectionDelegate.h │ │ │ │ └── NSXPCListenerDelegate.h │ │ └── src │ │ │ ├── CPCompositorWatcher.m │ │ │ ├── CPIdentificationPayloads.m │ │ │ ├── CPMCXTools.m │ │ │ ├── CPProfile.m │ │ │ ├── CPProfileAdditionalWarningsHelper.m │ │ │ ├── CPProfileDomainService.m │ │ │ ├── CPProfileDomainServiceConnectionHandler.m │ │ │ ├── CPProfileManager.m │ │ │ ├── CPProfileMissingFieldHelper.m │ │ │ ├── CPProvisioningManager.m │ │ │ ├── CPProvisioningProfile.m │ │ │ ├── ConfigurationProfiles.m │ │ │ ├── MCTeslaConfiguration.m │ │ │ ├── MCXPlugInKitManagement.m │ │ │ └── MCXPlugInKitManagementCache.m │ ├── CoreAnalytics │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreAnalytics │ │ │ │ ├── AnalyticsConfigurationObserver.h │ │ │ │ ├── AnalyticsEventObserver.h │ │ │ │ └── CoreAnalytics.h │ │ └── src │ │ │ ├── AnalyticsConfigurationObserver.m │ │ │ ├── AnalyticsEventObserver.m │ │ │ └── CoreAnalytics.mm │ ├── CoreSimulator │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreSimulator │ │ │ │ ├── CoreSimulator.h │ │ │ │ ├── NSArray+SimPasteboardItem.h │ │ │ │ ├── NSObjectROCKDeserializable.h │ │ │ │ ├── NSObjectROCKSerializable.h │ │ │ │ ├── NSPasteboardItem+SimPasteboardItem.h │ │ │ │ ├── NSPasteboardItemDataProvider.h │ │ │ │ ├── NSString+SimPasteboardItem.h │ │ │ │ ├── OS_xpc_object.h │ │ │ │ ├── ROCKImpersonatable.h │ │ │ │ ├── ROCKImpersonateable.h │ │ │ │ ├── ROCKMemoizable.h │ │ │ │ ├── SimAudioDescriptorState.h │ │ │ │ ├── SimAudioHostRouteDescriptorState.h │ │ │ │ ├── SimDevice.h │ │ │ │ ├── SimDeviceBootInfo.h │ │ │ │ ├── SimDeviceDataMigrationPluginResult.h │ │ │ │ ├── SimDeviceIO.h │ │ │ │ ├── SimDeviceIOClient.h │ │ │ │ ├── SimDeviceIOClientProtocol.h │ │ │ │ ├── SimDeviceIODeviceTypeInterface.h │ │ │ │ ├── SimDeviceIOInterface.h │ │ │ │ ├── SimDeviceIOLoadedBundle.h │ │ │ │ ├── SimDeviceIOLogger.h │ │ │ │ ├── SimDeviceIOMachServiceProvider.h │ │ │ │ ├── SimDeviceIOPortDescriptorState.h │ │ │ │ ├── SimDeviceIOProtocol.h │ │ │ │ ├── SimDeviceIORuntimeInterface.h │ │ │ │ ├── SimDeviceIOServer.h │ │ │ │ ├── SimDeviceIOServerLogger.h │ │ │ │ ├── SimDeviceNotificationManager.h │ │ │ │ ├── SimDeviceNotifier.h │ │ │ │ ├── SimDevicePair.h │ │ │ │ ├── SimDevicePasteboard.h │ │ │ │ ├── SimDevicePasteboardConnection.h │ │ │ │ ├── SimDevicePasteboardItem.h │ │ │ │ ├── SimDeviceSet.h │ │ │ │ ├── SimDeviceType.h │ │ │ │ ├── SimDiskImage.h │ │ │ │ ├── SimDiskImageIdentifier.h │ │ │ │ ├── SimDiskImageManager.h │ │ │ │ ├── SimDiskImageRuntimeInfo.h │ │ │ │ ├── SimDisplayDefaultDescriptorState.h │ │ │ │ ├── SimDisplayDescriptorState.h │ │ │ │ ├── SimEnvironmentProvider.h │ │ │ │ ├── SimHostResourceChecker.h │ │ │ │ ├── SimIdentityClient.h │ │ │ │ ├── SimIdentityDevice.h │ │ │ │ ├── SimIdentityManager.h │ │ │ │ ├── SimIdentitySystem.h │ │ │ │ ├── SimKnownSDKEntry.h │ │ │ │ ├── SimLaunchHostClient.h │ │ │ │ ├── SimLaunchHostConnection.h │ │ │ │ ├── SimLegacyHIDDefaultDescriptorState.h │ │ │ │ ├── SimLegacyHIDDescriptorState.h │ │ │ │ ├── SimLibLaunchInstance.h │ │ │ │ ├── SimLocalThrowable.h │ │ │ │ ├── SimMachPortServer.h │ │ │ │ ├── SimNSPasteboard.h │ │ │ │ ├── SimNSPasteboardItem.h │ │ │ │ ├── SimNearbyDevice.h │ │ │ │ ├── SimNearbyDeviceManager.h │ │ │ │ ├── SimNearbyPeer.h │ │ │ │ ├── SimNotificationManager.h │ │ │ │ ├── SimNotificationManagerToken.h │ │ │ │ ├── SimPasteboard.h │ │ │ │ ├── SimPasteboardItem.h │ │ │ │ ├── SimPasteboardItemData.h │ │ │ │ ├── SimPasteboardItemDataProvider.h │ │ │ │ ├── SimPasteboardItemWrappedData.h │ │ │ │ ├── SimPasteboardPortMap.h │ │ │ │ ├── SimPasteboardSyncPool.h │ │ │ │ ├── SimPasteboardSyncPoolObject.h │ │ │ │ ├── SimPasteboardSyncPoolProtocol.h │ │ │ │ ├── SimPendingOperation.h │ │ │ │ ├── SimPlatformInfo.h │ │ │ │ ├── SimProfileBundle.h │ │ │ │ ├── SimProfileModTime.h │ │ │ │ ├── SimProfilesPathMonitor.h │ │ │ │ ├── SimRuntime.h │ │ │ │ ├── SimRuntimeMapData.h │ │ │ │ ├── SimRuntimePairingRequirements.h │ │ │ │ ├── SimSDKInfo.h │ │ │ │ ├── SimSelectedRuntimePolicyResult.h │ │ │ │ ├── SimServiceContext.h │ │ │ │ ├── SimVolumeManager.h │ │ │ │ ├── SimVolumeManagerNotification.h │ │ │ │ └── _SimDeallocSentinel.h │ │ └── src │ │ │ ├── CoreSimulator.m │ │ │ ├── NSArray+SimPasteboardItem.m │ │ │ ├── NSPasteboardItem+SimPasteboardItem.m │ │ │ ├── NSString+SimPasteboardItem.m │ │ │ ├── SimAudioHostRouteDescriptorState.m │ │ │ ├── SimDevice.m │ │ │ ├── SimDeviceBootInfo.m │ │ │ ├── SimDeviceDataMigrationPluginResult.m │ │ │ ├── SimDeviceIO.m │ │ │ ├── SimDeviceIOClient.m │ │ │ ├── SimDeviceIOLoadedBundle.m │ │ │ ├── SimDeviceIOServer.m │ │ │ ├── SimDeviceIOServerLogger.m │ │ │ ├── SimDeviceNotificationManager.m │ │ │ ├── SimDevicePair.m │ │ │ ├── SimDevicePasteboard.m │ │ │ ├── SimDevicePasteboardConnection.m │ │ │ ├── SimDevicePasteboardItem.m │ │ │ ├── SimDeviceSet.m │ │ │ ├── SimDeviceType.m │ │ │ ├── SimDiskImage.m │ │ │ ├── SimDiskImageIdentifier.m │ │ │ ├── SimDiskImageManager.m │ │ │ ├── SimDiskImageRuntimeInfo.m │ │ │ ├── SimDisplayDefaultDescriptorState.m │ │ │ ├── SimHostResourceChecker.m │ │ │ ├── SimIdentityClient.m │ │ │ ├── SimIdentityDevice.m │ │ │ ├── SimIdentityManager.m │ │ │ ├── SimKnownSDKEntry.m │ │ │ ├── SimLaunchHostClient.m │ │ │ ├── SimLaunchHostConnection.m │ │ │ ├── SimLegacyHIDDefaultDescriptorState.m │ │ │ ├── SimLibLaunchInstance.m │ │ │ ├── SimLocalThrowable.m │ │ │ ├── SimMachPortServer.m │ │ │ ├── SimNSPasteboard.m │ │ │ ├── SimNSPasteboardItem.m │ │ │ ├── SimNearbyDevice.m │ │ │ ├── SimNearbyDeviceManager.m │ │ │ ├── SimNearbyPeer.m │ │ │ ├── SimNotificationManager.m │ │ │ ├── SimNotificationManagerToken.m │ │ │ ├── SimPasteboardItem.m │ │ │ ├── SimPasteboardItemData.m │ │ │ ├── SimPasteboardItemWrappedData.m │ │ │ ├── SimPasteboardPortMap.m │ │ │ ├── SimPasteboardSyncPool.m │ │ │ ├── SimPasteboardSyncPoolObject.m │ │ │ ├── SimPendingOperation.m │ │ │ ├── SimPlatformInfo.m │ │ │ ├── SimProfileBundle.m │ │ │ ├── SimProfileModTime.m │ │ │ ├── SimProfilesPathMonitor.m │ │ │ ├── SimRuntime.m │ │ │ ├── SimRuntimeMapData.m │ │ │ ├── SimRuntimePairingRequirements.m │ │ │ ├── SimSDKInfo.m │ │ │ ├── SimSelectedRuntimePolicyResult.m │ │ │ ├── SimServiceContext.m │ │ │ ├── SimVolumeManager.m │ │ │ ├── SimVolumeManagerNotification.m │ │ │ └── _SimDeallocSentinel.m │ ├── CoreSymbolication │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreSymbolication │ │ │ │ ├── CoreSymbolication.h │ │ │ │ └── CoreSymbolicationPrivate.h │ │ ├── resources │ │ │ └── com.apple.coresymbolicationd.plist │ │ └── src │ │ │ ├── daemon.c │ │ │ └── functions.c │ ├── CoreUI │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreUI │ │ │ │ ├── CSIATECHelper.h │ │ │ │ ├── CSIBitmapWrapper.h │ │ │ │ ├── CSIGenerator.h │ │ │ │ ├── CSIHelper.h │ │ │ │ ├── CSITextureHelper.h │ │ │ │ ├── CUIBackgroundStyleEffectConfiguration.h │ │ │ │ ├── CUICatalog.h │ │ │ │ ├── CUIColor.h │ │ │ │ ├── CUICommonAssetStorage.h │ │ │ │ ├── CUICustomFontCacheKey.h │ │ │ │ ├── CUICustomFontCacheValue.h │ │ │ │ ├── CUIHueSaturationFilterLocal.h │ │ │ │ ├── CUIImage.h │ │ │ │ ├── CUIInnerBevelEmbossFilterLocal.h │ │ │ │ ├── CUIInnerGlowFilterLocal.h │ │ │ │ ├── CUIInnerGlowOrShadowFilterLocal.h │ │ │ │ ├── CUIInnerShadowFilterLocal.h │ │ │ │ ├── CUILayoutInformation.h │ │ │ │ ├── CUIMaskedFacetLayer.h │ │ │ │ ├── CUIMeshBuffer.h │ │ │ │ ├── CUIMutableCatalog.h │ │ │ │ ├── CUIMutableCommonAssetStorage.h │ │ │ │ ├── CUIMutablePSDImageRef.h │ │ │ │ ├── CUIMutableStructuredThemeStore.h │ │ │ │ ├── CUIMutableThemeRendition.h │ │ │ │ ├── CUINamedColor.h │ │ │ │ ├── CUINamedData.h │ │ │ │ ├── CUINamedExternalLink.h │ │ │ │ ├── CUINamedImage.h │ │ │ │ ├── CUINamedImageAtlas.h │ │ │ │ ├── CUINamedImageDescription.h │ │ │ │ ├── CUINamedLayerImage.h │ │ │ │ ├── CUINamedLayerStack.h │ │ │ │ ├── CUINamedLookup.h │ │ │ │ ├── CUINamedModel.h │ │ │ │ ├── CUINamedMultisizeImage.h │ │ │ │ ├── CUINamedMultisizeImageSet.h │ │ │ │ ├── CUINamedRecognitionGroup.h │ │ │ │ ├── CUINamedRecognitionImage.h │ │ │ │ ├── CUINamedRecognitionObject.h │ │ │ │ ├── CUINamedRenditionInfo.h │ │ │ │ ├── CUINamedTexture.h │ │ │ │ ├── CUINamedVectorGlyph.h │ │ │ │ ├── CUINamedVectorImage.h │ │ │ │ ├── CUINamedVectorPDFImage.h │ │ │ │ ├── CUINamedVectorSVGImage.h │ │ │ │ ├── CUIOuterBevelEmbossFilterLocal.h │ │ │ │ ├── CUIOuterGlowFilterLocal.h │ │ │ │ ├── CUIOuterGlowOrShadowFilterLocal.h │ │ │ │ ├── CUIOuterShadowFilterLocal.h │ │ │ │ ├── CUIPSDGradient.h │ │ │ │ ├── CUIPSDGradientColorStop.h │ │ │ │ ├── CUIPSDGradientDoubleColorStop.h │ │ │ │ ├── CUIPSDGradientDoubleOpacityStop.h │ │ │ │ ├── CUIPSDGradientEvaluator.h │ │ │ │ ├── CUIPSDGradientLayer.h │ │ │ │ ├── CUIPSDGradientOpacityStop.h │ │ │ │ ├── CUIPSDGradientStop.h │ │ │ │ ├── CUIPSDImageLayer.h │ │ │ │ ├── CUIPSDImageRef.h │ │ │ │ ├── CUIPSDLayer.h │ │ │ │ ├── CUIPSDLayerBaseRef.h │ │ │ │ ├── CUIPSDLayerEffectBevelEmboss.h │ │ │ │ ├── CUIPSDLayerEffectColorOverlay.h │ │ │ │ ├── CUIPSDLayerEffectComponent.h │ │ │ │ ├── CUIPSDLayerEffectDropShadow.h │ │ │ │ ├── CUIPSDLayerEffectGradientOverlay.h │ │ │ │ ├── CUIPSDLayerEffectInnerGlow.h │ │ │ │ ├── CUIPSDLayerEffectInnerShadow.h │ │ │ │ ├── CUIPSDLayerEffectOuterGlow.h │ │ │ │ ├── CUIPSDLayerEffects.h │ │ │ │ ├── CUIPSDLayerEnumerator.h │ │ │ │ ├── CUIPSDLayerGroupEnd.h │ │ │ │ ├── CUIPSDLayerGroupRef.h │ │ │ │ ├── CUIPSDLayerGroupStart.h │ │ │ │ ├── CUIPSDLayerMaskRef.h │ │ │ │ ├── CUIPSDLayerRef.h │ │ │ │ ├── CUIPSDLayoutMetricsChannel.h │ │ │ │ ├── CUIPSLayerEffectsPreset.h │ │ │ │ ├── CUIPattern.h │ │ │ │ ├── CUIPerformanceLogManager.h │ │ │ │ ├── CUIPerformanceMeasurement.h │ │ │ │ ├── CUIRenditionKey.h │ │ │ │ ├── CUIRenditionLayerReference.h │ │ │ │ ├── CUIRenditionMetrics.h │ │ │ │ ├── CUIRenditionSliceInformation.h │ │ │ │ ├── CUIRuntimeStatistics.h │ │ │ │ ├── CUIScaleClampFilterLocal.h │ │ │ │ ├── CUIShapeEffectBlur1Local.h │ │ │ │ ├── CUIShapeEffectPreset.h │ │ │ │ ├── CUIShapeEffectStack.h │ │ │ │ ├── CUISharedArtCatalog.h │ │ │ │ ├── CUISmallBlurLocal.h │ │ │ │ ├── CUISmoothEmbossFilterLocal.h │ │ │ │ ├── CUIStructuredThemeStorage.h │ │ │ │ ├── CUIStructuredThemeStorage2.h │ │ │ │ ├── CUIStructuredThemeStore.h │ │ │ │ ├── CUIStyleEffectConfiguration.h │ │ │ │ ├── CUISystemCatalog.h │ │ │ │ ├── CUISystemStore.h │ │ │ │ ├── CUITextEffectStack.h │ │ │ │ ├── CUITextStyle.h │ │ │ │ ├── CUITexturedWindowFrameLayer.h │ │ │ │ ├── CUIThemeDataEffectPreset.h │ │ │ │ ├── CUIThemeFacet.h │ │ │ │ ├── CUIThemeGradient.h │ │ │ │ ├── CUIThemeGradientDrawing.h │ │ │ │ ├── CUIThemeImageSource.h │ │ │ │ ├── CUIThemeRendition.h │ │ │ │ ├── CUIThemeSchema.h │ │ │ │ ├── CUIThemeSchemaEffectRendition.h │ │ │ │ ├── CUIThemeSchemaLayer.h │ │ │ │ ├── CUIThemeSchemaPSDLayer.h │ │ │ │ ├── CUIThemeSchemaPSDLayerGroup.h │ │ │ │ ├── CUIThemeSchemaPSDRenditionLayer.h │ │ │ │ ├── CUIThemeSchemaRendition.h │ │ │ │ ├── CUIThemeSchemaRenditionGroup.h │ │ │ │ ├── CUIWindowFrameLayer.h │ │ │ │ ├── CoreUI.h │ │ │ │ ├── MDLMeshBuffer.h │ │ │ │ ├── TXRDataSourceProvider.h │ │ │ │ ├── _CSIRenditionBlockData.h │ │ │ │ ├── _CUIExternalLinkRendition.h │ │ │ │ ├── _CUIInternalLinkRendition.h │ │ │ │ ├── _CUIKeyTestOrganizer.h │ │ │ │ ├── _CUILayerStackRendition.h │ │ │ │ ├── _CUIMacOSThemeSchema.h │ │ │ │ ├── _CUIMultisizeImageSetSizeAndIndex.h │ │ │ │ ├── _CUINameContentRendition.h │ │ │ │ ├── _CUINineImagePieces.h │ │ │ │ ├── _CUIPSDStopAndMidpointPair.h │ │ │ │ ├── _CUIPSDSublayerInfo.h │ │ │ │ ├── _CUIRawDataRendition.h │ │ │ │ ├── _CUIRawPixelRendition.h │ │ │ │ ├── _CUIRecognitionObjectRendition.h │ │ │ │ ├── _CUISubrangeData.h │ │ │ │ ├── _CUIThemeColorRendition.h │ │ │ │ ├── _CUIThemeEffectRendition.h │ │ │ │ ├── _CUIThemeFacetCacheKey.h │ │ │ │ ├── _CUIThemeGradientRendition.h │ │ │ │ ├── _CUIThemeModelAssetRendition.h │ │ │ │ ├── _CUIThemeModelMeshRendition.h │ │ │ │ ├── _CUIThemeModelSubmeshRendition.h │ │ │ │ ├── _CUIThemeMultisizeImageSetRendition.h │ │ │ │ ├── _CUIThemePDFRendition.h │ │ │ │ ├── _CUIThemePixelRendition.h │ │ │ │ ├── _CUIThemeSVGRendition.h │ │ │ │ ├── _CUIThemeTextStyleRendition.h │ │ │ │ ├── _CUIThemeTextureImageRendition.h │ │ │ │ ├── _CUIThemeTextureRendition.h │ │ │ │ ├── _CUIThinningPlaceholderRendition.h │ │ │ │ ├── _CUIiPhoneOSThemeSchema.h │ │ │ │ ├── _CUTextureLink.h │ │ │ │ └── _SchemaRenditionTuple.h │ │ └── src │ │ │ ├── CSIATECHelper.m │ │ │ ├── CSIBitmapWrapper.m │ │ │ ├── CSIGenerator.m │ │ │ ├── CSIHelper.m │ │ │ ├── CSITextureHelper.m │ │ │ ├── CUIBackgroundStyleEffectConfiguration.m │ │ │ ├── CUICatalog.m │ │ │ ├── CUIColor.m │ │ │ ├── CUICommonAssetStorage.m │ │ │ ├── CUICustomFontCacheKey.m │ │ │ ├── CUICustomFontCacheValue.m │ │ │ ├── CUIHueSaturationFilterLocal.m │ │ │ ├── CUIImage.m │ │ │ ├── CUIInnerBevelEmbossFilterLocal.m │ │ │ ├── CUIInnerGlowFilterLocal.m │ │ │ ├── CUIInnerGlowOrShadowFilterLocal.m │ │ │ ├── CUIInnerShadowFilterLocal.m │ │ │ ├── CUILayoutInformation.m │ │ │ ├── CUIMaskedFacetLayer.m │ │ │ ├── CUIMeshBuffer.m │ │ │ ├── CUIMutableCatalog.m │ │ │ ├── CUIMutableCommonAssetStorage.m │ │ │ ├── CUIMutablePSDImageRef.m │ │ │ ├── CUIMutableStructuredThemeStore.m │ │ │ ├── CUIMutableThemeRendition.m │ │ │ ├── CUINamedColor.m │ │ │ ├── CUINamedData.m │ │ │ ├── CUINamedExternalLink.m │ │ │ ├── CUINamedImage.m │ │ │ ├── CUINamedImageAtlas.m │ │ │ ├── CUINamedImageDescription.m │ │ │ ├── CUINamedLayerImage.m │ │ │ ├── CUINamedLayerStack.m │ │ │ ├── CUINamedLookup.m │ │ │ ├── CUINamedModel.m │ │ │ ├── CUINamedMultisizeImage.m │ │ │ ├── CUINamedMultisizeImageSet.m │ │ │ ├── CUINamedRecognitionGroup.m │ │ │ ├── CUINamedRecognitionImage.m │ │ │ ├── CUINamedRecognitionObject.m │ │ │ ├── CUINamedRenditionInfo.m │ │ │ ├── CUINamedTexture.m │ │ │ ├── CUINamedVectorGlyph.m │ │ │ ├── CUINamedVectorImage.m │ │ │ ├── CUINamedVectorPDFImage.m │ │ │ ├── CUINamedVectorSVGImage.m │ │ │ ├── CUIOuterBevelEmbossFilterLocal.m │ │ │ ├── CUIOuterGlowFilterLocal.m │ │ │ ├── CUIOuterGlowOrShadowFilterLocal.m │ │ │ ├── CUIOuterShadowFilterLocal.m │ │ │ ├── CUIPSDGradient.m │ │ │ ├── CUIPSDGradientColorStop.m │ │ │ ├── CUIPSDGradientDoubleColorStop.m │ │ │ ├── CUIPSDGradientDoubleOpacityStop.m │ │ │ ├── CUIPSDGradientEvaluator.m │ │ │ ├── CUIPSDGradientLayer.m │ │ │ ├── CUIPSDGradientOpacityStop.m │ │ │ ├── CUIPSDGradientStop.m │ │ │ ├── CUIPSDImageLayer.m │ │ │ ├── CUIPSDImageRef.m │ │ │ ├── CUIPSDLayer.m │ │ │ ├── CUIPSDLayerBaseRef.m │ │ │ ├── CUIPSDLayerEffectBevelEmboss.m │ │ │ ├── CUIPSDLayerEffectColorOverlay.m │ │ │ ├── CUIPSDLayerEffectComponent.m │ │ │ ├── CUIPSDLayerEffectDropShadow.m │ │ │ ├── CUIPSDLayerEffectGradientOverlay.m │ │ │ ├── CUIPSDLayerEffectInnerGlow.m │ │ │ ├── CUIPSDLayerEffectInnerShadow.m │ │ │ ├── CUIPSDLayerEffectOuterGlow.m │ │ │ ├── CUIPSDLayerEffects.m │ │ │ ├── CUIPSDLayerEnumerator.m │ │ │ ├── CUIPSDLayerGroupEnd.m │ │ │ ├── CUIPSDLayerGroupRef.m │ │ │ ├── CUIPSDLayerGroupStart.m │ │ │ ├── CUIPSDLayerMaskRef.m │ │ │ ├── CUIPSDLayerRef.m │ │ │ ├── CUIPSDLayoutMetricsChannel.m │ │ │ ├── CUIPSLayerEffectsPreset.m │ │ │ ├── CUIPattern.m │ │ │ ├── CUIPerformanceLogManager.m │ │ │ ├── CUIPerformanceMeasurement.m │ │ │ ├── CUIRenditionKey.m │ │ │ ├── CUIRenditionLayerReference.m │ │ │ ├── CUIRenditionMetrics.m │ │ │ ├── CUIRenditionSliceInformation.m │ │ │ ├── CUIRuntimeStatistics.m │ │ │ ├── CUIScaleClampFilterLocal.m │ │ │ ├── CUIShapeEffectBlur1Local.m │ │ │ ├── CUIShapeEffectPreset.m │ │ │ ├── CUIShapeEffectStack.m │ │ │ ├── CUISharedArtCatalog.m │ │ │ ├── CUISmallBlurLocal.m │ │ │ ├── CUISmoothEmbossFilterLocal.m │ │ │ ├── CUIStructuredThemeStore.m │ │ │ ├── CUIStyleEffectConfiguration.m │ │ │ ├── CUISystemCatalog.m │ │ │ ├── CUISystemStore.m │ │ │ ├── CUITextEffectStack.m │ │ │ ├── CUITextStyle.m │ │ │ ├── CUITexturedWindowFrameLayer.m │ │ │ ├── CUIThemeDataEffectPreset.m │ │ │ ├── CUIThemeFacet.m │ │ │ ├── CUIThemeGradient.m │ │ │ ├── CUIThemeRendition.m │ │ │ ├── CUIThemeSchema.m │ │ │ ├── CUIThemeSchemaEffectRendition.m │ │ │ ├── CUIThemeSchemaLayer.m │ │ │ ├── CUIThemeSchemaPSDLayer.m │ │ │ ├── CUIThemeSchemaPSDLayerGroup.m │ │ │ ├── CUIThemeSchemaPSDRenditionLayer.m │ │ │ ├── CUIThemeSchemaRendition.m │ │ │ ├── CUIThemeSchemaRenditionGroup.m │ │ │ ├── CUIWindowFrameLayer.m │ │ │ ├── CoreUI.m │ │ │ ├── _CSIRenditionBlockData.m │ │ │ ├── _CUIExternalLinkRendition.m │ │ │ ├── _CUIInternalLinkRendition.m │ │ │ ├── _CUIKeyTestOrganizer.m │ │ │ ├── _CUILayerStackRendition.m │ │ │ ├── _CUIMacOSThemeSchema.m │ │ │ ├── _CUIMultisizeImageSetSizeAndIndex.m │ │ │ ├── _CUINameContentRendition.m │ │ │ ├── _CUINineImagePieces.m │ │ │ ├── _CUIPSDStopAndMidpointPair.m │ │ │ ├── _CUIPSDSublayerInfo.m │ │ │ ├── _CUIRawDataRendition.m │ │ │ ├── _CUIRawPixelRendition.m │ │ │ ├── _CUIRecognitionObjectRendition.m │ │ │ ├── _CUISubrangeData.m │ │ │ ├── _CUIThemeColorRendition.m │ │ │ ├── _CUIThemeEffectRendition.m │ │ │ ├── _CUIThemeFacetCacheKey.m │ │ │ ├── _CUIThemeGradientRendition.m │ │ │ ├── _CUIThemeModelAssetRendition.m │ │ │ ├── _CUIThemeModelMeshRendition.m │ │ │ ├── _CUIThemeModelSubmeshRendition.m │ │ │ ├── _CUIThemeMultisizeImageSetRendition.m │ │ │ ├── _CUIThemePDFRendition.m │ │ │ ├── _CUIThemePixelRendition.m │ │ │ ├── _CUIThemeSVGRendition.m │ │ │ ├── _CUIThemeTextStyleRendition.m │ │ │ ├── _CUIThemeTextureImageRendition.m │ │ │ ├── _CUIThemeTextureRendition.m │ │ │ ├── _CUIThinningPlaceholderRendition.m │ │ │ ├── _CUIiPhoneOSThemeSchema.m │ │ │ ├── _CUTextureLink.m │ │ │ └── _SchemaRenditionTuple.m │ ├── CoreUtils │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CoreUtils │ │ │ │ ├── AVAudioPlayerDelegate.h │ │ │ │ ├── AVVoiceControllerRecordDelegate.h │ │ │ │ ├── CAAnimationDelegate.h │ │ │ │ ├── CAAnimationDelegateBlockHelper.h │ │ │ │ ├── CBCentralManagerDelegate.h │ │ │ │ ├── CBPeripheralDelegate.h │ │ │ │ ├── CBPeripheralManagerDelegate.h │ │ │ │ ├── CUActivatable.h │ │ │ │ ├── CUAppleIDClient.h │ │ │ │ ├── CUAudioPlayer.h │ │ │ │ ├── CUAudioRequest.h │ │ │ │ ├── CUBLEAdvertiser.h │ │ │ │ ├── CUBLEConnection.h │ │ │ │ ├── CUBLEDevice.h │ │ │ │ ├── CUBLEScanner.h │ │ │ │ ├── CUBLEServer.h │ │ │ │ ├── CUBitCoder.h │ │ │ │ ├── CUBitCoderDecryptRequest.h │ │ │ │ ├── CUBitCoderDecryptResponse.h │ │ │ │ ├── CUBitCoderEncryptRequest.h │ │ │ │ ├── CUBluetoothClassicConnection.h │ │ │ │ ├── CUBluetoothClient.h │ │ │ │ ├── CUBluetoothDevice.h │ │ │ │ ├── CUBluetoothFindDeviceRequest.h │ │ │ │ ├── CUBluetoothScalablePipe.h │ │ │ │ ├── CUBonjourAdvertiser.h │ │ │ │ ├── CUBonjourBrowser.h │ │ │ │ ├── CUBonjourDevice.h │ │ │ │ ├── CUByteCodable.h │ │ │ │ ├── CUCoalescer.h │ │ │ │ ├── CUConnection.h │ │ │ │ ├── CUDashboardClient.h │ │ │ │ ├── CUDashboardServer.h │ │ │ │ ├── CUDictionaryCodable.h │ │ │ │ ├── CUEndpoint.h │ │ │ │ ├── CUEnvironment.h │ │ │ │ ├── CUEnvironmentable.h │ │ │ │ ├── CUFileClient.h │ │ │ │ ├── CUFileItem.h │ │ │ │ ├── CUFileQuery.h │ │ │ │ ├── CUFileResponse.h │ │ │ │ ├── CUFileServer.h │ │ │ │ ├── CUFileServerSession.h │ │ │ │ ├── CUHomeKitFindPairedPeerContext.h │ │ │ │ ├── CUHomeKitManager.h │ │ │ │ ├── CUHomeKitResolvableAccessory.h │ │ │ │ ├── CUIDSReadRequest.h │ │ │ │ ├── CUIDSSession.h │ │ │ │ ├── CUIDSWriteRequest.h │ │ │ │ ├── CUKeyValueStoreReader.h │ │ │ │ ├── CUKeyValueStoreWriter.h │ │ │ │ ├── CUKeychainItem.h │ │ │ │ ├── CUKeychainManager.h │ │ │ │ ├── CULiveAudioPeerSession.h │ │ │ │ ├── CULiveAudioServer.h │ │ │ │ ├── CULiveAudioServerSession.h │ │ │ │ ├── CULiveAudioSession.h │ │ │ │ ├── CULogHandle.h │ │ │ │ ├── CUMFiDeviceDiscovery.h │ │ │ │ ├── CUMFiReadRequest.h │ │ │ │ ├── CUMFiSession.h │ │ │ │ ├── CUMFiWriteRequest.h │ │ │ │ ├── CUMessageRequestEntry.h │ │ │ │ ├── CUMessageSession.h │ │ │ │ ├── CUMessageSessionServer.h │ │ │ │ ├── CUMessageSessionXPCClientInterface.h │ │ │ │ ├── CUMessageSessionXPCConnection.h │ │ │ │ ├── CUMessageSessionXPCServerInterface.h │ │ │ │ ├── CUMessageable.h │ │ │ │ ├── CUMobileDevice.h │ │ │ │ ├── CUMobileDeviceDiscovery.h │ │ │ │ ├── CUMobileDeviceMonitorContext.h │ │ │ │ ├── CUMobileDeviceSession.h │ │ │ │ ├── CUNANDataSession.h │ │ │ │ ├── CUNANEndpoint.h │ │ │ │ ├── CUNANPublisher.h │ │ │ │ ├── CUNANSubscriber.h │ │ │ │ ├── CUNFCAdvertiser.h │ │ │ │ ├── CUNFCDevice.h │ │ │ │ ├── CUNFCScanner.h │ │ │ │ ├── CUNetInterfaceMonitor.h │ │ │ │ ├── CUNetLinkEndpoint.h │ │ │ │ ├── CUNetLinkManager.h │ │ │ │ ├── CUNetServiceAdvertiser.h │ │ │ │ ├── CUNetServiceDiscovery.h │ │ │ │ ├── CUNetServiceEndpoint.h │ │ │ │ ├── CUOSRecoveryProgressEvent.h │ │ │ │ ├── CUOSRecoveryTarget.h │ │ │ │ ├── CUPairedPeer.h │ │ │ │ ├── CUPairingDaemon.h │ │ │ │ ├── CUPairingDaemonXPCInterface.h │ │ │ │ ├── CUPairingIdentity.h │ │ │ │ ├── CUPairingManager.h │ │ │ │ ├── CUPairingManagerXPCInterface.h │ │ │ │ ├── CUPairingSession.h │ │ │ │ ├── CUPairingStream.h │ │ │ │ ├── CUPairingXPCConnection.h │ │ │ │ ├── CUPersistentTimer.h │ │ │ │ ├── CUPowerSource.h │ │ │ │ ├── CUPowerSourceLEDInfo.h │ │ │ │ ├── CUPowerSourceMonitor.h │ │ │ │ ├── CURangingMeasurement.h │ │ │ │ ├── CURangingPeer.h │ │ │ │ ├── CURangingSample.h │ │ │ │ ├── CURangingSession.h │ │ │ │ ├── CUReachabilityMonitor.h │ │ │ │ ├── CUReadRequest.h │ │ │ │ ├── CUReadWriteRequestable.h │ │ │ │ ├── CURetrier.h │ │ │ │ ├── CURunLoopThread.h │ │ │ │ ├── CUServer.h │ │ │ │ ├── CUSetupFlow.h │ │ │ │ ├── CUSetupHandler.h │ │ │ │ ├── CUSetupStep.h │ │ │ │ ├── CUSetupStepPreflightWiFi.h │ │ │ │ ├── CUSleepWakeMonitor.h │ │ │ │ ├── CUState.h │ │ │ │ ├── CUStateEvent.h │ │ │ │ ├── CUStateMachine.h │ │ │ │ ├── CUSystemMonitor.h │ │ │ │ ├── CUSystemMonitorImp.h │ │ │ │ ├── CUTCPConnection.h │ │ │ │ ├── CUTCPServer.h │ │ │ │ ├── CUTDSAgent.h │ │ │ │ ├── CUTDSDaemon.h │ │ │ │ ├── CUTDSDevice.h │ │ │ │ ├── CUTDSEndpoint.h │ │ │ │ ├── CUTDSProvider.h │ │ │ │ ├── CUTDSSeeker.h │ │ │ │ ├── CUTDSSession.h │ │ │ │ ├── CUTDSXPCClientInterface.h │ │ │ │ ├── CUTDSXPCConnection.h │ │ │ │ ├── CUTDSXPCDaemonInterface.h │ │ │ │ ├── CUUserNotificationSession.h │ │ │ │ ├── CUVoiceRequest.h │ │ │ │ ├── CUVoiceSession.h │ │ │ │ ├── CUWACSession.h │ │ │ │ ├── CUWiFiDevice.h │ │ │ │ ├── CUWiFiManager.h │ │ │ │ ├── CUWiFiScanner.h │ │ │ │ ├── CUWiFiTrafficPeer.h │ │ │ │ ├── CUWriteRequest.h │ │ │ │ ├── CUXMLRPCClient.h │ │ │ │ ├── CUXPCAgent.h │ │ │ │ ├── CUXPCAgentConnection.h │ │ │ │ ├── CUXPCCodable.h │ │ │ │ ├── CWEventDelegate.h │ │ │ │ ├── CWInternalEventDelegate.h │ │ │ │ ├── CXCallObserverDelegate.h │ │ │ │ ├── CommonServices.h │ │ │ │ ├── CoreTelephonyClientDelegate.h │ │ │ │ ├── CoreUtils.h │ │ │ │ ├── CoreUtilsNSSubrangeData.h │ │ │ │ ├── DebugServices.h │ │ │ │ ├── FMFSessionDelegate.h │ │ │ │ ├── HMAccessoryDelegate.h │ │ │ │ ├── HMAccessoryDelegatePrivate.h │ │ │ │ ├── HMHomeDelegate.h │ │ │ │ ├── HMHomeDelegatePrivate.h │ │ │ │ ├── HMHomeManagerDelegate.h │ │ │ │ ├── HMHomeManagerDelegatePrivate.h │ │ │ │ ├── HMMediaObjectDelegate.h │ │ │ │ ├── HMMediaSystemDelegate.h │ │ │ │ ├── HMUserDelegatePrivate.h │ │ │ │ ├── IDSServiceDelegate.h │ │ │ │ ├── IDSSessionDelegate.h │ │ │ │ ├── NSStreamDelegate.h │ │ │ │ ├── NSURLSessionDownloadDelegate.h │ │ │ │ ├── NSXPCListenerDelegate.h │ │ │ │ ├── NXClient.h │ │ │ │ ├── TUTestState.h │ │ │ │ ├── UNUserNotificationCenterDelegate.h │ │ │ │ ├── WiFiAwareDataSessionDelegate.h │ │ │ │ ├── WiFiAwarePublisherDelegate.h │ │ │ │ └── WiFiAwareSubscriberDelegate.h │ │ └── src │ │ │ ├── CAAnimationDelegateBlockHelper.m │ │ │ ├── CUAppleIDClient.m │ │ │ ├── CUAudioPlayer.m │ │ │ ├── CUAudioRequest.m │ │ │ ├── CUBLEAdvertiser.m │ │ │ ├── CUBLEConnection.m │ │ │ ├── CUBLEDevice.m │ │ │ ├── CUBLEScanner.m │ │ │ ├── CUBLEServer.m │ │ │ ├── CUBitCoder.m │ │ │ ├── CUBitCoderDecryptRequest.m │ │ │ ├── CUBitCoderDecryptResponse.m │ │ │ ├── CUBitCoderEncryptRequest.m │ │ │ ├── CUBluetoothClassicConnection.m │ │ │ ├── CUBluetoothClient.m │ │ │ ├── CUBluetoothDevice.m │ │ │ ├── CUBluetoothFindDeviceRequest.m │ │ │ ├── CUBluetoothScalablePipe.m │ │ │ ├── CUBonjourAdvertiser.m │ │ │ ├── CUBonjourBrowser.m │ │ │ ├── CUBonjourDevice.m │ │ │ ├── CUCoalescer.m │ │ │ ├── CUConnection.m │ │ │ ├── CUDashboardClient.m │ │ │ ├── CUDashboardServer.m │ │ │ ├── CUEndpoint.m │ │ │ ├── CUEnvironment.m │ │ │ ├── CUFileClient.m │ │ │ ├── CUFileItem.m │ │ │ ├── CUFileQuery.m │ │ │ ├── CUFileResponse.m │ │ │ ├── CUFileServer.m │ │ │ ├── CUFileServerSession.m │ │ │ ├── CUHomeKitFindPairedPeerContext.m │ │ │ ├── CUHomeKitManager.m │ │ │ ├── CUHomeKitResolvableAccessory.m │ │ │ ├── CUIDSReadRequest.m │ │ │ ├── CUIDSSession.m │ │ │ ├── CUIDSWriteRequest.m │ │ │ ├── CUKeyValueStoreReader.m │ │ │ ├── CUKeyValueStoreWriter.m │ │ │ ├── CUKeychainItem.m │ │ │ ├── CUKeychainManager.m │ │ │ ├── CULiveAudioPeerSession.m │ │ │ ├── CULiveAudioServer.m │ │ │ ├── CULiveAudioServerSession.m │ │ │ ├── CULiveAudioSession.m │ │ │ ├── CULogHandle.m │ │ │ ├── CUMFiDeviceDiscovery.m │ │ │ ├── CUMFiReadRequest.m │ │ │ ├── CUMFiSession.m │ │ │ ├── CUMFiWriteRequest.m │ │ │ ├── CUMessageRequestEntry.m │ │ │ ├── CUMessageSession.m │ │ │ ├── CUMessageSessionServer.m │ │ │ ├── CUMessageSessionXPCConnection.m │ │ │ ├── CUMobileDevice.m │ │ │ ├── CUMobileDeviceDiscovery.m │ │ │ ├── CUMobileDeviceMonitorContext.m │ │ │ ├── CUMobileDeviceSession.m │ │ │ ├── CUNANDataSession.m │ │ │ ├── CUNANEndpoint.m │ │ │ ├── CUNANPublisher.m │ │ │ ├── CUNANSubscriber.m │ │ │ ├── CUNFCAdvertiser.m │ │ │ ├── CUNFCDevice.m │ │ │ ├── CUNFCScanner.m │ │ │ ├── CUNetInterfaceMonitor.m │ │ │ ├── CUNetLinkEndpoint.m │ │ │ ├── CUNetLinkManager.m │ │ │ ├── CUNetServiceAdvertiser.m │ │ │ ├── CUNetServiceDiscovery.m │ │ │ ├── CUNetServiceEndpoint.m │ │ │ ├── CUOSRecoveryProgressEvent.m │ │ │ ├── CUOSRecoveryTarget.m │ │ │ ├── CUPairedPeer.m │ │ │ ├── CUPairingDaemon.m │ │ │ ├── CUPairingIdentity.m │ │ │ ├── CUPairingManager.m │ │ │ ├── CUPairingSession.m │ │ │ ├── CUPairingStream.m │ │ │ ├── CUPairingXPCConnection.m │ │ │ ├── CUPersistentTimer.m │ │ │ ├── CUPowerSource.m │ │ │ ├── CUPowerSourceLEDInfo.m │ │ │ ├── CUPowerSourceMonitor.m │ │ │ ├── CURangingMeasurement.m │ │ │ ├── CURangingPeer.m │ │ │ ├── CURangingSample.m │ │ │ ├── CURangingSession.m │ │ │ ├── CUReachabilityMonitor.m │ │ │ ├── CUReadRequest.m │ │ │ ├── CURetrier.m │ │ │ ├── CURunLoopThread.m │ │ │ ├── CUServer.m │ │ │ ├── CUSetupFlow.m │ │ │ ├── CUSetupHandler.m │ │ │ ├── CUSetupStep.m │ │ │ ├── CUSetupStepPreflightWiFi.m │ │ │ ├── CUSleepWakeMonitor.m │ │ │ ├── CUState.m │ │ │ ├── CUStateEvent.m │ │ │ ├── CUStateMachine.m │ │ │ ├── CUSystemMonitor.m │ │ │ ├── CUSystemMonitorImp.m │ │ │ ├── CUTCPConnection.m │ │ │ ├── CUTCPServer.m │ │ │ ├── CUTDSAgent.m │ │ │ ├── CUTDSDaemon.m │ │ │ ├── CUTDSDevice.m │ │ │ ├── CUTDSEndpoint.m │ │ │ ├── CUTDSProvider.m │ │ │ ├── CUTDSSeeker.m │ │ │ ├── CUTDSSession.m │ │ │ ├── CUTDSXPCConnection.m │ │ │ ├── CUUserNotificationSession.m │ │ │ ├── CUVoiceRequest.m │ │ │ ├── CUVoiceSession.m │ │ │ ├── CUWACSession.m │ │ │ ├── CUWiFiDevice.m │ │ │ ├── CUWiFiManager.m │ │ │ ├── CUWiFiScanner.m │ │ │ ├── CUWiFiTrafficPeer.m │ │ │ ├── CUWriteRequest.m │ │ │ ├── CUXMLRPCClient.m │ │ │ ├── CUXPCAgent.m │ │ │ ├── CUXPCAgentConnection.m │ │ │ ├── CoreUtils.m │ │ │ ├── CoreUtilsNSSubrangeData.m │ │ │ ├── NXClient.m │ │ │ └── TUTestState.m │ ├── CrashReporterSupport │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── CrashReporterSupport │ │ │ │ ├── CrashReporterSupport.h │ │ │ │ └── OSALogWriter.h │ │ └── src │ │ │ ├── OSALogWriter.m │ │ │ └── functions.c │ ├── DataDetectors │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── DataDetectors │ │ │ │ ├── DDAction.h │ │ │ │ ├── DDActionContext.h │ │ │ │ ├── DDActionViewController.h │ │ │ │ ├── DDActionViewPresenter.h │ │ │ │ ├── DDActionsManager.h │ │ │ │ ├── DDBasicHighlightsView.h │ │ │ │ ├── DDBubbleAction.h │ │ │ │ ├── DDButtonBar.h │ │ │ │ ├── DDDataDetectorsViewHost.h │ │ │ │ ├── DDDetectorManager2.h │ │ │ │ ├── DDDialController.h │ │ │ │ ├── DDEventController.h │ │ │ │ ├── DDFacetimeAudioController.h │ │ │ │ ├── DDFacetimeController.h │ │ │ │ ├── DDFlightController.h │ │ │ │ ├── DDGenericBubbleController.h │ │ │ │ ├── DDGenericTTYDialController.h │ │ │ │ ├── DDHTMLMessageScanningOperation.h │ │ │ │ ├── DDHighlightButton.h │ │ │ │ ├── DDHighlightButtonCell.h │ │ │ │ ├── DDHighlightObject.h │ │ │ │ ├── DDHighlightRangeUpdater.h │ │ │ │ ├── DDHighlightRangeUpdater2.h │ │ │ │ ├── DDHighlightRequest.h │ │ │ │ ├── DDHighlightsDataSource.h │ │ │ │ ├── DDHighlightsDelegate.h │ │ │ │ ├── DDLargeTypeController.h │ │ │ │ ├── DDMapLinkController.h │ │ │ │ ├── DDMapTable.h │ │ │ │ ├── DDMenuItem.h │ │ │ │ ├── DDMessageController.h │ │ │ │ ├── DDMiscAction.h │ │ │ │ ├── DDMiscActionProtocol.h │ │ │ │ ├── DDOperation.h │ │ │ │ ├── DDOperationDelegate.h │ │ │ │ ├── DDParsecController.h │ │ │ │ ├── DDPatternCompiler.h │ │ │ │ ├── DDPhoneNumber.h │ │ │ │ ├── DDPhoneOrMailURI.h │ │ │ │ ├── DDPopover.h │ │ │ │ ├── DDPreviewMenuItem.h │ │ │ │ ├── DDRange.h │ │ │ │ ├── DDRange2.h │ │ │ │ ├── DDRemoteBubbleActionController.h │ │ │ │ ├── DDScanRequest.h │ │ │ │ ├── DDSeparatorAction.h │ │ │ │ ├── DDShowDateController.h │ │ │ │ ├── DDSignatureExistingContactEditorController.h │ │ │ │ ├── DDSignatureMapController.h │ │ │ │ ├── DDSignatureNewContactEditorController.h │ │ │ │ ├── DDSignaturePreviewController.h │ │ │ │ ├── DDTTYDirectDialController.h │ │ │ │ ├── DDTTYRelayDialController.h │ │ │ │ ├── DDThreadManager.h │ │ │ │ ├── DDURLAction.h │ │ │ │ ├── DDWK2Overlay.h │ │ │ │ ├── DataDetectors.h │ │ │ │ ├── NSPopoverDelegate.h │ │ │ │ ├── NSRemoteViewDelegate.h │ │ │ │ ├── NSWindowDelegate.h │ │ │ │ └── QLPreviewMenuItemDelegate.h │ │ └── src │ │ │ ├── DDAction.m │ │ │ ├── DDActionContext.m │ │ │ ├── DDActionViewController.m │ │ │ ├── DDActionsManager.m │ │ │ ├── DDBasicHighlightsView.m │ │ │ ├── DDBubbleAction.m │ │ │ ├── DDButtonBar.m │ │ │ ├── DDDataDetectorsViewHost.m │ │ │ ├── DDDetectorManager2.m │ │ │ ├── DDDialController.m │ │ │ ├── DDEventController.m │ │ │ ├── DDFacetimeAudioController.m │ │ │ ├── DDFacetimeController.m │ │ │ ├── DDFlightController.m │ │ │ ├── DDGenericBubbleController.m │ │ │ ├── DDGenericTTYDialController.m │ │ │ ├── DDHTMLMessageScanningOperation.m │ │ │ ├── DDHighlightButton.m │ │ │ ├── DDHighlightButtonCell.m │ │ │ ├── DDHighlightObject.m │ │ │ ├── DDHighlightRangeUpdater.m │ │ │ ├── DDHighlightRangeUpdater2.m │ │ │ ├── DDHighlightRequest.m │ │ │ ├── DDLargeTypeController.m │ │ │ ├── DDMapLinkController.m │ │ │ ├── DDMapTable.m │ │ │ ├── DDMenuItem.m │ │ │ ├── DDMessageController.m │ │ │ ├── DDMiscAction.m │ │ │ ├── DDOperation.m │ │ │ ├── DDParsecController.m │ │ │ ├── DDPatternCompiler.m │ │ │ ├── DDPhoneNumber.m │ │ │ ├── DDPhoneOrMailURI.m │ │ │ ├── DDPopover.m │ │ │ ├── DDPreviewMenuItem.m │ │ │ ├── DDRange.m │ │ │ ├── DDRange2.m │ │ │ ├── DDRemoteBubbleActionController.m │ │ │ ├── DDScanRequest.m │ │ │ ├── DDSeparatorAction.m │ │ │ ├── DDShowDateController.m │ │ │ ├── DDSignatureExistingContactEditorController.m │ │ │ ├── DDSignatureMapController.m │ │ │ ├── DDSignatureNewContactEditorController.m │ │ │ ├── DDSignaturePreviewController.m │ │ │ ├── DDTTYDirectDialController.m │ │ │ ├── DDTTYRelayDialController.m │ │ │ ├── DDThreadManager.m │ │ │ ├── DDURLAction.m │ │ │ ├── DDWK2Overlay.m │ │ │ └── DataDetectors.m │ ├── DataDetectorsCore │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── DataDetectorsCore │ │ │ │ ├── DDAbstractType.h │ │ │ │ ├── DDAtomicRegexp.h │ │ │ │ ├── DDBasicRegexp.h │ │ │ │ ├── DDBindableRegexp.h │ │ │ │ ├── DDBinderInfo.h │ │ │ │ ├── DDCompilationNote.h │ │ │ │ ├── DDCompilerState.h │ │ │ │ ├── DDConcatenationRegexp.h │ │ │ │ ├── DDDictionaryError.h │ │ │ │ ├── DDDisjunctionRegexp.h │ │ │ │ ├── DDEmptyPatternError.h │ │ │ │ ├── DDErrorRegexp.h │ │ │ │ ├── DDGrammar.h │ │ │ │ ├── DDInvalidRangeError.h │ │ │ │ ├── DDLRItem.h │ │ │ │ ├── DDLocation.h │ │ │ │ ├── DDLookupRegexp.h │ │ │ │ ├── DDMessageCache.h │ │ │ │ ├── DDMessageCacheElement.h │ │ │ │ ├── DDNonTerminal.h │ │ │ │ ├── DDOneOrMoreExp.h │ │ │ │ ├── DDOperatorRegexp.h │ │ │ │ ├── DDOptionalExp.h │ │ │ │ ├── DDParserState.h │ │ │ │ ├── DDProduction.h │ │ │ │ ├── DDRegexpManager.h │ │ │ │ ├── DDRepeatCount.h │ │ │ │ ├── DDRepeatMax.h │ │ │ │ ├── DDRepeatMinMax.h │ │ │ │ ├── DDScanServer.h │ │ │ │ ├── DDScanServerDispatcher.h │ │ │ │ ├── DDScannerList.h │ │ │ │ ├── DDScannerObject.h │ │ │ │ ├── DDScannerResult.h │ │ │ │ ├── DDStarExp.h │ │ │ │ ├── DDStatsBuilder.h │ │ │ │ ├── DDSymbol.h │ │ │ │ ├── DDTokenRegexp.h │ │ │ │ ├── DDTypeChecker.h │ │ │ │ ├── DDTypeCheckerDelegate.h │ │ │ │ ├── DDTypeInhabitant.h │ │ │ │ ├── DDUnaryOperator.h │ │ │ │ ├── DDVariable.h │ │ │ │ ├── DDVariableNotFoundError.h │ │ │ │ ├── DataDetectorsCore.h │ │ │ │ ├── DataDetectorsSourceAccess.h │ │ │ │ └── DataDetectorsSourceAccessProtocol.h │ │ └── src │ │ │ ├── DDAbstractType.m │ │ │ ├── DDAtomicRegexp.m │ │ │ ├── DDBasicRegexp.m │ │ │ ├── DDBindableRegexp.m │ │ │ ├── DDBinderInfo.m │ │ │ ├── DDCompilationNote.m │ │ │ ├── DDCompilerState.m │ │ │ ├── DDConcatenationRegexp.m │ │ │ ├── DDDictionaryError.m │ │ │ ├── DDDisjunctionRegexp.m │ │ │ ├── DDEmptyPatternError.m │ │ │ ├── DDErrorRegexp.m │ │ │ ├── DDGrammar.m │ │ │ ├── DDInvalidRangeError.m │ │ │ ├── DDLRItem.m │ │ │ ├── DDLocation.m │ │ │ ├── DDLookupRegexp.m │ │ │ ├── DDMessageCache.m │ │ │ ├── DDMessageCacheElement.m │ │ │ ├── DDNonTerminal.m │ │ │ ├── DDOneOrMoreExp.m │ │ │ ├── DDOperatorRegexp.m │ │ │ ├── DDOptionalExp.m │ │ │ ├── DDParserState.m │ │ │ ├── DDProduction.m │ │ │ ├── DDRegexpManager.m │ │ │ ├── DDRepeatCount.m │ │ │ ├── DDRepeatMax.m │ │ │ ├── DDRepeatMinMax.m │ │ │ ├── DDScanServer.m │ │ │ ├── DDScanServerDispatcher.m │ │ │ ├── DDScannerList.m │ │ │ ├── DDScannerObject.m │ │ │ ├── DDScannerResult.m │ │ │ ├── DDStarExp.m │ │ │ ├── DDStatsBuilder.m │ │ │ ├── DDSymbol.m │ │ │ ├── DDTokenRegexp.m │ │ │ ├── DDTypeChecker.m │ │ │ ├── DDTypeInhabitant.m │ │ │ ├── DDUnaryOperator.m │ │ │ ├── DDVariable.m │ │ │ ├── DDVariableNotFoundError.m │ │ │ ├── DataDetectorsCore.m │ │ │ └── DataDetectorsSourceAccess.m │ ├── DataDetectorsNaturalLanguage │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── DataDetectorsNaturalLanguage │ │ │ │ ├── DataDetectorsNaturalLanguage.h │ │ │ │ ├── IPCircularBufferArray.h │ │ │ │ ├── IPDataDetectorsFeatureExtractor.h │ │ │ │ ├── IPEventClassificationType.h │ │ │ │ ├── IPFeature.h │ │ │ │ ├── IPFeatureData.h │ │ │ │ ├── IPFeatureExtractor.h │ │ │ │ ├── IPFeatureKeyword.h │ │ │ │ ├── IPFeatureMailScanner.h │ │ │ │ ├── IPFeatureManager.h │ │ │ │ ├── IPFeatureScanner.h │ │ │ │ ├── IPFeatureSentence.h │ │ │ │ ├── IPFeatureSentenceFragment.h │ │ │ │ ├── IPFeatureTextMessageScanner.h │ │ │ │ ├── IPKeywordFeatureExtractor.h │ │ │ │ ├── IPMessage.h │ │ │ │ ├── IPMessageUnit.h │ │ │ │ ├── IPMessageXMLParser.h │ │ │ │ ├── IPPerson.h │ │ │ │ ├── IPQuoteParser.h │ │ │ │ ├── IPRegexToolbox.h │ │ │ │ ├── IPSentenceFeatureExtractor.h │ │ │ │ ├── IPTenseDetector.h │ │ │ │ └── IPTextMessageConversation.h │ │ └── src │ │ │ ├── DataDetectorsNaturalLanguage.m │ │ │ ├── IPCircularBufferArray.m │ │ │ ├── IPDataDetectorsFeatureExtractor.m │ │ │ ├── IPEventClassificationType.m │ │ │ ├── IPFeature.m │ │ │ ├── IPFeatureData.m │ │ │ ├── IPFeatureExtractor.m │ │ │ ├── IPFeatureKeyword.m │ │ │ ├── IPFeatureMailScanner.m │ │ │ ├── IPFeatureManager.m │ │ │ ├── IPFeatureScanner.m │ │ │ ├── IPFeatureSentence.m │ │ │ ├── IPFeatureSentenceFragment.m │ │ │ ├── IPFeatureTextMessageScanner.m │ │ │ ├── IPKeywordFeatureExtractor.m │ │ │ ├── IPMessage.m │ │ │ ├── IPMessageUnit.m │ │ │ ├── IPMessageXMLParser.m │ │ │ ├── IPPerson.m │ │ │ ├── IPQuoteParser.m │ │ │ ├── IPRegexToolbox.m │ │ │ ├── IPSentenceFeatureExtractor.m │ │ │ ├── IPTenseDetector.m │ │ │ └── IPTextMessageConversation.m │ ├── DebugSymbols │ │ ├── CMakeLists.txt │ │ ├── DebugSymbols.c │ │ ├── functions.c │ │ └── include │ │ │ └── DebugSymbols │ │ │ └── DebugSymbols.h │ ├── DeviceLink │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── DeviceLink │ │ │ │ └── DeviceLink.h │ │ └── src │ │ │ └── DeviceLink.c │ ├── DiskImages │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── DiskImages │ │ │ │ ├── DIHelperProxy.h │ │ │ │ ├── DiskImages.h │ │ │ │ └── NSDictionary+BetterAccessors.h │ │ └── src │ │ │ ├── DIHelperProxy.m │ │ │ ├── NSDictionary+BetterAccessors.m │ │ │ └── functions.c │ ├── DiskManagement │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── DiskManagement │ │ │ │ ├── DMAPFS.h │ │ │ │ ├── DMAPFSPrivVars.h │ │ │ │ ├── DMAppleRAID.h │ │ │ │ ├── DMAppleRAIDPrivVars.h │ │ │ │ ├── DMCoreStorage.h │ │ │ │ ├── DMCoreStoragePrivVars.h │ │ │ │ ├── DMDisk.h │ │ │ │ ├── DMEraseDisk.h │ │ │ │ ├── DMEraseDiskPrivVars.h │ │ │ │ ├── DMFilesystem.h │ │ │ │ ├── DMFilesystemPrivVars.h │ │ │ │ ├── DMManager.h │ │ │ │ ├── DMManagerPrivVars.h │ │ │ │ ├── DMPartitionDisk.h │ │ │ │ ├── DMPartitionDiskPrivVars.h │ │ │ │ ├── DMRepairDisk.h │ │ │ │ ├── DMRepairDiskPrivVars.h │ │ │ │ ├── DMUDSWrapper.h │ │ │ │ ├── DiskManagement.h │ │ │ │ ├── _DMClaimDA.h │ │ │ │ ├── _DMListDA.h │ │ │ │ └── _DMWaitIdleDA.h │ │ └── src │ │ │ ├── DMAPFS.m │ │ │ ├── DMAPFSPrivVars.m │ │ │ ├── DMAppleRAID.m │ │ │ ├── DMAppleRAIDPrivVars.m │ │ │ ├── DMCoreStorage.m │ │ │ ├── DMCoreStoragePrivVars.m │ │ │ ├── DMDisk.m │ │ │ ├── DMEraseDisk.m │ │ │ ├── DMEraseDiskPrivVars.m │ │ │ ├── DMFilesystem.m │ │ │ ├── DMFilesystemPrivVars.m │ │ │ ├── DMManager.m │ │ │ ├── DMManagerPrivVars.m │ │ │ ├── DMPartitionDisk.m │ │ │ ├── DMPartitionDiskPrivVars.m │ │ │ ├── DMRepairDisk.m │ │ │ ├── DMRepairDiskPrivVars.m │ │ │ ├── DMUDSWrapper.m │ │ │ ├── _DMClaimDA.m │ │ │ ├── _DMListDA.m │ │ │ ├── _DMWaitIdleDA.m │ │ │ └── functions.c │ ├── Espresso │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Espresso │ │ │ │ ├── ETDataPoint.h │ │ │ │ ├── ETDataPointDictionary.h │ │ │ │ ├── ETDataProvider.h │ │ │ │ ├── ETDataSource.h │ │ │ │ ├── ETDataSourceBlobF4.h │ │ │ │ ├── ETDataSourceBuf.h │ │ │ │ ├── ETDataSourceFromFolderData.h │ │ │ │ ├── ETDataSourceWithCache.h │ │ │ │ ├── ETDataSourceWithExtractor.h │ │ │ │ ├── ETDataTensor.h │ │ │ │ ├── ETImageDescriptorExtractor.h │ │ │ │ ├── ETImageFolderDataProvider.h │ │ │ │ ├── ETLayerInitializationParameters.h │ │ │ │ ├── ETLossConfig.h │ │ │ │ ├── ETLossDefinition.h │ │ │ │ ├── ETModelDef.h │ │ │ │ ├── ETModelDefLeNet.h │ │ │ │ ├── ETModelDefMLP.h │ │ │ │ ├── ETModelDefinition.h │ │ │ │ ├── ETModelWithExtractor.h │ │ │ │ ├── ETOpaqueCopy.h │ │ │ │ ├── ETOptimizerDef.h │ │ │ │ ├── ETOptimizerDefSGD.h │ │ │ │ ├── ETOptimizerDefinition.h │ │ │ │ ├── ETTask.h │ │ │ │ ├── ETTaskClassifier.h │ │ │ │ ├── ETTaskContext.h │ │ │ │ ├── ETTaskDefinition.h │ │ │ │ ├── ETTaskState.h │ │ │ │ ├── ETVariable.h │ │ │ │ ├── ETVariablesDefinition.h │ │ │ │ ├── Espresso.h │ │ │ │ ├── EspressoBrickRegistry.h │ │ │ │ ├── EspressoBrickTensor.h │ │ │ │ ├── EspressoBrickTensorCPU.h │ │ │ │ ├── EspressoBrickTensorMetal.h │ │ │ │ ├── EspressoBrickTensorShape.h │ │ │ │ ├── EspressoContext.h │ │ │ │ ├── EspressoConvolutionWeightsForMPS.h │ │ │ │ ├── EspressoCustomPass.h │ │ │ │ ├── EspressoDCNEspressoOverfeatDetector.h │ │ │ │ ├── EspressoDataFrame.h │ │ │ │ ├── EspressoDataFrameAttachment.h │ │ │ │ ├── EspressoDataFrameExecutor.h │ │ │ │ ├── EspressoDataFrameImageAttachment.h │ │ │ │ ├── EspressoDataFrameMappedFile.h │ │ │ │ ├── EspressoDataFrameStorage.h │ │ │ │ ├── EspressoDataFrameStorageExecutor.h │ │ │ │ ├── EspressoDataFrameStorageExecutorMatchingBufferSet.h │ │ │ │ ├── EspressoDataFrameTensorAttachment.h │ │ │ │ ├── EspressoFDOverfeatNetwork.h │ │ │ │ ├── EspressoFaceDetectedObject.h │ │ │ │ ├── EspressoFaceLandmarkDetector.h │ │ │ │ ├── EspressoImage2Image.h │ │ │ │ ├── EspressoInnerProductWeightsForMPS.h │ │ │ │ ├── EspressoMetalKernelsCache.h │ │ │ │ ├── EspressoMetalSingleton.h │ │ │ │ ├── EspressoNetwork.h │ │ │ │ ├── EspressoOJBC.h │ │ │ │ ├── EspressoPass_find_shared_weights.h │ │ │ │ ├── EspressoPass_lstm_atomizer.h │ │ │ │ ├── EspressoPass_make_fully_conv.h │ │ │ │ ├── EspressoPass_multi_head_program_gen.h │ │ │ │ ├── EspressoPass_multi_head_prune_undeclared.h │ │ │ │ ├── EspressoPass_rpn_tracker_merge_convs.h │ │ │ │ ├── EspressoPass_squeeze_devop.h │ │ │ │ ├── EspressoPass_style_transfer_parameterize_transplant.h │ │ │ │ ├── EspressoPass_style_transfer_two_nets.h │ │ │ │ ├── EspressoPass_style_transfer_two_nets_onlyanepart.h │ │ │ │ ├── EspressoPass_transpose_inner_product_weights.h │ │ │ │ ├── EspressoPass_wavernn_ane.h │ │ │ │ ├── EspressoSharedKernelCacheEntry.h │ │ │ │ ├── EspressoTrainingConvolutionWeightsForMPS.h │ │ │ │ ├── EspressoTrainingInnerProductWeightsForMPS.h │ │ │ │ ├── Espresso_mxnetTools_ImageBinaryRecordReader.h │ │ │ │ ├── ExternalDetectedObject.h │ │ │ │ ├── MPSCNNConvolutionDataSource.h │ │ │ │ ├── MyMPSCNNConvolutionGradientState.h │ │ │ │ ├── TwoNetsStyleTransfer.h │ │ │ │ └── _ETBufferDataSource.h │ │ └── src │ │ │ ├── ETDataPoint.m │ │ │ ├── ETDataPointDictionary.m │ │ │ ├── ETDataSourceBlobF4.m │ │ │ ├── ETDataSourceBuf.m │ │ │ ├── ETDataSourceFromFolderData.m │ │ │ ├── ETDataSourceWithCache.m │ │ │ ├── ETDataSourceWithExtractor.m │ │ │ ├── ETDataTensor.m │ │ │ ├── ETImageDescriptorExtractor.m │ │ │ ├── ETImageFolderDataProvider.m │ │ │ ├── ETLayerInitializationParameters.m │ │ │ ├── ETLossConfig.m │ │ │ ├── ETLossDefinition.m │ │ │ ├── ETModelDef.m │ │ │ ├── ETModelDefLeNet.m │ │ │ ├── ETModelDefMLP.m │ │ │ ├── ETModelDefinition.m │ │ │ ├── ETModelWithExtractor.m │ │ │ ├── ETOpaqueCopy.m │ │ │ ├── ETOptimizerDef.m │ │ │ ├── ETOptimizerDefSGD.m │ │ │ ├── ETOptimizerDefinition.m │ │ │ ├── ETTask.m │ │ │ ├── ETTaskClassifier.m │ │ │ ├── ETTaskDefinition.m │ │ │ ├── ETTaskState.m │ │ │ ├── ETVariable.m │ │ │ ├── ETVariablesDefinition.m │ │ │ ├── Espresso.m │ │ │ ├── EspressoBrickRegistry.m │ │ │ ├── EspressoBrickTensor.m │ │ │ ├── EspressoBrickTensorCPU.m │ │ │ ├── EspressoBrickTensorMetal.m │ │ │ ├── EspressoBrickTensorShape.m │ │ │ ├── EspressoContext.m │ │ │ ├── EspressoConvolutionWeightsForMPS.m │ │ │ ├── EspressoCustomPass.m │ │ │ ├── EspressoDCNEspressoOverfeatDetector.m │ │ │ ├── EspressoDataFrame.m │ │ │ ├── EspressoDataFrameAttachment.m │ │ │ ├── EspressoDataFrameExecutor.m │ │ │ ├── EspressoDataFrameImageAttachment.m │ │ │ ├── EspressoDataFrameMappedFile.m │ │ │ ├── EspressoDataFrameStorage.m │ │ │ ├── EspressoDataFrameStorageExecutor.m │ │ │ ├── EspressoDataFrameStorageExecutorMatchingBufferSet.m │ │ │ ├── EspressoDataFrameTensorAttachment.m │ │ │ ├── EspressoFDOverfeatNetwork.m │ │ │ ├── EspressoFaceDetectedObject.m │ │ │ ├── EspressoFaceLandmarkDetector.m │ │ │ ├── EspressoImage2Image.m │ │ │ ├── EspressoInnerProductWeightsForMPS.m │ │ │ ├── EspressoMetalKernelsCache.m │ │ │ ├── EspressoMetalSingleton.m │ │ │ ├── EspressoNetwork.m │ │ │ ├── EspressoOJBC.m │ │ │ ├── EspressoPass_find_shared_weights.m │ │ │ ├── EspressoPass_lstm_atomizer.m │ │ │ ├── EspressoPass_make_fully_conv.m │ │ │ ├── EspressoPass_multi_head_program_gen.m │ │ │ ├── EspressoPass_multi_head_prune_undeclared.m │ │ │ ├── EspressoPass_rpn_tracker_merge_convs.m │ │ │ ├── EspressoPass_squeeze_devop.m │ │ │ ├── EspressoPass_style_transfer_parameterize_transplant.m │ │ │ ├── EspressoPass_style_transfer_two_nets.m │ │ │ ├── EspressoPass_style_transfer_two_nets_onlyanepart.m │ │ │ ├── EspressoPass_transpose_inner_product_weights.m │ │ │ ├── EspressoPass_wavernn_ane.m │ │ │ ├── EspressoSharedKernelCacheEntry.m │ │ │ ├── EspressoTrainingConvolutionWeightsForMPS.m │ │ │ ├── EspressoTrainingInnerProductWeightsForMPS.m │ │ │ ├── Espresso_mxnetTools_ImageBinaryRecordReader.m │ │ │ ├── MyMPSCNNConvolutionGradientState.m │ │ │ ├── TwoNetsStyleTransfer.m │ │ │ └── _ETBufferDataSource.m │ ├── IOPlatformPluginFamily │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── IOPlatformPluginFamily │ │ │ │ └── IOPlatformPluginFamily.h │ │ └── src │ │ │ └── functions.c │ ├── IconServices │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── IconServices │ │ │ │ ├── CALayerDelegate.h │ │ │ │ ├── CIContext+IconServicesAdditions.h │ │ │ │ ├── CUICatalog+IconServicesAdditions.h │ │ │ │ ├── IFImage+ISScalableCompositorResource.h │ │ │ │ ├── IFImageBag+ISScalableCompositorResource.h │ │ │ │ ├── IFSymbol+ISScalableCompositorResource.h │ │ │ │ ├── ISAliasIcon.h │ │ │ │ ├── ISAppNotificationBadgeRecipe.h │ │ │ │ ├── ISAssetCatalogResource.h │ │ │ │ ├── ISBindableIcon.h │ │ │ │ ├── ISBlurEffect.h │ │ │ │ ├── ISBorderEffect.h │ │ │ │ ├── ISBundleIcon.h │ │ │ │ ├── ISBundleIdentifierIcon.h │ │ │ │ ├── ISBundleResourceProvider.h │ │ │ │ ├── ISCenterBadgeRecipe.h │ │ │ │ ├── ISCenterEmbossRecipe.h │ │ │ │ ├── ISCircle.h │ │ │ │ ├── ISClippingRecipe.h │ │ │ │ ├── ISCompositVariantResource.h │ │ │ │ ├── ISCompositVariantResourceLayer.h │ │ │ │ ├── ISCompositVariantResourceLayerProtocol.h │ │ │ │ ├── ISCompositor.h │ │ │ │ ├── ISCompositorElement.h │ │ │ │ ├── ISCompositorRecipe.h │ │ │ │ ├── ISCompositorResource.h │ │ │ │ ├── ISCompositorResourceAdapter.h │ │ │ │ ├── ISCompositorResourceProvider.h │ │ │ │ ├── ISCompositorResourceProviderKey.h │ │ │ │ ├── ISConcreteIcon.h │ │ │ │ ├── ISContentLayer.h │ │ │ │ ├── ISContinuousRoundedRect.h │ │ │ │ ├── ISCurrentDeviceIcon.h │ │ │ │ ├── ISCustomIcon.h │ │ │ │ ├── ISCustomIconManager.h │ │ │ │ ├── ISCustomRecipe.h │ │ │ │ ├── ISDecoratedIcon.h │ │ │ │ ├── ISDefaults.h │ │ │ │ ├── ISDeviceInfo.h │ │ │ │ ├── ISDimmedDarkEffect.h │ │ │ │ ├── ISDimmedEffect.h │ │ │ │ ├── ISDropShaddowEffect.h │ │ │ │ ├── ISEffect.h │ │ │ │ ├── ISEmbossedEffect.h │ │ │ │ ├── ISEmbossedFolder.h │ │ │ │ ├── ISEmbossedSmartFolder.h │ │ │ │ ├── ISGenerationRequest.h │ │ │ │ ├── ISGenerationResponse.h │ │ │ │ ├── ISGenericApplicationIcon.h │ │ │ │ ├── ISGenericDocumentIcon.h │ │ │ │ ├── ISGenericFolderIcon.h │ │ │ │ ├── ISGenericRecipe.h │ │ │ │ ├── ISGraphicIconConfiguration.h │ │ │ │ ├── ISGraphicSymbolDescriptor.h │ │ │ │ ├── ISGraphicSymbolResource.h │ │ │ │ ├── ISHintedFloat.h │ │ │ │ ├── ISHintedRect.h │ │ │ │ ├── ISHintedSize.h │ │ │ │ ├── ISHintedValue.h │ │ │ │ ├── ISIcns.h │ │ │ │ ├── ISIcnsIcon.h │ │ │ │ ├── ISIcon.h │ │ │ │ ├── ISIconCache.h │ │ │ │ ├── ISIconCacheConfiguration.h │ │ │ │ ├── ISIconCacheServiceProtocol.h │ │ │ │ ├── ISIconDecoration.h │ │ │ │ ├── ISIconDecorationInternal.h │ │ │ │ ├── ISIconDecorationResource.h │ │ │ │ ├── ISIconFactory.h │ │ │ │ ├── ISIconLayer.h │ │ │ │ ├── ISIconManager.h │ │ │ │ ├── ISIconManagerObserver.h │ │ │ │ ├── ISIconObserver.h │ │ │ │ ├── ISIconResourceLocator.h │ │ │ │ ├── ISIconSpecification.h │ │ │ │ ├── ISIconTypeResourceLocator.h │ │ │ │ ├── ISIconset.h │ │ │ │ ├── ISIconsetVariant.h │ │ │ │ ├── ISImage.h │ │ │ │ ├── ISImageBag.h │ │ │ │ ├── ISImageBagIcon.h │ │ │ │ ├── ISImageCache.h │ │ │ │ ├── ISImageDescriptor.h │ │ │ │ ├── ISImageSetVariantResource.h │ │ │ │ ├── ISImageSetVariantResourceImage.h │ │ │ │ ├── ISImageSpecification.h │ │ │ │ ├── ISImageStyleDescriptor.h │ │ │ │ ├── ISLayer.h │ │ │ │ ├── ISLeadingStatusBadgeRecipe.h │ │ │ │ ├── ISLegibilityEffect.h │ │ │ │ ├── ISMessagesAppRecipe.h │ │ │ │ ├── ISMultipleFilesRecipe.h │ │ │ │ ├── ISMutableIcns.h │ │ │ │ ├── ISMutableStoreIndex.h │ │ │ │ ├── ISOverlayEmbossRecipe.h │ │ │ │ ├── ISOverlayEmbossedFolder.h │ │ │ │ ├── ISPrefsCache.h │ │ │ │ ├── ISRecordResourceProvider.h │ │ │ │ ├── ISResourceFile.h │ │ │ │ ├── ISResourceMetaData.h │ │ │ │ ├── ISResourceProvider.h │ │ │ │ ├── ISRuntimeCompositorResourceLayer.h │ │ │ │ ├── ISScalableCompositorResource.h │ │ │ │ ├── ISShapeCompositorResource.h │ │ │ │ ├── ISStackedCompositorResource.h │ │ │ │ ├── ISStore.h │ │ │ │ ├── ISStoreIndex.h │ │ │ │ ├── ISStoreMapTable.h │ │ │ │ ├── ISStoreServiceProtocol.h │ │ │ │ ├── ISStoreUnit.h │ │ │ │ ├── ISSymbol.h │ │ │ │ ├── ISSymbolIcon.h │ │ │ │ ├── ISSymbolImageDescriptor.h │ │ │ │ ├── ISSymbolLayer.h │ │ │ │ ├── ISTagIcon.h │ │ │ │ ├── ISTemplateEffect.h │ │ │ │ ├── ISTextLayer.h │ │ │ │ ├── ISTintEffect.h │ │ │ │ ├── ISTrailingStatusBadgeRecipe.h │ │ │ │ ├── ISTransparentIcon.h │ │ │ │ ├── ISTypeIcon.h │ │ │ │ ├── ISURLResourcePropertySpecification.h │ │ │ │ ├── ISUnknownIcon.h │ │ │ │ ├── ISVariant.h │ │ │ │ ├── ISVariantResourceProtocol.h │ │ │ │ ├── ISVariantResourceProviderProtocol.h │ │ │ │ ├── ISVectorVariantResource.h │ │ │ │ ├── ISVolumeIcon.h │ │ │ │ ├── ISiOSAppClipRecipe.h │ │ │ │ ├── ISiOSAppRecipe.h │ │ │ │ ├── ISiOSMacAppRecipe.h │ │ │ │ ├── ISiosDocumentRecipe.h │ │ │ │ ├── ISiosmacDocumentRecipe.h │ │ │ │ ├── ISmacosDocumentRecipe.h │ │ │ │ ├── ISmacosDocumentRecipe1016.h │ │ │ │ ├── ISwatchOSAppRecipe.h │ │ │ │ ├── IconServices.h │ │ │ │ ├── LSApplicationExtensionRecord+IconServicesAdditions.h │ │ │ │ ├── LSBundleRecord+IconServicesAdditions.h │ │ │ │ ├── LSClaimBindingConfiguration+IconServicesAdditions.h │ │ │ │ ├── LSClaimRecord+IconServicesAdditions.h │ │ │ │ ├── LSExtensionPointRecord+IconServicesAdditions.h │ │ │ │ ├── LSRecord+IconServices.h │ │ │ │ ├── NSArray+ISStackedCompositorResource.h │ │ │ │ ├── NSBundle+IconServicesAdditions.h │ │ │ │ ├── NSData+ISStoreIndex.h │ │ │ │ ├── NSDictionary+ISCompositorResourceProvider.h │ │ │ │ ├── NSError+Iconset.h │ │ │ │ ├── NSLocale+IconServicesAdditions.h │ │ │ │ ├── NSString+ISCompositorResource.h │ │ │ │ ├── NSURL+UTIAdditions.h │ │ │ │ ├── NSUUID+IconServices.h │ │ │ │ ├── NSXPCConnection+ISStore.h │ │ │ │ ├── NSXPCInterface+ISIconCacheServiceProtocol.h │ │ │ │ ├── UTTypeRecord+IconServicesAdditions.h │ │ │ │ ├── _IFColor.h │ │ │ │ ├── _ISCompositorElement.h │ │ │ │ └── _ISImage.h │ │ └── src │ │ │ ├── CIContext+IconServicesAdditions.m │ │ │ ├── CUICatalog+IconServicesAdditions.m │ │ │ ├── IFImage+ISScalableCompositorResource.m │ │ │ ├── IFImageBag+ISScalableCompositorResource.m │ │ │ ├── IFSymbol+ISScalableCompositorResource.m │ │ │ ├── ISAliasIcon.m │ │ │ ├── ISAppNotificationBadgeRecipe.m │ │ │ ├── ISAssetCatalogResource.m │ │ │ ├── ISBindableIcon.m │ │ │ ├── ISBlurEffect.m │ │ │ ├── ISBorderEffect.m │ │ │ ├── ISBundleIcon.m │ │ │ ├── ISBundleIdentifierIcon.m │ │ │ ├── ISBundleResourceProvider.m │ │ │ ├── ISCenterBadgeRecipe.m │ │ │ ├── ISCenterEmbossRecipe.m │ │ │ ├── ISCircle.m │ │ │ ├── ISClippingRecipe.m │ │ │ ├── ISCompositVariantResource.m │ │ │ ├── ISCompositVariantResourceLayer.m │ │ │ ├── ISCompositor.m │ │ │ ├── ISCompositorElement.m │ │ │ ├── ISCompositorResourceAdapter.m │ │ │ ├── ISCompositorResourceProviderKey.m │ │ │ ├── ISConcreteIcon.m │ │ │ ├── ISContentLayer.m │ │ │ ├── ISContinuousRoundedRect.m │ │ │ ├── ISCurrentDeviceIcon.m │ │ │ ├── ISCustomIcon.m │ │ │ ├── ISCustomIconManager.m │ │ │ ├── ISCustomRecipe.m │ │ │ ├── ISDecoratedIcon.m │ │ │ ├── ISDefaults.m │ │ │ ├── ISDeviceInfo.m │ │ │ ├── ISDimmedDarkEffect.m │ │ │ ├── ISDimmedEffect.m │ │ │ ├── ISDropShaddowEffect.m │ │ │ ├── ISEmbossedEffect.m │ │ │ ├── ISEmbossedFolder.m │ │ │ ├── ISEmbossedSmartFolder.m │ │ │ ├── ISGenerationRequest.m │ │ │ ├── ISGenerationResponse.m │ │ │ ├── ISGenericApplicationIcon.m │ │ │ ├── ISGenericDocumentIcon.m │ │ │ ├── ISGenericFolderIcon.m │ │ │ ├── ISGenericRecipe.m │ │ │ ├── ISGraphicIconConfiguration.m │ │ │ ├── ISGraphicSymbolDescriptor.m │ │ │ ├── ISGraphicSymbolResource.m │ │ │ ├── ISHintedFloat.m │ │ │ ├── ISHintedRect.m │ │ │ ├── ISHintedSize.m │ │ │ ├── ISHintedValue.m │ │ │ ├── ISIcns.m │ │ │ ├── ISIcnsIcon.m │ │ │ ├── ISIcon.m │ │ │ ├── ISIconCache.m │ │ │ ├── ISIconCacheConfiguration.m │ │ │ ├── ISIconDecoration.m │ │ │ ├── ISIconDecorationResource.m │ │ │ ├── ISIconFactory.m │ │ │ ├── ISIconLayer.m │ │ │ ├── ISIconManager.m │ │ │ ├── ISIconObserver.m │ │ │ ├── ISIconResourceLocator.m │ │ │ ├── ISIconSpecification.m │ │ │ ├── ISIconTypeResourceLocator.m │ │ │ ├── ISIconset.m │ │ │ ├── ISImageBag.m │ │ │ ├── ISImageBagIcon.m │ │ │ ├── ISImageCache.m │ │ │ ├── ISImageDescriptor.m │ │ │ ├── ISImageSetVariantResource.m │ │ │ ├── ISImageSetVariantResourceImage.m │ │ │ ├── ISImageSpecification.m │ │ │ ├── ISImageStyleDescriptor.m │ │ │ ├── ISLayer.m │ │ │ ├── ISLeadingStatusBadgeRecipe.m │ │ │ ├── ISLegibilityEffect.m │ │ │ ├── ISMessagesAppRecipe.m │ │ │ ├── ISMultipleFilesRecipe.m │ │ │ ├── ISMutableIcns.m │ │ │ ├── ISMutableStoreIndex.m │ │ │ ├── ISOverlayEmbossRecipe.m │ │ │ ├── ISOverlayEmbossedFolder.m │ │ │ ├── ISPrefsCache.m │ │ │ ├── ISRecordResourceProvider.m │ │ │ ├── ISResourceFile.m │ │ │ ├── ISResourceMetaData.m │ │ │ ├── ISResourceProvider.m │ │ │ ├── ISRuntimeCompositorResourceLayer.m │ │ │ ├── ISShapeCompositorResource.m │ │ │ ├── ISStore.m │ │ │ ├── ISStoreIndex.m │ │ │ ├── ISStoreMapTable.m │ │ │ ├── ISStoreUnit.m │ │ │ ├── ISSymbol.m │ │ │ ├── ISSymbolIcon.m │ │ │ ├── ISSymbolImageDescriptor.m │ │ │ ├── ISSymbolLayer.m │ │ │ ├── ISTagIcon.m │ │ │ ├── ISTemplateEffect.m │ │ │ ├── ISTextLayer.m │ │ │ ├── ISTintEffect.m │ │ │ ├── ISTrailingStatusBadgeRecipe.m │ │ │ ├── ISTransparentIcon.m │ │ │ ├── ISTypeIcon.m │ │ │ ├── ISURLResourcePropertySpecification.m │ │ │ ├── ISUnknownIcon.m │ │ │ ├── ISVariant.m │ │ │ ├── ISVectorVariantResource.m │ │ │ ├── ISVolumeIcon.m │ │ │ ├── ISiOSAppClipRecipe.m │ │ │ ├── ISiOSAppRecipe.m │ │ │ ├── ISiOSMacAppRecipe.m │ │ │ ├── ISiosDocumentRecipe.m │ │ │ ├── ISiosmacDocumentRecipe.m │ │ │ ├── ISmacosDocumentRecipe.m │ │ │ ├── ISmacosDocumentRecipe1016.m │ │ │ ├── ISwatchOSAppRecipe.m │ │ │ ├── IconServices.m │ │ │ ├── LSApplicationExtensionRecord+IconServicesAdditions.m │ │ │ ├── LSBundleRecord+IconServicesAdditions.m │ │ │ ├── LSClaimBindingConfiguration+IconServicesAdditions.m │ │ │ ├── LSClaimRecord+IconServicesAdditions.m │ │ │ ├── LSExtensionPointRecord+IconServicesAdditions.m │ │ │ ├── LSRecord+IconServices.m │ │ │ ├── NSArray+ISStackedCompositorResource.m │ │ │ ├── NSBundle+IconServicesAdditions.m │ │ │ ├── NSData+ISStoreIndex.m │ │ │ ├── NSDictionary+ISCompositorResourceProvider.m │ │ │ ├── NSError+Iconset.m │ │ │ ├── NSLocale+IconServicesAdditions.m │ │ │ ├── NSString+ISCompositorResource.m │ │ │ ├── NSURL+UTIAdditions.m │ │ │ ├── NSUUID+IconServices.m │ │ │ ├── NSXPCConnection+ISStore.m │ │ │ ├── NSXPCInterface+ISIconCacheServiceProtocol.m │ │ │ ├── UTTypeRecord+IconServicesAdditions.m │ │ │ ├── _IFColor.m │ │ │ ├── _ISCompositorElement.m │ │ │ └── _ISImage.m │ ├── InternationalSupport │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── InternationalSupport │ │ │ │ ├── ISUtilities.h │ │ │ │ ├── InternationalSupport.h │ │ │ │ ├── NSBundle+InternationalSupportExtensions.h │ │ │ │ └── NSLocale+InternationalSupportExtensions.h │ │ └── src │ │ │ ├── ISUtilities.m │ │ │ ├── NSBundle+InternationalSupportExtensions.m │ │ │ └── NSLocale+InternationalSupportExtensions.m │ ├── LoggingSupport │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── LoggingSupport │ │ │ │ ├── LoggingSupport.h │ │ │ │ ├── LoggingSupport_OSLogCoder.h │ │ │ │ ├── NSPredicateVisitor.h │ │ │ │ ├── OSActivityCreateEvent.h │ │ │ │ ├── OSActivityEvent.h │ │ │ │ ├── OSActivityEventMessage.h │ │ │ │ ├── OSActivityLogMessageEvent.h │ │ │ │ ├── OSActivityLossEvent.h │ │ │ │ ├── OSActivitySignpostEvent.h │ │ │ │ ├── OSActivityStatedumpEvent.h │ │ │ │ ├── OSActivityStream.h │ │ │ │ ├── OSActivityTimesyncEvent.h │ │ │ │ ├── OSActivityTraceMessageEvent.h │ │ │ │ ├── OSActivityTransitionEvent.h │ │ │ │ ├── OSActivityUserActionEvent.h │ │ │ │ ├── OSLogCoder.h │ │ │ │ ├── OSLogDevice.h │ │ │ │ ├── OSLogEventBacktrace.h │ │ │ │ ├── OSLogEventBacktraceFrame.h │ │ │ │ ├── OSLogEventDecomposedMessage.h │ │ │ │ ├── OSLogEventLiveSource.h │ │ │ │ ├── OSLogEventLiveStore.h │ │ │ │ ├── OSLogEventLiveStream.h │ │ │ │ ├── OSLogEventLocalStore.h │ │ │ │ ├── OSLogEventMessageArgument.h │ │ │ │ ├── OSLogEventProvider.h │ │ │ │ ├── OSLogEventProxy.h │ │ │ │ ├── OSLogEventSource.h │ │ │ │ ├── OSLogEventStore.h │ │ │ │ ├── OSLogEventStream.h │ │ │ │ ├── OSLogEventStreamBase.h │ │ │ │ ├── OSLogEventStreamPosition.h │ │ │ │ ├── OSLogMessagePlaceholder.h │ │ │ │ ├── OSLogPersistence.h │ │ │ │ ├── OSLogPreferencesCategory.h │ │ │ │ ├── OSLogPreferencesManager.h │ │ │ │ ├── OSLogPreferencesProcess.h │ │ │ │ ├── OSLogPreferencesSubsystem.h │ │ │ │ ├── OSLogTermDumper.h │ │ │ │ ├── _OSLogCatalogFilter.h │ │ │ │ ├── _OSLogChunkBuffer.h │ │ │ │ ├── _OSLogChunkFile.h │ │ │ │ ├── _OSLogChunkFileReference.h │ │ │ │ ├── _OSLogChunkMemory.h │ │ │ │ ├── _OSLogChunkStore.h │ │ │ │ ├── _OSLogCollectionReference.h │ │ │ │ ├── _OSLogDirectoryReference.h │ │ │ │ ├── _OSLogEnumeratorCatalog.h │ │ │ │ ├── _OSLogEnumeratorCatalogSubchunk.h │ │ │ │ ├── _OSLogEnumeratorOversizeChunk.h │ │ │ │ ├── _OSLogEventStoreMetadata.h │ │ │ │ ├── _OSLogEventStoreTimeRef.h │ │ │ │ ├── _OSLogIndex.h │ │ │ │ ├── _OSLogIndexEnumerator.h │ │ │ │ ├── _OSLogIndexFile.h │ │ │ │ ├── _OSLogIndexTimeRangable.h │ │ │ │ ├── _OSLogLegacyPredicateMapper.h │ │ │ │ ├── _OSLogPredicateMapper.h │ │ │ │ ├── _OSLogSimplePredicate.h │ │ │ │ ├── _OSLogStreamFilter.h │ │ │ │ ├── _OSLogTracepointBuffer.h │ │ │ │ └── _OSLogVersioning.h │ │ └── src │ │ │ ├── LoggingSupport.m │ │ │ ├── LoggingSupport_OSLogCoder.m │ │ │ ├── OSActivityCreateEvent.m │ │ │ ├── OSActivityEvent.m │ │ │ ├── OSActivityEventMessage.m │ │ │ ├── OSActivityLogMessageEvent.m │ │ │ ├── OSActivityLossEvent.m │ │ │ ├── OSActivitySignpostEvent.m │ │ │ ├── OSActivityStatedumpEvent.m │ │ │ ├── OSActivityStream.m │ │ │ ├── OSActivityTimesyncEvent.m │ │ │ ├── OSActivityTraceMessageEvent.m │ │ │ ├── OSActivityTransitionEvent.m │ │ │ ├── OSActivityUserActionEvent.m │ │ │ ├── OSLogDevice.m │ │ │ ├── OSLogEventBacktrace.m │ │ │ ├── OSLogEventBacktraceFrame.m │ │ │ ├── OSLogEventDecomposedMessage.m │ │ │ ├── OSLogEventLiveSource.m │ │ │ ├── OSLogEventLiveStore.m │ │ │ ├── OSLogEventLiveStream.m │ │ │ ├── OSLogEventLocalStore.m │ │ │ ├── OSLogEventMessageArgument.m │ │ │ ├── OSLogEventProxy.m │ │ │ ├── OSLogEventSource.m │ │ │ ├── OSLogEventStore.m │ │ │ ├── OSLogEventStream.m │ │ │ ├── OSLogEventStreamBase.m │ │ │ ├── OSLogEventStreamPosition.m │ │ │ ├── OSLogMessagePlaceholder.m │ │ │ ├── OSLogPersistence.m │ │ │ ├── OSLogPreferencesCategory.m │ │ │ ├── OSLogPreferencesManager.m │ │ │ ├── OSLogPreferencesProcess.m │ │ │ ├── OSLogPreferencesSubsystem.m │ │ │ ├── OSLogTermDumper.m │ │ │ ├── _OSLogCatalogFilter.m │ │ │ ├── _OSLogChunkBuffer.m │ │ │ ├── _OSLogChunkFile.m │ │ │ ├── _OSLogChunkFileReference.m │ │ │ ├── _OSLogChunkMemory.m │ │ │ ├── _OSLogChunkStore.m │ │ │ ├── _OSLogCollectionReference.m │ │ │ ├── _OSLogDirectoryReference.m │ │ │ ├── _OSLogEnumeratorCatalog.m │ │ │ ├── _OSLogEnumeratorCatalogSubchunk.m │ │ │ ├── _OSLogEnumeratorOversizeChunk.m │ │ │ ├── _OSLogEventStoreMetadata.m │ │ │ ├── _OSLogEventStoreTimeRef.m │ │ │ ├── _OSLogIndex.m │ │ │ ├── _OSLogIndexEnumerator.m │ │ │ ├── _OSLogIndexFile.m │ │ │ ├── _OSLogLegacyPredicateMapper.m │ │ │ ├── _OSLogPredicateMapper.m │ │ │ ├── _OSLogSimplePredicate.m │ │ │ ├── _OSLogStreamFilter.m │ │ │ ├── _OSLogTracepointBuffer.m │ │ │ └── _OSLogVersioning.m │ ├── MobileAsset │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── MobileAsset │ │ │ │ ├── ASAsset.h │ │ │ │ ├── ASAssetQuery.h │ │ │ │ ├── MAAbsoluteAssetId.h │ │ │ │ ├── MAAsset.h │ │ │ │ ├── MAAssetQuery.h │ │ │ │ ├── MADownloadConfig.h │ │ │ │ ├── MADownloadOptions.h │ │ │ │ ├── MAMsuDownloadOptions.h │ │ │ │ ├── MAProgressHandler.h │ │ │ │ ├── MAProgressNotification.h │ │ │ │ ├── MAXpcConnection.h │ │ │ │ ├── MAXpcManager.h │ │ │ │ └── MobileAsset.h │ │ └── src │ │ │ ├── ASAsset.m │ │ │ ├── ASAssetQuery.m │ │ │ ├── MAAbsoluteAssetId.m │ │ │ ├── MAAsset.m │ │ │ ├── MAAssetQuery.m │ │ │ ├── MADownloadConfig.m │ │ │ ├── MADownloadOptions.m │ │ │ ├── MAMsuDownloadOptions.m │ │ │ ├── MAProgressHandler.m │ │ │ ├── MAProgressNotification.m │ │ │ ├── MAXpcConnection.m │ │ │ ├── MAXpcManager.m │ │ │ └── MobileAsset.m │ ├── MobileDevice │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── MobileDevice │ │ │ │ ├── AMSupportURLConnectionDelegate.h │ │ │ │ ├── AMSupportURLSession.h │ │ │ │ ├── MDRemoteServiceSupportProtocol.h │ │ │ │ ├── MobileDevice.h │ │ │ │ ├── PersonalizedImage.h │ │ │ │ └── RPStream.h │ │ └── src │ │ │ ├── AMSupportURLConnectionDelegate.m │ │ │ ├── AMSupportURLSession.m │ │ │ ├── MobileDevice.m │ │ │ ├── PersonalizedImage.m │ │ │ └── RPStream.m │ ├── NetworkStatistics │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── NetworkStatistics │ │ │ │ ├── NWRouteSnapshot.h │ │ │ │ ├── NWRouteSnapshotter.h │ │ │ │ ├── NWSnapshot.h │ │ │ │ ├── NWSnapshotSource.h │ │ │ │ ├── NWSnapshotter.h │ │ │ │ ├── NWStatisticsDelegateBlockWrapper.h │ │ │ │ ├── NWStatisticsInterfaceSource.h │ │ │ │ ├── NWStatisticsManager.h │ │ │ │ ├── NWStatisticsRouteSource.h │ │ │ │ ├── NWStatisticsSource.h │ │ │ │ ├── NWStatisticsTCPSource.h │ │ │ │ ├── NWStatisticsUDPSource.h │ │ │ │ └── NetworkStatistics.h │ │ └── src │ │ │ ├── NWRouteSnapshot.m │ │ │ ├── NWRouteSnapshotter.m │ │ │ ├── NWSnapshot.m │ │ │ ├── NWSnapshotSource.m │ │ │ ├── NWSnapshotter.m │ │ │ ├── NWStatisticsDelegateBlockWrapper.m │ │ │ ├── NWStatisticsInterfaceSource.m │ │ │ ├── NWStatisticsManager.m │ │ │ ├── NWStatisticsRouteSource.m │ │ │ ├── NWStatisticsSource.m │ │ │ ├── NWStatisticsTCPSource.m │ │ │ ├── NWStatisticsUDPSource.m │ │ │ ├── functions.c │ │ │ └── globals.c │ ├── PackageKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── PackageKit │ │ │ │ ├── PKAddExtendedAttributesInstallOperation.h │ │ │ │ ├── PKAddRestrictedRootFlagInstallOperation.h │ │ │ │ ├── PKArchive.h │ │ │ │ ├── PKArchiveDistributionContainer.h │ │ │ │ ├── PKArchiveProduct.h │ │ │ │ ├── PKArchiveSignature.h │ │ │ │ ├── PKArchiveSigner.h │ │ │ │ ├── PKBOM.h │ │ │ │ ├── PKBOMDirectoryEnumerator.h │ │ │ │ ├── PKBundleComponent.h │ │ │ │ ├── PKBundleComponentVersion.h │ │ │ │ ├── PKBundleStorage.h │ │ │ │ ├── PKCFBundleStorage.h │ │ │ │ ├── PKCheckError.h │ │ │ │ ├── PKCleanEFWCacheInstallOperation.h │ │ │ │ ├── PKComponent.h │ │ │ │ ├── PKDYLDCacheInstallOperation.h │ │ │ │ ├── PKDataSizeFormatter.h │ │ │ │ ├── PKDataSizeValueTransformer.h │ │ │ │ ├── PKDeferredInstallManager.h │ │ │ │ ├── PKDistribution.h │ │ │ │ ├── PKDistributionChoice.h │ │ │ │ ├── PKDistributionContainer.h │ │ │ │ ├── PKDistributionPackageReference.h │ │ │ │ ├── PKDistributionScript.h │ │ │ │ ├── PKDownload.h │ │ │ │ ├── PKDownloader.h │ │ │ │ ├── PKDownloaderQueue.h │ │ │ │ ├── PKDownloaderQueueElement.h │ │ │ │ ├── PKDownloaderSpeedTracker.h │ │ │ │ ├── PKExtendedAttribute.h │ │ │ │ ├── PKExtendedAttributeEnumerator.h │ │ │ │ ├── PKExtractInstallOperation.h │ │ │ │ ├── PKFileDownload.h │ │ │ │ ├── PKFirmwareBundleComponent.h │ │ │ │ ├── PKFirmwareBundleComponentModel.h │ │ │ │ ├── PKFirmwareInstallationController.h │ │ │ │ ├── PKFlatDistributionContainer.h │ │ │ │ ├── PKFolderArchive.h │ │ │ │ ├── PKFolderArchiveProduct.h │ │ │ │ ├── PKFolderArchiveSignature.h │ │ │ │ ├── PKInstall.h │ │ │ │ ├── PKInstallAnalyzer.h │ │ │ │ ├── PKInstallClient.h │ │ │ │ ├── PKInstallCommitManager.h │ │ │ │ ├── PKInstallDaemon.h │ │ │ │ ├── PKInstallDaemonClient.h │ │ │ │ ├── PKInstallError.h │ │ │ │ ├── PKInstallHistory.h │ │ │ │ ├── PKInstallManifest.h │ │ │ │ ├── PKInstallOperation.h │ │ │ │ ├── PKInstallOperationController.h │ │ │ │ ├── PKInstallRequest.h │ │ │ │ ├── PKInstallSandbox.h │ │ │ │ ├── PKInstallSandboxManager.h │ │ │ │ ├── PKInstallStateHelper.h │ │ │ │ ├── PKInstallTask.h │ │ │ │ ├── PKInstallableObject.h │ │ │ │ ├── PKJaguarPackage.h │ │ │ │ ├── PKKextCacheInstallOperation.h │ │ │ │ ├── PKLSRegisterInstallOperation.h │ │ │ │ ├── PKLeopardPackage.h │ │ │ │ ├── PKMachOWithInfoPlistBundleStorage.h │ │ │ │ ├── PKMutableArchive.h │ │ │ │ ├── PKMutableBOM.h │ │ │ │ ├── PKMutableDistributionContainer.h │ │ │ │ ├── PKMutableLeopardPackage.h │ │ │ │ ├── PKMutablePackage.h │ │ │ │ ├── PKMutableProduct.h │ │ │ │ ├── PKMutableReceipt.h │ │ │ │ ├── PKMutableSignedContainer.h │ │ │ │ ├── PKMutableXARArchive.h │ │ │ │ ├── PKNetEnabledProduct.h │ │ │ │ ├── PKObsoletionInstallOperation.h │ │ │ │ ├── PKPackage.h │ │ │ │ ├── PKPackageChecker.h │ │ │ │ ├── PKPackageInfo.h │ │ │ │ ├── PKPackageReference.h │ │ │ │ ├── PKPackageRequirements.h │ │ │ │ ├── PKPackageSourceManager.h │ │ │ │ ├── PKPackageSpecifier.h │ │ │ │ ├── PKPatchAndUpdateInstallOperation.h │ │ │ │ ├── PKPatchFilesInstallOperation.h │ │ │ │ ├── PKPayloadCopier.h │ │ │ │ ├── PKPrepareDiskInstallOperation.h │ │ │ │ ├── PKPrepareForCommitInstallOperation.h │ │ │ │ ├── PKProduct.h │ │ │ │ ├── PKProductArchiver.h │ │ │ │ ├── PKProductChecker.h │ │ │ │ ├── PKProductInfo.h │ │ │ │ ├── PKProductUnarchiver.h │ │ │ │ ├── PKReceipt.h │ │ │ │ ├── PKRelocateComponentsInstallOperation.h │ │ │ │ ├── PKRunPackageScriptInstallOperation.h │ │ │ │ ├── PKSafariExtensionBundleStorage.h │ │ │ │ ├── PKScript.h │ │ │ │ ├── PKSecureNetEnabledProduct.h │ │ │ │ ├── PKSetupDeferredInstallOperation.h │ │ │ │ ├── PKShoveInstallOperation.h │ │ │ │ ├── PKSignedContainer.h │ │ │ │ ├── PKSigningIdentity.h │ │ │ │ ├── PKStreamingProduct.h │ │ │ │ ├── PKStreamingXARArchive.h │ │ │ │ ├── PKTimeRemainingFormatter.h │ │ │ │ ├── PKTimeRemainingValueTransformer.h │ │ │ │ ├── PKTrust.h │ │ │ │ ├── PKTrustAdditions.h │ │ │ │ ├── PKURLConnection.h │ │ │ │ ├── PKURLDownload.h │ │ │ │ ├── PKUpdateEFWCacheInstallOperation.h │ │ │ │ ├── PKVerifyMASPayloadInstallOperation.h │ │ │ │ ├── PKWriteMASReceiptInstallOperation.h │ │ │ │ ├── PKWriteReceiptsInstallOperation.h │ │ │ │ ├── PKXARArchive.h │ │ │ │ ├── PKXARArchiveSignature.h │ │ │ │ ├── PKXPCCacheInstallOperation.h │ │ │ │ ├── PackageKit.h │ │ │ │ ├── XARDirectoryEnumerator.h │ │ │ │ ├── _PKCheckErrorRecoveryAttempter.h │ │ │ │ ├── _PKInstallClientConnection.h │ │ │ │ ├── _PKPackageCreationFileDigest.h │ │ │ │ ├── _PKSignedContainerCopyCancelHandler.h │ │ │ │ └── _PKURLConnectionDelegate.h │ │ └── src │ │ │ ├── PKAddExtendedAttributesInstallOperation.m │ │ │ ├── PKAddRestrictedRootFlagInstallOperation.m │ │ │ ├── PKArchive.m │ │ │ ├── PKArchiveDistributionContainer.m │ │ │ ├── PKArchiveProduct.m │ │ │ ├── PKArchiveSignature.m │ │ │ ├── PKArchiveSigner.m │ │ │ ├── PKBOM.m │ │ │ ├── PKBOMDirectoryEnumerator.m │ │ │ ├── PKBundleComponent.m │ │ │ ├── PKBundleComponentVersion.m │ │ │ ├── PKBundleStorage.m │ │ │ ├── PKCFBundleStorage.m │ │ │ ├── PKCheckError.m │ │ │ ├── PKCleanEFWCacheInstallOperation.m │ │ │ ├── PKComponent.m │ │ │ ├── PKDYLDCacheInstallOperation.m │ │ │ ├── PKDataSizeFormatter.m │ │ │ ├── PKDataSizeValueTransformer.m │ │ │ ├── PKDeferredInstallManager.m │ │ │ ├── PKDistribution.m │ │ │ ├── PKDistributionChoice.m │ │ │ ├── PKDistributionContainer.m │ │ │ ├── PKDistributionPackageReference.m │ │ │ ├── PKDistributionScript.m │ │ │ ├── PKDownload.m │ │ │ ├── PKDownloader.m │ │ │ ├── PKDownloaderQueue.m │ │ │ ├── PKDownloaderQueueElement.m │ │ │ ├── PKDownloaderSpeedTracker.m │ │ │ ├── PKExtendedAttribute.m │ │ │ ├── PKExtendedAttributeEnumerator.m │ │ │ ├── PKExtractInstallOperation.m │ │ │ ├── PKFileDownload.m │ │ │ ├── PKFirmwareBundleComponent.m │ │ │ ├── PKFirmwareBundleComponentModel.m │ │ │ ├── PKFirmwareInstallationController.m │ │ │ ├── PKFlatDistributionContainer.m │ │ │ ├── PKFolderArchive.m │ │ │ ├── PKFolderArchiveProduct.m │ │ │ ├── PKFolderArchiveSignature.m │ │ │ ├── PKInstall.m │ │ │ ├── PKInstallAnalyzer.m │ │ │ ├── PKInstallClient.m │ │ │ ├── PKInstallCommitManager.m │ │ │ ├── PKInstallDaemon.m │ │ │ ├── PKInstallDaemonClient.m │ │ │ ├── PKInstallError.m │ │ │ ├── PKInstallHistory.m │ │ │ ├── PKInstallManifest.m │ │ │ ├── PKInstallOperation.m │ │ │ ├── PKInstallOperationController.m │ │ │ ├── PKInstallRequest.m │ │ │ ├── PKInstallSandbox.m │ │ │ ├── PKInstallSandboxManager.m │ │ │ ├── PKInstallStateHelper.m │ │ │ ├── PKInstallTask.m │ │ │ ├── PKInstallableObject.m │ │ │ ├── PKJaguarPackage.m │ │ │ ├── PKKextCacheInstallOperation.m │ │ │ ├── PKLSRegisterInstallOperation.m │ │ │ ├── PKLeopardPackage.m │ │ │ ├── PKMachOWithInfoPlistBundleStorage.m │ │ │ ├── PKMutableArchive.m │ │ │ ├── PKMutableBOM.m │ │ │ ├── PKMutableDistributionContainer.m │ │ │ ├── PKMutableLeopardPackage.m │ │ │ ├── PKMutablePackage.m │ │ │ ├── PKMutableProduct.m │ │ │ ├── PKMutableReceipt.m │ │ │ ├── PKMutableSignedContainer.m │ │ │ ├── PKMutableXARArchive.m │ │ │ ├── PKNetEnabledProduct.m │ │ │ ├── PKObsoletionInstallOperation.m │ │ │ ├── PKPackage.m │ │ │ ├── PKPackageChecker.m │ │ │ ├── PKPackageInfo.m │ │ │ ├── PKPackageReference.m │ │ │ ├── PKPackageRequirements.m │ │ │ ├── PKPackageSourceManager.m │ │ │ ├── PKPackageSpecifier.m │ │ │ ├── PKPatchAndUpdateInstallOperation.m │ │ │ ├── PKPatchFilesInstallOperation.m │ │ │ ├── PKPayloadCopier.m │ │ │ ├── PKPrepareDiskInstallOperation.m │ │ │ ├── PKPrepareForCommitInstallOperation.m │ │ │ ├── PKProduct.m │ │ │ ├── PKProductArchiver.m │ │ │ ├── PKProductChecker.m │ │ │ ├── PKProductInfo.m │ │ │ ├── PKProductUnarchiver.m │ │ │ ├── PKReceipt.m │ │ │ ├── PKRelocateComponentsInstallOperation.m │ │ │ ├── PKRunPackageScriptInstallOperation.m │ │ │ ├── PKSafariExtensionBundleStorage.m │ │ │ ├── PKScript.m │ │ │ ├── PKSecureNetEnabledProduct.m │ │ │ ├── PKSetupDeferredInstallOperation.m │ │ │ ├── PKShoveInstallOperation.m │ │ │ ├── PKSignedContainer.m │ │ │ ├── PKSigningIdentity.m │ │ │ ├── PKStreamingProduct.m │ │ │ ├── PKStreamingXARArchive.m │ │ │ ├── PKTimeRemainingFormatter.m │ │ │ ├── PKTimeRemainingValueTransformer.m │ │ │ ├── PKTrust.m │ │ │ ├── PKTrustAdditions.m │ │ │ ├── PKURLConnection.m │ │ │ ├── PKURLDownload.m │ │ │ ├── PKUpdateEFWCacheInstallOperation.m │ │ │ ├── PKVerifyMASPayloadInstallOperation.m │ │ │ ├── PKWriteMASReceiptInstallOperation.m │ │ │ ├── PKWriteReceiptsInstallOperation.m │ │ │ ├── PKXARArchive.m │ │ │ ├── PKXARArchiveSignature.m │ │ │ ├── PKXPCCacheInstallOperation.m │ │ │ ├── XARDirectoryEnumerator.m │ │ │ ├── _PKCheckErrorRecoveryAttempter.m │ │ │ ├── _PKInstallClientConnection.m │ │ │ ├── _PKPackageCreationFileDigest.m │ │ │ ├── _PKSignedContainerCopyCancelHandler.m │ │ │ ├── _PKURLConnectionDelegate.m │ │ │ ├── functions.c │ │ │ └── functions.h │ ├── PerformanceAnalysis │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── PerformanceAnalysis │ │ │ │ ├── AllocationTotal.h │ │ │ │ ├── AllocationTotalDiff.h │ │ │ │ ├── MallocDataCategorySummary.h │ │ │ │ ├── MallocDataCategorySummaryDiff.h │ │ │ │ ├── MallocTotal.h │ │ │ │ ├── MallocTotalDiff.h │ │ │ │ ├── PAAbandonedMemory.h │ │ │ │ ├── PACommpageRegion.h │ │ │ │ ├── PADataArchive.h │ │ │ │ ├── PADataArchiveHandle.h │ │ │ │ ├── PADataArchiveKey.h │ │ │ │ ├── PAFootprint.h │ │ │ │ ├── PAGraphicsInfoCollector.h │ │ │ │ ├── PAImage.h │ │ │ │ ├── PAImageSection.h │ │ │ │ ├── PAImageSegment.h │ │ │ │ ├── PAImageSegmentRegion.h │ │ │ │ ├── PAMallocData.h │ │ │ │ ├── PAMallocRegion.h │ │ │ │ ├── PAMallocStackTree.h │ │ │ │ ├── PAMallocStackTreeFrame.h │ │ │ │ ├── PAMappedFileRegion.h │ │ │ │ ├── PAMemAllocation.h │ │ │ │ ├── PAMemAllocationCategory.h │ │ │ │ ├── PAMemRange.h │ │ │ │ ├── PAMemRegion.h │ │ │ │ ├── PAMemoryCategory.h │ │ │ │ ├── PAMemoryCategoryAggregation.h │ │ │ │ ├── PAMemoryCategoryOrganizer.h │ │ │ │ ├── PAMemoryObject.h │ │ │ │ ├── PAMemoryObjectOrganizer.h │ │ │ │ ├── PAMemorySimpleGraphicsSummary.h │ │ │ │ ├── PAMemorySubCategory.h │ │ │ │ ├── PAPLDistributedNotificationHandler.h │ │ │ │ ├── PAPage.h │ │ │ │ ├── PAPageResidency.h │ │ │ │ ├── PAPageResidencyDiff.h │ │ │ │ ├── PAPerfLoggingClientOperation.h │ │ │ │ ├── PAPerfLoggingIntervalData.h │ │ │ │ ├── PAPerfLoggingIntervalTransitionEvent.h │ │ │ │ ├── PAPerfLoggingOperation.h │ │ │ │ ├── PAPerfLoggingOperationCompletionNotification.h │ │ │ │ ├── PAPerfLoggingOperationCompletionNotificationIntervalData.h │ │ │ │ ├── PAProcess.h │ │ │ │ ├── PAProcessMemoryGroup.h │ │ │ │ ├── PARangeContainer.h │ │ │ │ ├── PASampleNode.h │ │ │ │ ├── PASystem.h │ │ │ │ ├── PAVideoCard.h │ │ │ │ ├── PAVideoCardSet.h │ │ │ │ ├── PerformanceAnalysis.h │ │ │ │ ├── PurgeTypeTotal.h │ │ │ │ ├── PurgeTypeTotalDiff.h │ │ │ │ ├── ZoneTotal.h │ │ │ │ └── ZoneTotalDiff.h │ │ └── src │ │ │ ├── AllocationTotal.m │ │ │ ├── AllocationTotalDiff.m │ │ │ ├── MallocDataCategorySummary.m │ │ │ ├── MallocDataCategorySummaryDiff.m │ │ │ ├── MallocTotal.m │ │ │ ├── MallocTotalDiff.m │ │ │ ├── PAAbandonedMemory.m │ │ │ ├── PACommpageRegion.m │ │ │ ├── PADataArchive.m │ │ │ ├── PADataArchiveHandle.m │ │ │ ├── PADataArchiveKey.m │ │ │ ├── PAFootprint.m │ │ │ ├── PAGraphicsInfoCollector.m │ │ │ ├── PAImage.m │ │ │ ├── PAImageSection.m │ │ │ ├── PAImageSegment.m │ │ │ ├── PAImageSegmentRegion.m │ │ │ ├── PAMallocData.m │ │ │ ├── PAMallocRegion.m │ │ │ ├── PAMallocStackTree.m │ │ │ ├── PAMallocStackTreeFrame.m │ │ │ ├── PAMappedFileRegion.m │ │ │ ├── PAMemAllocation.m │ │ │ ├── PAMemAllocationCategory.m │ │ │ ├── PAMemRange.m │ │ │ ├── PAMemRegion.m │ │ │ ├── PAMemoryCategory.m │ │ │ ├── PAMemoryCategoryAggregation.m │ │ │ ├── PAMemoryCategoryOrganizer.m │ │ │ ├── PAMemoryObject.m │ │ │ ├── PAMemoryObjectOrganizer.m │ │ │ ├── PAMemorySimpleGraphicsSummary.m │ │ │ ├── PAMemorySubCategory.m │ │ │ ├── PAPLDistributedNotificationHandler.m │ │ │ ├── PAPage.m │ │ │ ├── PAPageResidency.m │ │ │ ├── PAPageResidencyDiff.m │ │ │ ├── PAPerfLoggingClientOperation.m │ │ │ ├── PAPerfLoggingIntervalData.m │ │ │ ├── PAPerfLoggingIntervalTransitionEvent.m │ │ │ ├── PAPerfLoggingOperation.m │ │ │ ├── PAPerfLoggingOperationCompletionNotification.m │ │ │ ├── PAPerfLoggingOperationCompletionNotificationIntervalData.m │ │ │ ├── PAProcess.m │ │ │ ├── PAProcessMemoryGroup.m │ │ │ ├── PARangeContainer.m │ │ │ ├── PASampleNode.m │ │ │ ├── PASystem.m │ │ │ ├── PAVideoCard.m │ │ │ ├── PAVideoCardSet.m │ │ │ ├── PurgeTypeTotal.m │ │ │ ├── PurgeTypeTotalDiff.m │ │ │ ├── ZoneTotal.m │ │ │ ├── ZoneTotalDiff.m │ │ │ └── functions.c │ ├── PlugInKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── PlugInKit │ │ │ │ ├── PKBundle.h │ │ │ │ ├── PKDaemonClient.h │ │ │ │ ├── PKDiscoveryDriver.h │ │ │ │ ├── PKDiscoveryLSWatcher.h │ │ │ │ ├── PKHost.h │ │ │ │ ├── PKHostDefaults.h │ │ │ │ ├── PKHostPlugIn.h │ │ │ │ ├── PKManager.h │ │ │ │ ├── PKPlugInCore.h │ │ │ │ ├── PKSandboxExtension.h │ │ │ │ ├── PKService.h │ │ │ │ ├── PKServiceDefaults.h │ │ │ │ ├── PKServicePersonality.h │ │ │ │ ├── PKXPCObject.h │ │ │ │ └── PlugInKit.h │ │ └── src │ │ │ ├── PKBundle.m │ │ │ ├── PKDaemonClient.m │ │ │ ├── PKDiscoveryDriver.m │ │ │ ├── PKDiscoveryLSWatcher.m │ │ │ ├── PKHost.m │ │ │ ├── PKHostDefaults.m │ │ │ ├── PKHostPlugIn.m │ │ │ ├── PKManager.m │ │ │ ├── PKPlugInCore.m │ │ │ ├── PKSandboxExtension.m │ │ │ ├── PKService.m │ │ │ ├── PKServiceDefaults.m │ │ │ ├── PKServicePersonality.m │ │ │ ├── PKXPCObject.m │ │ │ ├── functions.c │ │ │ └── globals.c │ ├── PowerLog │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── PowerLog │ │ │ │ ├── PLClientLogAggregator.h │ │ │ │ ├── PLClientLogger.h │ │ │ │ ├── PLCoreDuetEvent.h │ │ │ │ ├── PLCoreDuetEventInterval.h │ │ │ │ ├── PLDuetActivitySchedulerUsageSnapshot.h │ │ │ │ ├── PLEnergyBucket.h │ │ │ │ ├── PLModelingUtilities.h │ │ │ │ ├── PLNetworkEnergyModel.h │ │ │ │ ├── PLUsageSnapshot.h │ │ │ │ └── PowerLog.h │ │ └── src │ │ │ ├── PLClientLogAggregator.m │ │ │ ├── PLClientLogger.m │ │ │ ├── PLCoreDuetEvent.m │ │ │ ├── PLCoreDuetEventInterval.m │ │ │ ├── PLDuetActivitySchedulerUsageSnapshot.m │ │ │ ├── PLEnergyBucket.m │ │ │ ├── PLModelingUtilities.m │ │ │ ├── PLNetworkEnergyModel.m │ │ │ ├── PLUsageSnapshot.m │ │ │ └── PowerLog.m │ ├── ProtocolBuffer │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ProtocolBuffer │ │ │ │ ├── PBCodable.h │ │ │ │ ├── PBConstants.h │ │ │ │ ├── PBDataReader.h │ │ │ │ ├── PBDataWriter.h │ │ │ │ ├── PBHashUtil.h │ │ │ │ ├── PBMessageStreamReader.h │ │ │ │ ├── PBMessageStreamWriter.h │ │ │ │ ├── PBMutableData.h │ │ │ │ ├── PBRequest.h │ │ │ │ ├── PBSessionRequester.h │ │ │ │ ├── PBStreamReader.h │ │ │ │ ├── PBStreamWriter.h │ │ │ │ ├── PBTextReader.h │ │ │ │ ├── PBTextWriter.h │ │ │ │ ├── PBUnknownFields.h │ │ │ │ ├── ProtocolBuffer.h │ │ │ │ └── _PBProperty.h │ │ └── src │ │ │ ├── PBCodable.m │ │ │ ├── PBDataReader.m │ │ │ ├── PBDataWriter.m │ │ │ ├── PBMessageStreamReader.m │ │ │ ├── PBMessageStreamWriter.m │ │ │ ├── PBMutableData.m │ │ │ ├── PBRequest.m │ │ │ ├── PBSessionRequester.m │ │ │ ├── PBStreamReader.m │ │ │ ├── PBStreamWriter.m │ │ │ ├── PBTextReader.m │ │ │ ├── PBTextWriter.m │ │ │ ├── PBUnknownFields.m │ │ │ ├── ProtocolBuffer.m │ │ │ └── _PBProperty.m │ ├── ServerInformation │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ServerInformation │ │ │ │ ├── ServerInformation.h │ │ │ │ └── ServerInformationComputerModelInfo.h │ │ └── src │ │ │ ├── ServerInformation.m │ │ │ └── ServerInformationComputerModelInfo.m │ ├── ShazamCore │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ShazamCore │ │ │ │ ├── NSData+Compression.h │ │ │ │ ├── NSError+SHCoreError.h │ │ │ │ ├── SHAnalytics.h │ │ │ │ ├── SHBagContract.h │ │ │ │ ├── SHCampaignTokens.h │ │ │ │ ├── SHCompression.h │ │ │ │ ├── SHCoreError.h │ │ │ │ ├── SHDataCompression.h │ │ │ │ ├── SHDataStream.h │ │ │ │ ├── SHDataStreamInput.h │ │ │ │ ├── SHDataStreamOutput.h │ │ │ │ ├── SHDefaultConfigurationValues.h │ │ │ │ ├── SHEndpoints.h │ │ │ │ ├── SHEntitlements.h │ │ │ │ ├── SHFeatureFlags.h │ │ │ │ ├── SHHost.h │ │ │ │ ├── SHJSONLDataDetokenizer.h │ │ │ │ ├── SHJSONLFileReader.h │ │ │ │ ├── SHJSONLFileWriter.h │ │ │ │ ├── SHLocalization.h │ │ │ │ ├── SHMusicSubscriptionStatus.h │ │ │ │ ├── SHOffers.h │ │ │ │ ├── SHOffersNetworkRequester.h │ │ │ │ ├── SHRemoteConfiguration.h │ │ │ │ ├── SHStorefront.h │ │ │ │ ├── SHTokenizedURL.h │ │ │ │ └── ShazamCore.h │ │ └── src │ │ │ ├── NSData+Compression.m │ │ │ ├── NSError+SHCoreError.m │ │ │ ├── SHAnalytics.m │ │ │ ├── SHBagContract.m │ │ │ ├── SHCampaignTokens.m │ │ │ ├── SHCompression.m │ │ │ ├── SHCoreError.m │ │ │ ├── SHDataCompression.m │ │ │ ├── SHDataStreamInput.m │ │ │ ├── SHDataStreamOutput.m │ │ │ ├── SHDefaultConfigurationValues.m │ │ │ ├── SHEndpoints.m │ │ │ ├── SHEntitlements.m │ │ │ ├── SHFeatureFlags.m │ │ │ ├── SHHost.m │ │ │ ├── SHJSONLDataDetokenizer.m │ │ │ ├── SHJSONLFileReader.m │ │ │ ├── SHJSONLFileWriter.m │ │ │ ├── SHLocalization.m │ │ │ ├── SHMusicSubscriptionStatus.m │ │ │ ├── SHOffers.m │ │ │ ├── SHOffersNetworkRequester.m │ │ │ ├── SHRemoteConfiguration.m │ │ │ ├── SHStorefront.m │ │ │ ├── SHTokenizedURL.m │ │ │ └── ShazamCore.m │ ├── ShazamEvents │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ShazamEvents │ │ │ │ ├── SHService.h │ │ │ │ ├── SHServiceDelegate.h │ │ │ │ ├── SHShazamEventsServiceInterfaces.h │ │ │ │ ├── ShazamEvents.h │ │ │ │ ├── _TtC12ShazamEvents19ShazamEventsService.h │ │ │ │ ├── _TtC12ShazamEvents24LiveMusicEventConnection.h │ │ │ │ ├── _TtC12ShazamEvents31LiveMusicEventXPCValueContainer.h │ │ │ │ ├── _TtC12ShazamEvents34LiveMusicScheduleXPCValueContainer.h │ │ │ │ ├── _TtC12ShazamEvents39LiveMusicVenueScheduleXPCValueContainer.h │ │ │ │ ├── _TtP12ShazamEvents18ShazamEventsClient_.h │ │ │ │ └── _TtP12ShazamEvents18ShazamEventsServer_.h │ │ └── src │ │ │ ├── SHShazamEventsServiceInterfaces.m │ │ │ ├── ShazamEvents.m │ │ │ ├── _TtC12ShazamEvents19ShazamEventsService.m │ │ │ ├── _TtC12ShazamEvents24LiveMusicEventConnection.m │ │ │ ├── _TtC12ShazamEvents31LiveMusicEventXPCValueContainer.m │ │ │ ├── _TtC12ShazamEvents34LiveMusicScheduleXPCValueContainer.m │ │ │ └── _TtC12ShazamEvents39LiveMusicVenueScheduleXPCValueContainer.m │ ├── ShazamInsights │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ShazamInsights │ │ │ │ ├── CLLocation+Geohash.h │ │ │ │ ├── SHAffinityGroup.h │ │ │ │ ├── SHAffinityGroupQuery.h │ │ │ │ ├── SHCDNDataFetcher.h │ │ │ │ ├── SHClusterController.h │ │ │ │ ├── SHClusterImporter.h │ │ │ │ ├── SHClusterImporterUtils.h │ │ │ │ ├── SHClusterJSONLReader.h │ │ │ │ ├── SHClusterLoader.h │ │ │ │ ├── SHClusterLoaderRequest.h │ │ │ │ ├── SHClusterMetadata.h │ │ │ │ ├── SHClusterMetadataQuery.h │ │ │ │ ├── SHClusterQuery.h │ │ │ │ ├── SHClusterSQLiteDataStore.h │ │ │ │ ├── SHClusterStatementRunner.h │ │ │ │ ├── SHClusterStatus.h │ │ │ │ ├── SHDataFetcher.h │ │ │ │ ├── SHDataFetcherFileInfo.h │ │ │ │ ├── SHFileChecksum.h │ │ │ │ ├── SHInsightsConfiguration.h │ │ │ │ ├── SHInsightsError.h │ │ │ │ ├── SHInsightsNetworkRequester.h │ │ │ │ ├── SHJSONLClusterImporter.h │ │ │ │ ├── SHJSONLDataDetokenizerDelegate.h │ │ │ │ ├── SHLocalDataFetcher.h │ │ │ │ ├── SHMediaItemPropertyCollection.h │ │ │ │ ├── SHNetworkRequester.h │ │ │ │ ├── SHRegion.h │ │ │ │ ├── SHSQLiteClusterImporter.h │ │ │ │ ├── SHSQLiteUtils.h │ │ │ │ ├── SHStubbedNetworkRequester.h │ │ │ │ ├── SHTimeAndPlaceAffinityGroup.h │ │ │ │ ├── SHTimeAndPlaceController.h │ │ │ │ ├── SHTimeAndPlaceServerResponseParser.h │ │ │ │ └── ShazamInsights.h │ │ └── src │ │ │ ├── CLLocation+Geohash.m │ │ │ ├── SHAffinityGroup.m │ │ │ ├── SHAffinityGroupQuery.m │ │ │ ├── SHCDNDataFetcher.m │ │ │ ├── SHClusterController.m │ │ │ ├── SHClusterImporterUtils.m │ │ │ ├── SHClusterJSONLReader.m │ │ │ ├── SHClusterLoader.m │ │ │ ├── SHClusterLoaderRequest.m │ │ │ ├── SHClusterMetadata.m │ │ │ ├── SHClusterMetadataQuery.m │ │ │ ├── SHClusterQuery.m │ │ │ ├── SHClusterSQLiteDataStore.m │ │ │ ├── SHClusterStatementRunner.m │ │ │ ├── SHClusterStatus.m │ │ │ ├── SHDataFetcherFileInfo.m │ │ │ ├── SHFileChecksum.m │ │ │ ├── SHInsightsConfiguration.m │ │ │ ├── SHInsightsError.m │ │ │ ├── SHInsightsNetworkRequester.m │ │ │ ├── SHJSONLClusterImporter.m │ │ │ ├── SHLocalDataFetcher.m │ │ │ ├── SHMediaItemPropertyCollection.m │ │ │ ├── SHRegion.m │ │ │ ├── SHSQLiteClusterImporter.m │ │ │ ├── SHSQLiteUtils.m │ │ │ ├── SHStubbedNetworkRequester.m │ │ │ ├── SHTimeAndPlaceAffinityGroup.m │ │ │ ├── SHTimeAndPlaceController.m │ │ │ ├── SHTimeAndPlaceServerResponseParser.m │ │ │ └── ShazamInsights.m │ ├── ShazamKitUI │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ShazamKitUI │ │ │ │ ├── CAAnimationDelegate.h │ │ │ │ ├── NSBundle+ResourcesBundle.h │ │ │ │ ├── SHCustomBackgroundCompatiblePalette.h │ │ │ │ ├── SHInnerCircleMaskLayer.h │ │ │ │ ├── SHListeningAutoShadowLayer.h │ │ │ │ ├── SHListeningInnerCircleLayer.h │ │ │ │ ├── SHListeningInnerCirclesLayer.h │ │ │ │ ├── SHListeningLayer.h │ │ │ │ ├── SHListeningMediaTimingFunctionProvider.h │ │ │ │ ├── SHListeningOuterCircleLayer.h │ │ │ │ ├── SHListeningOuterCirclesLayer.h │ │ │ │ ├── SHListeningViewHelperMethods.h │ │ │ │ ├── SHMaths.h │ │ │ │ ├── SHMediaItem+Presentation.h │ │ │ │ ├── SHMediaItemPresentation.h │ │ │ │ ├── SHPalette.h │ │ │ │ ├── SHPaletteLayer.h │ │ │ │ ├── SHShazamButtonLayer.h │ │ │ │ ├── SHShazamButtonViewDelegate.h │ │ │ │ ├── SHShazamKitUIService.h │ │ │ │ ├── SHShazamKitUIServiceConnection.h │ │ │ │ ├── SHShazamKitUIServiceConnectionProvider.h │ │ │ │ ├── ShazamKitUI.h │ │ │ │ └── _TtCV11ShazamKitUI29ListeningLayerPlatformWrapper15ListeningNSView.h │ │ └── src │ │ │ ├── NSBundle+ResourcesBundle.m │ │ │ ├── SHCustomBackgroundCompatiblePalette.m │ │ │ ├── SHInnerCircleMaskLayer.m │ │ │ ├── SHListeningAutoShadowLayer.m │ │ │ ├── SHListeningInnerCircleLayer.m │ │ │ ├── SHListeningInnerCirclesLayer.m │ │ │ ├── SHListeningLayer.m │ │ │ ├── SHListeningMediaTimingFunctionProvider.m │ │ │ ├── SHListeningOuterCircleLayer.m │ │ │ ├── SHListeningOuterCirclesLayer.m │ │ │ ├── SHListeningViewHelperMethods.m │ │ │ ├── SHMaths.m │ │ │ ├── SHMediaItem+Presentation.m │ │ │ ├── SHPalette.m │ │ │ ├── SHPaletteLayer.m │ │ │ ├── SHShazamButtonLayer.m │ │ │ ├── SHShazamKitUIServiceConnection.m │ │ │ ├── SHShazamKitUIServiceConnectionProvider.m │ │ │ ├── ShazamKitUI.m │ │ │ └── _TtCV11ShazamKitUI29ListeningLayerPlatformWrapper15ListeningNSView.m │ ├── SkyLight │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── SkyLight │ │ │ │ ├── CGXConnectionBox.h │ │ │ │ ├── MTLResource.h │ │ │ │ ├── MTLResourceSPI.h │ │ │ │ ├── SLDataTimelineConfig.h │ │ │ │ ├── SLDataTimelineConnection.h │ │ │ │ ├── SLDataTimelineProcess.h │ │ │ │ ├── SLDataTimelineProcessEntry.h │ │ │ │ ├── SLDataTimelineProcessWindows.h │ │ │ │ ├── SLDataTimelineServerSnapshot.h │ │ │ │ ├── SLDataTimelineServerSnapshotEntry.h │ │ │ │ ├── SLDataTimelineSession.h │ │ │ │ ├── SLDataTimelineSessionEntry.h │ │ │ │ ├── SLDataTimelineSessionPlaceholderEntry.h │ │ │ │ ├── SLDataTimelineSessionProcessCollection.h │ │ │ │ ├── SLDataTimelineSessionSnapshotEntry.h │ │ │ │ ├── SLDataTimelineSnapshotCollection.h │ │ │ │ ├── SLDataTimelineSnapshotCollectionMetadata.h │ │ │ │ ├── SLDataTimelineUpdate.h │ │ │ │ ├── SLSecureCursorAssertion.h │ │ │ │ ├── SLSecureCursorAssertionManager.h │ │ │ │ ├── SLSessionOwner.h │ │ │ │ ├── SLXPCConvertible.h │ │ │ │ ├── SLXPCExportable.h │ │ │ │ ├── SLXPCImportable.h │ │ │ │ └── SkyLight.h │ │ └── src │ │ │ ├── CGXConnectionBox.m │ │ │ ├── SLDataTimelineConfig.m │ │ │ ├── SLDataTimelineConnection.m │ │ │ ├── SLDataTimelineProcessEntry.m │ │ │ ├── SLDataTimelineServerSnapshotEntry.m │ │ │ ├── SLDataTimelineSessionEntry.m │ │ │ ├── SLDataTimelineSessionPlaceholderEntry.m │ │ │ ├── SLDataTimelineSessionSnapshotEntry.m │ │ │ ├── SLDataTimelineSnapshotCollection.m │ │ │ ├── SLDataTimelineUpdate.m │ │ │ ├── SLSecureCursorAssertion.m │ │ │ ├── SLSecureCursorAssertionManager.m │ │ │ ├── SLSessionOwner.m │ │ │ └── SkyLight.m │ ├── Spotlight │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Spotlight │ │ │ │ ├── CKDAAPPurchaseHistoryObserver.h │ │ │ │ ├── NSPasteboardWriting.h │ │ │ │ ├── PRSBagFetchSuccessDelegate.h │ │ │ │ ├── PRSBaseResult.h │ │ │ │ ├── PRSCalculationResult.h │ │ │ │ ├── PRSCalculatorResult.h │ │ │ │ ├── PRSConversion.h │ │ │ │ ├── PRSConversionResult.h │ │ │ │ ├── PRSCurrencyConversionResult.h │ │ │ │ ├── PRSDictionaryResult.h │ │ │ │ ├── PRSGenericResult.h │ │ │ │ ├── PRSMapsResult.h │ │ │ │ ├── PRSParsecGenericResult.h │ │ │ │ ├── PRSParsecMapsResult.h │ │ │ │ ├── PRSParsecResult.h │ │ │ │ ├── PRSParsecSimpleResult.h │ │ │ │ ├── PRSPattern.h │ │ │ │ ├── PRSPredictionSupport.h │ │ │ │ ├── PRSPurchaseHistoryManager.h │ │ │ │ ├── PRSResult.h │ │ │ │ ├── PRSSearchQueryHandler.h │ │ │ │ ├── PRSSessionController.h │ │ │ │ ├── PRSSimpleResult.h │ │ │ │ ├── PRSUnitConversionResult.h │ │ │ │ ├── QLSeamlessOpenerDelegate.h │ │ │ │ ├── QueryController.h │ │ │ │ ├── SFFeedbackListener.h │ │ │ │ ├── SPAlbumResult.h │ │ │ │ ├── SPAppDefaults.h │ │ │ │ ├── SPApplicationQuery.h │ │ │ │ ├── SPApplicationQueryResult.h │ │ │ │ ├── SPClientSession.h │ │ │ │ ├── SPCoreSpotlightQuery.h │ │ │ │ ├── SPCoreSpotlightResult.h │ │ │ │ ├── SPDefaults.h │ │ │ │ ├── SPFolderQuery.h │ │ │ │ ├── SPFusedResult.h │ │ │ │ ├── SPGroupHeadingResult.h │ │ │ │ ├── SPKCalculatorQuery.h │ │ │ │ ├── SPKCoreParsecInterface.h │ │ │ │ ├── SPKCoreParsecInterfaceProtocol.h │ │ │ │ ├── SPKDictionaryQuery.h │ │ │ │ ├── SPKParsecPattern.h │ │ │ │ ├── SPKParsecQuery.h │ │ │ │ ├── SPKQuery.h │ │ │ │ ├── SPKQueryDelegate.h │ │ │ │ ├── SPKResponse.h │ │ │ │ ├── SPLogging.h │ │ │ │ ├── SPLoggingSearchSession.h │ │ │ │ ├── SPMetadataGroupHeadingResult.h │ │ │ │ ├── SPMetadataPattern.h │ │ │ │ ├── SPMetadataQuery.h │ │ │ │ ├── SPMetadataResult.h │ │ │ │ ├── SPParsecGroupHeadingResult.h │ │ │ │ ├── SPQueryTask.h │ │ │ │ ├── SPSearchQueryContext.h │ │ │ │ ├── SPShortcutPattern.h │ │ │ │ ├── SPShortcuts.h │ │ │ │ ├── SPStatistics.h │ │ │ │ ├── SPURLQuery.h │ │ │ │ ├── SPURLResult.h │ │ │ │ ├── SPWebHistoryQuery.h │ │ │ │ ├── SPWebHistoryResult.h │ │ │ │ ├── Spotlight.h │ │ │ │ ├── TestingFeedbackListener.h │ │ │ │ └── _SPResultsArrays.h │ │ └── src │ │ │ ├── PRSCalculationResult.m │ │ │ ├── PRSCalculatorResult.m │ │ │ ├── PRSConversion.m │ │ │ ├── PRSConversionResult.m │ │ │ ├── PRSCurrencyConversionResult.m │ │ │ ├── PRSDictionaryResult.m │ │ │ ├── PRSParsecGenericResult.m │ │ │ ├── PRSParsecMapsResult.m │ │ │ ├── PRSParsecResult.m │ │ │ ├── PRSParsecSimpleResult.m │ │ │ ├── PRSPattern.m │ │ │ ├── PRSPurchaseHistoryManager.m │ │ │ ├── PRSResult.m │ │ │ ├── PRSUnitConversionResult.m │ │ │ ├── QueryController.m │ │ │ ├── SPAlbumResult.m │ │ │ ├── SPAppDefaults.m │ │ │ ├── SPApplicationQuery.m │ │ │ ├── SPApplicationQueryResult.m │ │ │ ├── SPClientSession.m │ │ │ ├── SPCoreSpotlightQuery.m │ │ │ ├── SPCoreSpotlightResult.m │ │ │ ├── SPDefaults.m │ │ │ ├── SPFolderQuery.m │ │ │ ├── SPFusedResult.m │ │ │ ├── SPGroupHeadingResult.m │ │ │ ├── SPKCalculatorQuery.m │ │ │ ├── SPKCoreParsecInterface.m │ │ │ ├── SPKDictionaryQuery.m │ │ │ ├── SPKParsecPattern.m │ │ │ ├── SPKParsecQuery.m │ │ │ ├── SPKQuery.m │ │ │ ├── SPKResponse.m │ │ │ ├── SPLogging.m │ │ │ ├── SPLoggingSearchSession.m │ │ │ ├── SPMetadataGroupHeadingResult.m │ │ │ ├── SPMetadataPattern.m │ │ │ ├── SPMetadataQuery.m │ │ │ ├── SPMetadataResult.m │ │ │ ├── SPParsecGroupHeadingResult.m │ │ │ ├── SPQueryTask.m │ │ │ ├── SPSearchQueryContext.m │ │ │ ├── SPShortcutPattern.m │ │ │ ├── SPShortcuts.m │ │ │ ├── SPStatistics.m │ │ │ ├── SPURLQuery.m │ │ │ ├── SPURLResult.m │ │ │ ├── SPWebHistoryQuery.m │ │ │ ├── SPWebHistoryResult.m │ │ │ ├── Spotlight.m │ │ │ ├── TestingFeedbackListener.m │ │ │ └── _SPResultsArrays.m │ ├── SpotlightDaemon │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── SpotlightDaemon │ │ │ │ ├── CSIndexAgent.h │ │ │ │ ├── CSIndexClientConnection.h │ │ │ │ ├── CSIndexClientConnectionKey.h │ │ │ │ ├── CSRecieverState.h │ │ │ │ ├── CSSearchAgent.h │ │ │ │ ├── CSSearchClientConnection.h │ │ │ │ ├── CSSearchClientConnectionKey.h │ │ │ │ ├── CSSearchableIndexInterface.h │ │ │ │ ├── CSSearchableIndexServiceInterface.h │ │ │ │ ├── MDAgent.h │ │ │ │ ├── MDIndexer.h │ │ │ │ ├── MDSearchableIndexService.h │ │ │ │ ├── SDEventHandlerProvider.h │ │ │ │ ├── SDEventMonitor.h │ │ │ │ ├── SDMigrationMonitor.h │ │ │ │ ├── SDTrace.h │ │ │ │ ├── SDTraceItem.h │ │ │ │ ├── SPConcreteCoreSpotlightIndexer.h │ │ │ │ ├── SPCoreSpotlightExtensionsTask.h │ │ │ │ ├── SPCoreSpotlightIndexer.h │ │ │ │ ├── SPCoreSpotlightIndexerTask.h │ │ │ │ ├── SPCoreSpotlightTask.h │ │ │ │ ├── SPQueryJob.h │ │ │ │ ├── SPQueryResultsQueue.h │ │ │ │ ├── SpotlightDaemon.h │ │ │ │ ├── SpotlightReceiverConnection.h │ │ │ │ ├── SpotlightSender.h │ │ │ │ └── _SPBucketSet.h │ │ └── src │ │ │ ├── CSIndexAgent.m │ │ │ ├── CSIndexClientConnection.m │ │ │ ├── CSIndexClientConnectionKey.m │ │ │ ├── CSRecieverState.m │ │ │ ├── CSSearchAgent.m │ │ │ ├── CSSearchClientConnection.m │ │ │ ├── CSSearchClientConnectionKey.m │ │ │ ├── MDAgent.m │ │ │ ├── MDSearchableIndexService.m │ │ │ ├── SDEventMonitor.m │ │ │ ├── SDMigrationMonitor.m │ │ │ ├── SDTrace.m │ │ │ ├── SDTraceItem.m │ │ │ ├── SPConcreteCoreSpotlightIndexer.m │ │ │ ├── SPCoreSpotlightExtensionsTask.m │ │ │ ├── SPCoreSpotlightIndexer.m │ │ │ ├── SPCoreSpotlightIndexerTask.m │ │ │ ├── SPCoreSpotlightTask.m │ │ │ ├── SPQueryJob.m │ │ │ ├── SPQueryResultsQueue.m │ │ │ ├── SpotlightDaemon.m │ │ │ ├── SpotlightReceiverConnection.m │ │ │ ├── SpotlightSender.m │ │ │ └── _SPBucketSet.m │ ├── SpotlightIndex │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── SpotlightIndex │ │ │ │ └── SpotlightIndex.h │ │ └── src │ │ │ └── SpotlightIndex.m │ ├── SpotlightReceiver │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── SpotlightReceiver │ │ │ │ ├── CSRecieverConnection.h │ │ │ │ └── SpotlightReceiver.h │ │ └── src │ │ │ ├── CSRecieverConnection.m │ │ │ └── SpotlightReceiver.m │ ├── SpotlightServerKit │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── SpotlightServerKit │ │ │ │ ├── MDSInternalToken.h │ │ │ │ ├── MDSMachPortNotificationRecord.h │ │ │ │ ├── MDSMachPortObject.h │ │ │ │ ├── MDSMachSubsystem.h │ │ │ │ ├── MDSNotificationCenter.h │ │ │ │ ├── MDSNotificationTokenRecord.h │ │ │ │ ├── MDSObject.h │ │ │ │ ├── MDSObjectToken.h │ │ │ │ ├── MDSReadCopyUpdate.h │ │ │ │ ├── MDSToken.h │ │ │ │ ├── MDSTwoFaceMachPortObject.h │ │ │ │ └── SpotlightServerKit.h │ │ └── src │ │ │ ├── MDSInternalToken.m │ │ │ ├── MDSMachPortNotificationRecord.m │ │ │ ├── MDSMachPortObject.m │ │ │ ├── MDSMachSubsystem.m │ │ │ ├── MDSNotificationCenter.m │ │ │ ├── MDSNotificationTokenRecord.m │ │ │ ├── MDSObject.m │ │ │ ├── MDSObjectToken.m │ │ │ ├── MDSReadCopyUpdate.m │ │ │ ├── MDSToken.m │ │ │ ├── MDSTwoFaceMachPortObject.m │ │ │ └── SpotlightServerKit.m │ ├── SpotlightServices │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── SpotlightServices │ │ │ │ ├── PARResultFactory.h │ │ │ │ ├── PARSessionDelegate.h │ │ │ │ ├── PRSAbandonmentFeedback.h │ │ │ │ ├── PRSActionButton.h │ │ │ │ ├── PRSAlbum.h │ │ │ │ ├── PRSAnonymousPipelineManager.h │ │ │ │ ├── PRSAnonymousPipelineManagerSession.h │ │ │ │ ├── PRSAppLinkCardSection.h │ │ │ │ ├── PRSAppLinkSection.h │ │ │ │ ├── PRSAuxiliaryInfo.h │ │ │ │ ├── PRSBagHandler.h │ │ │ │ ├── PRSBaseCardSection.h │ │ │ │ ├── PRSBaseEntry.h │ │ │ │ ├── PRSBuyButton.h │ │ │ │ ├── PRSCardSection.h │ │ │ │ ├── PRSColumnSection.h │ │ │ │ ├── PRSCoreDuet.h │ │ │ │ ├── PRSCoreParsecQueryTask.h │ │ │ │ ├── PRSDescriptionCardSection.h │ │ │ │ ├── PRSDictationQueryTask.h │ │ │ │ ├── PRSDirectivesManager.h │ │ │ │ ├── PRSEngagementFeedback.h │ │ │ │ ├── PRSFTETask.h │ │ │ │ ├── PRSFUSEAlbumListCardSection.h │ │ │ │ ├── PRSFUSETrackListCardSection.h │ │ │ │ ├── PRSFeatureVector.h │ │ │ │ ├── PRSFeedback.h │ │ │ │ ├── PRSFeedbackContext.h │ │ │ │ ├── PRSFeedbackProxy.h │ │ │ │ ├── PRSFormattedTextItem.h │ │ │ │ ├── PRSHTMLCardSection.h │ │ │ │ ├── PRSL2FeatureVector.h │ │ │ │ ├── PRSL2FeatureVectorProcessingContext.h │ │ │ │ ├── PRSL3FeatureVector.h │ │ │ │ ├── PRSLinkEntry.h │ │ │ │ ├── PRSLinkTableCardSection.h │ │ │ │ ├── PRSLogisticWithNaiveBayesEngine.h │ │ │ │ ├── PRSMLFeedback.h │ │ │ │ ├── PRSMLManager.h │ │ │ │ ├── PRSMapsEngagementFeedback.h │ │ │ │ ├── PRSModel.h │ │ │ │ ├── PRSModelContext.h │ │ │ │ ├── PRSModelFeedbackContext.h │ │ │ │ ├── PRSModelManager.h │ │ │ │ ├── PRSModelResourceLoader.h │ │ │ │ ├── PRSMovie.h │ │ │ │ ├── PRSMovieListCardSection.h │ │ │ │ ├── PRSNBRankingFeedback.h │ │ │ │ ├── PRSNaiveBayesCoreEngine.h │ │ │ │ ├── PRSPreviewFeedback.h │ │ │ │ ├── PRSQueryRankingConfiguration.h │ │ │ │ ├── PRSQueryTask.h │ │ │ │ ├── PRSRankingConfiguration.h │ │ │ │ ├── PRSRankingCosineComponents.h │ │ │ │ ├── PRSRankingItem.h │ │ │ │ ├── PRSRankingItemCollection.h │ │ │ │ ├── PRSRankingItemRanker.h │ │ │ │ ├── PRSRankingItemRelativeFeatureContext.h │ │ │ │ ├── PRSRankingManager.h │ │ │ │ ├── PRSRankingPolicyManager.h │ │ │ │ ├── PRSRankingServerKnobs.h │ │ │ │ ├── PRSRankingSpanCalculator.h │ │ │ │ ├── PRSRankingUtilities.h │ │ │ │ ├── PRSRenderFeedback.h │ │ │ │ ├── PRSResourceProvider.h │ │ │ │ ├── PRSRichTitleCardSection.h │ │ │ │ ├── PRSRowCardSection.h │ │ │ │ ├── PRSSearchFeedback.h │ │ │ │ ├── PRSSearchSession.h │ │ │ │ ├── PRSSportsDataCardWithImageCardSection.h │ │ │ │ ├── PRSSportsSummaryScoreCardSection.h │ │ │ │ ├── PRSStockChartCardSection.h │ │ │ │ ├── PRSTVRowCardSection.h │ │ │ │ ├── PRSTableAlignmentSchema.h │ │ │ │ ├── PRSTableRowCardSection.h │ │ │ │ ├── PRSTextColumnsCardSection.h │ │ │ │ ├── PRSTitleCardSection.h │ │ │ │ ├── PRSTrackListCardSection.h │ │ │ │ ├── PRSTrailerEntry.h │ │ │ │ ├── PRSTrailersCardSection.h │ │ │ │ ├── PRSTriggerTask.h │ │ │ │ ├── PRSTwitterCardSection.h │ │ │ │ ├── PRSWebSiteCardSection.h │ │ │ │ ├── PRSiTunesEngagementFeedback.h │ │ │ │ ├── SFFeedbackListener.h │ │ │ │ ├── SPLogisticWithNaiveBayesEngine.h │ │ │ │ ├── SSADEventReporter.h │ │ │ │ ├── SSCoreMLInterface.h │ │ │ │ ├── SSDataCollectible.h │ │ │ │ ├── SSEngagementHandler.h │ │ │ │ ├── SSParsecBundleFeatureCollection.h │ │ │ │ ├── SSPlistDataReader.h │ │ │ │ └── SpotlightServices.h │ │ └── src │ │ │ ├── PRSAbandonmentFeedback.m │ │ │ ├── PRSActionButton.m │ │ │ ├── PRSAlbum.m │ │ │ ├── PRSAnonymousPipelineManager.m │ │ │ ├── PRSAnonymousPipelineManagerSession.m │ │ │ ├── PRSAppLinkCardSection.m │ │ │ ├── PRSAppLinkSection.m │ │ │ ├── PRSAuxiliaryInfo.m │ │ │ ├── PRSBagHandler.m │ │ │ ├── PRSBaseCardSection.m │ │ │ ├── PRSBaseEntry.m │ │ │ ├── PRSBuyButton.m │ │ │ ├── PRSCardSection.m │ │ │ ├── PRSColumnSection.m │ │ │ ├── PRSCoreDuet.m │ │ │ ├── PRSCoreParsecQueryTask.m │ │ │ ├── PRSDescriptionCardSection.m │ │ │ ├── PRSDictationQueryTask.m │ │ │ ├── PRSDirectivesManager.m │ │ │ ├── PRSEngagementFeedback.m │ │ │ ├── PRSFTETask.m │ │ │ ├── PRSFUSEAlbumListCardSection.m │ │ │ ├── PRSFUSETrackListCardSection.m │ │ │ ├── PRSFeedback.m │ │ │ ├── PRSFeedbackContext.m │ │ │ ├── PRSFeedbackProxy.m │ │ │ ├── PRSFormattedTextItem.m │ │ │ ├── PRSHTMLCardSection.m │ │ │ ├── PRSL2FeatureVector.m │ │ │ ├── PRSL2FeatureVectorProcessingContext.m │ │ │ ├── PRSL3FeatureVector.m │ │ │ ├── PRSLinkEntry.m │ │ │ ├── PRSLinkTableCardSection.m │ │ │ ├── PRSLogisticWithNaiveBayesEngine.m │ │ │ ├── PRSMLFeedback.m │ │ │ ├── PRSMLManager.m │ │ │ ├── PRSMapsEngagementFeedback.m │ │ │ ├── PRSModel.m │ │ │ ├── PRSModelContext.m │ │ │ ├── PRSModelFeedbackContext.m │ │ │ ├── PRSModelManager.m │ │ │ ├── PRSModelResourceLoader.m │ │ │ ├── PRSMovie.m │ │ │ ├── PRSMovieListCardSection.m │ │ │ ├── PRSNBRankingFeedback.m │ │ │ ├── PRSNaiveBayesCoreEngine.m │ │ │ ├── PRSPreviewFeedback.m │ │ │ ├── PRSQueryRankingConfiguration.m │ │ │ ├── PRSQueryTask.m │ │ │ ├── PRSRankingConfiguration.m │ │ │ ├── PRSRankingCosineComponents.m │ │ │ ├── PRSRankingItem.m │ │ │ ├── PRSRankingItemCollection.m │ │ │ ├── PRSRankingItemRanker.m │ │ │ ├── PRSRankingItemRelativeFeatureContext.m │ │ │ ├── PRSRankingManager.m │ │ │ ├── PRSRankingPolicyManager.m │ │ │ ├── PRSRankingServerKnobs.m │ │ │ ├── PRSRankingSpanCalculator.m │ │ │ ├── PRSRankingUtilities.m │ │ │ ├── PRSRenderFeedback.m │ │ │ ├── PRSRichTitleCardSection.m │ │ │ ├── PRSRowCardSection.m │ │ │ ├── PRSSearchFeedback.m │ │ │ ├── PRSSearchSession.m │ │ │ ├── PRSSportsDataCardWithImageCardSection.m │ │ │ ├── PRSSportsSummaryScoreCardSection.m │ │ │ ├── PRSStockChartCardSection.m │ │ │ ├── PRSTVRowCardSection.m │ │ │ ├── PRSTableAlignmentSchema.m │ │ │ ├── PRSTableRowCardSection.m │ │ │ ├── PRSTextColumnsCardSection.m │ │ │ ├── PRSTitleCardSection.m │ │ │ ├── PRSTrackListCardSection.m │ │ │ ├── PRSTrailerEntry.m │ │ │ ├── PRSTrailersCardSection.m │ │ │ ├── PRSTwitterCardSection.m │ │ │ ├── PRSWebSiteCardSection.m │ │ │ ├── PRSiTunesEngagementFeedback.m │ │ │ ├── SPLogisticWithNaiveBayesEngine.m │ │ │ ├── SSADEventReporter.m │ │ │ ├── SSCoreMLInterface.m │ │ │ ├── SSEngagementHandler.m │ │ │ ├── SSParsecBundleFeatureCollection.m │ │ │ ├── SSPlistDataReader.m │ │ │ └── SpotlightServices.m │ ├── StreamingZip │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── StreamingZip │ │ │ │ ├── SZExtractor.h │ │ │ │ ├── SZExtractorInternalDelegate.h │ │ │ │ ├── SZFunctions.h │ │ │ │ ├── StreamingUnzipState.h │ │ │ │ ├── StreamingUnzipper.h │ │ │ │ └── StreamingZip.h │ │ └── src │ │ │ ├── SZExtractor.m │ │ │ ├── SZExtractorInternalDelegate.m │ │ │ ├── StreamingUnzipState.m │ │ │ ├── StreamingUnzipper.m │ │ │ ├── functions.c │ │ │ └── globals.c │ ├── TCC │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── TCC │ │ │ │ ├── OS_tcc_attributed_entity.h │ │ │ │ ├── OS_tcc_authorization_cache.h │ │ │ │ ├── OS_tcc_authorization_change_monitor.h │ │ │ │ ├── OS_tcc_authorization_record.h │ │ │ │ ├── OS_tcc_credential.h │ │ │ │ ├── OS_tcc_events_filter.h │ │ │ │ ├── OS_tcc_events_subscription.h │ │ │ │ ├── OS_tcc_identity.h │ │ │ │ ├── OS_tcc_message_options.h │ │ │ │ ├── OS_tcc_object.h │ │ │ │ ├── OS_tcc_server.h │ │ │ │ ├── OS_tcc_service.h │ │ │ │ └── TCC.h │ │ └── src │ │ │ ├── OS_tcc_attributed_entity.m │ │ │ ├── OS_tcc_authorization_cache.m │ │ │ ├── OS_tcc_authorization_change_monitor.m │ │ │ ├── OS_tcc_authorization_record.m │ │ │ ├── OS_tcc_credential.m │ │ │ ├── OS_tcc_events_filter.m │ │ │ ├── OS_tcc_events_subscription.m │ │ │ ├── OS_tcc_identity.m │ │ │ ├── OS_tcc_message_options.m │ │ │ ├── OS_tcc_object.m │ │ │ ├── OS_tcc_server.m │ │ │ ├── OS_tcc_service.m │ │ │ └── TCC.m │ ├── TrustedPeers │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── TrustedPeers │ │ │ │ ├── TPCachedViableBottles.h │ │ │ │ ├── TPCategoryRule.h │ │ │ │ ├── TPDictionaryMatchingRule.h │ │ │ │ ├── TPECPublicKeyFactory.h │ │ │ │ ├── TPHashBuilder.h │ │ │ │ ├── TPKeyPair.h │ │ │ │ ├── TPMachineID.h │ │ │ │ ├── TPMachineIDList.h │ │ │ │ ├── TPModel.h │ │ │ │ ├── TPPBAncientEpoch.h │ │ │ │ ├── TPPBDictionaryMatchingRule.h │ │ │ │ ├── TPPBDictionaryMatchingRuleFieldExists.h │ │ │ │ ├── TPPBDictionaryMatchingRuleFieldRegexMatch.h │ │ │ │ ├── TPPBDisposition.h │ │ │ │ ├── TPPBDispositionDisallowedMachineID.h │ │ │ │ ├── TPPBDispositionDuplicateMachineID.h │ │ │ │ ├── TPPBDispositionEntry.h │ │ │ │ ├── TPPBPeerDynamicInfo.h │ │ │ │ ├── TPPBPeerPermanentInfo.h │ │ │ │ ├── TPPBPeerStableInfo.h │ │ │ │ ├── TPPBPolicyCategoriesByView.h │ │ │ │ ├── TPPBPolicyDocument.h │ │ │ │ ├── TPPBPolicyIntroducersByCategory.h │ │ │ │ ├── TPPBPolicyKeyViewMapping.h │ │ │ │ ├── TPPBPolicyModelToCategory.h │ │ │ │ ├── TPPBPolicyProhibits.h │ │ │ │ ├── TPPBPolicyRedaction.h │ │ │ │ ├── TPPBPolicySecret.h │ │ │ │ ├── TPPBUnknownMachineID.h │ │ │ │ ├── TPPBVoucher.h │ │ │ │ ├── TPPeer.h │ │ │ │ ├── TPPeerDynamicInfo.h │ │ │ │ ├── TPPeerPermanentInfo.h │ │ │ │ ├── TPPeerStableInfo.h │ │ │ │ ├── TPPolicy.h │ │ │ │ ├── TPPolicyDocument.h │ │ │ │ ├── TPPolicyVersion.h │ │ │ │ ├── TPPublicKey.h │ │ │ │ ├── TPPublicKeyFactory.h │ │ │ │ ├── TPRecoveryKeyPair.h │ │ │ │ ├── TPStringTable.h │ │ │ │ ├── TPVoucher.h │ │ │ │ └── TrustedPeers.h │ │ └── src │ │ │ ├── TPCachedViableBottles.m │ │ │ ├── TPCategoryRule.m │ │ │ ├── TPDictionaryMatchingRule.m │ │ │ ├── TPECPublicKeyFactory.m │ │ │ ├── TPHashBuilder.m │ │ │ ├── TPMachineID.m │ │ │ ├── TPMachineIDList.m │ │ │ ├── TPModel.m │ │ │ ├── TPPBAncientEpoch.m │ │ │ ├── TPPBDictionaryMatchingRule.m │ │ │ ├── TPPBDictionaryMatchingRuleFieldExists.m │ │ │ ├── TPPBDictionaryMatchingRuleFieldRegexMatch.m │ │ │ ├── TPPBDisposition.m │ │ │ ├── TPPBDispositionDisallowedMachineID.m │ │ │ ├── TPPBDispositionDuplicateMachineID.m │ │ │ ├── TPPBDispositionEntry.m │ │ │ ├── TPPBPeerDynamicInfo.m │ │ │ ├── TPPBPeerPermanentInfo.m │ │ │ ├── TPPBPeerStableInfo.m │ │ │ ├── TPPBPolicyCategoriesByView.m │ │ │ ├── TPPBPolicyDocument.m │ │ │ ├── TPPBPolicyIntroducersByCategory.m │ │ │ ├── TPPBPolicyKeyViewMapping.m │ │ │ ├── TPPBPolicyModelToCategory.m │ │ │ ├── TPPBPolicyProhibits.m │ │ │ ├── TPPBPolicyRedaction.m │ │ │ ├── TPPBPolicySecret.m │ │ │ ├── TPPBUnknownMachineID.m │ │ │ ├── TPPBVoucher.m │ │ │ ├── TPPeer.m │ │ │ ├── TPPeerDynamicInfo.m │ │ │ ├── TPPeerPermanentInfo.m │ │ │ ├── TPPeerStableInfo.m │ │ │ ├── TPPolicy.m │ │ │ ├── TPPolicyDocument.m │ │ │ ├── TPPolicyVersion.m │ │ │ ├── TPRecoveryKeyPair.m │ │ │ ├── TPStringTable.m │ │ │ ├── TPVoucher.m │ │ │ └── TrustedPeers.m │ ├── UIFoundation │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── UIFoundation │ │ │ │ ├── NSATSGlyphStorage.h │ │ │ │ ├── NSATSLineFragment.h │ │ │ │ ├── NSATSTypesetter.h │ │ │ │ ├── NSAttributeDictionary.h │ │ │ │ ├── NSAttributeDictionaryEnumerator.h │ │ │ │ ├── NSCIDGlyphInfo.h │ │ │ │ ├── NSCTFont.h │ │ │ │ ├── NSCTFontDescriptor.h │ │ │ │ ├── NSCTGlyphInfo.h │ │ │ │ ├── NSCollectionViewData.h │ │ │ │ ├── NSCollectionViewFlowLayout.h │ │ │ │ ├── NSCollectionViewFlowLayoutInvalidationContext.h │ │ │ │ ├── NSCollectionViewLayout.h │ │ │ │ ├── NSCollectionViewLayoutAttributes.h │ │ │ │ ├── NSCollectionViewLayoutInvalidationContext.h │ │ │ │ ├── NSCollectionViewTransitionLayout.h │ │ │ │ ├── NSCollectionViewUpdate.h │ │ │ │ ├── NSCollectionViewUpdateItem.h │ │ │ │ ├── NSConcreteGlyphGenerator.h │ │ │ │ ├── NSConcreteNotifyingMutableAttributedString.h │ │ │ │ ├── NSConcreteTextStorage.h │ │ │ │ ├── NSCoreTypesetter.h │ │ │ │ ├── NSDocFormatReader.h │ │ │ │ ├── NSDocFormatWriter.h │ │ │ │ ├── NSExtraLMData.h │ │ │ │ ├── NSFont.h │ │ │ │ ├── NSFontAssetRequest.h │ │ │ │ ├── NSFontDescriptor.h │ │ │ │ ├── NSGlyphGenerator.h │ │ │ │ ├── NSGlyphInfo.h │ │ │ │ ├── NSGlyphNameGlyphInfo.h │ │ │ │ ├── NSHTMLReader.h │ │ │ │ ├── NSHTMLWebDelegate.h │ │ │ │ ├── NSHTMLWriter.h │ │ │ │ ├── NSIdRunStorage.h │ │ │ │ ├── NSIdentityGlyphInfo.h │ │ │ │ ├── NSInsertionPointHelper.h │ │ │ │ ├── NSLayoutManager.h │ │ │ │ ├── NSLayoutManagerDelegate.h │ │ │ │ ├── NSLayoutManagerTextBlockHelper.h │ │ │ │ ├── NSLayoutManagerTextBlockRowArrayCache.h │ │ │ │ ├── NSLineFragmentRenderingContext.h │ │ │ │ ├── NSMutableFontDescriptor.h │ │ │ │ ├── NSMutableIndexPath.h │ │ │ │ ├── NSMutableParagraphStyle.h │ │ │ │ ├── NSOpenDocumentReader.h │ │ │ │ ├── NSOpenDocumentWriter.h │ │ │ │ ├── NSParagraphArbitrator.h │ │ │ │ ├── NSParagraphStyle.h │ │ │ │ ├── NSParagraphStyleExtraData.h │ │ │ │ ├── NSProgressReporting.h │ │ │ │ ├── NSRTFReader.h │ │ │ │ ├── NSRTFReaderTableState.h │ │ │ │ ├── NSRTFWriter.h │ │ │ │ ├── NSRunStorage.h │ │ │ │ ├── NSShadow.h │ │ │ │ ├── NSSingleLineTypesetter.h │ │ │ │ ├── NSStorage.h │ │ │ │ ├── NSStringDrawingContext.h │ │ │ │ ├── NSStringDrawingTextStorage.h │ │ │ │ ├── NSStringDrawingTextStorageSettings.h │ │ │ │ ├── NSSubstituteWebResource.h │ │ │ │ ├── NSTempAttributeDictionary.h │ │ │ │ ├── NSTextAlternatives.h │ │ │ │ ├── NSTextAttachment.h │ │ │ │ ├── NSTextAttachmentContainer.h │ │ │ │ ├── NSTextAttachmentViewProvider.h │ │ │ │ ├── NSTextBlock.h │ │ │ │ ├── NSTextBlockLayoutHelper.h │ │ │ │ ├── NSTextContainer.h │ │ │ │ ├── NSTextLayoutFragment.h │ │ │ │ ├── NSTextLayoutOrientationProvider.h │ │ │ │ ├── NSTextLineFragment.h │ │ │ │ ├── NSTextList.h │ │ │ │ ├── NSTextStorage.h │ │ │ │ ├── NSTextTab.h │ │ │ │ ├── NSTextTable.h │ │ │ │ ├── NSTextTableBlock.h │ │ │ │ ├── NSTypesetter.h │ │ │ │ ├── NSWordMLReader.h │ │ │ │ ├── NSWordMLWriter.h │ │ │ │ ├── NSXMLParserDelegate.h │ │ │ │ ├── NSZipTextReader.h │ │ │ │ ├── UIBoxcarFilterPointFIFO.h │ │ │ │ ├── UICollectionViewAnimation.h │ │ │ │ ├── UICollectionViewFlowLayoutAuxiliary.h │ │ │ │ ├── UICollectionViewIndexMapper.h │ │ │ │ ├── UICollectionViewLayoutAttributesAuxiliary.h │ │ │ │ ├── UIFoundation.h │ │ │ │ ├── UINibCoderValue.h │ │ │ │ ├── UINibDecoder.h │ │ │ │ ├── UINibEncoder.h │ │ │ │ ├── UINibStringIDTable.h │ │ │ │ ├── UIPointFIFO.h │ │ │ │ ├── UIQuadCurvePointFIFO.h │ │ │ │ ├── UIViewAnimationContext.h │ │ │ │ ├── _NSATSTypesetterGuts.h │ │ │ │ ├── _NSAttributeRun.h │ │ │ │ ├── _NSAttributes.h │ │ │ │ ├── _NSCachedAttributedString.h │ │ │ │ ├── _NSCollectionViewCore.h │ │ │ │ ├── _NSCollectionViewItemKey.h │ │ │ │ ├── _NSCollectionViewPrefetchingContext.h │ │ │ │ ├── _NSFlowLayoutInfo.h │ │ │ │ ├── _NSFlowLayoutItem.h │ │ │ │ ├── _NSFlowLayoutRow.h │ │ │ │ ├── _NSFlowLayoutSection.h │ │ │ │ ├── _NSTextStorageSideData.h │ │ │ │ ├── _NSUIAnimator.h │ │ │ │ ├── _UICollectionViewPrefetchItem.h │ │ │ │ ├── _UICollectionViewTrackedValue.h │ │ │ │ ├── _UICollectionViewTrackedValueItem.h │ │ │ │ ├── _UIPointVector.h │ │ │ │ ├── __NSATSStringSegment.h │ │ │ │ ├── __NSFontTypefaceInfo.h │ │ │ │ └── __NSSharedFontInstanceInfo.h │ │ └── src │ │ │ ├── NSATSGlyphStorage.m │ │ │ ├── NSATSLineFragment.m │ │ │ ├── NSATSTypesetter.m │ │ │ ├── NSAttributeDictionary.m │ │ │ ├── NSAttributeDictionaryEnumerator.m │ │ │ ├── NSCIDGlyphInfo.m │ │ │ ├── NSCTFont.m │ │ │ ├── NSCTFontDescriptor.m │ │ │ ├── NSCTGlyphInfo.m │ │ │ ├── NSCollectionViewData.m │ │ │ ├── NSCollectionViewFlowLayout.m │ │ │ ├── NSCollectionViewFlowLayoutInvalidationContext.m │ │ │ ├── NSCollectionViewLayout.m │ │ │ ├── NSCollectionViewLayoutAttributes.m │ │ │ ├── NSCollectionViewLayoutInvalidationContext.m │ │ │ ├── NSCollectionViewTransitionLayout.m │ │ │ ├── NSCollectionViewUpdate.m │ │ │ ├── NSCollectionViewUpdateItem.m │ │ │ ├── NSConcreteGlyphGenerator.m │ │ │ ├── NSConcreteNotifyingMutableAttributedString.m │ │ │ ├── NSConcreteTextStorage.m │ │ │ ├── NSCoreTypesetter.m │ │ │ ├── NSDocFormatReader.m │ │ │ ├── NSDocFormatWriter.m │ │ │ ├── NSExtraLMData.m │ │ │ ├── NSFont.m │ │ │ ├── NSFontAssetRequest.m │ │ │ ├── NSFontDescriptor.m │ │ │ ├── NSGlyphGenerator.m │ │ │ ├── NSGlyphInfo.m │ │ │ ├── NSGlyphNameGlyphInfo.m │ │ │ ├── NSHTMLReader.m │ │ │ ├── NSHTMLWebDelegate.m │ │ │ ├── NSHTMLWriter.m │ │ │ ├── NSIdRunStorage.m │ │ │ ├── NSIdentityGlyphInfo.m │ │ │ ├── NSInsertionPointHelper.m │ │ │ ├── NSLayoutManager.m │ │ │ ├── NSLayoutManagerTextBlockHelper.m │ │ │ ├── NSLayoutManagerTextBlockRowArrayCache.m │ │ │ ├── NSLineFragmentRenderingContext.m │ │ │ ├── NSMutableFontDescriptor.m │ │ │ ├── NSMutableIndexPath.m │ │ │ ├── NSMutableParagraphStyle.m │ │ │ ├── NSOpenDocumentReader.m │ │ │ ├── NSOpenDocumentWriter.m │ │ │ ├── NSParagraphArbitrator.m │ │ │ ├── NSParagraphStyle.m │ │ │ ├── NSParagraphStyleExtraData.m │ │ │ ├── NSRTFReader.m │ │ │ ├── NSRTFReaderTableState.m │ │ │ ├── NSRTFWriter.m │ │ │ ├── NSRunStorage.m │ │ │ ├── NSShadow.m │ │ │ ├── NSSingleLineTypesetter.m │ │ │ ├── NSStorage.m │ │ │ ├── NSStringDrawingContext.m │ │ │ ├── NSStringDrawingTextStorage.m │ │ │ ├── NSStringDrawingTextStorageSettings.m │ │ │ ├── NSSubstituteWebResource.m │ │ │ ├── NSTempAttributeDictionary.m │ │ │ ├── NSTextAlternatives.m │ │ │ ├── NSTextAttachment.m │ │ │ ├── NSTextAttachmentViewProvider.m │ │ │ ├── NSTextBlock.m │ │ │ ├── NSTextBlockLayoutHelper.m │ │ │ ├── NSTextContainer.m │ │ │ ├── NSTextLayoutFragment.m │ │ │ ├── NSTextLineFragment.m │ │ │ ├── NSTextList.m │ │ │ ├── NSTextStorage.m │ │ │ ├── NSTextTab.m │ │ │ ├── NSTextTable.m │ │ │ ├── NSTextTableBlock.m │ │ │ ├── NSTypesetter.m │ │ │ ├── NSWordMLReader.m │ │ │ ├── NSWordMLWriter.m │ │ │ ├── NSZipTextReader.m │ │ │ ├── UIBoxcarFilterPointFIFO.m │ │ │ ├── UICollectionViewAnimation.m │ │ │ ├── UICollectionViewFlowLayoutAuxiliary.m │ │ │ ├── UICollectionViewIndexMapper.m │ │ │ ├── UICollectionViewLayoutAttributesAuxiliary.m │ │ │ ├── UIFoundation.m │ │ │ ├── UINibCoderValue.m │ │ │ ├── UINibDecoder.m │ │ │ ├── UINibEncoder.m │ │ │ ├── UINibStringIDTable.m │ │ │ ├── UIPointFIFO.m │ │ │ ├── UIQuadCurvePointFIFO.m │ │ │ ├── UIViewAnimationContext.m │ │ │ ├── _NSATSTypesetterGuts.m │ │ │ ├── _NSAttributeRun.m │ │ │ ├── _NSAttributes.m │ │ │ ├── _NSCachedAttributedString.m │ │ │ ├── _NSCollectionViewCore.m │ │ │ ├── _NSCollectionViewItemKey.m │ │ │ ├── _NSCollectionViewPrefetchingContext.m │ │ │ ├── _NSFlowLayoutInfo.m │ │ │ ├── _NSFlowLayoutItem.m │ │ │ ├── _NSFlowLayoutRow.m │ │ │ ├── _NSFlowLayoutSection.m │ │ │ ├── _NSTextStorageSideData.m │ │ │ ├── _NSUIAnimator.m │ │ │ ├── _UICollectionViewPrefetchItem.m │ │ │ ├── _UICollectionViewTrackedValue.m │ │ │ ├── _UICollectionViewTrackedValueItem.m │ │ │ ├── _UIPointVector.m │ │ │ ├── __NSATSStringSegment.m │ │ │ ├── __NSFontTypefaceInfo.m │ │ │ └── __NSSharedFontInstanceInfo.m │ ├── ViewBridge │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ViewBridge │ │ │ │ ├── AuxiliaryCallsClient.h │ │ │ │ ├── AuxiliaryCallsService.h │ │ │ │ ├── CALayerHostForRemoteView.h │ │ │ │ ├── CalledByClient.h │ │ │ │ ├── ClientCallsAuxiliary.h │ │ │ │ ├── ControlListenerDelegate.h │ │ │ │ ├── HasAuxiliaryConnection.h │ │ │ │ ├── HostAndService.h │ │ │ │ ├── HostCallsAuxiliary.h │ │ │ │ ├── HostListenerDelegate.h │ │ │ │ ├── HostOrService.h │ │ │ │ ├── HostOrServiceCallsAuxiliary.h │ │ │ │ ├── ListenerDelegate.h │ │ │ │ ├── NSCFRunLoopObserver.h │ │ │ │ ├── NSCFRunLoopSemaphore.h │ │ │ │ ├── NSChildWindowQueueElement.h │ │ │ │ ├── NSCustomTouchBarItemForRemoteView.h │ │ │ │ ├── NSDeferredSheet.h │ │ │ │ ├── NSEventQueue.h │ │ │ │ ├── NSFakeServiceResponder.h │ │ │ │ ├── NSGroupTouchBarItemForRemoteView.h │ │ │ │ ├── NSLayerCentricRemoteView.h │ │ │ │ ├── NSObtainingEndpointState.h │ │ │ │ ├── NSPanelForServiceViewControllerForTouchBarItem.h │ │ │ │ ├── NSRemoteView.h │ │ │ │ ├── NSRemoteViewController.h │ │ │ │ ├── NSRemoteViewControllerAuxiliary.h │ │ │ │ ├── NSRemoteViewControllerForTouchBarItem.h │ │ │ │ ├── NSRemoteViewDelegate.h │ │ │ │ ├── NSRemoteViewMarshal.h │ │ │ │ ├── NSRemoteViewSemaphore.h │ │ │ │ ├── NSRendezvousAppModalSessionController.h │ │ │ │ ├── NSRendezvousChildPanelController.h │ │ │ │ ├── NSRendezvousChildWindowController.h │ │ │ │ ├── NSRendezvousChildWindowDelegate.h │ │ │ │ ├── NSRendezvousPopoverController.h │ │ │ │ ├── NSRendezvousPopoverDelegate.h │ │ │ │ ├── NSRendezvousSheetController.h │ │ │ │ ├── NSRendezvousWindowController.h │ │ │ │ ├── NSRendezvousWindowDelegate.h │ │ │ │ ├── NSSelfDestructingRemoteViewDelegate.h │ │ │ │ ├── NSServiceViewController.h │ │ │ │ ├── NSServiceViewControllerActionResponder.h │ │ │ │ ├── NSServiceViewControllerAuxiliary.h │ │ │ │ ├── NSServiceViewControllerForTouchBarItem.h │ │ │ │ ├── NSServiceViewControllerUnifyingProxy.h │ │ │ │ ├── NSServiceViewControllerWindow.h │ │ │ │ ├── NSSpaceTouchBarItemForRemoteView.h │ │ │ │ ├── NSTouchBarDelegate.h │ │ │ │ ├── NSTouchBarForRemoteView.h │ │ │ │ ├── NSTouchBarItemOverlayForRemoteView.h │ │ │ │ ├── NSTouchBarItemSurprise.h │ │ │ │ ├── NSTouchBarProvider.h │ │ │ │ ├── NSVBAccessoryWindow.h │ │ │ │ ├── NSVBAccessoryWindowBackstopResponder.h │ │ │ │ ├── NSVBClientCallsAuxiliaryConnection.h │ │ │ │ ├── NSVBDeallocOnAppKitThread.h │ │ │ │ ├── NSVBNamedFault.h │ │ │ │ ├── NSVBObjectDeallocationCanary.h │ │ │ │ ├── NSVBRedactedProtocol.h │ │ │ │ ├── NSVBTestedFault.h │ │ │ │ ├── NSVBXPCConnectionClient.h │ │ │ │ ├── NSVB_ProxyObject.h │ │ │ │ ├── NSVB_QueueingProxy.h │ │ │ │ ├── NSVB_TargetedProxy.h │ │ │ │ ├── NSVB_View.h │ │ │ │ ├── NSVB_ViewAnimationAttributes.h │ │ │ │ ├── NSVB_ViewServiceBehaviorProxy.h │ │ │ │ ├── NSVB_ViewServiceFencingControlProxy.h │ │ │ │ ├── NSVB_ViewServiceFencingController.h │ │ │ │ ├── NSVB_ViewServiceImplicitAnimationDecodingProxy.h │ │ │ │ ├── NSVB_ViewServiceImplicitAnimationEncodingProxy.h │ │ │ │ ├── NSVB_ViewServiceReplyAwaitingTrampoline.h │ │ │ │ ├── NSVB_ViewServiceReplyControlProxy.h │ │ │ │ ├── NSVB_ViewServiceReplyControlTrampoline.h │ │ │ │ ├── NSVB_ViewServiceXPCMachSendRight.h │ │ │ │ ├── NSVB_Window.h │ │ │ │ ├── NSViewBridge.h │ │ │ │ ├── NSViewBridgeKVOBuddy.h │ │ │ │ ├── NSViewBridgeObject.h │ │ │ │ ├── NSViewBridgeObjectBase.h │ │ │ │ ├── NSViewRemoteBridge.h │ │ │ │ ├── NSViewService.h │ │ │ │ ├── NSViewServiceAccessoryView.h │ │ │ │ ├── NSViewServiceApplication.h │ │ │ │ ├── NSViewServiceBridge.h │ │ │ │ ├── NSViewServiceListenerDelegate.h │ │ │ │ ├── NSViewServiceMarshal.h │ │ │ │ ├── NSViewService_PKSubsystem.h │ │ │ │ ├── NSWindowDelegate.h │ │ │ │ ├── NSXPCConnectionDelegate.h │ │ │ │ ├── NSXPCListenerDelegate.h │ │ │ │ ├── NSXPCSharedListener.h │ │ │ │ ├── NSXPCSharedListenerDelegate.h │ │ │ │ ├── NSXPCSharedListenerManager.h │ │ │ │ ├── NSXPCSharedListenerManagerDelegate.h │ │ │ │ ├── PKModularService.h │ │ │ │ ├── ServiceCallsAuxiliary.h │ │ │ │ ├── ServiceListenerDelegate.h │ │ │ │ ├── TouchBarsAndItems.h │ │ │ │ ├── ViewBridge.h │ │ │ │ ├── ViewBridgeUtilities.h │ │ │ │ ├── ViewHost.h │ │ │ │ ├── ViewService.h │ │ │ │ ├── _NSAlertSensitiveView.h │ │ │ │ ├── _NSTouchBarItemLayoutWrapper.h │ │ │ │ ├── _UIViewServiceImplicitAnimationDecodingProxy_EncodingProxyInterface.h │ │ │ │ ├── _UIViewServiceProxy_ReplyAwaiting.h │ │ │ │ ├── _UIViewServiceProxy_ReplyControl.h │ │ │ │ ├── _UIViewServiceUIBehaviorInterface.h │ │ │ │ └── _UIViewService_FencingControlInterface.h │ │ └── src │ │ │ ├── CALayerHostForRemoteView.m │ │ │ ├── CalledByClient.m │ │ │ ├── ControlListenerDelegate.m │ │ │ ├── HostAndService.m │ │ │ ├── HostListenerDelegate.m │ │ │ ├── HostOrService.m │ │ │ ├── ListenerDelegate.m │ │ │ ├── NSCFRunLoopObserver.m │ │ │ ├── NSCFRunLoopSemaphore.m │ │ │ ├── NSChildWindowQueueElement.m │ │ │ ├── NSCustomTouchBarItemForRemoteView.m │ │ │ ├── NSDeferredSheet.m │ │ │ ├── NSEventQueue.m │ │ │ ├── NSFakeServiceResponder.m │ │ │ ├── NSGroupTouchBarItemForRemoteView.m │ │ │ ├── NSLayerCentricRemoteView.m │ │ │ ├── NSObtainingEndpointState.m │ │ │ ├── NSPanelForServiceViewControllerForTouchBarItem.m │ │ │ ├── NSRemoteView.m │ │ │ ├── NSRemoteViewController.m │ │ │ ├── NSRemoteViewControllerAuxiliary.m │ │ │ ├── NSRemoteViewControllerForTouchBarItem.m │ │ │ ├── NSRemoteViewMarshal.m │ │ │ ├── NSRemoteViewSemaphore.m │ │ │ ├── NSRendezvousAppModalSessionController.m │ │ │ ├── NSRendezvousChildPanelController.m │ │ │ ├── NSRendezvousChildWindowController.m │ │ │ ├── NSRendezvousChildWindowDelegate.m │ │ │ ├── NSRendezvousPopoverController.m │ │ │ ├── NSRendezvousPopoverDelegate.m │ │ │ ├── NSRendezvousSheetController.m │ │ │ ├── NSRendezvousWindowController.m │ │ │ ├── NSSelfDestructingRemoteViewDelegate.m │ │ │ ├── NSServiceViewController.m │ │ │ ├── NSServiceViewControllerAuxiliary.m │ │ │ ├── NSServiceViewControllerForTouchBarItem.m │ │ │ ├── NSServiceViewControllerUnifyingProxy.m │ │ │ ├── NSServiceViewControllerWindow.m │ │ │ ├── NSSpaceTouchBarItemForRemoteView.m │ │ │ ├── NSTouchBarForRemoteView.m │ │ │ ├── NSTouchBarItemOverlayForRemoteView.m │ │ │ ├── NSTouchBarItemSurprise.m │ │ │ ├── NSVBAccessoryWindow.m │ │ │ ├── NSVBAccessoryWindowBackstopResponder.m │ │ │ ├── NSVBClientCallsAuxiliaryConnection.m │ │ │ ├── NSVBNamedFault.m │ │ │ ├── NSVBObjectDeallocationCanary.m │ │ │ ├── NSVBTestedFault.m │ │ │ ├── NSVB_ProxyObject.m │ │ │ ├── NSVB_QueueingProxy.m │ │ │ ├── NSVB_TargetedProxy.m │ │ │ ├── NSVB_View.m │ │ │ ├── NSVB_ViewAnimationAttributes.m │ │ │ ├── NSVB_ViewServiceBehaviorProxy.m │ │ │ ├── NSVB_ViewServiceFencingControlProxy.m │ │ │ ├── NSVB_ViewServiceFencingController.m │ │ │ ├── NSVB_ViewServiceImplicitAnimationDecodingProxy.m │ │ │ ├── NSVB_ViewServiceImplicitAnimationEncodingProxy.m │ │ │ ├── NSVB_ViewServiceReplyAwaitingTrampoline.m │ │ │ ├── NSVB_ViewServiceReplyControlProxy.m │ │ │ ├── NSVB_ViewServiceReplyControlTrampoline.m │ │ │ ├── NSVB_ViewServiceXPCMachSendRight.m │ │ │ ├── NSVB_Window.m │ │ │ ├── NSViewBridge.m │ │ │ ├── NSViewBridgeObject.m │ │ │ ├── NSViewBridgeObjectBase.m │ │ │ ├── NSViewRemoteBridge.m │ │ │ ├── NSViewService.m │ │ │ ├── NSViewServiceAccessoryView.m │ │ │ ├── NSViewServiceApplication.m │ │ │ ├── NSViewServiceBridge.m │ │ │ ├── NSViewServiceListenerDelegate.m │ │ │ ├── NSViewServiceMarshal.m │ │ │ ├── NSViewService_PKSubsystem.m │ │ │ ├── NSXPCSharedListener.m │ │ │ ├── NSXPCSharedListenerManager.m │ │ │ ├── NSXPCSharedListenerManagerDelegate.m │ │ │ ├── ServiceListenerDelegate.m │ │ │ ├── ViewBridge.m │ │ │ ├── ViewBridgeUtilities.m │ │ │ ├── ViewHost.m │ │ │ └── ViewService.m │ ├── kperf │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── kperf │ │ │ │ └── kperf.h │ │ └── src │ │ │ └── kperf.c │ └── login │ │ ├── CMakeLists.txt │ │ ├── functions.c │ │ └── include │ │ └── login │ │ ├── SessionAgentCom.h │ │ ├── SessionAgentStatusCom.h │ │ └── login.h ├── quarantine │ ├── CMakeLists.txt │ ├── LICENSE │ ├── include │ │ └── quarantine.h │ └── quarantine.c ├── sandbox │ ├── CMakeLists.txt │ ├── include │ │ ├── sandbox.h │ │ └── sandbox │ │ │ ├── private.h │ │ │ ├── rootless.h │ │ │ └── sandbox.h │ ├── private.h │ ├── sandbox.c │ └── sandbox.h ├── shellspawn │ ├── CMakeLists.txt │ ├── duct_signals.c │ ├── duct_signals.h │ ├── org.darlinghq.shellspawn.plist │ ├── shellspawn.c │ └── shellspawn.h ├── simd │ └── include │ │ └── simd │ │ ├── simd.h │ │ ├── vector_make.h │ │ └── vector_types.h ├── softlinking │ ├── include │ │ └── SoftLinking │ │ │ ├── SoftLinking.h │ │ │ └── WeakLinking.h │ └── submodules │ │ └── WTF ├── startup │ ├── CMakeLists.txt │ ├── darling.c │ ├── darling.h │ ├── mldr │ │ ├── CMakeLists.txt │ │ ├── commpage.c │ │ ├── commpage.h │ │ ├── darling.conf.in │ │ ├── elfcalls │ │ │ ├── dthreads.h │ │ │ ├── elfcalls.c │ │ │ ├── elfcalls.h │ │ │ ├── threads.c │ │ │ └── threads.h │ │ ├── include │ │ │ ├── architecture │ │ │ │ └── byte_order.h │ │ │ ├── i386 │ │ │ │ ├── _types.h │ │ │ │ └── cpu_capabilities.h │ │ │ ├── libkern │ │ │ │ ├── OSByteOrder.h │ │ │ │ ├── _OSByteOrder.h │ │ │ │ └── i386 │ │ │ │ │ ├── OSByteOrder.h │ │ │ │ │ └── _OSByteOrder.h │ │ │ ├── mach-o │ │ │ ├── mach │ │ │ │ ├── boolean.h │ │ │ │ ├── i386 │ │ │ │ │ ├── boolean.h │ │ │ │ │ ├── vm_param.h │ │ │ │ │ └── vm_types.h │ │ │ │ ├── machine.h │ │ │ │ ├── machine │ │ │ │ │ ├── boolean.h │ │ │ │ │ ├── thread_status.h │ │ │ │ │ └── vm_types.h │ │ │ │ └── vm_prot.h │ │ │ └── sys │ │ │ │ ├── _types.h │ │ │ │ ├── _types │ │ │ │ └── _os_inline.h │ │ │ │ └── commpage.h │ │ ├── loader.c │ │ ├── loader.h │ │ ├── mldr.c │ │ ├── resources │ │ │ └── dserver-rpc-defs.h │ │ └── stack.c │ └── rtsig.c ├── tools │ ├── CMakeLists.txt │ ├── codesign.c │ ├── dsmemberutil.c │ ├── open.m │ ├── softwareupdate.c │ ├── spctl.c │ ├── sudo.c │ └── sw_vers.c ├── unxip │ ├── CMakeLists.txt │ ├── unxip │ └── xip_extract_cpio.c ├── vchroot │ ├── CMakeLists.txt │ ├── vchroot.c │ └── vchroot_test.c ├── xcselect │ ├── CMakeLists.txt │ ├── TODO │ ├── clt_install.py │ ├── include │ │ └── xcselect.h │ ├── xcode-select.c │ ├── xcrun-shim.c │ ├── xcrun.c │ └── xcselect.c └── xtrace │ ├── CMakeLists.txt │ ├── base.h │ ├── bsd_trace.cpp │ ├── bsd_trace.h │ ├── include │ └── xtrace │ │ └── xtrace-mig-types.h │ ├── lock.cpp │ ├── lock.h │ ├── mach_trace.cpp │ ├── mach_trace.h │ ├── memory.cpp │ ├── memory.h │ ├── mig_trace.cpp │ ├── mig_trace.h │ ├── posix_spawn_args.cpp │ ├── string.cpp │ ├── string.h │ ├── tls.cpp │ ├── tls.h │ ├── trampoline.S │ ├── xtrace │ ├── xtracelib.cpp │ └── xtracelib.h ├── tests └── src │ ├── bin │ ├── i386 │ │ ├── 10.2 │ │ │ ├── cfbridge.m.bin │ │ │ ├── cfbridge_strequals.m.bin │ │ │ ├── cfurl_fm_basic.c.bin │ │ │ ├── exception.cpp.bin │ │ │ ├── fcntl.c.bin │ │ │ ├── fork_wait.c.bin │ │ │ ├── fstream.cpp.bin │ │ │ ├── libproc.c.bin │ │ │ ├── mach_lockset_basic.c.bin │ │ │ ├── mach_lockset_handoff.c.bin │ │ │ ├── mach_semaphore.c.bin │ │ │ ├── maclocales.m.bin │ │ │ ├── objc_category.m.bin │ │ │ ├── objc_exception.m.bin │ │ │ ├── objc_fpret.m.bin │ │ │ ├── objc_helloworld.m.bin │ │ │ ├── objc_helloworld_static.m.bin │ │ │ ├── objc_ivars.m.bin │ │ │ ├── objc_load.m.bin │ │ │ ├── objc_properties.m.bin │ │ │ ├── objc_protocol.m.bin │ │ │ ├── objc_stret.m.bin │ │ │ ├── objc_super.m.bin │ │ │ ├── pthread_threads.c.bin │ │ │ └── selfexec.c.bin │ │ ├── 10.6 │ │ │ ├── cfbridge.m.bin │ │ │ ├── cfbridge_strequals.m.bin │ │ │ ├── cfurl_fm_basic.c.bin │ │ │ ├── exception.cpp.bin │ │ │ ├── fcntl.c.bin │ │ │ ├── fork_wait.c.bin │ │ │ ├── fstream.cpp.bin │ │ │ ├── libproc.c.bin │ │ │ ├── mach_lockset_basic.c.bin │ │ │ ├── mach_lockset_handoff.c.bin │ │ │ ├── mach_semaphore.c.bin │ │ │ ├── maclocales.m.bin │ │ │ ├── objc_category.m.bin │ │ │ ├── objc_exception.m.bin │ │ │ ├── objc_fpret.m.bin │ │ │ ├── objc_helloworld.m.bin │ │ │ ├── objc_helloworld_static.m.bin │ │ │ ├── objc_ivars.m.bin │ │ │ ├── objc_load.m.bin │ │ │ ├── objc_properties.m.bin │ │ │ ├── objc_protocol.m.bin │ │ │ ├── objc_stret.m.bin │ │ │ ├── objc_super.m.bin │ │ │ ├── pthread_threads.c.bin │ │ │ └── selfexec.c.bin │ │ ├── 10.8 │ │ │ ├── cfbridge.m.bin │ │ │ ├── cfbridge_strequals.m.bin │ │ │ ├── cfurl_fm_basic.c.bin │ │ │ ├── exception.cpp.bin │ │ │ ├── fcntl.c.bin │ │ │ ├── fork_wait.c.bin │ │ │ ├── fstream.cpp.bin │ │ │ ├── libproc.c.bin │ │ │ ├── mach_lockset_basic.c.bin │ │ │ ├── mach_lockset_handoff.c.bin │ │ │ ├── mach_semaphore.c.bin │ │ │ ├── maclocales.m.bin │ │ │ ├── objc_category.m.bin │ │ │ ├── objc_exception.m.bin │ │ │ ├── objc_fpret.m.bin │ │ │ ├── objc_helloworld.m.bin │ │ │ ├── objc_helloworld_static.m.bin │ │ │ ├── objc_ivars.m.bin │ │ │ ├── objc_load.m.bin │ │ │ ├── objc_properties.m.bin │ │ │ ├── objc_protocol.m.bin │ │ │ ├── objc_stret.m.bin │ │ │ ├── objc_super.m.bin │ │ │ ├── pthread_threads.c.bin │ │ │ ├── selfexec.c.bin │ │ │ ├── tls1.c.bin │ │ │ └── tls2.cpp.bin │ │ ├── cfbridge.m.stdout │ │ ├── cfbridge_strequals.m.stdout │ │ ├── cfurl_fm_basic.c.stdout │ │ ├── exception.cpp.stdout │ │ ├── fcntl.c.stdout │ │ ├── fork_wait.c.stdout │ │ ├── fstream.cpp.stdout │ │ ├── libproc.c.stdout │ │ ├── mach_lockset_basic.c.stdout │ │ ├── mach_lockset_handoff.c.stdout │ │ ├── mach_semaphore.c.stdout │ │ ├── maclocales.m.stdout │ │ ├── objc_category.m.stdout │ │ ├── objc_exception.m.stdout │ │ ├── objc_fpret.m.stdout │ │ ├── objc_helloworld.m.stdout │ │ ├── objc_helloworld_static.m.stdout │ │ ├── objc_ivars.m.stdout │ │ ├── objc_load.m.stdout │ │ ├── objc_properties.m.stdout │ │ ├── objc_protocol.m.stdout │ │ ├── objc_stret.m.stdout │ │ ├── objc_super.m.stdout │ │ ├── pthread_threads.c.stdout │ │ ├── selfexec.c.stdout │ │ ├── tls1.c.stdout │ │ └── tls2.cpp.stdout │ ├── runtests.py │ └── x86-64 │ │ ├── 10.2 │ │ ├── cfbridge.m.bin │ │ ├── cfbridge_strequals.m.bin │ │ ├── cfurl_fm_basic.c.bin │ │ ├── exception.cpp.bin │ │ ├── fcntl.c.bin │ │ ├── fork_wait.c.bin │ │ ├── fstream.cpp.bin │ │ ├── libproc.c.bin │ │ ├── mach_lockset_basic.c.bin │ │ ├── mach_lockset_handoff.c.bin │ │ ├── mach_semaphore.c.bin │ │ ├── maclocales.m.bin │ │ ├── objc_category.m.bin │ │ ├── objc_exception.m.bin │ │ ├── objc_fpret.m.bin │ │ ├── objc_helloworld.m.bin │ │ ├── objc_helloworld_static.m.bin │ │ ├── objc_ivars.m.bin │ │ ├── objc_load.m.bin │ │ ├── objc_properties.m.bin │ │ ├── objc_protocol.m.bin │ │ ├── objc_stret.m.bin │ │ ├── objc_super.m.bin │ │ ├── pthread_threads.c.bin │ │ └── selfexec.c.bin │ │ ├── 10.6 │ │ ├── cfbridge.m.bin │ │ ├── cfbridge_strequals.m.bin │ │ ├── cfurl_fm_basic.c.bin │ │ ├── exception.cpp.bin │ │ ├── fcntl.c.bin │ │ ├── fork_wait.c.bin │ │ ├── fstream.cpp.bin │ │ ├── libproc.c.bin │ │ ├── mach_lockset_basic.c.bin │ │ ├── mach_lockset_handoff.c.bin │ │ ├── mach_semaphore.c.bin │ │ ├── maclocales.m.bin │ │ ├── objc_category.m.bin │ │ ├── objc_exception.m.bin │ │ ├── objc_fpret.m.bin │ │ ├── objc_helloworld.m.bin │ │ ├── objc_helloworld_static.m.bin │ │ ├── objc_ivars.m.bin │ │ ├── objc_load.m.bin │ │ ├── objc_properties.m.bin │ │ ├── objc_protocol.m.bin │ │ ├── objc_stret.m.bin │ │ ├── objc_super.m.bin │ │ ├── pthread_threads.c.bin │ │ └── selfexec.c.bin │ │ ├── 10.8 │ │ ├── cfbridge.m.bin │ │ ├── cfbridge_strequals.m.bin │ │ ├── cfurl_fm_basic.c.bin │ │ ├── exception.cpp.bin │ │ ├── fcntl.c.bin │ │ ├── fork_wait.c.bin │ │ ├── fstream.cpp.bin │ │ ├── libproc.c.bin │ │ ├── mach_lockset_basic.c.bin │ │ ├── mach_lockset_handoff.c.bin │ │ ├── mach_semaphore.c.bin │ │ ├── maclocales.m.bin │ │ ├── objc_category.m.bin │ │ ├── objc_exception.m.bin │ │ ├── objc_fpret.m.bin │ │ ├── objc_helloworld.m.bin │ │ ├── objc_helloworld_static.m.bin │ │ ├── objc_ivars.m.bin │ │ ├── objc_load.m.bin │ │ ├── objc_properties.m.bin │ │ ├── objc_protocol.m.bin │ │ ├── objc_stret.m.bin │ │ ├── objc_super.m.bin │ │ ├── pthread_threads.c.bin │ │ ├── selfexec.c.bin │ │ ├── tls1.c.bin │ │ └── tls2.cpp.bin │ │ ├── cfbridge.m.stdout │ │ ├── cfbridge_strequals.m.stdout │ │ ├── cfurl_fm_basic.c.stdout │ │ ├── exception.cpp.stdout │ │ ├── fcntl.c.stdout │ │ ├── fork_wait.c.stdout │ │ ├── fstream.cpp.stdout │ │ ├── libproc.c.stdout │ │ ├── mach_lockset_basic.c.stdout │ │ ├── mach_lockset_handoff.c.stdout │ │ ├── mach_semaphore.c.stdout │ │ ├── maclocales.m.stdout │ │ ├── objc_category.m.stdout │ │ ├── objc_exception.m.stdout │ │ ├── objc_fpret.m.stdout │ │ ├── objc_helloworld.m.stdout │ │ ├── objc_helloworld_static.m.stdout │ │ ├── objc_ivars.m.stdout │ │ ├── objc_load.m.stdout │ │ ├── objc_properties.m.stdout │ │ ├── objc_protocol.m.stdout │ │ ├── objc_stret.m.stdout │ │ ├── objc_super.m.stdout │ │ ├── pthread_threads.c.stdout │ │ ├── selfexec.c.stdout │ │ ├── tls1.c.stdout │ │ └── tls2.cpp.stdout │ ├── cfbridge.m │ ├── cfbridge_strequals.m │ ├── cfurl_fm_basic.c │ ├── exception.cpp │ ├── fcntl.c │ ├── fork_wait.c │ ├── fstream.cpp │ ├── libproc.c │ ├── mach_lockset_basic.c │ ├── mach_lockset_handoff.c │ ├── mach_semaphore.c │ ├── maclocales.m │ ├── manual │ └── ncurses_acs.c │ ├── objc_category.m │ ├── objc_exception.m │ ├── objc_fpret.m │ ├── objc_helloworld.m │ ├── objc_helloworld_static.m │ ├── objc_ivars.m │ ├── objc_load.m │ ├── objc_properties.m │ ├── objc_protocol.m │ ├── objc_stret.m │ ├── objc_super.m │ ├── pthread_threads.c │ ├── selfexec.c │ ├── tls1.c │ └── tls2.cpp └── tools ├── darling-stub-gen ├── debian ├── make-deb ├── make-shlibdeps ├── make-shlibdeps-file └── ppa-build-source ├── fix-source-perm.sh ├── generate-xcode-stubs.py ├── generrnomap ├── i386-map ├── offsetof ├── pyc ├── rename-line ├── rename-target ├── rpm ├── darling-deps.req └── darling.attr ├── shutdown-user.sh ├── sizeof ├── stripcomments ├── stub-gen-c-func ├── stub-gen-objc ├── uninstall └── valueof /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/.gdbinit -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/lkm_bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/.github/ISSUE_TEMPLATE/lkm_bug.md -------------------------------------------------------------------------------- /.github/workflows/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/.github/workflows/actions.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Developer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/Developer/.gitignore -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/QD.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/arpa/nameser.h: -------------------------------------------------------------------------------- 1 | ../nameser.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/ctkloginhelper.h: -------------------------------------------------------------------------------- 1 | ctkclient/ctkloginhelper.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/elfcalls.h: -------------------------------------------------------------------------------- 1 | elfcalls/elfcalls.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/expat.h: -------------------------------------------------------------------------------- 1 | expat/expat.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/expat_external.h: -------------------------------------------------------------------------------- 1 | expat/expat_external.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/ffi.h: -------------------------------------------------------------------------------- 1 | ffi/ffi.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/ffi/x86-ffitarget.h: -------------------------------------------------------------------------------- 1 | ffitarget_x86.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/ffi_common.h: -------------------------------------------------------------------------------- 1 | ffi/ffi_common.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/fficonfig.h: -------------------------------------------------------------------------------- 1 | ffi/fficonfig.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/fficonfig_arm64.h: -------------------------------------------------------------------------------- 1 | ffi/fficonfig_arm64.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/fficonfig_armv7.h: -------------------------------------------------------------------------------- 1 | ffi/fficonfig_armv7.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/fficonfig_i386.h: -------------------------------------------------------------------------------- 1 | ffi/fficonfig_i386.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/fficonfig_x86_64.h: -------------------------------------------------------------------------------- 1 | ffi/fficonfig_x86_64.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/ffitarget.h: -------------------------------------------------------------------------------- 1 | ffi/ffitarget.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/ffitarget_arm64.h: -------------------------------------------------------------------------------- 1 | ffi/ffitarget_arm64.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/ffitarget_armv7.h: -------------------------------------------------------------------------------- 1 | ffi/ffitarget_armv7.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/ffitarget_x86.h: -------------------------------------------------------------------------------- 1 | ffi/ffitarget_x86.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/kxld.h: -------------------------------------------------------------------------------- 1 | libkern/kxld.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/kxld_types.h: -------------------------------------------------------------------------------- 1 | libkern/kxld_types.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/liblaunch/bootstrap.h: -------------------------------------------------------------------------------- 1 | ../bootstrap.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread.h: -------------------------------------------------------------------------------- 1 | pthread/pthread.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread_impl.h: -------------------------------------------------------------------------------- 1 | pthread/pthread_impl.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread_spis.h: -------------------------------------------------------------------------------- 1 | pthread/pthread_spis.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/reboot2.h: -------------------------------------------------------------------------------- 1 | liblaunch/reboot2.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/rootless.h: -------------------------------------------------------------------------------- 1 | sandbox/rootless.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sched.h: -------------------------------------------------------------------------------- 1 | pthread/sched.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/servers/bootstrap.h: -------------------------------------------------------------------------------- 1 | ../bootstrap.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/servers/bootstrap_defs.h: -------------------------------------------------------------------------------- 1 | ../bootstrap.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/x86-ffitarget.h: -------------------------------------------------------------------------------- 1 | ffi/x86-ffitarget.h -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib/libobjc.dylib: -------------------------------------------------------------------------------- 1 | libobjc.A.dylib -------------------------------------------------------------------------------- /Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk: -------------------------------------------------------------------------------- 1 | MacOSX.sdk/ -------------------------------------------------------------------------------- /Developer/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/Developer/TODO.md -------------------------------------------------------------------------------- /Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | llvm-dsymutil-6.0 "$@" 4 | -------------------------------------------------------------------------------- /Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/__libcpp_version: -------------------------------------------------------------------------------- 1 | 5000 2 | -------------------------------------------------------------------------------- /Developer/symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/Developer/symlinks.sh -------------------------------------------------------------------------------- /Developer/usr/bin/git: -------------------------------------------------------------------------------- 1 | /usr/bin/git -------------------------------------------------------------------------------- /Developer/usr/bin/xcodebuild: -------------------------------------------------------------------------------- 1 | ../../../build/src/external/xcbuild/xcodebuild -------------------------------------------------------------------------------- /Developer/usr/bin/xcrun: -------------------------------------------------------------------------------- 1 | ../../../build/src/external/xcbuild/xcrun -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/README.md -------------------------------------------------------------------------------- /basic-headers/AssertMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/basic-headers/AssertMacros.h -------------------------------------------------------------------------------- /basic-headers/Availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/basic-headers/Availability.h -------------------------------------------------------------------------------- /basic-headers/AvailabilityVersions.h: -------------------------------------------------------------------------------- 1 | ../src/external/AvailabilityVersions/AvailabilityVersions.h -------------------------------------------------------------------------------- /basic-headers/MacTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/basic-headers/MacTypes.h -------------------------------------------------------------------------------- /basic-headers/architecture: -------------------------------------------------------------------------------- 1 | ../src/external/architecture/ -------------------------------------------------------------------------------- /ci/Debian.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/ci/Debian.Dockerfile -------------------------------------------------------------------------------- /ci/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/ci/Jenkinsfile -------------------------------------------------------------------------------- /ci/RPM.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/ci/RPM.Dockerfile -------------------------------------------------------------------------------- /ci/top.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/ci/top.Dockerfile -------------------------------------------------------------------------------- /cmake/FindFFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/FindFFmpeg.cmake -------------------------------------------------------------------------------- /cmake/FindPulseAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/FindPulseAudio.cmake -------------------------------------------------------------------------------- /cmake/FindSetcap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/FindSetcap.cmake -------------------------------------------------------------------------------- /cmake/InstallSymlink.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/InstallSymlink.cmake -------------------------------------------------------------------------------- /cmake/architecture.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/architecture.cmake -------------------------------------------------------------------------------- /cmake/clang_version_check.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/clang_version_check.cmake -------------------------------------------------------------------------------- /cmake/compiler_include.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/compiler_include.cmake -------------------------------------------------------------------------------- /cmake/create_symlink.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/create_symlink.cmake -------------------------------------------------------------------------------- /cmake/darling_bundle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/darling_bundle.cmake -------------------------------------------------------------------------------- /cmake/darling_exe.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/darling_exe.cmake -------------------------------------------------------------------------------- /cmake/darling_framework.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/darling_framework.cmake -------------------------------------------------------------------------------- /cmake/darling_lib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/darling_lib.cmake -------------------------------------------------------------------------------- /cmake/darling_static_lib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/darling_static_lib.cmake -------------------------------------------------------------------------------- /cmake/dsym.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/dsym.cmake -------------------------------------------------------------------------------- /cmake/mig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/mig.cmake -------------------------------------------------------------------------------- /cmake/pyc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/pyc.cmake -------------------------------------------------------------------------------- /cmake/setcap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/setcap.cmake -------------------------------------------------------------------------------- /cmake/use_ld64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/use_ld64.cmake -------------------------------------------------------------------------------- /cmake/versioner.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/versioner.cmake -------------------------------------------------------------------------------- /cmake/wrap_elf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/wrap_elf.cmake -------------------------------------------------------------------------------- /cmake/xcproj.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/cmake/xcproj.cmake -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/darling-cli-devenv-gui-common.install: -------------------------------------------------------------------------------- 1 | cli-devenv-gui-common/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-cli-devenv-gui-stubs-common.install: -------------------------------------------------------------------------------- 1 | cli-devenv-gui-stubs-common/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-cli-devenv.install: -------------------------------------------------------------------------------- 1 | cli-devenv/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-cli-extra.install: -------------------------------------------------------------------------------- 1 | cli-extra/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-cli-gui-common.install: -------------------------------------------------------------------------------- 1 | cli-gui-common/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-cli-python-common.install: -------------------------------------------------------------------------------- 1 | cli-python-common/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-cli.install: -------------------------------------------------------------------------------- 1 | cli/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-core.install: -------------------------------------------------------------------------------- 1 | core/usr / 2 | tools/shutdown-user.sh usr/lib/darling 3 | -------------------------------------------------------------------------------- /debian/darling-core.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/debian/darling-core.postinst -------------------------------------------------------------------------------- /debian/darling-core.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/debian/darling-core.prerm -------------------------------------------------------------------------------- /debian/darling-ffi.install: -------------------------------------------------------------------------------- 1 | ffi/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-gui-stubs.install: -------------------------------------------------------------------------------- 1 | gui-stubs/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-gui.install: -------------------------------------------------------------------------------- 1 | gui/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-iokitd-cli-devenv-gui-common.install: -------------------------------------------------------------------------------- 1 | iokitd-cli-devenv-gui-common/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-iokitd.install: -------------------------------------------------------------------------------- 1 | iokitd/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-iosurface.install: -------------------------------------------------------------------------------- 1 | iosurface/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-jsc-webkit-common.install: -------------------------------------------------------------------------------- 1 | jsc-webkit-common/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-jsc.install: -------------------------------------------------------------------------------- 1 | jsc/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-perl.install: -------------------------------------------------------------------------------- 1 | perl/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-pyobjc.install: -------------------------------------------------------------------------------- 1 | pyobjc/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-python2.install: -------------------------------------------------------------------------------- 1 | python2/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-ruby.install: -------------------------------------------------------------------------------- 1 | ruby/usr / 2 | -------------------------------------------------------------------------------- /debian/darling-system.install: -------------------------------------------------------------------------------- 1 | system/usr / 2 | -------------------------------------------------------------------------------- /debian/darling.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/debian/darling.lintian-overrides -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/etc/resolv.conf -------------------------------------------------------------------------------- /misc/darling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/misc/darling.svg -------------------------------------------------------------------------------- /rpm/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/rpm/.dockerignore -------------------------------------------------------------------------------- /rpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/rpm/Dockerfile -------------------------------------------------------------------------------- /rpm/SPECS/darling.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/rpm/SPECS/darling.spec -------------------------------------------------------------------------------- /rpm/build.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/rpm/build.bsh -------------------------------------------------------------------------------- /rpm/darling.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/rpm/darling.repo -------------------------------------------------------------------------------- /rpm/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/rpm/docker-compose.yml -------------------------------------------------------------------------------- /rpm/tarup.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/rpm/tarup.bsh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CoreAudio/AFAVFormatComponent/AFPublic: -------------------------------------------------------------------------------- 1 | ../CoreAudioUtilityClasses/CoreAudio/AudioFile/AFPublic -------------------------------------------------------------------------------- /src/CoreAudio/AFAVFormatComponent/AUPublic: -------------------------------------------------------------------------------- 1 | ../CoreAudioUtilityClasses/CoreAudio/AudioUnits/AUPublic -------------------------------------------------------------------------------- /src/CoreAudio/AFAVFormatComponent/PublicUtility: -------------------------------------------------------------------------------- 1 | ../CoreAudioUtilityClasses/CoreAudio/PublicUtility -------------------------------------------------------------------------------- /src/CoreAudio/AudioToolbox/AUGraph.cpp: -------------------------------------------------------------------------------- 1 | #include "AUGraph.h" 2 | -------------------------------------------------------------------------------- /src/CoreAudio/AudioToolbox/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CoreAudio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/CoreAudio/CMakeLists.txt -------------------------------------------------------------------------------- /src/CoreAudio/CoreAudio/stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/CoreAudio/CoreAudio/stub.h -------------------------------------------------------------------------------- /src/CoreAudio/CoreAudioComponent/AUPublic: -------------------------------------------------------------------------------- 1 | ../CoreAudioUtilityClasses/CoreAudio/AudioUnits/AUPublic -------------------------------------------------------------------------------- /src/CoreAudio/CoreAudioComponent/PublicUtility: -------------------------------------------------------------------------------- 1 | ../CoreAudioUtilityClasses/CoreAudio/PublicUtility -------------------------------------------------------------------------------- /src/CoreAudio/include/AudioUnit: -------------------------------------------------------------------------------- 1 | AudioToolbox -------------------------------------------------------------------------------- /src/CoreAudio/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/CoreAudio/notes.txt -------------------------------------------------------------------------------- /src/MobileKeyBag/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/MobileKeyBag/CMakeLists.txt -------------------------------------------------------------------------------- /src/OpenDirectoryOld/CFOpenDirectory/CFOpenDirectory: -------------------------------------------------------------------------------- 1 | Headers -------------------------------------------------------------------------------- /src/OpenDirectoryOld/OpenDirectory: -------------------------------------------------------------------------------- 1 | Headers -------------------------------------------------------------------------------- /src/PlistBuddy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/PlistBuddy/CMakeLists.txt -------------------------------------------------------------------------------- /src/PlistBuddy/PlistBuddy.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/PlistBuddy/PlistBuddy.8 -------------------------------------------------------------------------------- /src/PlistBuddy/PlistBuddy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/PlistBuddy/PlistBuddy.c -------------------------------------------------------------------------------- /src/bsdln/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/bsdln/CMakeLists.txt -------------------------------------------------------------------------------- /src/bsdln/ln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/bsdln/ln.c -------------------------------------------------------------------------------- /src/buildtools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/CMakeLists.txt -------------------------------------------------------------------------------- /src/buildtools/Rez/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/COPYING -------------------------------------------------------------------------------- /src/buildtools/Rez/Diagnostic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/Diagnostic.cc -------------------------------------------------------------------------------- /src/buildtools/Rez/Diagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/Diagnostic.h -------------------------------------------------------------------------------- /src/buildtools/Rez/Expression.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/Expression.cc -------------------------------------------------------------------------------- /src/buildtools/Rez/Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/Expression.h -------------------------------------------------------------------------------- /src/buildtools/Rez/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/README.md -------------------------------------------------------------------------------- /src/buildtools/Rez/ResSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/ResSpec.h -------------------------------------------------------------------------------- /src/buildtools/Rez/Rez.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/Rez.cc -------------------------------------------------------------------------------- /src/buildtools/Rez/RezLexer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/RezLexer.cc -------------------------------------------------------------------------------- /src/buildtools/Rez/RezLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/RezLexer.h -------------------------------------------------------------------------------- /src/buildtools/Rez/RezParser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/RezParser.yy -------------------------------------------------------------------------------- /src/buildtools/Rez/RezWorld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/RezWorld.cc -------------------------------------------------------------------------------- /src/buildtools/Rez/RezWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/RezWorld.h -------------------------------------------------------------------------------- /src/buildtools/Rez/Test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/Rez/Test.r -------------------------------------------------------------------------------- /src/buildtools/elfdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/elfdep.c -------------------------------------------------------------------------------- /src/buildtools/getuuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/buildtools/getuuid.c -------------------------------------------------------------------------------- /src/clt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/clt/CMakeLists.txt -------------------------------------------------------------------------------- /src/clt/xcrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/clt/xcrun.c -------------------------------------------------------------------------------- /src/configd/APPLE_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/APPLE_LICENSE -------------------------------------------------------------------------------- /src/configd/SCMonitor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/SCMonitor/Info.plist -------------------------------------------------------------------------------- /src/configd/SCMonitor/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/SCMonitor/monitor.c -------------------------------------------------------------------------------- /src/configd/configd.tproj/_SCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/configd.tproj/_SCD.c -------------------------------------------------------------------------------- /src/configd/configd.tproj/_SCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/configd.tproj/_SCD.h -------------------------------------------------------------------------------- /src/configd/dnsinfo/dnsinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/dnsinfo/dnsinfo.h -------------------------------------------------------------------------------- /src/configd/get-mobility-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/get-mobility-info -------------------------------------------------------------------------------- /src/configd/get-network-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/get-network-info -------------------------------------------------------------------------------- /src/configd/sctest/SCTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/sctest/SCTest.h -------------------------------------------------------------------------------- /src/configd/sctest/SCTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/sctest/SCTest.m -------------------------------------------------------------------------------- /src/configd/sctest/SCTestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/sctest/SCTestUtils.h -------------------------------------------------------------------------------- /src/configd/sctest/SCTestUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/sctest/SCTestUtils.m -------------------------------------------------------------------------------- /src/configd/sctest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/sctest/main.m -------------------------------------------------------------------------------- /src/configd/scutil.tproj/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/scutil.tproj/cache.c -------------------------------------------------------------------------------- /src/configd/scutil.tproj/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/scutil.tproj/cache.h -------------------------------------------------------------------------------- /src/configd/scutil.tproj/nc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/scutil.tproj/nc.c -------------------------------------------------------------------------------- /src/configd/scutil.tproj/nc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/scutil.tproj/nc.h -------------------------------------------------------------------------------- /src/configd/scutil.tproj/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/scutil.tproj/net.c -------------------------------------------------------------------------------- /src/configd/scutil.tproj/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/scutil.tproj/net.h -------------------------------------------------------------------------------- /src/configd/scutil.tproj/prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/scutil.tproj/prefs.c -------------------------------------------------------------------------------- /src/configd/scutil.tproj/prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/scutil.tproj/prefs.h -------------------------------------------------------------------------------- /src/configd/scutil.tproj/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/scutil.tproj/tests.c -------------------------------------------------------------------------------- /src/configd/scutil.tproj/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/configd/scutil.tproj/tests.h -------------------------------------------------------------------------------- /src/crash/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/crash/AppController.h -------------------------------------------------------------------------------- /src/crash/AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/crash/AppController.m -------------------------------------------------------------------------------- /src/crash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/crash/CMakeLists.txt -------------------------------------------------------------------------------- /src/crash/CrashManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/crash/CrashManager.h -------------------------------------------------------------------------------- /src/crash/CrashManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/crash/CrashManager.m -------------------------------------------------------------------------------- /src/crash/crash_main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/crash/crash_main.m -------------------------------------------------------------------------------- /src/diskutil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/diskutil/CMakeLists.txt -------------------------------------------------------------------------------- /src/diskutil/diskutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/diskutil/diskutil -------------------------------------------------------------------------------- /src/ditto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/ditto/CMakeLists.txt -------------------------------------------------------------------------------- /src/ditto/ditto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/ditto/ditto -------------------------------------------------------------------------------- /src/duct/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/duct/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/duct/src/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/duct/src/acl.c -------------------------------------------------------------------------------- /src/duct/src/commpage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/duct/src/commpage.c -------------------------------------------------------------------------------- /src/duct/src/dns_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/duct/src/dns_sd.c -------------------------------------------------------------------------------- /src/duct/src/libnotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/duct/src/libnotify.c -------------------------------------------------------------------------------- /src/duct/src/numcpus.c: -------------------------------------------------------------------------------- 1 | int _NumCPUs(void) 2 | { 3 | return 2; // use MP codepaths 4 | } 5 | 6 | -------------------------------------------------------------------------------- /src/duct/src/os_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/duct/src/os_log.c -------------------------------------------------------------------------------- /src/duct/src/sa_dst_compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/duct/src/sa_dst_compare.c -------------------------------------------------------------------------------- /src/external/libpthread_workqueue: -------------------------------------------------------------------------------- 1 | libpthread_workqueue-0.8.2 -------------------------------------------------------------------------------- /src/frameworks/AGL/include/AGL/AGL.h: -------------------------------------------------------------------------------- 1 | // TODO 2 | -------------------------------------------------------------------------------- /src/frameworks/AGL/src/AGL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/frameworks/AGL/src/AGL.c -------------------------------------------------------------------------------- /src/frameworks/AVKit/src/AVKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/frameworks/AVKit/src/AVKit.m -------------------------------------------------------------------------------- /src/frameworks/Accelerate/vecLib/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/frameworks/CMakeLists.txt -------------------------------------------------------------------------------- /src/frameworks/Contacts/manual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/frameworks/Contacts/manual.m -------------------------------------------------------------------------------- /src/frameworks/Contacts/src/CN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/frameworks/Contacts/src/CN.m -------------------------------------------------------------------------------- /src/frameworks/CoreServices/CoreServices.h: -------------------------------------------------------------------------------- 1 | include/CoreServices/CoreServices.h -------------------------------------------------------------------------------- /src/frameworks/CoreServices/ScriptManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/CoreServices/ScriptManager.h: -------------------------------------------------------------------------------- 1 | include/CoreServices/ScriptManager.h -------------------------------------------------------------------------------- /src/frameworks/CoreServices/include/CoreServices/MacTypes.h: -------------------------------------------------------------------------------- 1 | ../../../../../basic-headers/MacTypes.h -------------------------------------------------------------------------------- /src/frameworks/CoreServices/include/CoreServices/ScriptManager.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/CoreServices/include/DictionaryServices/DictionaryServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/CoreServices/include/Metadata/Metadata.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/CoreServices/include/OSServices/OSServices.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/CoreServices/include/SharedFileList/SharedFileList.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/CoreServices/src/AE/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/CoreServices/src/DictionaryServices/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/CoreServices/src/OSServices/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/CoreServices/src/SharedFileList/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/DirectoryServices/src/DirectoryService.h: -------------------------------------------------------------------------------- 1 | ../include/DirectoryService/DirectoryService.h -------------------------------------------------------------------------------- /src/frameworks/DiskArbitration/DADisk.h: -------------------------------------------------------------------------------- 1 | include/DiskArbitration/DADisk.h -------------------------------------------------------------------------------- /src/frameworks/DiskArbitration/DADissenter.h: -------------------------------------------------------------------------------- 1 | include/DiskArbitration/DADissenter.h -------------------------------------------------------------------------------- /src/frameworks/DiskArbitration/DASession.h: -------------------------------------------------------------------------------- 1 | include/DiskArbitration/DASession.h -------------------------------------------------------------------------------- /src/frameworks/DrawSprocket/include/DrawSprocket/DrawSprocket.h: -------------------------------------------------------------------------------- 1 | // TODO -------------------------------------------------------------------------------- /src/frameworks/GLKit/src/GLKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/frameworks/GLKit/src/GLKit.m -------------------------------------------------------------------------------- /src/frameworks/ImageIO/DO NOT REGENERATE.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/NetFS/src/NetFS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/frameworks/NetFS/src/NetFS.m -------------------------------------------------------------------------------- /src/frameworks/OpenGL/OpenGL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/frameworks/OpenGL/OpenGL.c -------------------------------------------------------------------------------- /src/frameworks/OpenGL/include/OpenGL/CGLCurrent.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frameworks/QTKit/src/QTKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/frameworks/QTKit/src/QTKit.m -------------------------------------------------------------------------------- /src/frameworks/Quartz/TODO.md: -------------------------------------------------------------------------------- 1 | # Quartz TODO 2 | 3 | Make nested frameworks 4 | -------------------------------------------------------------------------------- /src/hosttools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/hosttools/CMakeLists.txt -------------------------------------------------------------------------------- /src/include/darling-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/include/darling-config.h.in -------------------------------------------------------------------------------- /src/launchd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/CMakeLists.txt -------------------------------------------------------------------------------- /src/launchd/SystemStarter/IPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/SystemStarter/IPC.c -------------------------------------------------------------------------------- /src/launchd/SystemStarter/IPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/SystemStarter/IPC.h -------------------------------------------------------------------------------- /src/launchd/liblaunch/helper.defs: -------------------------------------------------------------------------------- 1 | ../src/helper.defs -------------------------------------------------------------------------------- /src/launchd/liblaunch/job.defs: -------------------------------------------------------------------------------- 1 | ../src/job.defs -------------------------------------------------------------------------------- /src/launchd/liblaunch/launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/liblaunch/launch.h -------------------------------------------------------------------------------- /src/launchd/liblaunch/libvproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/liblaunch/libvproc.c -------------------------------------------------------------------------------- /src/launchd/liblaunch/reboot2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/liblaunch/reboot2.h -------------------------------------------------------------------------------- /src/launchd/liblaunch/vproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/liblaunch/vproc.h -------------------------------------------------------------------------------- /src/launchd/man/launchctl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/man/launchctl.1 -------------------------------------------------------------------------------- /src/launchd/man/launchd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/man/launchd.8 -------------------------------------------------------------------------------- /src/launchd/man/launchd.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/man/launchd.conf.5 -------------------------------------------------------------------------------- /src/launchd/man/launchd.plist.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/man/launchd.plist.5 -------------------------------------------------------------------------------- /src/launchd/man/launchproxy.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/man/launchproxy.8 -------------------------------------------------------------------------------- /src/launchd/man/rc.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/man/rc.8 -------------------------------------------------------------------------------- /src/launchd/man/wait4path.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/man/wait4path.1 -------------------------------------------------------------------------------- /src/launchd/rc/rc.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/rc/rc.common -------------------------------------------------------------------------------- /src/launchd/rc/rc.netboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/rc/rc.netboot -------------------------------------------------------------------------------- /src/launchd/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/launchd/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/config.h -------------------------------------------------------------------------------- /src/launchd/src/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/core.c -------------------------------------------------------------------------------- /src/launchd/src/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/core.h -------------------------------------------------------------------------------- /src/launchd/src/helper.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/helper.defs -------------------------------------------------------------------------------- /src/launchd/src/internal.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/internal.defs -------------------------------------------------------------------------------- /src/launchd/src/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/ipc.c -------------------------------------------------------------------------------- /src/launchd/src/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/ipc.h -------------------------------------------------------------------------------- /src/launchd/src/job.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/job.defs -------------------------------------------------------------------------------- /src/launchd/src/job_forward.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/job_forward.defs -------------------------------------------------------------------------------- /src/launchd/src/job_reply.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/job_reply.defs -------------------------------------------------------------------------------- /src/launchd/src/job_types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/job_types.defs -------------------------------------------------------------------------------- /src/launchd/src/kill2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/kill2.c -------------------------------------------------------------------------------- /src/launchd/src/kill2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/kill2.h -------------------------------------------------------------------------------- /src/launchd/src/ktrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/ktrace.c -------------------------------------------------------------------------------- /src/launchd/src/ktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/ktrace.h -------------------------------------------------------------------------------- /src/launchd/src/launchd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/launchd.c -------------------------------------------------------------------------------- /src/launchd/src/launchd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/launchd.h -------------------------------------------------------------------------------- /src/launchd/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/log.c -------------------------------------------------------------------------------- /src/launchd/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/log.h -------------------------------------------------------------------------------- /src/launchd/src/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/runtime.c -------------------------------------------------------------------------------- /src/launchd/src/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/src/runtime.h -------------------------------------------------------------------------------- /src/launchd/support/launchctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/support/launchctl.c -------------------------------------------------------------------------------- /src/launchd/support/wait4path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/launchd/support/wait4path.c -------------------------------------------------------------------------------- /src/lib/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(system) 2 | -------------------------------------------------------------------------------- /src/lib/system/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(dnssd) 2 | -------------------------------------------------------------------------------- /src/libacm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libacm/CMakeLists.txt -------------------------------------------------------------------------------- /src/libacm/acmstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libacm/acmstub.c -------------------------------------------------------------------------------- /src/libacm/include/ACMAclDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libacm/include/ACMAclDefs.h -------------------------------------------------------------------------------- /src/libacm/include/ACMDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libacm/include/ACMDefs.h -------------------------------------------------------------------------------- /src/libacm/include/ACMLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libacm/include/ACMLib.h -------------------------------------------------------------------------------- /src/libaks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libaks/CMakeLists.txt -------------------------------------------------------------------------------- /src/libaks/include/libaks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libaks/include/libaks.h -------------------------------------------------------------------------------- /src/libaks/libaks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libaks/libaks.c -------------------------------------------------------------------------------- /src/libcache/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libcache/CMakeLists.txt -------------------------------------------------------------------------------- /src/libcache/src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libcache/src/cache.c -------------------------------------------------------------------------------- /src/libgcc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libgcc/CMakeLists.txt -------------------------------------------------------------------------------- /src/libgcc/dummy.c: -------------------------------------------------------------------------------- 1 | // For binary compatibility only 2 | void mach_init_routine() {} 3 | 4 | -------------------------------------------------------------------------------- /src/libgmalloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libgmalloc/CMakeLists.txt -------------------------------------------------------------------------------- /src/libgmalloc/gmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libgmalloc/gmalloc.c -------------------------------------------------------------------------------- /src/libm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/CMakeLists.txt -------------------------------------------------------------------------------- /src/libm/Exports/libmx.exp: -------------------------------------------------------------------------------- 1 | 2 | # This space intentionally left blank 3 | -------------------------------------------------------------------------------- /src/libm/Exports/libmx_ppc.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Exports/libmx_ppc.exp -------------------------------------------------------------------------------- /src/libm/Source/ARM/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/abi.h -------------------------------------------------------------------------------- /src/libm/Source/ARM/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/cbrt.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/complex.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/copysignf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/copysignf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/d2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/d2i.h -------------------------------------------------------------------------------- /src/libm/Source/ARM/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/erf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/erf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/erf.h -------------------------------------------------------------------------------- /src/libm/Source/ARM/erfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/erfc.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/erfcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/erfcf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/erff.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/exp2.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/f2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/f2i.h -------------------------------------------------------------------------------- /src/libm/Source/ARM/fdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/fdim.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/fdimf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/fdimf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/fenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/fenv.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/fenv.h -------------------------------------------------------------------------------- /src/libm/Source/ARM/fmaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/fmaf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/fmod.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/fmodf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/fpclassify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/fpclassify.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/ilogb.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/ilogbf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/lgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/lgamma.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/lgammaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/lgammaf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/llrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/llrint.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/llround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/llround.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/log.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/logb.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/logbf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/lrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/lrint.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/math.h -------------------------------------------------------------------------------- /src/libm/Source/ARM/nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/nan.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/nan.h -------------------------------------------------------------------------------- /src/libm/Source/ARM/nearbyint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/nearbyint.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/nextafter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/nextafter.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/nextafterf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/nextafterf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/nexttoward.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/nexttoward.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/remainder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/remainder.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/remainderf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/remainderf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/remquo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/remquo.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/remquof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/remquof.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/rint.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/scalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/scalb.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/scalbln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/scalbln.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/scalblnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/scalblnf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/signgam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/signgam.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/sqrt.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/sqrtf.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/tanf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/tanf.h -------------------------------------------------------------------------------- /src/libm/Source/ARM/tgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/tgamma.c -------------------------------------------------------------------------------- /src/libm/Source/ARM/tgammaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/ARM/tgammaf.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/abi.h -------------------------------------------------------------------------------- /src/libm/Source/Intel/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/acos.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/acosf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/acosf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/acoshf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/acoshf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/asin.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/asinf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/asinf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/asinhf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/asinhf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/atan.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/atan2f.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/atan2f.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/atanf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/atanf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/atanhf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/atanhf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/cbrtf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/cbrtf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/ceil.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/ceil.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/ceilf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/ceilf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/ceill.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/ceill.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/complex.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/copysign.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/copysign.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/cosh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/cosh.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/coshf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/coshf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_acos.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_acos.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_acosh.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_asin.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_asin.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_atan2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_atan2.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_atanh.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_cbrtl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_cbrtl.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_cosh.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_exp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_exp.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_j0.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_j1.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_jn.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_log.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_log.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_log10.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_log10.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_sinh.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/e_sqrt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/e_sqrt.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/exp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/exp.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/exp2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/exp2.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/exp2f.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/exp2f.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/expf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/expf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/expl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/expl.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/expm1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/expm1.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/expm1f.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/expm1f.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/fenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/fenv.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/fenv.h -------------------------------------------------------------------------------- /src/libm/Source/Intel/floor.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/floor.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/floorf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/floorf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/floorl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/floorl.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/fmaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/fmaf.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/fmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/fmod.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/frexp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/frexp.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/fyl2x.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/fyl2x.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/hypot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/hypot.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/hypotf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/hypotf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/hypotl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/hypotl.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/i386: -------------------------------------------------------------------------------- 1 | machine -------------------------------------------------------------------------------- /src/libm/Source/Intel/ilogb.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/ilogb.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/log.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/log.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/log10f.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/log10f.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/log1p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/log1p.h -------------------------------------------------------------------------------- /src/libm/Source/Intel/log2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/log2.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/log2f.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/log2f.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/logf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/logf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/lrintl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/lrintl.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/lround.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/lround.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/lroundf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/lroundf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/lroundl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/lroundl.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/math.h -------------------------------------------------------------------------------- /src/libm/Source/Intel/math_private.h: -------------------------------------------------------------------------------- 1 | ../ARM/math_private.h -------------------------------------------------------------------------------- /src/libm/Source/Intel/modf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/modf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/modff.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/modff.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/modfl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/modfl.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/nan.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/nan.h -------------------------------------------------------------------------------- /src/libm/Source/Intel/nanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/nanl.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/powf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/powf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/rint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/rint.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/rintf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/rintf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/rintl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/rintl.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/rndtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/rndtol.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/round.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/round.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/roundf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/roundf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/roundl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/roundl.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/s_asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/s_asinh.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/s_atan.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/s_atan.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/s_cos.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/s_cos.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/s_ilogb.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/s_ilogb.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/s_log1p.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/s_log1p.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/s_logb.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/s_logb.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/s_rint.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/s_rint.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/s_sin.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/s_sin.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/s_tan.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/s_tan.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/s_tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/s_tanh.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/scalbn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/scalbn.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/scalbnf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/scalbnf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/scalbnl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/scalbnl.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/sinfcosf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/sinfcosf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/sinh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/sinh.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/sinhf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/sinhf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/tanf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/tanf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/tanh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/tanh.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/tanhf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/tanhf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/trunc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/trunc.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/truncf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/truncf.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/truncl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/truncl.S -------------------------------------------------------------------------------- /src/libm/Source/Intel/x86_64: -------------------------------------------------------------------------------- 1 | machine -------------------------------------------------------------------------------- /src/libm/Source/Intel/xmm_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/xmm_exp.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/xmm_fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/xmm_fma.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/xmm_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/xmm_log.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/xmm_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/xmm_misc.c -------------------------------------------------------------------------------- /src/libm/Source/Intel/xmm_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/Intel/xmm_sqrt.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/DD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/DD.h -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/ErfDD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/ErfDD.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/ExpDD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/ExpDD.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/LogDD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/LogDD.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/SqrtDD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/SqrtDD.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/arctg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/arctg.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/atan2.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/d3ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/d3ops.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/e_j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/e_j0.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/e_j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/e_j1.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/e_jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/e_jn.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/fabs.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/fenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/fenv.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/fenv.h -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/finite.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/gamma.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/gamma9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/gamma9.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/hypot.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/ld64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/ld64.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/lgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/lgamma.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/logb.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/math.h -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/nan.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/nan.h -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/nanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/nanl.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/nanl64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/nanl64.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/power.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/remmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/remmod.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/rndint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/rndint.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/rndtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/rndtol.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/s_cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/s_cbrt.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/scalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/scalb.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/shchth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/shchth.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/sqrt.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/tg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/tg.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/w_cabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/w_cabs.c -------------------------------------------------------------------------------- /src/libm/Source/PowerPC/w_drem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/PowerPC/w_drem.c -------------------------------------------------------------------------------- /src/libm/Source/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/abs.c -------------------------------------------------------------------------------- /src/libm/Source/architecture/i386: -------------------------------------------------------------------------------- 1 | ../Intel -------------------------------------------------------------------------------- /src/libm/Source/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/complex.h -------------------------------------------------------------------------------- /src/libm/Source/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libm/Source/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/exp10.c -------------------------------------------------------------------------------- /src/libm/Source/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/fenv.h -------------------------------------------------------------------------------- /src/libm/Source/fenv_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/fenv_private.h -------------------------------------------------------------------------------- /src/libm/Source/libmx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/libmx.s -------------------------------------------------------------------------------- /src/libm/Source/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/math.h -------------------------------------------------------------------------------- /src/libm/Source/nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/nan.c -------------------------------------------------------------------------------- /src/libm/Source/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/nan.h -------------------------------------------------------------------------------- /src/libm/Source/nanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/nanl.c -------------------------------------------------------------------------------- /src/libm/Source/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/sincos.c -------------------------------------------------------------------------------- /src/libm/Source/version_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/Source/version_info.c -------------------------------------------------------------------------------- /src/libm/include/architecture/i386/fenv.h: -------------------------------------------------------------------------------- 1 | ../../../Source/architecture/i386/fenv.h -------------------------------------------------------------------------------- /src/libm/include/architecture/i386/math.h: -------------------------------------------------------------------------------- 1 | ../../../Source/architecture/i386/math.h -------------------------------------------------------------------------------- /src/libm/include/complex.h: -------------------------------------------------------------------------------- 1 | ../Source/complex.h -------------------------------------------------------------------------------- /src/libm/include/fenv.h: -------------------------------------------------------------------------------- 1 | ../Source/fenv.h -------------------------------------------------------------------------------- /src/libm/include/fenv_private.h: -------------------------------------------------------------------------------- 1 | ../Source/fenv_private.h -------------------------------------------------------------------------------- /src/libm/include/math.h: -------------------------------------------------------------------------------- 1 | ../Source/math.h -------------------------------------------------------------------------------- /src/libm/include/nan.h: -------------------------------------------------------------------------------- 1 | ../Source/nan.h -------------------------------------------------------------------------------- /src/libm/man3/FIXDATES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/FIXDATES.py -------------------------------------------------------------------------------- /src/libm/man3/M_1_PI.3: -------------------------------------------------------------------------------- 1 | .so man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/M_2_PI.3: -------------------------------------------------------------------------------- 1 | .so man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/M_2_SQRTPI.3: -------------------------------------------------------------------------------- 1 | .so man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/M_E.3: -------------------------------------------------------------------------------- 1 | .so man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/M_LN10.3: -------------------------------------------------------------------------------- 1 | .so man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/M_LN2.3: -------------------------------------------------------------------------------- 1 | .so man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/M_LOG10E.3: -------------------------------------------------------------------------------- 1 | .so man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/M_LOG2E.3: -------------------------------------------------------------------------------- 1 | .so man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/M_PI.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/M_PI_2.3: -------------------------------------------------------------------------------- 1 | .so man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/M_PI_4.3: -------------------------------------------------------------------------------- 1 | .so man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/M_SQRT2.3: -------------------------------------------------------------------------------- 1 | .so man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/M_SQRT_1_2.3: -------------------------------------------------------------------------------- 1 | .so man3/M_PI.3 -------------------------------------------------------------------------------- /src/libm/man3/acos.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/acos.3 -------------------------------------------------------------------------------- /src/libm/man3/acosf.3: -------------------------------------------------------------------------------- 1 | .so man3/acos.3 -------------------------------------------------------------------------------- /src/libm/man3/acosh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/acosh.3 -------------------------------------------------------------------------------- /src/libm/man3/acoshf.3: -------------------------------------------------------------------------------- 1 | .so man3/acosh.3 -------------------------------------------------------------------------------- /src/libm/man3/acoshl.3: -------------------------------------------------------------------------------- 1 | .so man3/acosh.3 -------------------------------------------------------------------------------- /src/libm/man3/acosl.3: -------------------------------------------------------------------------------- 1 | .so man3/acos.3 -------------------------------------------------------------------------------- /src/libm/man3/asin.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/asin.3 -------------------------------------------------------------------------------- /src/libm/man3/asinf.3: -------------------------------------------------------------------------------- 1 | .so man3/asin.3 -------------------------------------------------------------------------------- /src/libm/man3/asinh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/asinh.3 -------------------------------------------------------------------------------- /src/libm/man3/asinhf.3: -------------------------------------------------------------------------------- 1 | .so man3/asinh.3 -------------------------------------------------------------------------------- /src/libm/man3/asinhl.3: -------------------------------------------------------------------------------- 1 | .so man3/asinh.3 -------------------------------------------------------------------------------- /src/libm/man3/asinl.3: -------------------------------------------------------------------------------- 1 | .so man3/asin.3 -------------------------------------------------------------------------------- /src/libm/man3/atan.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/atan.3 -------------------------------------------------------------------------------- /src/libm/man3/atan2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/atan2.3 -------------------------------------------------------------------------------- /src/libm/man3/atan2f.3: -------------------------------------------------------------------------------- 1 | .so man3/atan2.3 -------------------------------------------------------------------------------- /src/libm/man3/atan2l.3: -------------------------------------------------------------------------------- 1 | .so man3/atan2.3 -------------------------------------------------------------------------------- /src/libm/man3/atanf.3: -------------------------------------------------------------------------------- 1 | .so man3/atan.3 -------------------------------------------------------------------------------- /src/libm/man3/atanh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/atanh.3 -------------------------------------------------------------------------------- /src/libm/man3/atanhf.3: -------------------------------------------------------------------------------- 1 | .so man3/atanh.3 -------------------------------------------------------------------------------- /src/libm/man3/atanhl.3: -------------------------------------------------------------------------------- 1 | .so man3/atanh.3 -------------------------------------------------------------------------------- /src/libm/man3/atanl.3: -------------------------------------------------------------------------------- 1 | .so man3/atan.3 -------------------------------------------------------------------------------- /src/libm/man3/cabs.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/cabs.3 -------------------------------------------------------------------------------- /src/libm/man3/cabsf.3: -------------------------------------------------------------------------------- 1 | .so man3/cabs.3 -------------------------------------------------------------------------------- /src/libm/man3/cabsl.3: -------------------------------------------------------------------------------- 1 | .so man3/cabs.3 -------------------------------------------------------------------------------- /src/libm/man3/cacos.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/cacos.3 -------------------------------------------------------------------------------- /src/libm/man3/cacosf.3: -------------------------------------------------------------------------------- 1 | .so man3/cacos.3 -------------------------------------------------------------------------------- /src/libm/man3/cacosh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/cacosh.3 -------------------------------------------------------------------------------- /src/libm/man3/cacoshf.3: -------------------------------------------------------------------------------- 1 | .so man3/cacosh.3 -------------------------------------------------------------------------------- /src/libm/man3/cacoshl.3: -------------------------------------------------------------------------------- 1 | .so man3/cacosh.3 -------------------------------------------------------------------------------- /src/libm/man3/cacosl.3: -------------------------------------------------------------------------------- 1 | .so man3/cacos.3 -------------------------------------------------------------------------------- /src/libm/man3/carg.3: -------------------------------------------------------------------------------- 1 | .so man3/cabs.3 -------------------------------------------------------------------------------- /src/libm/man3/cargf.3: -------------------------------------------------------------------------------- 1 | .so man3/cabs.3 -------------------------------------------------------------------------------- /src/libm/man3/cargl.3: -------------------------------------------------------------------------------- 1 | .so man3/cabs.3 -------------------------------------------------------------------------------- /src/libm/man3/casin.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/casin.3 -------------------------------------------------------------------------------- /src/libm/man3/casinf.3: -------------------------------------------------------------------------------- 1 | .so man3/casin.3 -------------------------------------------------------------------------------- /src/libm/man3/casinh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/casinh.3 -------------------------------------------------------------------------------- /src/libm/man3/casinhf.3: -------------------------------------------------------------------------------- 1 | .so man3/casinh.3 -------------------------------------------------------------------------------- /src/libm/man3/casinhl.3: -------------------------------------------------------------------------------- 1 | .so man3/casinh.3 -------------------------------------------------------------------------------- /src/libm/man3/casinl.3: -------------------------------------------------------------------------------- 1 | .so man3/casin.3 -------------------------------------------------------------------------------- /src/libm/man3/catan.3: -------------------------------------------------------------------------------- 1 | .so man3/casin.3 -------------------------------------------------------------------------------- /src/libm/man3/catanf.3: -------------------------------------------------------------------------------- 1 | .so man3/casin.3 -------------------------------------------------------------------------------- /src/libm/man3/catanh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/catanh.3 -------------------------------------------------------------------------------- /src/libm/man3/catanhf.3: -------------------------------------------------------------------------------- 1 | .so man3/catanh.3 -------------------------------------------------------------------------------- /src/libm/man3/catanhl.3: -------------------------------------------------------------------------------- 1 | .so man3/catanh.3 -------------------------------------------------------------------------------- /src/libm/man3/catanl.3: -------------------------------------------------------------------------------- 1 | .so man3/casin.3 -------------------------------------------------------------------------------- /src/libm/man3/cbrt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/cbrt.3 -------------------------------------------------------------------------------- /src/libm/man3/cbrtf.3: -------------------------------------------------------------------------------- 1 | .so man3/cbrt.3 -------------------------------------------------------------------------------- /src/libm/man3/cbrtl.3: -------------------------------------------------------------------------------- 1 | .so man3/cbrt.3 -------------------------------------------------------------------------------- /src/libm/man3/ccos.3: -------------------------------------------------------------------------------- 1 | .so man3/csin.3 -------------------------------------------------------------------------------- /src/libm/man3/ccosf.3: -------------------------------------------------------------------------------- 1 | .so man3/csin.3 -------------------------------------------------------------------------------- /src/libm/man3/ccosh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/ccosh.3 -------------------------------------------------------------------------------- /src/libm/man3/ccoshf.3: -------------------------------------------------------------------------------- 1 | .so man3/ccosh.3 -------------------------------------------------------------------------------- /src/libm/man3/ccoshl.3: -------------------------------------------------------------------------------- 1 | .so man3/ccosh.3 -------------------------------------------------------------------------------- /src/libm/man3/ccosl.3: -------------------------------------------------------------------------------- 1 | .so man3/csin.3 -------------------------------------------------------------------------------- /src/libm/man3/ceil.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/ceil.3 -------------------------------------------------------------------------------- /src/libm/man3/ceilf.3: -------------------------------------------------------------------------------- 1 | .so man3/ceil.3 -------------------------------------------------------------------------------- /src/libm/man3/ceill.3: -------------------------------------------------------------------------------- 1 | .so man3/ceil.3 -------------------------------------------------------------------------------- /src/libm/man3/cexp.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/cexp.3 -------------------------------------------------------------------------------- /src/libm/man3/cexpf.3: -------------------------------------------------------------------------------- 1 | .so man3/cexp.3 -------------------------------------------------------------------------------- /src/libm/man3/cexpl.3: -------------------------------------------------------------------------------- 1 | .so man3/cexp.3 -------------------------------------------------------------------------------- /src/libm/man3/cimag.3: -------------------------------------------------------------------------------- 1 | .so man3/creal.3 -------------------------------------------------------------------------------- /src/libm/man3/cimagf.3: -------------------------------------------------------------------------------- 1 | .so man3/creal.3 -------------------------------------------------------------------------------- /src/libm/man3/cimagl.3: -------------------------------------------------------------------------------- 1 | .so man3/creal.3 -------------------------------------------------------------------------------- /src/libm/man3/clog.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/clog.3 -------------------------------------------------------------------------------- /src/libm/man3/clogf.3: -------------------------------------------------------------------------------- 1 | .so man3/clog.3 -------------------------------------------------------------------------------- /src/libm/man3/clogl.3: -------------------------------------------------------------------------------- 1 | .so man3/clog.3 -------------------------------------------------------------------------------- /src/libm/man3/complex.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/complex.3 -------------------------------------------------------------------------------- /src/libm/man3/conj.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/conj.3 -------------------------------------------------------------------------------- /src/libm/man3/conjf.3: -------------------------------------------------------------------------------- 1 | .so man3/conj.3 -------------------------------------------------------------------------------- /src/libm/man3/conjl.3: -------------------------------------------------------------------------------- 1 | .so man3/conj.3 -------------------------------------------------------------------------------- /src/libm/man3/copysign.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/copysign.3 -------------------------------------------------------------------------------- /src/libm/man3/copysignf.3: -------------------------------------------------------------------------------- 1 | .so man3/copysign.3 -------------------------------------------------------------------------------- /src/libm/man3/copysignl.3: -------------------------------------------------------------------------------- 1 | .so man3/copysign.3 -------------------------------------------------------------------------------- /src/libm/man3/cos.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/cos.3 -------------------------------------------------------------------------------- /src/libm/man3/cosf.3: -------------------------------------------------------------------------------- 1 | .so man3/cos.3 -------------------------------------------------------------------------------- /src/libm/man3/cosh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/cosh.3 -------------------------------------------------------------------------------- /src/libm/man3/coshf.3: -------------------------------------------------------------------------------- 1 | .so man3/cosh.3 -------------------------------------------------------------------------------- /src/libm/man3/coshl.3: -------------------------------------------------------------------------------- 1 | .so man3/cosh.3 -------------------------------------------------------------------------------- /src/libm/man3/cosl.3: -------------------------------------------------------------------------------- 1 | .so man3/cos.3 -------------------------------------------------------------------------------- /src/libm/man3/cpow.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/cpow.3 -------------------------------------------------------------------------------- /src/libm/man3/cpowf.3: -------------------------------------------------------------------------------- 1 | .so man3/cpow.3 -------------------------------------------------------------------------------- /src/libm/man3/cpowl.3: -------------------------------------------------------------------------------- 1 | .so man3/cpow.3 -------------------------------------------------------------------------------- /src/libm/man3/cproj.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/cproj.3 -------------------------------------------------------------------------------- /src/libm/man3/cprojf.3: -------------------------------------------------------------------------------- 1 | .so man3/cproj.3 -------------------------------------------------------------------------------- /src/libm/man3/cprojl.3: -------------------------------------------------------------------------------- 1 | .so man3/cproj.3 -------------------------------------------------------------------------------- /src/libm/man3/creal.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/creal.3 -------------------------------------------------------------------------------- /src/libm/man3/crealf.3: -------------------------------------------------------------------------------- 1 | .so man3/creal.3 -------------------------------------------------------------------------------- /src/libm/man3/creall.3: -------------------------------------------------------------------------------- 1 | .so man3/creal.3 -------------------------------------------------------------------------------- /src/libm/man3/csin.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/csin.3 -------------------------------------------------------------------------------- /src/libm/man3/csinf.3: -------------------------------------------------------------------------------- 1 | .so man3/csin.3 -------------------------------------------------------------------------------- /src/libm/man3/csinh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/csinh.3 -------------------------------------------------------------------------------- /src/libm/man3/csinhf.3: -------------------------------------------------------------------------------- 1 | .so man3/csinh.3 -------------------------------------------------------------------------------- /src/libm/man3/csinhl.3: -------------------------------------------------------------------------------- 1 | .so man3/csinh.3 -------------------------------------------------------------------------------- /src/libm/man3/csinl.3: -------------------------------------------------------------------------------- 1 | .so man3/csin.3 -------------------------------------------------------------------------------- /src/libm/man3/csqrt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/csqrt.3 -------------------------------------------------------------------------------- /src/libm/man3/csqrtf.3: -------------------------------------------------------------------------------- 1 | .so man3/csqrt.3 -------------------------------------------------------------------------------- /src/libm/man3/csqrtl.3: -------------------------------------------------------------------------------- 1 | .so man3/csqrt.3 -------------------------------------------------------------------------------- /src/libm/man3/ctan.3: -------------------------------------------------------------------------------- 1 | .so man3/csin.3 -------------------------------------------------------------------------------- /src/libm/man3/ctanf.3: -------------------------------------------------------------------------------- 1 | .so man3/csin.3 -------------------------------------------------------------------------------- /src/libm/man3/ctanh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/ctanh.3 -------------------------------------------------------------------------------- /src/libm/man3/ctanhf.3: -------------------------------------------------------------------------------- 1 | .so man3/ctanh.3 -------------------------------------------------------------------------------- /src/libm/man3/ctanhl.3: -------------------------------------------------------------------------------- 1 | .so man3/ctanh.3 -------------------------------------------------------------------------------- /src/libm/man3/ctanl.3: -------------------------------------------------------------------------------- 1 | .so man3/csin.3 -------------------------------------------------------------------------------- /src/libm/man3/drem.3: -------------------------------------------------------------------------------- 1 | .so man3/remainder.3 -------------------------------------------------------------------------------- /src/libm/man3/erf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/erf.3 -------------------------------------------------------------------------------- /src/libm/man3/erfc.3: -------------------------------------------------------------------------------- 1 | .so man3/erf.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/erfcf.3: -------------------------------------------------------------------------------- 1 | .so man3/erf.3 -------------------------------------------------------------------------------- /src/libm/man3/erfcl.3: -------------------------------------------------------------------------------- 1 | .so man3/erf.3 -------------------------------------------------------------------------------- /src/libm/man3/erff.3: -------------------------------------------------------------------------------- 1 | .so man3/erf.3 -------------------------------------------------------------------------------- /src/libm/man3/erfl.3: -------------------------------------------------------------------------------- 1 | .so man3/erf.3 -------------------------------------------------------------------------------- /src/libm/man3/exp.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/exp.3 -------------------------------------------------------------------------------- /src/libm/man3/exp2.3: -------------------------------------------------------------------------------- 1 | .so man3/exp.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/exp2f.3: -------------------------------------------------------------------------------- 1 | .so man3/exp.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/exp2l.3: -------------------------------------------------------------------------------- 1 | .so man3/exp.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/expf.3: -------------------------------------------------------------------------------- 1 | .so man3/exp.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/expl.3: -------------------------------------------------------------------------------- 1 | .so man3/exp.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/expm1.3: -------------------------------------------------------------------------------- 1 | .so man3/exp.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/expm1f.3: -------------------------------------------------------------------------------- 1 | .so man3/exp.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/expm1l.3: -------------------------------------------------------------------------------- 1 | .so man3/exp.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/fabs.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/fabs.3 -------------------------------------------------------------------------------- /src/libm/man3/fabsf.3: -------------------------------------------------------------------------------- 1 | .so man3/fabs.3 -------------------------------------------------------------------------------- /src/libm/man3/fabsl.3: -------------------------------------------------------------------------------- 1 | .so man3/fabs.3 -------------------------------------------------------------------------------- /src/libm/man3/fdim.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/fdim.3 -------------------------------------------------------------------------------- /src/libm/man3/fdimf.3: -------------------------------------------------------------------------------- 1 | .so man3/fdim.3 -------------------------------------------------------------------------------- /src/libm/man3/fdiml.3: -------------------------------------------------------------------------------- 1 | .so man3/fdim.3 -------------------------------------------------------------------------------- /src/libm/man3/finite.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/finite.3 -------------------------------------------------------------------------------- /src/libm/man3/float.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/float.3 -------------------------------------------------------------------------------- /src/libm/man3/floor.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/floor.3 -------------------------------------------------------------------------------- /src/libm/man3/floorf.3: -------------------------------------------------------------------------------- 1 | .so man3/floor.3 -------------------------------------------------------------------------------- /src/libm/man3/floorl.3: -------------------------------------------------------------------------------- 1 | .so man3/floor.3 -------------------------------------------------------------------------------- /src/libm/man3/fma.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/fma.3 -------------------------------------------------------------------------------- /src/libm/man3/fmaf.3: -------------------------------------------------------------------------------- 1 | .so man3/fma.3 -------------------------------------------------------------------------------- /src/libm/man3/fmal.3: -------------------------------------------------------------------------------- 1 | .so man3/fma.3 -------------------------------------------------------------------------------- /src/libm/man3/fmax.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/fmax.3 -------------------------------------------------------------------------------- /src/libm/man3/fmaxf.3: -------------------------------------------------------------------------------- 1 | .so man3/fmax.3 -------------------------------------------------------------------------------- /src/libm/man3/fmaxl.3: -------------------------------------------------------------------------------- 1 | .so man3/fmax.3 -------------------------------------------------------------------------------- /src/libm/man3/fmin.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/fmin.3 -------------------------------------------------------------------------------- /src/libm/man3/fminf.3: -------------------------------------------------------------------------------- 1 | .so man3/fmin.3 -------------------------------------------------------------------------------- /src/libm/man3/fminl.3: -------------------------------------------------------------------------------- 1 | .so man3/fmin.3 -------------------------------------------------------------------------------- /src/libm/man3/fmod.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/fmod.3 -------------------------------------------------------------------------------- /src/libm/man3/fmodf.3: -------------------------------------------------------------------------------- 1 | .so man3/fmod.3 -------------------------------------------------------------------------------- /src/libm/man3/fmodl.3: -------------------------------------------------------------------------------- 1 | .so man3/fmod.3 -------------------------------------------------------------------------------- /src/libm/man3/fpclassify.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/fpclassify.3 -------------------------------------------------------------------------------- /src/libm/man3/frexp.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/frexp.3 -------------------------------------------------------------------------------- /src/libm/man3/frexpf.3: -------------------------------------------------------------------------------- 1 | .so man3/frexp.3 -------------------------------------------------------------------------------- /src/libm/man3/frexpl.3: -------------------------------------------------------------------------------- 1 | .so man3/frexp.3 -------------------------------------------------------------------------------- /src/libm/man3/gamma.3: -------------------------------------------------------------------------------- 1 | .so man3/tgamma.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/gamma_r.3: -------------------------------------------------------------------------------- 1 | .so man3/tgamma.3 -------------------------------------------------------------------------------- /src/libm/man3/hypot.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/hypot.3 -------------------------------------------------------------------------------- /src/libm/man3/hypotf.3: -------------------------------------------------------------------------------- 1 | .so man3/hypot.3 -------------------------------------------------------------------------------- /src/libm/man3/hypotl.3: -------------------------------------------------------------------------------- 1 | .so man3/hypot.3 -------------------------------------------------------------------------------- /src/libm/man3/ilogb.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/ilogb.3 -------------------------------------------------------------------------------- /src/libm/man3/ilogbf.3: -------------------------------------------------------------------------------- 1 | .so man3/ilogb.3 -------------------------------------------------------------------------------- /src/libm/man3/ilogbl.3: -------------------------------------------------------------------------------- 1 | .so man3/ilogb.3 -------------------------------------------------------------------------------- /src/libm/man3/isfinite.3: -------------------------------------------------------------------------------- 1 | .so man3/fpclassify.3 -------------------------------------------------------------------------------- /src/libm/man3/isgreater.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/isgreater.3 -------------------------------------------------------------------------------- /src/libm/man3/isgreaterequal.3: -------------------------------------------------------------------------------- 1 | .so man3/isgreater.3 -------------------------------------------------------------------------------- /src/libm/man3/isinf.3: -------------------------------------------------------------------------------- 1 | .so man3/fpclassify.3 -------------------------------------------------------------------------------- /src/libm/man3/isless.3: -------------------------------------------------------------------------------- 1 | .so man3/isgreater.3 -------------------------------------------------------------------------------- /src/libm/man3/islessequal.3: -------------------------------------------------------------------------------- 1 | .so man3/isgreater.3 -------------------------------------------------------------------------------- /src/libm/man3/islessgreater.3: -------------------------------------------------------------------------------- 1 | .so man3/isgreater.3 -------------------------------------------------------------------------------- /src/libm/man3/isnan.3: -------------------------------------------------------------------------------- 1 | .so man3/fpclassify.3 -------------------------------------------------------------------------------- /src/libm/man3/isnormal.3: -------------------------------------------------------------------------------- 1 | .so man3/fpclassify.3 -------------------------------------------------------------------------------- /src/libm/man3/isunordered.3: -------------------------------------------------------------------------------- 1 | .so man3/isgreater.3 -------------------------------------------------------------------------------- /src/libm/man3/j0.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/j0.3 -------------------------------------------------------------------------------- /src/libm/man3/j1.3: -------------------------------------------------------------------------------- 1 | .so man3/j0.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/jn.3: -------------------------------------------------------------------------------- 1 | .so man3/j0.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/ldexp.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/ldexp.3 -------------------------------------------------------------------------------- /src/libm/man3/ldexpf.3: -------------------------------------------------------------------------------- 1 | .so man3/ldexp.3 -------------------------------------------------------------------------------- /src/libm/man3/ldexpl.3: -------------------------------------------------------------------------------- 1 | .so man3/ldexp.3 -------------------------------------------------------------------------------- /src/libm/man3/lgamma.3: -------------------------------------------------------------------------------- 1 | .so man3/tgamma.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/lgamma_r.3: -------------------------------------------------------------------------------- 1 | .so man3/tgamma.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/lgammaf.3: -------------------------------------------------------------------------------- 1 | .so man3/tgamma.3 -------------------------------------------------------------------------------- /src/libm/man3/lgammaf_r.3: -------------------------------------------------------------------------------- 1 | .so man3/tgamma.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/lgammal.3: -------------------------------------------------------------------------------- 1 | .so man3/tgamma.3 -------------------------------------------------------------------------------- /src/libm/man3/lgammal_r.3: -------------------------------------------------------------------------------- 1 | .so man3/tgamma.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/llrint.3: -------------------------------------------------------------------------------- 1 | .so man3/rint.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/llrintf.3: -------------------------------------------------------------------------------- 1 | .so man3/rint.3 -------------------------------------------------------------------------------- /src/libm/man3/llrintl.3: -------------------------------------------------------------------------------- 1 | .so man3/rint.3 -------------------------------------------------------------------------------- /src/libm/man3/llround.3: -------------------------------------------------------------------------------- 1 | .so man3/round.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/llroundf.3: -------------------------------------------------------------------------------- 1 | .so man3/round.3 -------------------------------------------------------------------------------- /src/libm/man3/llroundl.3: -------------------------------------------------------------------------------- 1 | .so man3/round.3 -------------------------------------------------------------------------------- /src/libm/man3/log.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/log.3 -------------------------------------------------------------------------------- /src/libm/man3/log10.3: -------------------------------------------------------------------------------- 1 | .so man3/log.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/log10f.3: -------------------------------------------------------------------------------- 1 | .so man3/log.3 -------------------------------------------------------------------------------- /src/libm/man3/log10l.3: -------------------------------------------------------------------------------- 1 | .so man3/log.3 -------------------------------------------------------------------------------- /src/libm/man3/log1p.3: -------------------------------------------------------------------------------- 1 | .so man3/log.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/log1pf.3: -------------------------------------------------------------------------------- 1 | .so man3/log.3 -------------------------------------------------------------------------------- /src/libm/man3/log1pl.3: -------------------------------------------------------------------------------- 1 | .so man3/log.3 -------------------------------------------------------------------------------- /src/libm/man3/log2.3: -------------------------------------------------------------------------------- 1 | .so man3/log.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/log2f.3: -------------------------------------------------------------------------------- 1 | .so man3/log.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/log2l.3: -------------------------------------------------------------------------------- 1 | .so man3/log.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/logb.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/logb.3 -------------------------------------------------------------------------------- /src/libm/man3/logbf.3: -------------------------------------------------------------------------------- 1 | .so man3/logb.3 -------------------------------------------------------------------------------- /src/libm/man3/logbl.3: -------------------------------------------------------------------------------- 1 | .so man3/logb.3 -------------------------------------------------------------------------------- /src/libm/man3/logf.3: -------------------------------------------------------------------------------- 1 | .so man3/log.3 -------------------------------------------------------------------------------- /src/libm/man3/logl.3: -------------------------------------------------------------------------------- 1 | .so man3/log.3 -------------------------------------------------------------------------------- /src/libm/man3/lrint.3: -------------------------------------------------------------------------------- 1 | .so man3/rint.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/lrintf.3: -------------------------------------------------------------------------------- 1 | .so man3/rint.3 -------------------------------------------------------------------------------- /src/libm/man3/lrintl.3: -------------------------------------------------------------------------------- 1 | .so man3/rint.3 -------------------------------------------------------------------------------- /src/libm/man3/lround.3: -------------------------------------------------------------------------------- 1 | .so man3/round.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/lroundf.3: -------------------------------------------------------------------------------- 1 | .so man3/round.3 -------------------------------------------------------------------------------- /src/libm/man3/lroundl.3: -------------------------------------------------------------------------------- 1 | .so man3/round.3 -------------------------------------------------------------------------------- /src/libm/man3/math.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/math.3 -------------------------------------------------------------------------------- /src/libm/man3/matherr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/matherr.3 -------------------------------------------------------------------------------- /src/libm/man3/modf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/modf.3 -------------------------------------------------------------------------------- /src/libm/man3/modff.3: -------------------------------------------------------------------------------- 1 | .so man3/modf.3 -------------------------------------------------------------------------------- /src/libm/man3/modfl.3: -------------------------------------------------------------------------------- 1 | .so man3/modf.3 -------------------------------------------------------------------------------- /src/libm/man3/nan.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/nan.3 -------------------------------------------------------------------------------- /src/libm/man3/nanf.3: -------------------------------------------------------------------------------- 1 | .so man3/nan.3 -------------------------------------------------------------------------------- /src/libm/man3/nanl.3: -------------------------------------------------------------------------------- 1 | .so man3/nan.3 -------------------------------------------------------------------------------- /src/libm/man3/nearbyint.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/nearbyint.3 -------------------------------------------------------------------------------- /src/libm/man3/nearbyintf.3: -------------------------------------------------------------------------------- 1 | .so man3/nearbyint.3 -------------------------------------------------------------------------------- /src/libm/man3/nearbyintl.3: -------------------------------------------------------------------------------- 1 | .so man3/nearbyint.3 -------------------------------------------------------------------------------- /src/libm/man3/nextafter.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/nextafter.3 -------------------------------------------------------------------------------- /src/libm/man3/nextafterf.3: -------------------------------------------------------------------------------- 1 | .so man3/nextafter.3 -------------------------------------------------------------------------------- /src/libm/man3/nextafterl.3: -------------------------------------------------------------------------------- 1 | .so man3/nextafter.3 -------------------------------------------------------------------------------- /src/libm/man3/nexttoward.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/nexttoward.3 -------------------------------------------------------------------------------- /src/libm/man3/nexttowardf.3: -------------------------------------------------------------------------------- 1 | .so man3/nexttoward.3 -------------------------------------------------------------------------------- /src/libm/man3/nexttowardl.3: -------------------------------------------------------------------------------- 1 | .so man3/nexttoward.3 -------------------------------------------------------------------------------- /src/libm/man3/pow.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/pow.3 -------------------------------------------------------------------------------- /src/libm/man3/powf.3: -------------------------------------------------------------------------------- 1 | .so man3/pow.3 -------------------------------------------------------------------------------- /src/libm/man3/powl.3: -------------------------------------------------------------------------------- 1 | .so man3/pow.3 -------------------------------------------------------------------------------- /src/libm/man3/remainder.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/remainder.3 -------------------------------------------------------------------------------- /src/libm/man3/remainderf.3: -------------------------------------------------------------------------------- 1 | .so man3/remainder.3 -------------------------------------------------------------------------------- /src/libm/man3/remainderl.3: -------------------------------------------------------------------------------- 1 | .so man3/remainder.3 -------------------------------------------------------------------------------- /src/libm/man3/remquo.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/remquo.3 -------------------------------------------------------------------------------- /src/libm/man3/remquof.3: -------------------------------------------------------------------------------- 1 | .so man3/remquo.3 -------------------------------------------------------------------------------- /src/libm/man3/remquol.3: -------------------------------------------------------------------------------- 1 | .so man3/remquo.3 -------------------------------------------------------------------------------- /src/libm/man3/rint.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/rint.3 -------------------------------------------------------------------------------- /src/libm/man3/rintf.3: -------------------------------------------------------------------------------- 1 | .so man3/rint.3 -------------------------------------------------------------------------------- /src/libm/man3/rintl.3: -------------------------------------------------------------------------------- 1 | .so man3/rint.3 -------------------------------------------------------------------------------- /src/libm/man3/rinttol.3: -------------------------------------------------------------------------------- 1 | .so man3/rint.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/round.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/round.3 -------------------------------------------------------------------------------- /src/libm/man3/roundf.3: -------------------------------------------------------------------------------- 1 | .so man3/round.3 -------------------------------------------------------------------------------- /src/libm/man3/roundl.3: -------------------------------------------------------------------------------- 1 | .so man3/round.3 -------------------------------------------------------------------------------- /src/libm/man3/roundtol.3: -------------------------------------------------------------------------------- 1 | .so man3/round.3 -------------------------------------------------------------------------------- /src/libm/man3/scalb.3: -------------------------------------------------------------------------------- 1 | .so man3/scalbn.3 -------------------------------------------------------------------------------- /src/libm/man3/scalbln.3: -------------------------------------------------------------------------------- 1 | .so man3/scalbn.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/scalblnf.3: -------------------------------------------------------------------------------- 1 | .so man3/scalbn.3 -------------------------------------------------------------------------------- /src/libm/man3/scalblnl.3: -------------------------------------------------------------------------------- 1 | .so man3/scalbn.3 -------------------------------------------------------------------------------- /src/libm/man3/scalbn.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/scalbn.3 -------------------------------------------------------------------------------- /src/libm/man3/scalbnf.3: -------------------------------------------------------------------------------- 1 | .so man3/scalbn.3 -------------------------------------------------------------------------------- /src/libm/man3/scalbnl.3: -------------------------------------------------------------------------------- 1 | .so man3/scalbn.3 -------------------------------------------------------------------------------- /src/libm/man3/sin.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/sin.3 -------------------------------------------------------------------------------- /src/libm/man3/sinf.3: -------------------------------------------------------------------------------- 1 | .so man3/sin.3 -------------------------------------------------------------------------------- /src/libm/man3/sinh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/sinh.3 -------------------------------------------------------------------------------- /src/libm/man3/sinhf.3: -------------------------------------------------------------------------------- 1 | .so man3/sinh.3 -------------------------------------------------------------------------------- /src/libm/man3/sinhl.3: -------------------------------------------------------------------------------- 1 | .so man3/sinh.3 -------------------------------------------------------------------------------- /src/libm/man3/sinl.3: -------------------------------------------------------------------------------- 1 | .so man3/sin.3 -------------------------------------------------------------------------------- /src/libm/man3/sqrt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/sqrt.3 -------------------------------------------------------------------------------- /src/libm/man3/sqrtf.3: -------------------------------------------------------------------------------- 1 | .so man3/sqrt.3 -------------------------------------------------------------------------------- /src/libm/man3/sqrtl.3: -------------------------------------------------------------------------------- 1 | .so man3/sqrt.3 -------------------------------------------------------------------------------- /src/libm/man3/tan.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/tan.3 -------------------------------------------------------------------------------- /src/libm/man3/tanf.3: -------------------------------------------------------------------------------- 1 | .so man3/tan.3 -------------------------------------------------------------------------------- /src/libm/man3/tanh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/tanh.3 -------------------------------------------------------------------------------- /src/libm/man3/tanhf.3: -------------------------------------------------------------------------------- 1 | .so man3/tanh.3 -------------------------------------------------------------------------------- /src/libm/man3/tanhl.3: -------------------------------------------------------------------------------- 1 | .so man3/tanh.3 -------------------------------------------------------------------------------- /src/libm/man3/tanl.3: -------------------------------------------------------------------------------- 1 | .so man3/tan.3 -------------------------------------------------------------------------------- /src/libm/man3/tgamma.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/tgamma.3 -------------------------------------------------------------------------------- /src/libm/man3/tgammaf.3: -------------------------------------------------------------------------------- 1 | .so man3/tgamma.3 -------------------------------------------------------------------------------- /src/libm/man3/tgammal.3: -------------------------------------------------------------------------------- 1 | .so man3/tgamma.3 -------------------------------------------------------------------------------- /src/libm/man3/trunc.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/man3/trunc.3 -------------------------------------------------------------------------------- /src/libm/man3/truncf.3: -------------------------------------------------------------------------------- 1 | .so man3/trunc.3 -------------------------------------------------------------------------------- /src/libm/man3/truncl.3: -------------------------------------------------------------------------------- 1 | .so man3/trunc.3 -------------------------------------------------------------------------------- /src/libm/man3/y0.3: -------------------------------------------------------------------------------- 1 | .so man3/j0.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/y1.3: -------------------------------------------------------------------------------- 1 | .so man3/j0.3 2 | -------------------------------------------------------------------------------- /src/libm/man3/yn.3: -------------------------------------------------------------------------------- 1 | .so man3/j0.3 2 | -------------------------------------------------------------------------------- /src/libm/rename_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libm/rename_wrapper -------------------------------------------------------------------------------- /src/libpmenergy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libpmenergy/CMakeLists.txt -------------------------------------------------------------------------------- /src/libpmenergy/src/pmenergy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libpmenergy/src/pmenergy.c -------------------------------------------------------------------------------- /src/libpmenergy/src/pmsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libpmenergy/src/pmsample.c -------------------------------------------------------------------------------- /src/libquit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libquit/CMakeLists.txt -------------------------------------------------------------------------------- /src/libquit/include/quit/quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libquit/include/quit/quit.h -------------------------------------------------------------------------------- /src/libquit/src/quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libquit/src/quit.c -------------------------------------------------------------------------------- /src/libsandbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libsandbox/CMakeLists.txt -------------------------------------------------------------------------------- /src/libsandbox/src/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libsandbox/src/sandbox.c -------------------------------------------------------------------------------- /src/libsimple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libsimple/CMakeLists.txt -------------------------------------------------------------------------------- /src/libsimple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libsimple/README.md -------------------------------------------------------------------------------- /src/libsimple/src/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libsimple/src/lock.c -------------------------------------------------------------------------------- /src/libsysmon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libsysmon/CMakeLists.txt -------------------------------------------------------------------------------- /src/libsysmon/src/sysmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/libsysmon/src/sysmon.c -------------------------------------------------------------------------------- /src/native/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/native/CMakeLists.txt -------------------------------------------------------------------------------- /src/opendirectory_internal/include/opendirectory/CAuditUtils.h: -------------------------------------------------------------------------------- 1 | ../../../external/DirectoryService/include/CAuditUtils.h -------------------------------------------------------------------------------- /src/opendirectory_internal/include/opendirectory/CHandlers.h: -------------------------------------------------------------------------------- 1 | ../../../external/DirectoryService/include/CHandlers.h -------------------------------------------------------------------------------- /src/opendirectory_internal/include/opendirectory/CLauncher.h: -------------------------------------------------------------------------------- 1 | ../../../external/DirectoryService/include/CLauncher.h -------------------------------------------------------------------------------- /src/opendirectory_internal/include/opendirectory/CNodeList.h: -------------------------------------------------------------------------------- 1 | ../../../external/DirectoryService/include/CNodeList.h -------------------------------------------------------------------------------- /src/opendirectory_internal/include/opendirectory/CPlugInList.h: -------------------------------------------------------------------------------- 1 | ../../../external/DirectoryService/include/CPlugInList.h -------------------------------------------------------------------------------- /src/opendirectory_internal/include/opendirectory/CRefTable.h: -------------------------------------------------------------------------------- 1 | ../../../external/DirectoryService/include/CRefTable.h -------------------------------------------------------------------------------- /src/opendirectory_internal/include/opendirectory/DSSwapUtils.h: -------------------------------------------------------------------------------- 1 | ../../../external/DirectoryService/include/DSSwapUtils.h -------------------------------------------------------------------------------- /src/opendirectory_internal/include/opendirectory/Mbrd_Cache.h: -------------------------------------------------------------------------------- 1 | ../../../external/DirectoryService/include/Mbrd_Cache.h -------------------------------------------------------------------------------- /src/opendirectory_internal/include/opendirectory/od_passthru.h: -------------------------------------------------------------------------------- 1 | ../../../external/DirectoryService/include/od_passthru.h -------------------------------------------------------------------------------- /src/opendirectory_internal/include/opendirectory/rb.h: -------------------------------------------------------------------------------- 1 | ../../../external/DirectoryService/include/rb.h -------------------------------------------------------------------------------- /src/pboard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/pboard/CMakeLists.txt -------------------------------------------------------------------------------- /src/pboard/pbcopy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/pboard/pbcopy.m -------------------------------------------------------------------------------- /src/pboard/pbpaste.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/pboard/pbpaste.m -------------------------------------------------------------------------------- /src/private-frameworks/PlugInKit/src/globals.c: -------------------------------------------------------------------------------- 1 | void* PKIdentifierAttribute; 2 | 3 | -------------------------------------------------------------------------------- /src/quarantine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/quarantine/CMakeLists.txt -------------------------------------------------------------------------------- /src/quarantine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/quarantine/LICENSE -------------------------------------------------------------------------------- /src/quarantine/quarantine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/quarantine/quarantine.c -------------------------------------------------------------------------------- /src/sandbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/sandbox/CMakeLists.txt -------------------------------------------------------------------------------- /src/sandbox/include/sandbox.h: -------------------------------------------------------------------------------- 1 | ../sandbox.h -------------------------------------------------------------------------------- /src/sandbox/include/sandbox/private.h: -------------------------------------------------------------------------------- 1 | ../../private.h -------------------------------------------------------------------------------- /src/sandbox/include/sandbox/sandbox.h: -------------------------------------------------------------------------------- 1 | ../../sandbox.h -------------------------------------------------------------------------------- /src/sandbox/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/sandbox/private.h -------------------------------------------------------------------------------- /src/sandbox/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/sandbox/sandbox.c -------------------------------------------------------------------------------- /src/sandbox/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/sandbox/sandbox.h -------------------------------------------------------------------------------- /src/shellspawn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/shellspawn/CMakeLists.txt -------------------------------------------------------------------------------- /src/shellspawn/duct_signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/shellspawn/duct_signals.c -------------------------------------------------------------------------------- /src/shellspawn/duct_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/shellspawn/duct_signals.h -------------------------------------------------------------------------------- /src/shellspawn/shellspawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/shellspawn/shellspawn.c -------------------------------------------------------------------------------- /src/shellspawn/shellspawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/shellspawn/shellspawn.h -------------------------------------------------------------------------------- /src/simd/include/simd/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/simd/include/simd/simd.h -------------------------------------------------------------------------------- /src/softlinking/include/SoftLinking/WeakLinking.h: -------------------------------------------------------------------------------- 1 | ../../submodules/WTF/darling/include/wtf/darwin/WeakLinking.h -------------------------------------------------------------------------------- /src/softlinking/submodules/WTF: -------------------------------------------------------------------------------- 1 | ../../../src/external/WTF/ -------------------------------------------------------------------------------- /src/startup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/startup/CMakeLists.txt -------------------------------------------------------------------------------- /src/startup/darling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/startup/darling.c -------------------------------------------------------------------------------- /src/startup/darling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/startup/darling.h -------------------------------------------------------------------------------- /src/startup/mldr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/startup/mldr/CMakeLists.txt -------------------------------------------------------------------------------- /src/startup/mldr/commpage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/startup/mldr/commpage.c -------------------------------------------------------------------------------- /src/startup/mldr/commpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/startup/mldr/commpage.h -------------------------------------------------------------------------------- /src/startup/mldr/darling.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/startup/mldr/darling.conf.in -------------------------------------------------------------------------------- /src/startup/mldr/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/startup/mldr/loader.c -------------------------------------------------------------------------------- /src/startup/mldr/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/startup/mldr/loader.h -------------------------------------------------------------------------------- /src/startup/mldr/mldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/startup/mldr/mldr.c -------------------------------------------------------------------------------- /src/startup/mldr/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/startup/mldr/stack.c -------------------------------------------------------------------------------- /src/startup/rtsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/startup/rtsig.c -------------------------------------------------------------------------------- /src/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/codesign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/tools/codesign.c -------------------------------------------------------------------------------- /src/tools/dsmemberutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/tools/dsmemberutil.c -------------------------------------------------------------------------------- /src/tools/open.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/tools/open.m -------------------------------------------------------------------------------- /src/tools/softwareupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/tools/softwareupdate.c -------------------------------------------------------------------------------- /src/tools/spctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/tools/spctl.c -------------------------------------------------------------------------------- /src/tools/sudo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/tools/sudo.c -------------------------------------------------------------------------------- /src/tools/sw_vers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/tools/sw_vers.c -------------------------------------------------------------------------------- /src/unxip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/unxip/CMakeLists.txt -------------------------------------------------------------------------------- /src/unxip/unxip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/unxip/unxip -------------------------------------------------------------------------------- /src/unxip/xip_extract_cpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/unxip/xip_extract_cpio.c -------------------------------------------------------------------------------- /src/vchroot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/vchroot/CMakeLists.txt -------------------------------------------------------------------------------- /src/vchroot/vchroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/vchroot/vchroot.c -------------------------------------------------------------------------------- /src/vchroot/vchroot_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/vchroot/vchroot_test.c -------------------------------------------------------------------------------- /src/xcselect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xcselect/CMakeLists.txt -------------------------------------------------------------------------------- /src/xcselect/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xcselect/TODO -------------------------------------------------------------------------------- /src/xcselect/clt_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xcselect/clt_install.py -------------------------------------------------------------------------------- /src/xcselect/include/xcselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xcselect/include/xcselect.h -------------------------------------------------------------------------------- /src/xcselect/xcode-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xcselect/xcode-select.c -------------------------------------------------------------------------------- /src/xcselect/xcrun-shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xcselect/xcrun-shim.c -------------------------------------------------------------------------------- /src/xcselect/xcrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xcselect/xcrun.c -------------------------------------------------------------------------------- /src/xcselect/xcselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xcselect/xcselect.c -------------------------------------------------------------------------------- /src/xtrace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/CMakeLists.txt -------------------------------------------------------------------------------- /src/xtrace/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/base.h -------------------------------------------------------------------------------- /src/xtrace/bsd_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/bsd_trace.cpp -------------------------------------------------------------------------------- /src/xtrace/bsd_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/bsd_trace.h -------------------------------------------------------------------------------- /src/xtrace/lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/lock.cpp -------------------------------------------------------------------------------- /src/xtrace/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/lock.h -------------------------------------------------------------------------------- /src/xtrace/mach_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/mach_trace.cpp -------------------------------------------------------------------------------- /src/xtrace/mach_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/mach_trace.h -------------------------------------------------------------------------------- /src/xtrace/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/memory.cpp -------------------------------------------------------------------------------- /src/xtrace/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/memory.h -------------------------------------------------------------------------------- /src/xtrace/mig_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/mig_trace.cpp -------------------------------------------------------------------------------- /src/xtrace/mig_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/mig_trace.h -------------------------------------------------------------------------------- /src/xtrace/posix_spawn_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/posix_spawn_args.cpp -------------------------------------------------------------------------------- /src/xtrace/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/string.cpp -------------------------------------------------------------------------------- /src/xtrace/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/string.h -------------------------------------------------------------------------------- /src/xtrace/tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/tls.cpp -------------------------------------------------------------------------------- /src/xtrace/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/tls.h -------------------------------------------------------------------------------- /src/xtrace/trampoline.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/trampoline.S -------------------------------------------------------------------------------- /src/xtrace/xtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/xtrace -------------------------------------------------------------------------------- /src/xtrace/xtracelib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/xtracelib.cpp -------------------------------------------------------------------------------- /src/xtrace/xtracelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/src/xtrace/xtracelib.h -------------------------------------------------------------------------------- /tests/src/bin/i386/cfbridge.m.stdout: -------------------------------------------------------------------------------- 1 | Test 2 | 4294967295 3 | 2 4 | -------------------------------------------------------------------------------- /tests/src/bin/i386/cfurl_fm_basic.c.stdout: -------------------------------------------------------------------------------- 1 | /home 2 | -------------------------------------------------------------------------------- /tests/src/bin/i386/exception.cpp.stdout: -------------------------------------------------------------------------------- 1 | Exception: 5 2 | -------------------------------------------------------------------------------- /tests/src/bin/i386/fcntl.c.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/src/bin/i386/objc_category.m.stdout: -------------------------------------------------------------------------------- 1 | dummy called 2 | -------------------------------------------------------------------------------- /tests/src/bin/i386/objc_exception.m.stdout: -------------------------------------------------------------------------------- 1 | MyException 2 | Finally 3 | -------------------------------------------------------------------------------- /tests/src/bin/i386/objc_helloworld_static.m.stdout: -------------------------------------------------------------------------------- 1 | Hello world, 1 2 3 4 5 6 7 2 | -------------------------------------------------------------------------------- /tests/src/bin/i386/objc_load.m.stdout: -------------------------------------------------------------------------------- 1 | MyClass::load called 2 | -------------------------------------------------------------------------------- /tests/src/bin/i386/selfexec.c.stdout: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /tests/src/bin/i386/tls1.c.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/bin/i386/tls1.c.stdout -------------------------------------------------------------------------------- /tests/src/bin/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/bin/runtests.py -------------------------------------------------------------------------------- /tests/src/bin/x86-64/cfbridge.m.stdout: -------------------------------------------------------------------------------- 1 | Test 2 | 4294967295 3 | 2 4 | -------------------------------------------------------------------------------- /tests/src/bin/x86-64/cfurl_fm_basic.c.stdout: -------------------------------------------------------------------------------- 1 | /home 2 | -------------------------------------------------------------------------------- /tests/src/bin/x86-64/exception.cpp.stdout: -------------------------------------------------------------------------------- 1 | Exception: 5 2 | -------------------------------------------------------------------------------- /tests/src/bin/x86-64/fcntl.c.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/src/bin/x86-64/objc_category.m.stdout: -------------------------------------------------------------------------------- 1 | dummy called 2 | -------------------------------------------------------------------------------- /tests/src/bin/x86-64/objc_exception.m.stdout: -------------------------------------------------------------------------------- 1 | MyException 2 | Finally 3 | -------------------------------------------------------------------------------- /tests/src/bin/x86-64/objc_helloworld_static.m.stdout: -------------------------------------------------------------------------------- 1 | Hello world, 1 2 3 4 5 6 7 2 | -------------------------------------------------------------------------------- /tests/src/bin/x86-64/objc_load.m.stdout: -------------------------------------------------------------------------------- 1 | MyClass::load called 2 | -------------------------------------------------------------------------------- /tests/src/bin/x86-64/selfexec.c.stdout: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /tests/src/cfbridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/cfbridge.m -------------------------------------------------------------------------------- /tests/src/cfbridge_strequals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/cfbridge_strequals.m -------------------------------------------------------------------------------- /tests/src/cfurl_fm_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/cfurl_fm_basic.c -------------------------------------------------------------------------------- /tests/src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/exception.cpp -------------------------------------------------------------------------------- /tests/src/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/fcntl.c -------------------------------------------------------------------------------- /tests/src/fork_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/fork_wait.c -------------------------------------------------------------------------------- /tests/src/fstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/fstream.cpp -------------------------------------------------------------------------------- /tests/src/libproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/libproc.c -------------------------------------------------------------------------------- /tests/src/mach_lockset_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/mach_lockset_basic.c -------------------------------------------------------------------------------- /tests/src/mach_lockset_handoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/mach_lockset_handoff.c -------------------------------------------------------------------------------- /tests/src/mach_semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/mach_semaphore.c -------------------------------------------------------------------------------- /tests/src/maclocales.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/maclocales.m -------------------------------------------------------------------------------- /tests/src/manual/ncurses_acs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/manual/ncurses_acs.c -------------------------------------------------------------------------------- /tests/src/objc_category.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/objc_category.m -------------------------------------------------------------------------------- /tests/src/objc_exception.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/objc_exception.m -------------------------------------------------------------------------------- /tests/src/objc_fpret.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/objc_fpret.m -------------------------------------------------------------------------------- /tests/src/objc_helloworld.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/objc_helloworld.m -------------------------------------------------------------------------------- /tests/src/objc_ivars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/objc_ivars.m -------------------------------------------------------------------------------- /tests/src/objc_load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/objc_load.m -------------------------------------------------------------------------------- /tests/src/objc_properties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/objc_properties.m -------------------------------------------------------------------------------- /tests/src/objc_protocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/objc_protocol.m -------------------------------------------------------------------------------- /tests/src/objc_stret.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/objc_stret.m -------------------------------------------------------------------------------- /tests/src/objc_super.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/objc_super.m -------------------------------------------------------------------------------- /tests/src/pthread_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/pthread_threads.c -------------------------------------------------------------------------------- /tests/src/selfexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/selfexec.c -------------------------------------------------------------------------------- /tests/src/tls1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/tls1.c -------------------------------------------------------------------------------- /tests/src/tls2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tests/src/tls2.cpp -------------------------------------------------------------------------------- /tools/darling-stub-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/darling-stub-gen -------------------------------------------------------------------------------- /tools/debian/make-deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/debian/make-deb -------------------------------------------------------------------------------- /tools/debian/make-shlibdeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/debian/make-shlibdeps -------------------------------------------------------------------------------- /tools/debian/make-shlibdeps-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/debian/make-shlibdeps-file -------------------------------------------------------------------------------- /tools/debian/ppa-build-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/debian/ppa-build-source -------------------------------------------------------------------------------- /tools/fix-source-perm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/fix-source-perm.sh -------------------------------------------------------------------------------- /tools/generate-xcode-stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/generate-xcode-stubs.py -------------------------------------------------------------------------------- /tools/generrnomap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/generrnomap -------------------------------------------------------------------------------- /tools/i386-map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/i386-map -------------------------------------------------------------------------------- /tools/offsetof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/offsetof -------------------------------------------------------------------------------- /tools/pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/pyc -------------------------------------------------------------------------------- /tools/rename-line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/rename-line -------------------------------------------------------------------------------- /tools/rename-target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/rename-target -------------------------------------------------------------------------------- /tools/rpm/darling-deps.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/rpm/darling-deps.req -------------------------------------------------------------------------------- /tools/rpm/darling.attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/rpm/darling.attr -------------------------------------------------------------------------------- /tools/shutdown-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/shutdown-user.sh -------------------------------------------------------------------------------- /tools/sizeof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/sizeof -------------------------------------------------------------------------------- /tools/stripcomments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/stripcomments -------------------------------------------------------------------------------- /tools/stub-gen-c-func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/stub-gen-c-func -------------------------------------------------------------------------------- /tools/stub-gen-objc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/stub-gen-objc -------------------------------------------------------------------------------- /tools/uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/uninstall -------------------------------------------------------------------------------- /tools/valueof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darlinghq/darling/HEAD/tools/valueof --------------------------------------------------------------------------------