-
Notifications
You must be signed in to change notification settings - Fork 0
/
RPStackFrame.h
46 lines (33 loc) · 1.3 KB
/
RPStackFrame.h
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
//
// RPLogLine.h
// Rampler
//
// Copyright 2010-2012 Fotonauts. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class RPCallTree;
@class RPStackFrame;
@interface RPStackFrame : NSObject {
}
@property (nonatomic, readwrite, assign) UInt32 fileLine;
@property (nonatomic, readwrite, assign) NSInteger stackDepth;
@property (nonatomic, readwrite, assign) NSUInteger tickCount;
@property (nonatomic, readwrite, assign) double duration;
@property (nonatomic, readwrite, assign) NSInteger classId;
@property (nonatomic, readwrite, assign) NSInteger functionId;
@property (nonatomic, readwrite, assign) NSInteger fileId;
@property (nonatomic, readwrite, assign) BOOL isLeaf;
//
@property (nonatomic, readwrite, assign) NSInteger threadId;
@property (nonatomic, readwrite, assign) SInt64 time;
@property (nonatomic, readwrite) NSString* type;
@property (nonatomic, readwrite) NSString* ns;
@property (nonatomic, readwrite) NSString* function;
@property (nonatomic, readwrite) NSString* file; // file + line
@property (nonatomic, readwrite) NSString* fileName;
@property (nonatomic, readwrite) NSString* symbol;
@property (nonatomic, readwrite) NSString* symbolId;
@property (nonatomic, readwrite) NSString* logLine;
@property (nonatomic, readwrite, assign) NSInteger logLineNumber;
- (BOOL) isFunctionBegin;
@end