00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSMutableData.h>
00008
00009 @interface NSConcreteMutableData : NSMutableData
00010 {
00011 unsigned int _reserved:2;
00012 unsigned int _hasVM:1;
00013 unsigned int _retainCount:29;
00014 unsigned int _length;
00015 unsigned int _capacity;
00016 void *_bytes;
00017 }
00018
00019 - (unsigned int)length;
00020 - (const void *)bytes;
00021 - (void *)mutableBytes;
00022 - (void)setLength:(unsigned int)fp8;
00023 - (BOOL)_bytesAreVM;
00024 - (void)appendBytes:(const void *)fp8 length:(unsigned int)fp12;
00025 - (void)appendData:(id)fp8;
00026 - (void)increaseLengthBy:(unsigned int)fp8;
00027 - (void)replaceBytesInRange:(struct _NSRange)fp8 withBytes:(const void *)fp16;
00028 - (void)resetBytesInRange:(struct _NSRange)fp8;
00029 - (id)init;
00030 - (id)initWithCapacity:(unsigned int)fp8;
00031 - (id)initWithBytes:(void *)fp8 length:(unsigned int)fp12 copy:(BOOL)fp16 freeWhenDone:(BOOL)fp20 bytesAreVM:(BOOL)fp24;
00032 - (void)dealloc;
00033 - (void)finalize;
00034
00035 @end
00036