美文网首页
SpringBoardService接口

SpringBoardService接口

作者: 超哥__ | 来源:发表于2019-04-10 15:48 被阅读0次
    @protocol BKSAccelerometerDelegate <NSObject>
    - (void)accelerometer:(BKSAccelerometer *)arg1 didAccelerateWithTimeStamp:(double)arg2 x:(float)arg3 y:(float)arg4 z:(float)arg5 eventType:(int)arg6;
    
    @optional
    - (void)accelerometer:(BKSAccelerometer *)arg1 didChangeDeviceOrientation:(int)arg2;
    @end
    
    @protocol BSDescriptionProviding <NSObject>
    - (BSDescriptionBuilder *)succinctDescriptionBuilder;
    - (NSString *)succinctDescription;
    - (BSDescriptionBuilder *)descriptionBuilderWithMultilinePrefix:(NSString *)arg1;
    - (NSString *)descriptionWithMultilinePrefix:(NSString *)arg1;
    @end
    
    @protocol BSInvalidatable <NSObject>
    - (void)invalidate;
    @end
    
    @protocol BSSettingDescriptionProvider <NSObject>
    
    @optional
    - (NSString *)valueDescriptionForFlag:(long long)arg1 object:(id)arg2 ofSetting:(unsigned long long)arg3;
    - (NSString *)keyDescriptionForSetting:(unsigned long long)arg1;
    - (NSString *)settings:(BSSettings *)arg1 valueDescriptionForFlag:(long long)arg2 object:(id)arg3 ofSetting:(unsigned long long)arg4;
    - (NSString *)settings:(BSSettings *)arg1 keyDescriptionForSetting:(unsigned long long)arg2;
    @end
    
    @protocol BSXPCCoding <NSObject>
    - (void)encodeWithXPCDictionary:(NSObject<OS_xpc_object> *)arg1;
    - (id)initWithXPCDictionary:(NSObject<OS_xpc_object> *)arg1;
    
    @optional
    - (Class)fallbackXPCEncodableClass;
    @end
    
    @protocol FBSDisplayLayoutObserver <NSObject>
    
    @optional
    - (void)layoutMonitor:(FBSDisplayLayoutMonitor *)arg1 didUpdateDisplayLayout:(FBSDisplayLayout *)arg2 withContext:(FBSDisplayLayoutTransitionContext *)arg3;
    - (void)layoutMonitor:(FBSDisplayLayoutMonitor *)arg1 didUpdateDisplayLayout:(FBSDisplayLayout *)arg2;
    @end
    
    @protocol NSCoding
    - (id)initWithCoder:(NSCoder *)arg1;
    - (void)encodeWithCoder:(NSCoder *)arg1;
    @end
    
    @protocol NSCopying
    - (id)copyWithZone:(struct _NSZone *)arg1;
    @end
    
    @protocol NSObject
    @property(readonly, copy) NSString *description;
    @property(readonly) Class superclass;
    @property(readonly) unsigned long long hash;
    - (struct _NSZone *)zone;
    - (unsigned long long)retainCount;
    - (id)autorelease;
    - (oneway void)release;
    - (id)retain;
    - (_Bool)respondsToSelector:(SEL)arg1;
    - (_Bool)conformsToProtocol:(Protocol *)arg1;
    - (_Bool)isMemberOfClass:(Class)arg1;
    - (_Bool)isKindOfClass:(Class)arg1;
    - (_Bool)isProxy;
    - (id)performSelector:(SEL)arg1 withObject:(id)arg2 withObject:(id)arg3;
    - (id)performSelector:(SEL)arg1 withObject:(id)arg2;
    - (id)performSelector:(SEL)arg1;
    - (id)self;
    - (Class)class;
    - (_Bool)isEqual:(id)arg1;
    
    @optional
    @property(readonly, copy) NSString *debugDescription;
    @end
    
    @protocol NSSecureCoding <NSCoding>
    + (_Bool)supportsSecureCoding;
    @end
    
    @protocol SBCardItemsControllerRemoteInterface <NSObject>
    - (void)getCardItemsForControllerWithIdentifier:(NSString *)arg1 withHandler:(void (^)(NSArray *, NSError *))arg2;
    - (void)setCardItems:(NSArray *)arg1 forControllerWithIdentifier:(NSString *)arg2;
    @end
    
    @protocol SBSCarPlayApplicationIcon <NSObject>
    @property(readonly, nonatomic) NSString *localizedDisplayName;
    @property(readonly, nonatomic) double iconImageScale;
    @property(readonly, nonatomic) NSData *iconImageData;
    @end
    
    @protocol SBSCardItemsControllerRemoteInterface <NSObject>
    @end
    
    @protocol SBSDisplayLayoutElement <NSObject>
    @property(readonly, nonatomic) long long layoutRole;
    @property(readonly, nonatomic, getter=isSpringBoardElement) _Bool springBoardElement;
    @end
    
    @protocol SBSRemoteAlertClientHandle <NSObject>
    - (void)queue_noteInvalidWithError:(NSError *)arg1;
    - (void)queue_setActive:(_Bool)arg1;
    - (BSMachPortSendRight *)queue_token;
    @end
    
    @protocol SBSStatusBarStyleOverridesAssertionClient <NSObject>
    - (void)statusBarTappedWithContext:(SBSStatusBarTapContextImpl *)arg1 reply:(void (^)(void))arg2;
    - (void)invalidateStatusBarStyleOverridesAssertionsWithIdentifiers:(NSSet *)arg1;
    @end
    
    @protocol SBSStatusBarTapContext
    @property(readonly, nonatomic) int styleOverride;
    @end
    
    @protocol SBStatusBarStyleOverridesAssertionServer <NSObject>
    - (void)setRegisteredOverrides:(NSNumber *)arg1 reply:(void (^)(NSError *))arg2;
    - (void)setStatusString:(NSString *)arg1 forAssertionWithIdentifier:(NSString *)arg2;
    - (void)deactivateStatusBarStyleOverridesAssertionsWithIdentifiers:(NSSet *)arg1;
    - (void)activateStatusBarStyleOverridesAssertions:(NSSet *)arg1 reply:(void (^)(NSDictionary *))arg2;
    @end
    
    @interface SBSWallpaperClient : FBSSystemServiceFacilityClient
    {
    }
    
    - (void)fetchThumbnailForVariant:(unsigned int)arg1 completionHandler:(CDUnknownBlockType)arg2;
    - (id)initWithCalloutQueue:(id)arg1;
    - (id)initWithIdentifier:(id)arg1 calloutQueue:(id)arg2;
    
    @end
    
    @interface _SBSHardwareButtonEventConsumerInfo : NSObject <BSInvalidatable>
    {
        _Bool _valid;
        SBSHardwareButtonService *_service;
        id <SBSHardwareButtonEventConsuming> _consumer;
        long long _buttonKind;
        unsigned long long _eventMask;
        long long _eventPriority;
    }
    
    + (id)infoWithConsumer:(id)arg1;
    @property(nonatomic) long long eventPriority; // @synthesize eventPriority=_eventPriority;
    @property(nonatomic) unsigned long long eventMask; // @synthesize eventMask=_eventMask;
    @property(nonatomic) long long buttonKind; // @synthesize buttonKind=_buttonKind;
    @property(retain, nonatomic) id <SBSHardwareButtonEventConsuming> consumer; // @synthesize consumer=_consumer;
    @property(nonatomic) __weak SBSHardwareButtonService *service; // @synthesize service=_service;
    @property(nonatomic, getter=isValid) _Bool valid; // @synthesize valid=_valid;
    - (void).cxx_destruct;
    - (void)invalidate;
    @property(readonly, copy) NSString *description;
    - (void)dealloc;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSRemoteAlertConfiguration : SBSRemoteAlertDefinition
    {
    }
    
    
    // Remaining properties
    @property(retain, nonatomic) NSDictionary *userInfo; // @dynamic userInfo;
    @end
    
    @interface SBSRemoteAlertClient : FBSSystemServiceFacilityClient
    {
        NSObject<OS_dispatch_queue> *_queue;
        NSObject<OS_dispatch_queue> *_handleObserverQueue;
        NSMutableDictionary *_portToHandleMap;
        NSMutableDictionary *_portToDeathSentinelMap;
    }
    
    + (id)sharedInstance;
    @property(readonly, nonatomic) NSObject<OS_dispatch_queue> *handleObserverQueue; // @synthesize handleObserverQueue=_handleObserverQueue;
    @property(readonly, nonatomic) NSObject<OS_dispatch_queue> *queue; // @synthesize queue=_queue;
    - (void).cxx_destruct;
    - (void)_queue_removeHandleForTokenStore:(id)arg1 withErrorCode:(long long)arg2 underlyingError:(id)arg3;
    - (id)_queue_addHandleForToken:(id)arg1;
    - (void)handleMessage:(id)arg1 withType:(long long)arg2;
    - (void)queue_invalidateRemoteAlertForHandle:(id)arg1;
    - (void)queue_activateRemoteAlertForHandle:(id)arg1 withContext:(id)arg2;
    - (id)queue_newHandleForRemoteAlertWithDefinition:(id)arg1 context:(id)arg2;
    - (void)queue_lookupHandlesForRemoteAlertWithDefinition:(id)arg1 creatingIfNone:(_Bool)arg2 withCompletion:(CDUnknownBlockType)arg3;
    - (void)dealloc;
    - (id)initWithIdentifier:(id)arg1 calloutQueue:(id)arg2;
    
    @end
    
    @interface SBSServiceFacilityClient : FBSSystemServiceFacilityClient
    {
        long long _numberOfCheckOuts;
    }
    
    + (id)serviceFacilityIdentifier;
    + (void)checkInClient:(id)arg1;
    + (id)checkOutClientWithClass:(Class)arg1;
    - (_Bool)_decrementCheckout;
    - (void)_incrementCheckout;
    - (id)initWithIdentifier:(id)arg1 calloutQueue:(id)arg2;
    - (id)initWithCalloutQueue:(id)arg1;
    
    @end
    
    @interface SBSBiometricsService : SBSAbstractSystemService
    {
    }
    
    - (void)_acquireBiometricAssertionOfType:(unsigned char)arg1 assertionName:(id)arg2 reason:(id)arg3 completion:(CDUnknownBlockType)arg4;
    - (void)acquireWalletPreArmSuppressionAssertionForReason:(id)arg1 completion:(CDUnknownBlockType)arg2;
    - (void)acquireUnlockSuppressionAssertionForReason:(id)arg1 completion:(CDUnknownBlockType)arg2;
    - (void)fetchUnlockCredentialSetWithCompletion:(CDUnknownBlockType)arg1;
    
    @end
    
    @interface SBSApplicationShortcutServiceFetchResult : NSObject <BSXPCCoding, NSCopying>
    {
        NSArray *_staticApplicationShortcutItems;
        NSArray *_dynamicApplicationShortcutItems;
    }
    
    @property(readonly, nonatomic) NSArray *dynamicApplicationShortcutItems; // @synthesize dynamicApplicationShortcutItems=_dynamicApplicationShortcutItems;
    @property(readonly, nonatomic) NSArray *staticApplicationShortcutItems; // @synthesize staticApplicationShortcutItems=_staticApplicationShortcutItems;
    - (void).cxx_destruct;
    - (id)copyWithZone:(struct _NSZone *)arg1;
    - (void)encodeWithXPCDictionary:(id)arg1;
    - (id)initWithXPCDictionary:(id)arg1;
    @property(readonly) unsigned long long hash;
    - (_Bool)isEqual:(id)arg1;
    - (id)init;
    - (id)initWithStaticApplicationShortcutItems:(id)arg1 dynamicApplicationShortcutItems:(id)arg2;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly, copy) NSString *description;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSAbstractFacilityService : NSObject <BSInvalidatable>
    {
        SBSServiceFacilityClient *_client;
    }
    
    + (Class)serviceFacilityClientClass;
    - (void).cxx_destruct;
    @property(readonly, nonatomic) NSObject<OS_dispatch_queue> *callbackQueue;
    @property(readonly, nonatomic) SBSServiceFacilityClient *client;
    - (void)invalidate;
    - (void)dealloc;
    - (id)init;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly, copy) NSString *description;
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSApplicationShortcutItem : NSObject <BSXPCCoding, NSCopying>
    {
        NSString *_type;
        NSString *_localizedTitle;
        NSString *_localizedSubtitle;
        SBSApplicationShortcutIcon *_icon;
        unsigned long long _activationMode;
        NSString *_bundleIdentifierToLaunch;
        NSData *_userInfoData;
    }
    
    + (id)_staticApplicationShortcutItemsFromInfoPlistEntry:(id)arg1;
    @property(retain, nonatomic) NSData *userInfoData; // @synthesize userInfoData=_userInfoData;
    @property(copy, nonatomic) NSString *bundleIdentifierToLaunch; // @synthesize bundleIdentifierToLaunch=_bundleIdentifierToLaunch;
    @property(nonatomic) unsigned long long activationMode; // @synthesize activationMode=_activationMode;
    @property(copy, nonatomic) SBSApplicationShortcutIcon *icon; // @synthesize icon=_icon;
    @property(copy, nonatomic) NSString *localizedSubtitle; // @synthesize localizedSubtitle=_localizedSubtitle;
    @property(copy, nonatomic) NSString *localizedTitle; // @synthesize localizedTitle=_localizedTitle;
    @property(copy, nonatomic) NSString *type; // @synthesize type=_type;
    - (void).cxx_destruct;
    - (void)_localizeWithHandler:(CDUnknownBlockType)arg1;
    @property(copy, nonatomic) NSDictionary *userInfo;
    - (id)copyWithZone:(struct _NSZone *)arg1;
    @property(readonly, copy) NSString *description;
    - (_Bool)isEqual:(id)arg1;
    @property(readonly) unsigned long long hash;
    - (void)encodeWithXPCDictionary:(id)arg1;
    - (id)initWithXPCDictionary:(id)arg1;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSAcquireAssertionAction : BSAction
    {
    }
    
    + (id)assertionWithAssertionName:(id)arg1 reason:(id)arg2 withHandler:(CDUnknownBlockType)arg3;
    - (id)keyDescriptionForSetting:(unsigned long long)arg1;
    @property(readonly, nonatomic) unsigned int port;
    @property(readonly, nonatomic) __weak NSString *reason;
    @property(readonly, nonatomic) __weak NSString *assertionName;
    
    @end
    
    @interface SBSAnalyticsState : NSObject <BSDescriptionProviding>
    {
        double _timestamp;
        NSDictionary *_payload;
    }
    
    + (id)withTimestamp:(double)arg1 payload:(id)arg2;
    + (id)withTimestamp:(double)arg1;
    @property(readonly, nonatomic) double timestamp; // @synthesize timestamp=_timestamp;
    - (void).cxx_destruct;
    - (id)succinctDescriptionBuilder;
    - (id)succinctDescription;
    - (id)descriptionBuilderWithMultilinePrefix:(id)arg1;
    - (id)descriptionWithMultilinePrefix:(id)arg1;
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly, copy) NSString *description;
    - (id)coreAnalyticsRepresentation;
    - (id)objectForKeyedSubscript:(id)arg1;
    - (id)initWithTimestamp:(double)arg1 payload:(id)arg2;
    
    // Remaining properties
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSRelaunchAction : BSAction
    {
    }
    
    + (id)actionWithReason:(id)arg1 options:(unsigned long long)arg2 targetURL:(id)arg3;
    @property(readonly, retain, nonatomic) NSURL *targetURL;
    @property(readonly, nonatomic) unsigned long long options;
    @property(readonly, copy, nonatomic) NSString *reason;
    - (id)initWithReason:(id)arg1 options:(unsigned long long)arg2 targetURL:(id)arg3;
    
    @end
    
    @interface SBSApplicationRemovabilityService : SBSAbstractApplicationService
    {
    }
    
    - (void)setRemovalAllowed:(_Bool)arg1 forBundleIdentifier:(id)arg2 withCompletion:(CDUnknownBlockType)arg3;
    - (void)setRemovalAllowed:(_Bool)arg1 forBundleIdentifier:(id)arg2 withCompletionHandler:(CDUnknownBlockType)arg3;
    - (void)fetchRemovabilityForBundleIdentifier:(id)arg1 withCompletionHandler:(CDUnknownBlockType)arg2;
    
    @end
    
    @interface SBSHardwareButtonService : SBSAbstractSystemService
    {
        NSMutableArray *_consumers;
        struct SBSHardwareButtonServiceButtonConfiguration _homeButtonConfiguration;
        struct SBSHardwareButtonServiceButtonConfiguration _lockButtonConfiguration;
    }
    
    + (id)sharedInstance;
    @property(nonatomic) struct SBSHardwareButtonServiceButtonConfiguration lockButtonConfiguration; // @synthesize lockButtonConfiguration=_lockButtonConfiguration;
    @property(nonatomic) struct SBSHardwareButtonServiceButtonConfiguration homeButtonConfiguration; // @synthesize homeButtonConfiguration=_homeButtonConfiguration;
    @property(retain, nonatomic) NSMutableArray *consumers; // @synthesize consumers=_consumers;
    - (void).cxx_destruct;
    - (void)handleButtonPressMessage:(long long)arg1 forButtonKind:(long long)arg2 priority:(long long)arg3;
    - (void)fetchHapticTypeForButtonKind:(long long)arg1 completion:(CDUnknownBlockType)arg2;
    - (void)setHapticType:(long long)arg1 forButtonKind:(long long)arg2;
    - (void)consumerInfoWillInvalidate:(id)arg1;
    - (id)beginConsumingPressesForButtonKind:(long long)arg1 eventConsumer:(id)arg2 priority:(long long)arg3;
    - (void)_mainQueue_handleButtonPressMessage:(long long)arg1 forButtonKind:(long long)arg2 priority:(long long)arg3;
    - (void)_addEventConsumerInfo:(id)arg1;
    - (id)_viableConsumerForEvent:(long long)arg1 priority:(long long)arg2;
    - (void)_resetEventMaskForButtonKind:(long long)arg1;
    - (void)_setApplicationClientEventMask:(unsigned long long)arg1 buttonKind:(long long)arg2 priority:(long long)arg3;
    - (id)description;
    - (void)acquireHomeHardwareButtonHintSuppressionAssertionForReason:(id)arg1 completion:(CDUnknownBlockType)arg2;
    
    @end
    
    @interface SBSWallpaperService : NSObject
    {
        SBSWallpaperClient *_client;
        NSObject<OS_dispatch_queue> *_callbackQueue;
        _Bool _wasInvalidated;
    }
    
    - (void).cxx_destruct;
    - (void)fetchThumbnailForVariant:(long long)arg1 completionHandler:(CDUnknownBlockType)arg2;
    - (void)invalidate;
    - (void)dealloc;
    - (id)init;
    
    @end
    
    @interface _SBSCarPlayApplicationInfo : NSObject <SBSCarPlayApplicationIcon>
    {
        NSData *_iconImageData;
        double _iconImageScale;
        NSString *_localizedDisplayName;
    }
    
    @property(retain, nonatomic) NSString *localizedDisplayName; // @synthesize localizedDisplayName=_localizedDisplayName;
    @property(nonatomic) double iconImageScale; // @synthesize iconImageScale=_iconImageScale;
    @property(retain, nonatomic) NSData *iconImageData; // @synthesize iconImageData=_iconImageData;
    - (void).cxx_destruct;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly, copy) NSString *description;
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSApplicationCarPlayService : SBSAbstractApplicationService
    {
    }
    
    - (void)fetchApplicationIconInformationForBundleIdentifier:(id)arg1 inVehicle:(id)arg2 withCompletion:(CDUnknownBlockType)arg3;
    - (void)resetIconStateForVehicleId:(id)arg1;
    - (void)setIconState:(id)arg1 hiddenIcons:(id)arg2 forVehicleId:(id)arg3;
    - (void)fetchIconStateForVehicleId:(id)arg1 withCompletion:(CDUnknownBlockType)arg2;
    
    @end
    
    @interface SBScreenTimeTrackingController : NSObject <FBSDisplayLayoutObserver>
    {
        FBSDisplayLayoutMonitor *_layoutMonitor;
        NSObject<OS_dispatch_queue> *_queue;
        _Bool _queue_isScreenOn;
        _Bool _queue_isPhoneOrFaceTimeActive;
        unsigned long long _queue_thisCategoryStartTime;
        double _queue_lastCategoryChangeTime;
        int _queue_activeContext;
        int _queue_activeCategory;
        FBSDisplayLayout *_queue_lastLayout;
        FBSDisplayLayoutTransitionContext *_queue_lastLayoutTransitionContext;
    }
    
    - (void).cxx_destruct;
    - (void)_queue_setActiveCategory:(int)arg1 context:(int)arg2;
    - (void)_queue_setPhoneOrFaceTimeActive:(_Bool)arg1;
    - (void)_queue_setScreenOn:(_Bool)arg1 withContext:(id)arg2;
    - (void)_queue_handleNewLayout:(id)arg1 withContext:(id)arg2;
    - (id)_nameForContext:(int)arg1;
    - (void)layoutMonitor:(id)arg1 didUpdateDisplayLayout:(id)arg2 withContext:(id)arg3;
    - (void)dealloc;
    - (id)init;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly, copy) NSString *description;
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSAbstractSystemService : SBSAbstractFacilityService
    {
    }
    
    + (Class)serviceFacilityClientClass;
    @property(readonly, nonatomic) SBSSystemServiceClient *client;
    
    @end
    
    @interface SBSStatusBarStyleOverridesAssertion : NSObject
    {
        SBSStatusBarStyleOverridesAssertionData *_assertionData;
        CDUnknownBlockType _invalidationHandler;
    }
    
    + (id)assertionWithStatusBarStyleOverrides:(int)arg1 forPID:(int)arg2 exclusive:(_Bool)arg3 showsWhenForeground:(_Bool)arg4;
    + (id)backgroundLocationAssertionForPID:(int)arg1;
    @property(copy, nonatomic) CDUnknownBlockType invalidationHandler; // @synthesize invalidationHandler=_invalidationHandler;
    @property(retain, nonatomic) SBSStatusBarStyleOverridesAssertionData *assertionData; // @synthesize assertionData=_assertionData;
    - (void).cxx_destruct;
    - (void)invalidate;
    - (void)acquireWithHandler:(CDUnknownBlockType)arg1 onQueue:(id)arg2;
    - (void)acquireWithHandler:(CDUnknownBlockType)arg1 invalidationHandler:(CDUnknownBlockType)arg2;
    @property(readonly, copy, nonatomic) NSString *uniqueIdentifier;
    @property(copy, nonatomic) NSString *statusString;
    @property(readonly, nonatomic) _Bool showsWhenForeground;
    @property(readonly, nonatomic, getter=isExclusive) _Bool exclusive;
    @property(readonly, nonatomic) int pid;
    @property(readonly, nonatomic) int statusBarStyleOverrides;
    - (void)dealloc;
    - (id)initWithStatusBarStyleOverridesAssertionData:(id)arg1;
    - (id)initWithStatusBarStyleOverrides:(int)arg1 forPID:(int)arg2 exclusive:(_Bool)arg3 showsWhenForeground:(_Bool)arg4;
    
    @end
    
    @interface SBSDisplayLayoutElement : FBSDisplayLayoutElement <SBSDisplayLayoutElement>
    {
    }
    
    - (id)succinctDescriptionBuilder;
    @property(nonatomic) long long layoutRole;
    @property(readonly, nonatomic, getter=isSpringBoardElement) _Bool springBoardElement;
    - (id)initWithIdentifier:(id)arg1 layoutRole:(long long)arg2;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly, copy) NSString *description;
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSRemoteAlertHandle : NSObject <SBSRemoteAlertClientHandle>
    {
        SBSRemoteAlertClient *_client;
        NSObject<OS_dispatch_queue> *_queue;
        BSMachPortSendRight *_token;
        _Bool _active;
        NSHashTable *_observers;
    }
    
    + (id)handleWithConfiguration:(id)arg1;
    + (id)lookupHandlesForConfiguration:(id)arg1 creatingIfNone:(_Bool)arg2;
    + (id)newHandleWithDefinition:(id)arg1 configurationContext:(id)arg2;
    + (id)lookupHandlesForDefinition:(id)arg1 creatingIfNone:(_Bool)arg2;
    + (id)lookupHandlesForDefinition:(id)arg1;
    + (id)_lookupHandlesForDefinition:(id)arg1 creatingIfNone:(_Bool)arg2;
    - (void).cxx_destruct;
    - (void)queue_noteInvalidWithError:(id)arg1;
    - (void)queue_setActive:(_Bool)arg1;
    - (id)queue_token;
    - (void)_queue_callObserversWithBlock:(CDUnknownBlockType)arg1;
    @property(readonly, nonatomic, getter=isValid) _Bool valid;
    - (void)invalidate;
    @property(readonly, nonatomic, getter=isActive) _Bool active;
    - (void)activateWithContext:(id)arg1;
    - (void)activateWithOptions:(id)arg1;
    - (void)removeObserver:(id)arg1;
    - (void)addObserver:(id)arg1;
    - (id)_initWithHandleToken:(id)arg1;
    - (id)init;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly, copy) NSString *description;
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSStatusBarTapContextImpl : NSObject <NSSecureCoding, SBSStatusBarTapContext>
    {
        int _styleOverride;
    }
    
    + (_Bool)supportsSecureCoding;
    @property(nonatomic) int styleOverride; // @synthesize styleOverride=_styleOverride;
    - (void)encodeWithCoder:(id)arg1;
    - (id)initWithCoder:(id)arg1;
    - (id)initWithStyleOverride:(int)arg1;
    
    @end
    
    @interface SBSSystemServiceClient : SBSServiceFacilityClient
    {
        _Bool _buttonEventServiceIsWaitingForServerMessages;
    }
    
    + (id)serviceFacilityIdentifier;
    - (void)handleMessage:(id)arg1 withType:(long long)arg2;
    - (void)fetchHapticTypeForButtonKind:(long long)arg1 completion:(CDUnknownBlockType)arg2;
    - (void)setHapticType:(long long)arg1 forButtonKind:(long long)arg2;
    - (void)_handleButtonEventConsumePressMessage:(id)arg1;
    - (void)setEventMask:(unsigned long long)arg1 forButtonKind:(long long)arg2 priority:(long long)arg3;
    - (void)setButtonEventServiceIsWaitingForServerMessages:(_Bool)arg1;
    - (void)acquireAssertionOfType:(long long)arg1 forReason:(id)arg2 withCompletion:(CDUnknownBlockType)arg3;
    - (void)fetchUnlockCredentialSetWithCompletion:(CDUnknownBlockType)arg1;
    
    @end
    
    @interface SBSRemoteAlertActivationContext : NSObject <BSDescriptionProviding, BSSettingDescriptionProvider, BSXPCCoding, NSSecureCoding>
    {
        BSMutableSettings *_settings;
        NSSet *_actions;
    }
    
    + (_Bool)supportsSecureCoding;
    @property(retain, nonatomic) NSSet *actions; // @synthesize actions=_actions;
    - (void).cxx_destruct;
    - (id)settings:(id)arg1 valueDescriptionForFlag:(long long)arg2 object:(id)arg3 ofSetting:(unsigned long long)arg4;
    - (id)settings:(id)arg1 keyDescriptionForSetting:(unsigned long long)arg2;
    - (id)descriptionBuilderWithMultilinePrefix:(id)arg1;
    - (id)descriptionWithMultilinePrefix:(id)arg1;
    - (id)succinctDescriptionBuilder;
    - (id)succinctDescription;
    - (void)encodeWithCoder:(id)arg1;
    - (id)initWithCoder:(id)arg1;
    - (void)encodeWithXPCDictionary:(id)arg1;
    - (id)initWithXPCDictionary:(id)arg1;
    @property(readonly, copy) NSString *description;
    @property(retain, nonatomic) NSString *reason;
    - (void)dealloc;
    - (id)_initWithSettings:(id)arg1 actions:(id)arg2;
    - (id)initWithActions:(id)arg1;
    - (id)init;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSApplicationClient : SBSServiceFacilityClient
    {
    }
    
    + (id)serviceFacilityIdentifier;
    - (void)updateDynamicApplicationShortcutItems:(id)arg1 bundleIdentifier:(id)arg2;
    - (void)fetchApplicationShortcutItemsOfTypes:(unsigned long long)arg1 forBundleIdentifier:(id)arg2 withCompletionHandler:(CDUnknownBlockType)arg3;
    - (void)fetchWhitePointAdaptivityStyleForDisplayId:(unsigned int)arg1 withCompletionHandler:(CDUnknownBlockType)arg2;
    - (void)fetchCarApplicationInformationForBundleIdentifier:(id)arg1 inVehicle:(id)arg2 withCompletion:(CDUnknownBlockType)arg3;
    - (void)resetIconStateForVehicleId:(id)arg1;
    - (void)setIconState:(id)arg1 hiddenIcons:(id)arg2 forVehicleId:(id)arg3;
    - (void)fetchIconStateForVehicleId:(id)arg1 withCompletion:(CDUnknownBlockType)arg2;
    
    @end
    
    @interface SBSStatusBarStyleOverridesAssertionData : NSObject <NSSecureCoding>
    {
        int _statusBarStyleOverrides;
        int _pid;
        _Bool _exclusive;
        _Bool _showsWhenForeground;
        NSString *_statusString;
        NSString *_uniqueIdentifier;
    }
    
    + (_Bool)supportsSecureCoding;
    @property(copy, nonatomic) NSString *uniqueIdentifier; // @synthesize uniqueIdentifier=_uniqueIdentifier;
    @property(copy, nonatomic) NSString *statusString; // @synthesize statusString=_statusString;
    @property(nonatomic) _Bool showsWhenForeground; // @synthesize showsWhenForeground=_showsWhenForeground;
    @property(nonatomic, getter=isExclusive) _Bool exclusive; // @synthesize exclusive=_exclusive;
    @property(nonatomic) int pid; // @synthesize pid=_pid;
    @property(nonatomic) int statusBarStyleOverrides; // @synthesize statusBarStyleOverrides=_statusBarStyleOverrides;
    - (void).cxx_destruct;
    - (id)initWithCoder:(id)arg1;
    - (void)encodeWithCoder:(id)arg1;
    - (id)initWithStatusBarStyleOverrides:(int)arg1 forPID:(int)arg2 exclusive:(_Bool)arg3 showsWhenForeground:(_Bool)arg4 uniqueIdentifier:(id)arg5;
    - (id)initWithStatusBarStyleOverrides:(int)arg1 forPID:(int)arg2 exclusive:(_Bool)arg3 showsWhenForeground:(_Bool)arg4;
    - (id)init;
    
    @end
    
    @interface SBSSecureAppAction : BSAction
    {
    }
    
    @property(readonly, nonatomic) unsigned long long secureAppType;
    - (id)initWithType:(unsigned long long)arg1 handler:(CDUnknownBlockType)arg2;
    
    @end
    
    @interface SBSRemoteAlertConfigurationContext : NSObject <BSXPCCoding, NSSecureCoding>
    {
        NSDictionary *_userInfo;
        NSObject<OS_xpc_object> *_xpcEndpoint;
        NSSet *_actions;
    }
    
    + (_Bool)supportsSecureCoding;
    @property(retain, nonatomic) NSSet *actions; // @synthesize actions=_actions;
    @property(retain, nonatomic) NSObject<OS_xpc_object> *xpcEndpoint; // @synthesize xpcEndpoint=_xpcEndpoint;
    @property(retain, nonatomic) NSDictionary *userInfo; // @synthesize userInfo=_userInfo;
    - (void).cxx_destruct;
    - (id)initWithCoder:(id)arg1;
    - (void)encodeWithCoder:(id)arg1;
    - (void)encodeWithXPCDictionary:(id)arg1;
    - (id)initWithXPCDictionary:(id)arg1;
    - (id)init;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly, copy) NSString *description;
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSApplicationShortcutService : SBSAbstractApplicationService
    {
    }
    
    - (void)updateDynamicApplicationShortcutItems:(id)arg1 bundleIdentifier:(id)arg2;
    - (void)fetchDynamicApplicationShortcutItemsForBundleIdentifier:(id)arg1 completionHandler:(CDUnknownBlockType)arg2;
    - (void)updateDynamicApplicationShortcutItems:(id)arg1;
    - (void)fetchDynamicApplicationShortcutItemsWithCompletionHandler:(CDUnknownBlockType)arg1;
    - (void)updateDynamicApplicationShortcutItems:(id)arg1 forBundleIdentifier:(id)arg2;
    - (void)fetchApplicationShortcutItemsOfTypes:(unsigned long long)arg1 forBundleIdentifier:(id)arg2 withCompletionHandler:(CDUnknownBlockType)arg3;
    
    @end
    
    @interface SBSApplicationHarmonyService : SBSAbstractApplicationService
    {
    }
    
    - (void)fetchWhitePointAdaptivityStyleForDisplayId:(unsigned int)arg1 withCompletionHandler:(CDUnknownBlockType)arg2;
    
    @end
    
    @interface SBSApplicationShortcutIcon : NSObject <BSXPCCoding, NSCopying>
    {
    }
    
    - (id)copyWithZone:(struct _NSZone *)arg1;
    - (void)encodeWithXPCDictionary:(id)arg1;
    - (id)initWithXPCDictionary:(id)arg1;
    - (id)init;
    - (id)_initForSubclass;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly, copy) NSString *description;
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSApplicationShortcutSystemIcon : SBSApplicationShortcutIcon
    {
        long long _type;
    }
    
    @property(readonly, nonatomic) long long type; // @synthesize type=_type;
    - (void)encodeWithXPCDictionary:(id)arg1;
    - (id)initWithXPCDictionary:(id)arg1;
    - (unsigned long long)hash;
    - (_Bool)isEqual:(id)arg1;
    - (id)_initForSubclass;
    - (id)initWithType:(long long)arg1;
    
    @end
    
    @interface SBSApplicationShortcutTemplateIcon : SBSApplicationShortcutIcon
    {
        NSString *_templateImageName;
    }
    
    @property(readonly, nonatomic) NSString *templateImageName; // @synthesize templateImageName=_templateImageName;
    - (void).cxx_destruct;
    - (void)encodeWithXPCDictionary:(id)arg1;
    - (id)initWithXPCDictionary:(id)arg1;
    - (unsigned long long)hash;
    - (_Bool)isEqual:(id)arg1;
    - (id)_initForSubclass;
    - (id)initWithTemplateImageName:(id)arg1;
    
    @end
    
    @interface SBSApplicationShortcutCustomImageIcon : SBSApplicationShortcutIcon
    {
        _Bool _isTemplate;
        NSData *_imageData;
        long long _dataType;
    }
    
    @property(readonly, nonatomic) _Bool isTemplate; // @synthesize isTemplate=_isTemplate;
    @property(readonly, nonatomic) long long dataType; // @synthesize dataType=_dataType;
    @property(readonly, nonatomic) NSData *imageData; // @synthesize imageData=_imageData;
    - (void).cxx_destruct;
    @property(readonly, nonatomic) NSData *imagePNGData;
    - (void)encodeWithXPCDictionary:(id)arg1;
    - (id)initWithXPCDictionary:(id)arg1;
    - (unsigned long long)hash;
    - (_Bool)isEqual:(id)arg1;
    - (id)_initForSubclass;
    - (id)initWithImagePNGData:(id)arg1;
    - (id)initWithImageData:(id)arg1 dataType:(long long)arg2;
    - (id)initWithImageData:(id)arg1 dataType:(long long)arg2 isTemplate:(_Bool)arg3;
    
    @end
    
    @interface SBSApplicationShortcutContactIcon : SBSApplicationShortcutIcon
    {
        NSString *_contactIdentifier;
        NSString *_firstName;
        NSString *_lastName;
        NSData *_imageData;
    }
    
    @property(readonly, nonatomic) NSData *imageData; // @synthesize imageData=_imageData;
    @property(readonly, nonatomic) NSString *lastName; // @synthesize lastName=_lastName;
    @property(readonly, nonatomic) NSString *firstName; // @synthesize firstName=_firstName;
    @property(readonly, nonatomic) NSString *contactIdentifier; // @synthesize contactIdentifier=_contactIdentifier;
    - (void).cxx_destruct;
    - (void)encodeWithXPCDictionary:(id)arg1;
    - (id)initWithXPCDictionary:(id)arg1;
    - (unsigned long long)hash;
    - (_Bool)isEqual:(id)arg1;
    - (id)_initForSubclass;
    - (id)initWithFirstName:(id)arg1 lastName:(id)arg2 imageData:(id)arg3;
    - (id)initWithFirstName:(id)arg1 lastName:(id)arg2;
    - (id)initWithContactIdentifier:(id)arg1;
    
    @end
    
    @interface SBSAccelerometer : NSObject <BKSAccelerometerDelegate>
    {
        id <SBSAccelerometerDelegate> _delegate;
        BKSAccelerometer *_bksMirror;
    }
    
    @property(nonatomic) __weak id <SBSAccelerometerDelegate> delegate; // @synthesize delegate=_delegate;
    - (void).cxx_destruct;
    - (void)accelerometer:(id)arg1 didChangeDeviceOrientation:(int)arg2;
    - (void)accelerometer:(id)arg1 didAccelerateWithTimeStamp:(double)arg2 x:(float)arg3 y:(float)arg4 z:(float)arg5 eventType:(int)arg6;
    - (int)currentDeviceOrientation;
    @property(nonatomic) _Bool orientationEventsEnabled;
    @property(nonatomic) float zThreshold;
    @property(nonatomic) float yThreshold;
    @property(nonatomic) float xThreshold;
    @property(nonatomic) double updateInterval;
    @property(nonatomic) _Bool accelerometerEventsEnabled;
    - (void)dealloc;
    - (id)init;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly, copy) NSString *description;
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSCardItem : NSObject <NSCopying, NSSecureCoding>
    {
        _Bool _requiresPasscode;
        NSString *_identifier;
        NSString *_categoryIdentifier;
        NSData *_iconData;
        NSString *_title;
        NSString *_subtitle;
        NSString *_body;
        NSString *_bundleName;
        NSDictionary *_userInfo;
        UIImage *_thumbnail;
    }
    
    + (_Bool)supportsSecureCoding;
    @property(copy, nonatomic) UIImage *thumbnail; // @synthesize thumbnail=_thumbnail;
    @property(copy, nonatomic) NSDictionary *userInfo; // @synthesize userInfo=_userInfo;
    @property(copy, nonatomic) NSString *bundleName; // @synthesize bundleName=_bundleName;
    @property(nonatomic) _Bool requiresPasscode; // @synthesize requiresPasscode=_requiresPasscode;
    @property(copy, nonatomic) NSString *body; // @synthesize body=_body;
    @property(copy, nonatomic) NSString *subtitle; // @synthesize subtitle=_subtitle;
    @property(copy, nonatomic) NSString *title; // @synthesize title=_title;
    @property(copy, nonatomic) NSData *iconData; // @synthesize iconData=_iconData;
    @property(copy, nonatomic) NSString *categoryIdentifier; // @synthesize categoryIdentifier=_categoryIdentifier;
    @property(copy, nonatomic) NSString *identifier; // @synthesize identifier=_identifier;
    - (void).cxx_destruct;
    - (id)description;
    - (_Bool)isEqual:(id)arg1;
    - (unsigned long long)hash;
    - (id)sortDate;
    - (id)copyWithZone:(struct _NSZone *)arg1;
    - (void)encodeWithCoder:(id)arg1;
    - (id)initWithCoder:(id)arg1;
    - (id)initWithIdentifier:(id)arg1 iconData:(id)arg2 title:(id)arg3 body:(id)arg4 requiresPasscode:(_Bool)arg5 bundleName:(id)arg6 userInfo:(id)arg7;
    - (id)initWithIdentifier:(id)arg1 categoryIdentifier:(id)arg2 iconData:(id)arg3 title:(id)arg4 subtitle:(id)arg5 body:(id)arg6 requiresPasscode:(_Bool)arg7 bundleName:(id)arg8 userInfo:(id)arg9;
    
    @end
    
    @interface SBSCardItemsController : NSObject <SBSCardItemsControllerRemoteInterface>
    {
        NSString *_identifier;
        NSXPCConnection *_connection;
        _Bool _connected;
    }
    
    - (void).cxx_destruct;
    - (void)_invalidateConnection;
    - (void)_noteConnectionDropped;
    - (void)_connectToServerIfNecessary;
    - (id)_remoteInterfaceWithErrorHandler:(CDUnknownBlockType)arg1;
    - (void)getCardItemsWithHandler:(CDUnknownBlockType)arg1;
    - (void)setCardItems:(id)arg1;
    - (void)dealloc;
    - (id)initWithIdentifier:(id)arg1;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly, copy) NSString *description;
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    @interface SBSSecureAppAssertion : NSObject
    {
        SBSSecureAppAction *_actualAssertion;
        CDUnknownBlockType _errorHandler;
    }
    
    + (id)acquireSecureAppAssertionWithType:(unsigned long long)arg1 errorHandler:(CDUnknownBlockType)arg2;
    @property(copy, nonatomic, getter=_errorHandler, setter=_setErrorHandler:) CDUnknownBlockType errorHandler; // @synthesize errorHandler=_errorHandler;
    @property(retain, nonatomic) SBSSecureAppAction *actualAssertion; // @synthesize actualAssertion=_actualAssertion;
    - (void).cxx_destruct;
    - (void)_acquireAssertionWithSecureAppType:(unsigned long long)arg1;
    - (void)invalidate;
    - (void)dealloc;
    - (id)initWithType:(unsigned long long)arg1 errorHandler:(CDUnknownBlockType)arg2;
    
    @end
    
    @interface SBSAssertion : NSObject
    {
        NSString *_assertionName;
        NSString *_reason;
        unsigned int _port;
        struct _opaque_pthread_mutex_t {
            long long __sig;
            char __opaque[56];
        } _lock;
    }
    
    @property(readonly, copy, nonatomic) NSString *reason; // @synthesize reason=_reason;
    @property(readonly, copy, nonatomic) NSString *assertionName; // @synthesize assertionName=_assertionName;
    - (void).cxx_destruct;
    - (void)invalidate;
    - (void)dealloc;
    - (id)init;
    - (id)initWithAssertionName:(id)arg1 reason:(id)arg2 port:(unsigned int)arg3;
    
    @end
    
    @interface SBSStatusBarStyleOverridesAssertionManager : NSObject <SBSStatusBarStyleOverridesAssertionClient>
    {
        NSMapTable *_assertionsByIdentifier;
        NSXPCConnection *_sbXPCConnection;
        NSObject<OS_dispatch_queue> *_internalQueue;
        SBSStatusBarStyleOverridesCoordinator *_internalQueue_styleOverrideCoordinator;
        NSObject<OS_dispatch_queue> *_coordinatorCalloutQueue;
    }
    
    + (id)sharedInstance;
    @property(retain, nonatomic) NSObject<OS_dispatch_queue> *coordinatorCalloutQueue; // @synthesize coordinatorCalloutQueue=_coordinatorCalloutQueue;
    @property(nonatomic) __weak SBSStatusBarStyleOverridesCoordinator *internalQueue_styleOverrideCoordinator; // @synthesize internalQueue_styleOverrideCoordinator=_internalQueue_styleOverrideCoordinator;
    @property(retain, nonatomic) NSObject<OS_dispatch_queue> *internalQueue; // @synthesize internalQueue=_internalQueue;
    @property(retain, nonatomic) NSXPCConnection *sbXPCConnection; // @synthesize sbXPCConnection=_sbXPCConnection;
    @property(retain, nonatomic) NSMapTable *assertionsByIdentifier; // @synthesize assertionsByIdentifier=_assertionsByIdentifier;
    - (void).cxx_destruct;
    - (void)_reactivateAssertions;
    - (void)_tearDownXPCConnection;
    - (void)unregisterCoordinator;
    - (void)_registerStyleOverrideCoordinatorAfterInterruption;
    - (void)_internalQueue_updateRegistrationForCoordinator:(id)arg1 reply:(CDUnknownBlockType)arg2;
    - (void)updateRegistrationForCoordinator:(id)arg1 reply:(CDUnknownBlockType)arg2;
    - (void)_internalQueue_removeStatusBarStyleOverridesAssertionWithIdentifier:(id)arg1 invalidate:(_Bool)arg2;
    - (void)statusBarTappedWithContext:(id)arg1 reply:(CDUnknownBlockType)arg2;
    - (void)invalidateStatusBarStyleOverridesAssertionsWithIdentifiers:(id)arg1;
    - (void)updateStatusStringForAssertion:(id)arg1;
    - (void)removeStatusBarStyleOverridesAssertion:(id)arg1;
    - (void)addStatusBarStyleOverridesAssertion:(id)arg1 withHandler:(CDUnknownBlockType)arg2 onQueue:(id)arg3;
    - (void)_internalQueue_setupXPCConnectionIfNecessary;
    - (id)init;
    
    // Remaining properties
    @property(readonly, copy) NSString *debugDescription;
    @property(readonly, copy) NSString *description;
    @property(readonly) unsigned long long hash;
    @property(readonly) Class superclass;
    
    @end
    
    
    
    _SBDisplayIdentifierForPID
    _SBDisplayIdentifiersForPID
    _SBDisplayLayoutTransitionReasonPrefix
    _SBDisplayLayoutTransitionReasonHomeScreen
    _SBDisplayLayoutTransitionReasonSpotlight
    _SBDisplayLayoutTransitionReasonSideAppSwitcher
    _SBDisplayLayoutTransitionReasonSiri
    _SBDisplayLayoutTransitionReasonSystemGesture
    _SBDisplayLayoutTransitionReasonAppSwitcher
    _SBDisplayLayoutTransitionReasonAccessibility
    _SBDisplayLayoutTransitionReasonNotificationCenter
    _SBDisplayLayoutTransitionReasonNotification
    _SBDisplayLayoutTransitionReasonControlCenter
    _SBDisplayLayoutTransitionReasonCommandTab
    _SBDisplayLayoutTransitionReasonCarPlay
    _SBDisplayLayoutTransitionReasonLockScreen
    _SBDisplayLayoutTransitionReasonExternalRequest
    _SBDisplayLayoutTransitionReasonBreadcrumb
    _SBDisplayLayoutTransitionReasonWidget
    _SBDisplayLayoutTransitionReasonFloatingDock
    _SBDisplayLayoutTransitionReasonFloatingDockRecents
    _SBDisplayLayoutTransitionReasonFloatingApplication
    _SBDisplayLayoutBacklightTransitionReasonPrefix
    _SBDisplayLayoutBacklightTransitionReasonProgrammatic
    _SBDisplayLayoutBacklightTransitionReasonProx
    _SBDisplayLayoutBacklightTransitionReasonPlugin
    _SBDisplayLayoutBacklightTransitionReasonPocketState
    _SBDisplayLayoutBacklightTransitionReasonHomeButton
    _SBDisplayLayoutBacklightTransitionReasonLockButton
    _SBDisplayLayoutBacklightTransitionReasonLogout
    _SBDisplayLayoutBacklightTransitionReasonLiftToWake
    _SBDisplayLayoutBacklightTransitionReasonLanguageChange
    _SBDisplayLayoutBacklightTransitionReasonVolumeButton
    _SBDisplayLayoutBacklightTransitionReasonOtherButton
    _SBDisplayLayoutBacklightTransitionReasonKeyboard
    _SBDisplayLayoutBacklightTransitionReasonSmartCover
    _SBDisplayLayoutBacklightTransitionReasonSiri
    _SBDisplayLayoutBacklightTransitionReasonSpringBoardRequest
    _SBDisplayLayoutBacklightTransitionReasonIdleTimer
    _SBDisplayLayoutBacklightTransitionReasonTouch
    _SBDisplayLayoutBacklightTransitionReasonCar
    _SBDisplayLayoutBacklightTransitionReasonChargingAccessoryChange
    _SBDisplayLayoutBacklightTransitionReasonCoverSheet
    _SBDisplayLayoutBacklightTransitionReasonNotification
    _SBDisplayLayoutBacklightTransitionReasonNotificationCenter
    _SBDisplayLayoutBacklightTransitionReasonBoot
    _SBDisplayLayoutBacklightTransitionReasonExternalRequest
    _SBDisplayLayoutBacklightTransitionReasonExternalAppRequest
    _SBDisplayLayoutBacklightTransitionReasonACPowerChange
    _SBDisplayLayoutBacklightTransitionReasonAlert
    _SBDisplayLayoutBacklightTransitionReasonRestoring
    _SBDisplayLayoutBacklightTransitionReasonUnknownUserEvent
    _SBDismissSheetView
    _SBDidDismissMiniAlert
    _SBDimScreen
    _SBDataReset
    _SBDeactivateAssistant
    _SBDeactivateReachability
    _SBApplicationDisplayIdentifiers
    _SBApplicationRequestedDeviceUnlock
    _SBApplicationStateBeginGeneratingChangeNotifications
    _SBApplicationStateEndGeneratingChangeNotifications
    _SBApplicationStateGetDescription
    _SBApplicationStateKey
    _SBApplicationStateDisplayIDKey
    _SBApplicationStateProcessIDKey
    _SBApplicationStateRunningReasonsKey
    _SBApplicationStateRunningReasonAssertionIdentifierKey
    _SBApplicationStateRunningReasonAssertionReasonKey
    _SBApplicationNotificationStateChanged
    _SBApplicationMostElevatedStateForProcessIDKey
    _SBAppSwitcherServiceRegister
    _SBAppSetMinimumBackgroundFetchInterval
    _SBAddWebClipToHomeScreen
    _SBAddWallpaperAnimationSuspensionAssertion
    _SBAddDownloadingIconForDisplayIdentifier
    _SBAddAlertItemsSuppressionAssertion
    _SBAddBiometricAssertion
    _SBActivateAssistantWithContext
    _SBAutoLockTimerFiredNotification
    _SBAutoLockTimerCategoryKey
    _SBAuthLoggingSubsystem
    _SBFrontmostApplicationDisplayIdentifier
    _SBFlashColor
    _SBBundlePathForDisplayIdentifier
    _SBBiometricLoggingSubsystem
    _SBSuspend
    _SBSuspendFrontmostApp
    _SBSetSuspensionAnimationDelay
    _SBSetSystemVolumeHUDEnabled
    _SBSetShowsProgress
    _SBSetShowsOverridesForRecording
    _SBSetApplicationBadgeNumber
    _SBSetApplicationBadgeString
    _SBSetApplicationShowsProgress
    _SBSetApplicationUsesBackgroundNetwork
    _SBSetApplicationNetworkFlags
    _SBSetAppIsConnectedToEA
    _SBSetAllApplicationsShowProgress
    _SBSetAllApplicationsShowSyncIndicator
    _SBSetAlertSuppressionContexts
    _SBSetAlertSuppressionContextsBySectionIdentifier
    _SBSetAssistantRecognitionStrings
    _SBSetWantsVolumeButtonEvents
    _SBSetWantsLockButtonEvents
    _SBSetWallpaperImageForLocations
    _SBSetWallpaperImageSurfaceForLocations
    _SBSetWallpaperAsset
    _SBSetWallpaperVariant
    _SBSetNowPlayingInformation
    _SBSetDisableNowPlayingHUD
    _SBSetVoiceControlEnabled
    _SBSetVoiceRecognitionAudioInputPaths
    _SBSetInterceptsMenuButton
    _SBSetIconState
    _SBSetMediaVolume
    _SBSetProceduralWallpaper
    _SBSetReachabilityEnabled
    _SBSetTypingActive
    _SBShutDown
    _SBShowTTYPromptForNumber
    _SBShowNetworkPromptsIfNecessary
    _SBScrollToIconWithDisplayIdentifier
    _SBScreenTimeTrackingChangedNotification
    _SBScreenTimeCategoryKey
    _SBSCopyDisplayIdentifierForProcessID
    _SBSCopyDisplayIdentifiersForProcessID
    _SBSCopyDisplayIdentifiersForExternalAccessoryProtocol
    _SBSCopyDisplayIdentifiers
    _SBSCopyBundleInfoValueForKeyAndProcessID
    _SBSCopyBundlePathForDisplayIdentifier
    _SBSCopyApplicationDisplayIdentifiers
    _SBSCopyFrontmostApplicationDisplayIdentifier
    _SBSCopyIconImagePNGDataForDisplayIdentifier
    _SBSCopyIconImagePathForDisplayIdentifier
    _SBSCopyInfoForApplicationWithProcessID
    _SBSCopyExecutablePathForDisplayIdentifier
    _SBSCopyExternalAccessoryProtocolsForDisplayIdentifier
    _SBSCopyLocalizedApplicationNameForDisplayIdentifier
    _SBSCopyNowPlayingAppBundleIdentifier
    _SBSConvertOpenApplicationSBSKeysToFBSKeysIfNecessary
    _SBSCreateClientEntitlementEnforcementPort
    _SBSCreateCompassCalibrationHUDAssertion
    _SBSCleanupClientEntitlementEnforcementPort
    _SBSSuspendFrontmostApplication
    _SBSServerPortHelper
    _SBSSetNowRecordingPid
    _SBSSetNowPlayingHUDDisabled
    _SBSSetInterceptsMenuButton
    _SBSSetInterceptsMenuButtonForever
    _SBSSetVoiceRecognitionAudioInputPaths
    _SBSSetAssistantRecognitionStrings
    _SBSSetAllApplicationsShowProgress
    _SBSSetAlertSuppressionContexts
    _SBSSetAlertSuppressionContextsBySectionIdentifier
    _SBSSetSideSwitchPreference
    _SBSSetStatusBarShowsActivity
    _SBSSetStatusBarShowsActivityForApplication
    _SBSSetStatusBarShowsSyncActivity
    _SBSSetStatusBarShowsOverridesForRecording
    _SBSSetTypingActive
    _SBSSetReachabilityEnabled
    _SBSSetRequiredContextIdsForMedusaDragAndDropForSpotlightOnly
    _SBSSecureAppAssertionErrorDomain
    _SBSSpringBoardServerPort
    _SBSSpringBoardBlockableServerPort
    _SBSSpringBoardBackgroundServerPort
    _SBSSpringBoardIconGenerationServerPort
    _SBSShutDown
    _SBSStatusBarStyleOverridesAssertionClientInterface
    _SBSStatusBarStyleOverridesCoordinatorErrorDomain
    _SBSStatusBarStyleOverridesCoordinatorErrorStyleOverrideKey
    _SBSStatusBarStyleOverridesCoordinatorErrorFailedEntitlementCheckDescription
    _SBSStatusBarStyleOverridesCoordinatorErrorFailedExistingCoordinatorDescription
    _SBSStatusBarStyleOverridesCoordinatorErrorProcessAlreadyRegisteredCoordinatorDescription
    _SBSSystemServiceIdentifier
    _SBSInterruptKeybagRefetch
    _SBSIsSystemApplication
    _SBSIsSystemApplicationPID
    _SBSIsReachabilityEnabled
    _SBSIsMediaHUDAlertShowing
    _SBSApplicationLaunchingErrorString
    _SBSApplicationLaunchOptionLaunchSuspendedKey
    _SBSApplicationLaunchOptionLaunchInClassicModeKey
    _SBSApplicationLaunchOptionUnlockDeviceKey
    _SBSApplicationLaunchOptionUpdateAppLinkOpenStrategyKey
    _SBSApplicationLaunchOptionPromptUnlockKey
    _SBSApplicationLaunchOptionRevealIconKey
    _SBSApplicationLaunchOptionAppLinkOpenStrategyChangedKey
    _SBSApplicationLaunchOptionBrowserReuseTabKey
    _SBSApplicationLaunchOptionBrowserActivationWithNoURLKey
    _SBSApplicationLaunchOptionBreadcrumbBundleIdKey
    _SBSApplicationLaunchFromURLOptionUnlockDeviceKey
    _SBSApplicationCanBeLaunched
    _SBSApplicationShortcutSystemIconTypeForString
    _SBSApplicationShortcutServiceFullAccessEntitlement
    _SBSApplicationShortcutServiceCustomImageEntitlement
    _SBSApplicationShortcutItemActivationModeForString
    _SBSApplicationShortcutCustomImageIconImageDataKey
    _SBSApplicationShortcutCustomImageIconIsTemplateKey
    _SBSApplicationShortcutCustomImageIconDataTypeKey
    _SBSApplicationServiceIdentifier
    _SBSApplicationRemovabilityDescription
    _SBSApplicationTerminationAssertionGetTypeID
    _SBSApplicationTerminationAssertionGetDisplayIdentifier
    _SBSApplicationTerminationAssertionGetIsValid
    _SBSApplicationTerminationAssertionCreate
    _SBSApplicationTerminationAssertionCreateWithError
    _SBSApplicationTerminationAssertionInvalidate
    _SBSApplicationTerminationAssertionErrorString
    _SBSAppSwitcherServiceRegistrationGetTypeID
    _SBSAppSwitcherServiceRegistrationGetBundleID
    _SBSAppSwitcherServiceRegistrationGetIsValid
    _SBSAppSwitcherServiceRegistrationGetViewControllerClassName
    _SBSAppSwitcherServiceRegister
    _SBSAppSwitcherQuitAppNotification
    _SBSAppLaunchOriginSpotlight
    _SBSAppDragPrivateTypeIdentifier
    _SBSActivateAssistant
    _SBSActivateAssistantWithContext
    _SBSAcquireBiometricUnlockSuppressionAssertion
    _SBSAreMediaControlsShowing
    _SBSAlertItemsSuppressionAssertionGetTypeID
    _SBSAlertItemsSuppressionAssertionCreate
    _SBSAssistantActivationContextBundleIDKey
    _SBSLaunchApplicationWithIdentifier
    _SBSLaunchApplicationWithIdentifierAndURLAndLaunchOptions
    _SBSLaunchApplicationWithIdentifierAndURL
    _SBSLaunchApplicationWithIdentifierAndLaunchOptions
    _SBSLaunchApplicationForDebugging
    _SBSLaunchApplicationForDebuggingWithOptions
    _SBSLockDevice
    _SBSLocalNotificationWhitelistedUnarchiveFromData
    _SBSOpenSensitiveURL
    _SBSOpenSensitiveURLAndUnlock
    _SBSOpenDataActivationURL
    _SBSOpenURLOptionKeyUseLiveContentDuringTransition
    _SBSOpenApplicationLaunchOriginShortcutItem
    _SBSOpenApplicationLayoutRolePrimary
    _SBSOpenApplicationLayoutRoleSideLarge
    _SBSOpenApplicationLayoutRoleSideNarrow
    _SBSOpenApplicationOptionKeyAdditionalApplications
    _SBSOpenApplicationOptionKeyLayoutRole
    _SBSOpenApplicationOptionKeyLaunchEnvironment
    _SBSOpenApplicationEnvironmentSecureOnLockScreen
    _SBSOverrideDisplayedDate
    _SBSProcessIDForDisplayIdentifier
    _SBSProcessAssertionGetNameForReason
    _SBSProcessAssertionGetTypeID
    _SBSProcessAssertionCreateForPID
    _SBSProcessAssertionCopyIdentifier
    _SBSProcessAssertionSetFlags
    _SBSProcessAssertionSetInvalidationCallBack
    _SBSProcessAssertionIsValid
    _SBSPresentPowerDownUI
    _SBSWatchdogAssertionGetTypeID
    _SBSWatchdogAssertionGetRenewalInterval
    _SBSWatchdogAssertionCreateForPID
    _SBSWatchdogAssertionCancel
    _SBSWatchdogAssertionRenew
    _SBSWallpaperServiceIdentifier
    _SBSWallpaperFetchServiceEntitlement
    _SBSWallpaperModificationServiceEntitlement
    _SBSGetNowRecordingPid
    _SBSGetScreenLockStatus
    _SBSGetSideSwitchPreference
    _SBSGetApplicationState
    _SBSGetMostElevatedApplicationStateForProcessID
    _SBSUndimScreen
    _SBSUserNotificationSettingsWhitelistedUnarchiveFromData
    _SBSUIAppStarkTriggerUnhandledBackButtonAction
    _SBSUIAppSuspend
    _SBSUIAppSetMinimimumBackgroundFetchInterval
    _SBSUIAppSetWantsVolumeButtonEvents
    _SBSUIAppSetWantsLockButtonEvents
    _SBSUIAppDeactivateReachability
    _SBSUIActivateRemoteAlert
    _SBSUIActivateRemoteAlertWithLifecycleNotifications
    _SBSUIIsNamedRemoteAlertCurrentlyActive
    _SBSUIRemoteAlertOptionStark
    _SBSUIRemoteAlertOptionStatusBarStyle
    _SBSUIRemoteAlertOptionSuppressSiri
    _SBSUIRemoteAlertOptionSwipeDismissalStyle
    _SBSUIRemoteAlertOptionViewControllerClass
    _SBSUIRemoteAlertOptionImpersonatesApplicationBundleID
    _SBSUIRemoteAlertOptionInitialBackgroundStyle
    _SBSUIRemoteAlertOptionDismissWithHomeButton
    _SBSUIRemoteAlertOptionDismissalAnimationStyle
    _SBSUIRemoteAlertOptionDisableFadeInAnimation
    _SBSUIRemoteAlertOptionDisableAnimatedTransition
    _SBSUIRemoteAlertOptionCarDisplay
    _SBSUIRemoteAlertOptionCustomActivationReason
    _SBSUIRemoteAlertOptionWantsWallpaperTunnel
    _SBSUIRemoteAlertOptionLaunchingInterfaceOrientation
    _SBSUIRemoteAlertOptionLaunchingObscured
    _SBSUIRemoteAlertOptionHasTranslucentBackground
    _SBSUIRemoteAlertOptionUserInfo
    _SBSUIRemoteAlertOptionAllowCFUserNotificationsOnTop
    _SBSUIRemoteAlertOptionActivateFromStatusBarTap
    _SBSUIRemoteAlertOptionActivateFromAppSwitcher
    _SBSUIRemoteAlertOptionActivateForAssistant
    _SBSUIRemoteAlertOptionActivityContinuationIdentifier
    _SBSUIRemoteAlertOptionReturnFromLockScreen
    _SBSUIRemoteAlertOptionEndingCallForUILock
    _SBSUIRemoteAlertOptionPerformDeferredUIUnlock
    _SBSUINullNotificationName
    _SBSRequestPasscodeUnlockUI
    _SBSRequestPasscodeUnlockAlertUI
    _SBSRequiredContextIdsForMedusaDragAndDropForSpotlightOnly
    _SBSRemoteNotificationTopicsWhitelistedUnarchiveFromData
    _SBSRemoteNotificationWhitelistedUnarchiveFromData
    _SBSRemoteAlertHandleInvalidationErrorDescription
    _SBSRemoteAlertHandleInvalidationErrorDomain
    _SBSRemoteAlertServiceIdentifier
    _SBSRemoteAlertEntitlement
    _SBSRemoteCarAlertEntitlement
    _SBSRegisterDisplayIdentifiersChangedBlock
    _SBSBundleIdentifierToPushSettingsUnarchiveFromData
    _SBSBacklightChangeSourceForDisplayLayoutTransitionReason
    _SBSBiometricsServiceUnlockSuppressionAssertionEntitlement
    _SBSDeactivateAssistant
    _SBSDeactivateAssistantBySlidingOverTopAppAnimation
    _SBSDisplayLayoutRoleIsDefined
    _SBSDisplayLayoutRoleDescription
    _SBSDisplayLayoutBacklightTransitionReasonForBacklightChangeSource
    _SBSDisplayLayoutElementHomeScreenIdentifier
    _SBSDisplayLayoutElementAppSwitcherIdentifier
    _SBSDisplayLayoutElementSideSwitcherIdentifier
    _SBSDisplayLayoutElementSpotlightIdentifier
    _SBSDisplayLayoutElementNowPlayingIdentifier
    _SBSDisplayLayoutElementCarPlayOEMIdentifier
    _SBSDisplayLayoutElementLoginIdentifier
    _SBSDisplayLayoutElementLockScreenNavigationIdentifier
    _SBSDisplayLayoutElementPasscodeIdentifier
    _SBSDisplayLayoutElementTodayViewIdentifier
    _SBSDisplayLayoutElementFloatingDockIdentifier
    _SBSTagTouchForTypingMenu
    _SBSThermalWarningAssertionCreateForBundleID
    _SBSEventObserverInitialize
    _SBSEventObserverStartObservingEvent
    _SBSEventObserverStateDimmedForLock
    _SBSEventObserverStateContinuityUIIsVisible
    _SBSEventObserverStopObservingEvent
    _SBSEventObserverStopObservingAllEvents
    _SBSEventObserverGetValueForState
    _SBSEventObserverEventDimmed
    _SBSEventObserverEventUndimmed
    _SBSEventObserverEventUnlocked
    _SBSEventObserverEventSignificantTimeChange
    _SBSEventObserverEventRemoteAlertActivated
    _SBSEventObserverEventRemoteAlertDeactivated
    _SBSEventObserverEventContinuityUIBecameVisible
    _SBSEventObserverEventContinuityUIWasObscured
    _SBStatusBarStyleOverridesAssertionServerInterface
    _SBStarkNowPlayingIdentifier
    _SBStarkOEMIdentifier
    _SBSHardwareButtonServiceHomeHardwareButtonHintSuppressionEntitlement
    _SBSHardwareButtonServiceEventConsumerEntitlement
    _SBInterruptKeybagRefetch
    _SBIsNamedRemoteAlertCurrentlyActive
    _SBIsReachabilityEnabled
    _SBIsSystemApplication
    _SBIsSystemApplicationPID
    _SBCarTriggerUnhandledBackButtonAction
    _SBCardItemsControllerClientInterface
    _SBCardItemsControllerServerInterface
    _SBClearWallpaperAsset
    _SBGetSystemVolumeHUDEnabled
    _SBGetScreenLockStatus
    _SBGetScheduledPowerEvents
    _SBGetShowingMediaControls
    _SBGetShowingMediaHUDAlert
    _SBGetInterfaceOrientation
    _SBGetIconState
    _SBGetIconPNGData
    _SBGetIsAlive
    _SBGetActiveApplicationStatusBarOrientation
    _SBGetApplicationUsesBackgroundNetwork
    _SBGetApplicationNetworkFlags
    _SBGetRingerSwitchState
    _SBGetRecentSleepsWakes
    _SBGetCurrentBacklightFactor
    _SBGetCurrentHomeScreenImage
    _SBGetCurrentLockScreenImage
    _SBGetCanAddIcons
    _SBGetBatteryAwakeTime
    _SBGetBatteryUsageTimesInSeconds
    _SBGetNowPlayingAppBundleIdentifier
    _SBGetExternalAccessoryProtocolsForDisplayIdentifier
    _SBGetDisplayIdentifiersForExternalAccessoryProtocols
    _SBGetDisplayIdentifiers
    _SBGetMediaVolume
    _SBGetHomeScreenIconMetrics
    _SBGetPendingIconState
    _SBGetFlattenedIconState
    _SBGetWallpaperPreview
    _SBGetWallpaperOptions
    _SBGetWallpaperLegibilitySettings
    _SBPresentPowerDownUI
    _SBPresentSheetView
    _SBPresentRemoteAlert
    _SBProgrammaticSwitchAppGestureMoveToLeft
    _SBProgrammaticSwitchAppGestureMoveToRight
    _SBReboot
    _SBRemoveWebClipFromHomeScreen
    _SBReloadIconForIdentifier
    _SBRegisterRemoteView
    _SBReturnToPreviousAppAtSpecifiedTime
    _SBEnableLockScreenBundle
    _SBWillDisplayMiniAlert
    _SBWillDismissMiniAlert
    _SBLockDevice
    _SBLockDeviceAndFeatures
    _SBLocalizedApplicationNameForDisplayIdentifier
    _SBLogCommon
    _SBLogCoverSheet
    _SBLogDashBoard
    _SBLogDashBoardBackdrop
    _SBLogDashBoardIrisRecognizer
    _SBLogDashBoardQuickNoteRecognizer
    _SBLogDashBoardScrollGestures
    _SBLogDashBoardHostedAppViewController
    _SBLogDashBoardCallToActionLabel
    _SBLogDoNotDisturbWhileDriving
    _SBLogDockRecents
    _SBLogIdleTimer
    _SBLogIconDragging
    _SBLogWallet
    _SBLogLiquidDetection
    _SBLogLockScreenNowPlaying
    _SBLogLockScreenBiometricCoordinator
    _SBLogLockScreenBiometricWalletPreArm
    _SBLogLockScreenMesaWalletPreArm
    _SBLogLockScreenMesaUnlockBehaviors
    _SBLogLockScreenMesaHomeButtonPasscodeRecognizer
    _SBLogLockScreenMesaHomeButtonSuppressAfterUnlockRecognizer
    _SBLogAutoLaunching
    _SBLogAuthenticationController
    _SBLogAuthenticationRequests
    _SBLogAuthenticationKeybag
    _SBLogAuthenticationAssertions
    _SBLogAuthenticationModel
    _SBLogAnalytics
    _SBLogMedusaDropDestination
    _SBLogBiometricResource
    _SBLoggingSubsystem
    _SBUnregisterRemoteView
    _SBUserNotificationTextAutocapitalizationType
    _SBUserNotificationTextAutocorrectionType
    _SBUserNotificationHideButtonsInAwayView
    _SBUserNotificationDisplayActionButtonOnLockScreen
    _SBUserNotificationDismissOnLock
    _SBUserNotificationDismissesOverlaysInLockScreen
    _SBUserNotificationDisableIdleSleepWhileVisible
    _SBUserNotificationDontDismissOnUnlock
    _SBUserNotificationDefaultButtonTag
    _SBUserNotificationDefaultButtonPresentationStyleKey
    _SBUserNotificationDefaultResponseLaunchBundleID
    _SBUserNotificationDefaultResponseLaunchURL
    _SBUserNotificationAllowMenuButtonDismissal
    _SBUserNotificationAllowInSetupKey
    _SBUserNotificationAllowInStarkKey
    _SBUserNotificationAllowInLoginWindow
    _SBUserNotificationAllowInCarKey
    _SBUserNotificationAllowedApplicationsKey
    _SBUserNotificationAllowLockscreenDismissalKey
    _SBUserNotificationAlertMessageDelimiterKey
    _SBUserNotificationAlternateButtonPresentationStyleKey
    _SBUserNotificationAttachmentImagePath
    _SBUserNotificationOneButtonPerLine
    _SBUserNotificationOtherButtonPresentationStyleKey
    _SBUserNotificationGroupsTextFields
    _SBUserNotificationSoundAlertTypeKey
    _SBUserNotificationSoundAlertTopicKey
    _SBUserNotificationSoundRepeatDurationKey
    _SBUserNotificationSoundVibrationPatternKey
    _SBUserNotificationSystemSoundIDKey
    _SBUserNotificationSystemSoundBehaviorKey
    _SBUserNotificationButtonTagForUnlockActionKey
    _SBUserNotificationBehavesSuperModally
    _SBUserNotificationPendInSetupIfNotAllowedKey
    _SBUserNotificationPendWhileKeyBagLockedKey
    _SBUserNotificationForcesModalAlertAppearance
    _SBUserNotificationUsesUndoStyle
    _SBUserNotificationRemoteViewControllerClassNameKey
    _SBUserNotificationRemoteServiceBundleIdentifierKey
    _SBUserNotificationExtensionIdentifierKey
    _SBUserNotificationExtensionItemsKey
    _SBUserNotificationLockScreenAlertHeaderKey
    _SBUserNotificationLockScreenAlertMessageKey
    _SBUserNotificationLockScreenAlertMessageDelimiterKey
    _SBUserNotificationIconImagePath
    _SBHasPendingOrVisibleAlerts
    _SBOverrideDisplayedDate
    _SBTagTouchForTypingMenu
    __SBFScreenTimeRegisterForExternalChangeNotification
    __SBFScreenTimePostExternalChangeNotification
    __SBFScreenTimeNameForCategory
    __SBSRequestPasscodeUnlockUI
    __SBSRestartLock
    __SBSRestartUnlock
    __SBSRestartGetInfoForIdentifier
    __SBSRestartSetInfoForIdentifier
    __SBSRestartScheduleBlockForIdentifier
    __SBSWhitelistedUnarchiveFromDataWithAllowedClasses
    __SBSAutolockTimerRegisterForExternalChangeNotification
    __SBSAutolockTimerPostExternalChangeNotification
    __SBApplicationStateGetMonitor
    ___sb__runningInSpringBoard
    ___sb__mainScreenReferenceBounds
    ___SBSEventObserverGetDarwinNotificationFromEvent
    _ADMonotonicTimeGetCurrent
    _ADClientAddValueForScalarKey
    _ADPushTimeIntervalForDistributionKeySinceStartTime
    _secureAppTypeName
    _NSStringFromAnalyticsQueryName
    _NSStringFromAnalyticsEventType
    _kSBCarPlayDefaultRowCount
    _kSBCarPlayDefaultColumnCount
    _kSBCarPlayDisplaysOEMIcon
    _kSBCarPlayIconOrderKey
    _kSBCarPlayHiddenIconKey
    _kSBCarPlayScreenBoundsKey
    _kSBCarPlayMaxRowsKey
    _kSBCarPlayMaxColumnsKey
    _kSBCarPlayOEMIconLabel
    _kSBSApplicationShortcutServiceFetchResultStaticApplicationShortcutItemsKey
    _kSBSApplicationShortcutServiceFetchResultDynamicApplicationShortcutItemsKey
    _kSBSApplicationShortcutServiceClientMessageKeyItemTypes
    _kSBSApplicationShortcutServiceClientMessageKeyDynamicApplicationShortcutItems
    _kSBSApplicationShortcutServiceServerMessageKeyResult
    _kSBSApplicationShortcutSystemIconTypeKey
    _kSBSApplicationShortcutItemTypeSendBetaFeedback
    _kSBSApplicationShortcutItemTypeSendBetaFeedbackUserInfoItemIDKey
    _kSBSApplicationShortcutTemplateIconNameKey
    _kSBSApplicationShortcutContactIconIdentifierKey
    _kSBSApplicationShortcutContactIconImageDataKey
    _kSBSApplicationShortcutContactIconFirstNameKey
    _kSBSApplicationShortcutContactIconLastNameKey
    _kSBSApplicationServiceMessageKeyBundleIdentifier
    _kSBSApplicationBiometricsServiceMessageKeyCredentialSet
    _kSBSApplicationCarPlayServiceMessageKeyIconState
    _kSBSApplicationCarPlayServiceClientMessageKeyVehicleIdentifier
    _kSBSApplicationCarPlayServiceClientMessageKeyHiddenIcons
    _kSBSApplicationCarPlayServiceServerMessageKeyDisplayName
    _kSBSApplicationCarPlayServiceServerMessageKeyIconImage
    _kSBSApplicationCarPlayServiceServerMessageKeyIconImageScale
    _kSBSApplicationHarmonyServiceClientMessageKeyDisplayId
    _kSBSApplicationHarmonyServiceServerMessageKeyWhitePointAdaptivityStyle
    _kSBSAlertNotificationCenterName
    _kSBSAlertNotificationType
    _kSBSAlertNotificationSender
    _kSBSAlertNotificationDate
    _kSBSAlertPresentedNotificationName
    _kSBSAnalyticsFolderStatsNumberOfFoldersKey
    _kSBSAnalyticsFolderStatsNumberOfFoldersInDockKey
    _kSBSAnalyticsFolderStatsNumberOfPagesKey
    _kSBSAnalyticsFolderStatsNumberOfItemsInDockKey
    _kSBSAnalyticsFluidGestureFinalActionKey
    _kSBSAnalyticsFluidGestureTypeKey
    _kSBSAnalyticsFloatingApplicationPinGesturePinActionTypeKey
    _kSBSAnalyticsFloatingApplicationPinGestureDidSwipeDownKey
    _kSBSAnalyticsFloatingApplicationMoveGestureInitialConfigurationKey
    _kSBSAnalyticsFloatingApplicationMoveGestureResultConfigurationKey
    _kSBSAnalyticsDockSuggestionsEnabledKey
    _kSBSAnalyticsDockSuggestionTypeKey
    _kSBSAnalyticsDockSuggestionIndexKey
    _kSBSAnalyticsDockSwipeGestureStateKey
    _kSBSAnalyticsDisplayLayoutElementsKey
    _kSBSAnalyticsDisplayLayoutElementIdentifierKey
    _kSBSAnalyticsDisplayLayoutElementLevelKey
    _kSBSAnalyticsDisplayLayoutElementUIApplicationKey
    _kSBSAnalyticsDisplayLayoutElementBundleIdKey
    _kSBSAnalyticsDeleteIconOptionsKey
    _kSBSAnalyticsDeleteIconLocationKey
    _kSBSAnalyticsDeleteIconSelectedOptionKey
    _kSBSAnalyticsTimestampKey
    _kSBSAnalyticsLayoutStateSpaceConfigurationKey
    _kSBSAnalyticsLayoutStateFloatingConfigurationKey
    _kSBSAnalyticsLayoutStateUnlockedEnvironmentKey
    _kSBSAnalyticsLayoutStateInterfaceOrientationKey
    _kSBSAnalyticsLayoutStateElementInterfaceOrientationKey
    _kSBSAnalyticsLayoutStateElementIdentifiersKey
    _kSBSAnalyticsLayoutStateTransitionSourceKey
    _kSBSAnalyticsLeftBreadcrumbTypeKey
    _kSBSAnalyticsReachabilityCancelGestureTypeKey
    _kSBSAnalyticsRightBreadcrumbTypeKey
    _kSBSAnalyticsIconIsFolderKey
    _kSBSAnalyticsIconIndexKey
    _kSBSAnalyticsIconLocationKey
    _kSBSAnalyticsIconDragSessionIdentifierKey
    _kSBSAnalyticsIconDragSessionItemCountKey
    _kSBSAnalyticsIconDragSessionDroppedToMedusaDropActionKey
    _kSBSAnalyticsIconDragSessionDroppedToMedusaDragStartLocationKey
    _kSBSAnalyticsSystemGestureTypeKey
    _kSBSAnalyticsSystemGestureStateKey
    _kSBSAnalyticsSwitcherTypeKey
    _kSBSAnalyticsSwitcherIndexKey
    _kSBSAnalyticsSwipeUpXCoordKey
    _kSBSAnalyticsSwipeUpYCoordKey
    _kSBSAnalyticsSwipeUpOrientationKey
    _kSBSAnalyticsSwipeUpTimestampDeltaKey
    _kSBSAnalyticsSwipeUpFinalActionKey
    _kSBSAnalyticsSwipeUpLiftOffVelocityXKey
    _kSBSAnalyticsSwipeUpLiftOffVelocityYKey
    _kSBSAnalyticsSwipeUpLiftOffVelocityAngleKey
    _kSBSAnalyticsSwipeUpPeakVelocityKey
    _kSBSAnalyticsSideApplicationMoveGestureInitialConfigurationKey
    _kSBSAnalyticsSideApplicationMoveGestureResultConfigurationKey
    _kSBSAnalyticsBreadcrumbTappedKey
    _kSBSAnalyticsPIPVideoDidActivateKey
    _kSBSAnalyticsEventTypeSpringloadedLocationKey
    _kSBSStatusBarTapContextStyleOverrideKey
    _kSBSStatusBarStyleOverridesAssertionOverridesKey
    _kSBSStatusBarStyleOverridesAssertionPIDKey
    _kSBSStatusBarStyleOverridesAssertionExclusiveKey
    _kSBSStatusBarStyleOverridesAssertionShowsWhenForegroundKey
    _kSBSStatusBarStyleOverridesAssertionStatusStringKey
    _kSBSStatusBarStyleOverridesAssertionUniqueIdentifierKey
    _kSBSSystemBiometricsServiceMessageKeyCredentialSet
    _kSBSSystemHardwareButtonServiceClientMessageKeyAssertionType
    _kSBSSystemHardwareButtonServiceClientMessageKeyAssertionReason
    _kSBSSystemHardwareButtonServiceServerMessageKeyAction
    _kSBSRemoteAlertServiceMessageKeyHandleToken
    _kSBSRemoteAlertServiceClientMessageKeyDefinition
    _kSBSRemoteAlertServiceClientMessageKeyConfigurationContext
    _kSBSRemoteAlertServiceClientMessageKeyCreateIfNone
    _kSBSRemoteAlertServiceClientMessageKeyRemoteAlertToken
    _kSBSRemoteAlertServiceClientMessageKeyActivationContext
    _kSBSRemoteAlertServiceServerMessageKeyHandleInfos
    _kSBSRemoteAlertServiceServerMessageKeyActive
    _kSBSRemoteAlertServiceServerMessageKeyInvalidationReason
    _kSBSRemoteAlertServiceServerMessageKeyInvalidationUnderlyingError
    _kSBSLockStateNotifyKey
    _kSBSCardItemIdentifierKey
    _kSBSCardItemIconDataKey
    _kSBSCardItemCategoryIdentifierKey
    _kSBSCardItemTitleKey
    _kSBSCardItemSubtitleKey
    _kSBSCardItemBodyKey
    _kSBSCardItemBundleName
    _kSBSCardItemRequiresPasscodeKey
    _kSBSCardItemUserInfoKey
    _kSBSHardwareButtonServiceMessageKeyEventMask
    _kSBSHardwareButtonServiceMessageKeyEventType
    _kSBSHardwareButtonServiceMessageKeyPriority
    _kSBSHardwareButtonServiceMessageKeyButtonKind
    _kSBSHardwareButtonServiceMessageKeyHapticType
    _kSBSWallpaperServiceClientMessageKeyVariant
    _kSBSWallpaperServiceClientMessageKeyImageData
    _kSBUserDoneWithRequestedPasscodeUINotification
    
    

    相关文章

      网友评论

          本文标题:SpringBoardService接口

          本文链接:https://www.haomeiwen.com/subject/cexoiqtx.html