Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Side by Side Diff: class-dump/src/CDFatArch.h

Issue 7793008: Add the 3.3.3 sources for class-dump. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « class-dump/src/CDDataCursor.m ('k') | class-dump/src/CDFatArch.m » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // -*- mode: ObjC -*-
2
3 // This file is part of class-dump, a utility for examining the Objective-C seg ment of Mach-O files.
4 // Copyright (C) 1997-1998, 2000-2001, 2004-2010 Steve Nygard.
5
6 #import <Foundation/Foundation.h>
7
8 #include <mach-o/fat.h>
9 #import "CDFile.h" // For CDArch
10
11 @class CDDataCursor;
12 @class CDFatFile, CDMachOFile;
13
14 @interface CDFatArch : NSObject
15 {
16 CDFatFile *nonretained_fatFile;
17
18 struct fat_arch fatArch;
19
20 CDMachOFile *machOFile; // Lazily create this.
21 }
22
23 - (id)initWithDataCursor:(CDDataCursor *)cursor;
24 - (void)dealloc;
25
26 - (cpu_type_t)cpuType;
27 - (cpu_type_t)maskedCPUType;
28 - (cpu_subtype_t)cpuSubtype;
29 - (uint32_t)offset;
30 - (uint32_t)size;
31 - (uint32_t)align;
32
33 - (BOOL)uses64BitABI;
34
35 - (CDFatFile *)fatFile;
36 - (void)setFatFile:(CDFatFile *)newFatFile;
37
38 - (NSString *)description;
39
40 - (CDArch)arch;
41 - (NSString *)archName;
42
43 - (CDMachOFile *)machOFile;
44
45 - (NSData *)machOData;
46
47 @end
OLDNEW
« no previous file with comments | « class-dump/src/CDDataCursor.m ('k') | class-dump/src/CDFatArch.m » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698