-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSBHIDUILockAssertion.h
More file actions
49 lines (45 loc) · 1.57 KB
/
Copy pathSBHIDUILockAssertion.h
File metadata and controls
49 lines (45 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Image: /System/Library/PrivateFrameworks/SpringBoard.framework/SpringBoard (1)
*/
@interface SBHIDUILockAssertion : NSObject <BSInvalidatable> {
SBHIDInterface * _HIDInterface;
bool _disableTapToWake;
bool _pocketTouchesExpected;
NSString * _reason;
long long _source;
bool _suspendMultitouch;
bool _suspendProximitySensor;
}
@property (nonatomic) SBHIDInterface *HIDInterface;
@property (readonly, copy) NSString *debugDescription;
@property (readonly, copy) NSString *description;
@property (nonatomic) bool disableTapToWake;
@property (readonly) unsigned long long hash;
@property (nonatomic) bool pocketTouchesExpected;
@property (nonatomic, copy) NSString *reason;
@property (nonatomic) long long source;
@property (readonly) Class superclass;
@property (nonatomic) bool suspendMultitouch;
@property (nonatomic) bool suspendProximitySensor;
- (void).cxx_destruct;
- (id)HIDInterface;
- (id)description;
- (id)descriptionBuilderWithMultilinePrefix:(id)arg1;
- (id)descriptionWithMultilinePrefix:(id)arg1;
- (bool)disableTapToWake;
- (void)invalidate;
- (void)invalidateForSource:(long long)arg1;
- (bool)pocketTouchesExpected;
- (id)reason;
- (void)setDisableTapToWake:(bool)arg1;
- (void)setHIDInterface:(id)arg1;
- (void)setPocketTouchesExpected:(bool)arg1;
- (void)setReason:(id)arg1;
- (void)setSource:(long long)arg1;
- (void)setSuspendMultitouch:(bool)arg1;
- (void)setSuspendProximitySensor:(bool)arg1;
- (long long)source;
- (id)succinctDescription;
- (id)succinctDescriptionBuilder;
- (bool)suspendMultitouch;
- (bool)suspendProximitySensor;
@end