forked from gdbinit/MachOView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SectionContents.h
73 lines (59 loc) · 2.54 KB
/
SectionContents.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* SectionContents.h
* MachOView
*
* Created by psaghelyi on 15/09/2010.
*
*/
#import "MachOLayout.h"
@interface MachOLayout (SectionContents)
- (MVNode *)createPointersNode:(MVNode *)parent
caption:(NSString *)caption
location:(uint32_t)location
length:(uint32_t)length;
- (MVNode *)createPointers64Node:(MVNode *)parent
caption:(NSString *)caption
location:(uint32_t)location
length:(uint32_t)length;
-(MVNode *)createCStringsNode:(MVNode *)parent
caption:(NSString *)caption
location:(uint32_t)location
length:(uint32_t)length;
-(MVNode *)createLiteralsNode:(MVNode *)parent
caption:(NSString *)caption
location:(uint32_t)location
length:(uint32_t)length
stride:(uint32_t)stride;
- (MVNode *)createIndPointersNode:(MVNode *)parent
caption:(NSString *)caption
location:(uint32_t)location
length:(uint32_t)length;
- (MVNode *)createIndPointers64Node:(MVNode *)parent
caption:(NSString *)caption
location:(uint32_t)location
length:(uint32_t)length;
- (MVNode *)createIndStubsNode:(MVNode *)parent
caption:(NSString *)caption
location:(uint32_t)location
length:(uint32_t)length
stride:(uint32_t)stride;
- (MVNode *)createIndStubs64Node:(MVNode *)parent
caption:(NSString *)caption
location:(uint32_t)location
length:(uint32_t)length
stride:(uint32_t)stride;
- (MVNode *)createStubHelperNode:(MVNode *)parent
caption:(NSString *)caption
location:(uint32_t)location
length:(uint32_t)length;
- (MVNode *)createTextNode:(MVNode *)parent
caption:(NSString *)caption
location:(uint32_t)location
length:(uint32_t)length
reloff:(uint32_t)reloff
nreloc:(uint32_t)nreloc
extreloff:(uint32_t)extreloff
nextrel:(uint32_t)nextrel
locreloff:(uint32_t)locreloff
nlocrel:(uint32_t)nlocrel;
@end