00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSFileHandle.h>
00008
00009 @interface NSConcreteFileHandle : NSFileHandle
00010 {
00011 int _fd;
00012 void *_nativeHandle;
00013 void *_avars;
00014 unsigned short _flags;
00015 char _padding;
00016 struct __CFRunLoopSource *_source;
00017 struct __CFRunLoop *_rl;
00018 unsigned short _activity;
00019 char _padding2;
00020 int _error;
00021 void *_resultBytes;
00022 unsigned int _resultLength;
00023 int _resultSocket;
00024 }
00025
00026 - (int)fileDescriptor;
00027 - (id)initWithFileDescriptor:(int)fp8 closeOnDealloc:(BOOL)fp12;
00028 - (id)initWithFileDescriptor:(int)fp8;
00029 - (id)initWithPath:(id)fp8 flags:(int)fp12 createMode:(int)fp16;
00030 - (id)availableData;
00031 - (unsigned int)readDataOfLength:(unsigned int)fp8 buffer:(char *)fp12;
00032 - (id)readDataOfLength:(unsigned int)fp8;
00033 - (id)readDataToEndOfFile;
00034 - (void)writeData:(id)fp8;
00035 - (unsigned long long)offsetInFile;
00036 - (unsigned long long)seekToEndOfFile;
00037 - (void)seekToFileOffset:(unsigned long long)fp8;
00038 - (void)truncateFileAtOffset:(unsigned long long)fp8;
00039 - (void)synchronizeFile;
00040 - (void)closeFile;
00041 - (id)port;
00042 - (void)setPort:(id)fp8;
00043 - (void)dealloc;
00044 - (void)finalize;
00045 - (id)copyWithZone:(struct _NSZone *)fp8;
00046 - (void)performActivity:(int)fp8 modes:(id)fp12;
00047 - (void)readInBackgroundAndNotifyForModes:(id)fp8;
00048 - (void)readInBackgroundAndNotify;
00049 - (void)readToEndOfFileInBackgroundAndNotifyForModes:(id)fp8;
00050 - (void)readToEndOfFileInBackgroundAndNotify;
00051 - (void)acceptConnectionInBackgroundAndNotifyForModes:(id)fp8;
00052 - (void)acceptConnectionInBackgroundAndNotify;
00053 - (void)waitForDataInBackgroundAndNotifyForModes:(id)fp8;
00054 - (void)waitForDataInBackgroundAndNotify;
00055
00056 @end
00057