Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 2 additions & 0 deletions CSServiceClient/CSConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@
{
NSMutableDictionary *plistCache;
NSMutableDictionary *_configurationLastModDateByName;
NSMutableDictionary *_configurationLastModDateCheckByName;
}

+ (id)allocWithZone:(struct _NSZone *)arg1;
+ (id)sharedInstance;
@property(retain) NSMutableDictionary *configurationLastModDateCheckByName; // @synthesize configurationLastModDateCheckByName=_configurationLastModDateCheckByName;
@property(retain) NSMutableDictionary *configurationLastModDateByName; // @synthesize configurationLastModDateByName=_configurationLastModDateByName;
- (void).cxx_destruct;
- (void)clearCacheIfConfigChanged:(id)arg1;
Expand Down
9 changes: 7 additions & 2 deletions CSServiceClient/CSDateTime.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#import "NSCopying-Protocol.h"
#import "NSObject-Protocol.h"

@class NSDate;
@class NSDate, NSString;

@interface CSDateTime : NSObject <NSObject, NSCopying>
{
Expand All @@ -24,13 +24,18 @@
- (void).cxx_destruct;
- (void)decodeFromDictionary:(id)arg1;
- (id)encodeToDictionary;
- (id)description;
@property(readonly, copy) NSString *description;
- (id)isoValue;
- (BOOL)isEqualTo:(id)arg1;
- (double)epochValue;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (id)init;
- (id)initWithDate:(id)arg1;

// Remaining properties
@property(readonly, copy) NSString *debugDescription;
@property(readonly) unsigned long long hash;
@property(readonly) Class superclass;

@end

8 changes: 8 additions & 0 deletions CSServiceClient/CSJSONDecoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

#import "CSDecoder-Protocol.h"

@class NSString;

@interface CSJSONDecoder : NSObject <CSDecoder>
{
}
Expand All @@ -18,5 +20,11 @@
- (id)decodeObject:(id)arg1;
- (id)decodeJSONObject:(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

8 changes: 8 additions & 0 deletions CSServiceClient/CSJSONEncoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,20 @@

#import "CSEncoder-Protocol.h"

@class NSString;

@interface CSJSONEncoder : CSEncoderBase <CSEncoder>
{
}

+ (id)encodeObject:(id)arg1;
- (id)encodeObject:(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

6 changes: 3 additions & 3 deletions CSServiceClient/CSLogger.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@
- (id)logfile;
- (void)changeConfigInBlock:(id)arg1;
- (id)init;
- (struct __aslclient *)rollLogs:(struct __aslclient *)arg1;
- (struct __asl_object_s *)rollLogs:(struct __asl_object_s *)arg1;
- (void)loggerThread:(id)arg1;
- (void)close:(struct __aslclient *)arg1;
- (struct __aslclient *)open;
- (void)close:(struct __asl_object_s *)arg1;
- (struct __asl_object_s *)open;

@end

8 changes: 8 additions & 0 deletions CSServiceClient/CSMsgPackDecoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

#import "CSDecoder-Protocol.h"

@class NSString;

@interface CSMsgPackDecoder : NSObject <CSDecoder>
{
}
Expand All @@ -20,5 +22,11 @@
- (id)decodeObject:(id)arg1;
- (id)decodeMsgPackObject:(struct msgpack_object *)arg1 remainingMutable:(BOOL)arg2;

// Remaining properties
@property(readonly, copy) NSString *debugDescription;
@property(readonly, copy) NSString *description;
@property(readonly) unsigned long long hash;
@property(readonly) Class superclass;

@end

8 changes: 8 additions & 0 deletions CSServiceClient/CSMsgPackEncoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

#import "CSEncoder-Protocol.h"

@class NSString;

@interface CSMsgPackEncoder : CSEncoderBase <CSEncoder>
{
}
Expand All @@ -17,5 +19,11 @@
- (id)encodeObject:(id)arg1;
- (void)encodeObject:(id)arg1 toMsgBuffer:(struct msgpack_sbuffer *)arg2;

// Remaining properties
@property(readonly, copy) NSString *debugDescription;
@property(readonly, copy) NSString *description;
@property(readonly) unsigned long long hash;
@property(readonly) Class superclass;

@end

10 changes: 10 additions & 0 deletions CSServiceClient/CSRemoteServiceClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,14 @@
BOOL asyncRequestPending;
NSString *identityName;
struct OpaqueSecIdentityRef *identity;
BOOL _suppressClientCertificateAuth;
BOOL _suppressCertificateTrustErrors;
double _timeout;
}

+ (void)initialize;
@property BOOL suppressCertificateTrustErrors; // @synthesize suppressCertificateTrustErrors=_suppressCertificateTrustErrors;
@property BOOL suppressClientCertificateAuth; // @synthesize suppressClientCertificateAuth=_suppressClientCertificateAuth;
@property double timeout; // @synthesize timeout=_timeout;
- (void).cxx_destruct;
- (void)connection:(id)arg1 didReceiveAuthenticationChallenge:(id)arg2;
Expand All @@ -48,5 +52,11 @@
- (id)init;
- (id)initWithServerAddress:(id)arg1 andPort:(int)arg2 andPath:(id)arg3;

// Remaining properties
@property(readonly, copy) NSString *debugDescription;
@property(readonly, copy) NSString *description;
@property(readonly) unsigned long long hash;
@property(readonly) Class superclass;

@end

2 changes: 2 additions & 0 deletions CSServiceClient/CSXCBotClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
+ (void)initialize;
@property(retain) NSString *sessionGUID; // @synthesize sessionGUID=_sessionGUID;
- (void).cxx_destruct;
- (void)isCompatibleWithServerVersionCompletionHandler:(id)arg1;
- (void)devicesForTeamIDs:(id)arg1 completionHandler:(id)arg2;
- (void)allDevicesCompletionHandler:(id)arg1;
- (void)uploadCredentialsForSCMInfo:(id)arg1 completionHandler:(id)arg2;
Expand Down Expand Up @@ -110,6 +111,7 @@
- (id)repositoryServiceRequestForMethod:(id)arg1 args:(id)arg2;
- (id)authServiceRequestForMethod:(id)arg1 args:(id)arg2;
- (id)schedulerServiceRequestForMethod:(id)arg1 args:(id)arg2;
- (id)serverVersionServiceRequestForMethod:(id)arg1 args:(id)arg2;
- (id)botServiceRequestForMethod:(id)arg1 args:(id)arg2;
- (id)contentServiceRequestForMethod:(id)arg1 args:(id)arg2;
- (id)graphServiceRequestForMethod:(id)arg1 args:(id)arg2;
Expand Down
6 changes: 6 additions & 0 deletions CSServiceClient/CSXCBotClientDownloadManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,11 @@
- (void)connection:(id)arg1 didReceiveData:(id)arg2;
- (void)connection:(id)arg1 didReceiveResponse:(id)arg2;

// Remaining properties
@property(readonly, copy) NSString *debugDescription;
@property(readonly, copy) NSString *description;
@property(readonly) unsigned long long hash;
@property(readonly) Class superclass;

@end

12 changes: 7 additions & 5 deletions CSServiceClient/NSObject-Protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard.
*/

@class NSString;

@protocol NSObject
- (id)description;
@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;
Expand All @@ -18,14 +23,11 @@
- (id)performSelector:(SEL)arg1 withObject:(id)arg2 withObject:(id)arg3;
- (id)performSelector:(SEL)arg1 withObject:(id)arg2;
- (id)performSelector:(SEL)arg1;
- (struct _NSZone *)zone;
- (id)self;
- (Class)class;
- (Class)superclass;
- (unsigned long long)hash;
- (BOOL)isEqual:(id)arg1;

@optional
- (id)debugDescription;
@property(readonly, copy) NSString *debugDescription;
@end

6 changes: 6 additions & 0 deletions CoreProfileDT/CDStructures.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/*
* Generated by class-dump 3.3.4 (64 bit).
*
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard.
*/

Loading