Searched refs:Stream (Results 1 - 25 of 61) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/mtools-4.0.10/
H A Dstream.c24 int flush_stream(Stream_t *Stream) argument
28 if(Stream->Class->flush)
29 ret |= Stream->Class->flush(Stream);
30 if(Stream->Next)
31 ret |= flush_stream(Stream->Next);
36 Stream_t *copy_stream(Stream_t *Stream) argument
38 if(Stream)
39 Stream->refs++;
40 return Stream;
43 free_stream(Stream_t **Stream) argument
68 get_data_pass_through(Stream_t *Stream, time_t *date, mt_size_t *size, int *type, int *address) argument
74 read_pass_through(Stream_t *Stream, char *buf, mt_off_t start, size_t len) argument
79 write_pass_through(Stream_t *Stream, char *buf, mt_off_t start, size_t len) argument
84 get_dosConvert_pass_through(Stream_t *Stream) argument
[all...]
H A Dfile.h25 void printFat(Stream_t *Stream);
26 direntry_t *getDirentry(Stream_t *Stream);
H A Dforce_io.c30 static int force_io(Stream_t *Stream, argument
38 ret = io(Stream, buf, start, len);
53 int force_write(Stream_t *Stream, char *buf, mt_off_t start, size_t len) argument
55 return force_io(Stream, buf, start, len,
56 Stream->Class->write);
59 int force_read(Stream_t *Stream, char *buf, mt_off_t start, size_t len) argument
61 return force_io(Stream, buf, start, len,
62 Stream->Class->read);
H A DdirCache.h48 dirCache_t *allocDirCache(Stream_t *Stream, int slot);
49 dirCacheEntry_t *addUsedEntry(dirCache_t *Stream, int begin, int end,
52 void freeDirCache(Stream_t *Stream);
53 dirCacheEntry_t *addFreeEntry(dirCache_t *Stream,
55 dirCacheEntry_t *addEndEntry(dirCache_t *Stream, int pos);
56 dirCacheEntry_t *lookupInDircache(dirCache_t *Stream, int pos);
H A Dmcat.c61 Stream_t *Stream; local
97 Stream = NULL;
99 FREE(&Stream);
108 Stream = 0;
110 Stream = XdfOpen(&out_dev, name, mode, errmsg, 0);
111 if(Stream)
117 if(!Stream)
118 Stream = FloppydOpen(&out_dev, dev, name,
123 if (!Stream)
124 Stream
[all...]
H A Dplain_io.h36 int get_fd(Stream_t *Stream);
37 void *get_extra_data(Stream_t *Stream);
H A Dstream.h33 doscp_t *get_dosConvert_pass_through(Stream_t *Stream);
66 int flush_stream(Stream_t *Stream);
67 Stream_t *copy_stream(Stream_t *Stream);
68 int free_stream(Stream_t **Stream);
80 #define DeclareThis(x) x *This = (x *) Stream
82 int force_write(Stream_t *Stream, char *buf, mt_off_t start, size_t len);
83 int force_read(Stream_t *Stream, char *buf, mt_off_t start, size_t len);
85 int get_data_pass_through(Stream_t *Stream, time_t *date, mt_size_t *size,
88 int read_pass_through(Stream_t *Stream, char *buf, mt_off_t start, size_t len);
89 int write_pass_through(Stream_t *Stream, cha
[all...]
H A Dinit.c42 static int read_boot(Stream_t *Stream, struct bootsector * boot, int size) argument
50 if (force_read(Stream, (char *) boot, 0, size) != size)
55 static int fs_flush(Stream_t *Stream) argument
63 static doscp_t *get_dosConvert(Stream_t *Stream) argument
112 Stream_t *Stream; local
117 Stream = NULL;
121 FREE(&Stream);
130 Stream = 0;
132 Stream = 0;
134 Stream
408 getDrive(Stream_t *Stream) argument
[all...]
H A Dmmount.c45 Stream_t *Stream; local
52 Stream= find_device(drive, O_RDONLY, &dev, boot, name, &media, 0, NULL);
53 if(!Stream)
55 FREE(&Stream);
H A Dunixdir.c44 static int get_dir_data(Stream_t *Stream, time_t *date, mt_size_t *size, argument
60 static int dir_free(Stream_t *Stream) argument
83 int unix_dir_loop(Stream_t *Stream, MainParam_t *mp);
84 int unix_loop(Stream_t *Stream, MainParam_t *mp, char *arg,
87 int unix_dir_loop(Stream_t *Stream, MainParam_t *mp) argument
118 ret |= unix_loop(Stream, mp, newName, 0);
130 Stream_t *OpenDir(Stream_t *Stream, const char *filename) argument
H A Dfat.c71 static FatMap_t *GetFatMap(Fs_t *Stream) argument
76 Stream->fat_error = 0;
77 nr_entries = (Stream->fat_len + SECT_PER_ENTRY - 1) / SECT_PER_ENTRY;
91 static __inline__ int locate(Fs_t *Stream, size_t offset, int *slot, int *bit) argument
93 if(offset >= Stream->fat_len)
230 static unsigned char *getAddress(Fs_t *Stream, argument
237 sector = num >> Stream->sectorShift;
239 if(sector == Stream->lastFatSectorNr &&
240 Stream->lastFatAccessMode >= mode)
241 ret = Stream
255 readByte(Fs_t *Stream, int start) argument
284 fat12_decode(Fs_t *Stream, unsigned int num) argument
306 fat12_encode(Fs_t *Stream, unsigned int num, unsigned int code) argument
332 fat16_decode(Fs_t *Stream, unsigned int num) argument
340 fat16_encode(Fs_t *Stream, unsigned int num, unsigned int code) argument
347 fast_fat16_decode(Fs_t *Stream, unsigned int num) argument
357 fast_fat16_encode(Fs_t *Stream, unsigned int num, unsigned int code) argument
374 fat32_decode(Fs_t *Stream, unsigned int num) argument
382 fat32_encode(Fs_t *Stream, unsigned int num, unsigned int code) argument
389 fast_fat32_decode(Fs_t *Stream, unsigned int num) argument
399 fast_fat32_encode(Fs_t *Stream, unsigned int num, unsigned int code) argument
487 zero_fat(Fs_t *Stream, int media_descriptor) argument
848 Stream_t *Stream = GetFs(Dir); local
859 Stream_t *Stream = GetFs(Dir); local
875 Stream_t *Stream = GetFs(Dir); local
903 Stream_t *Stream = GetFs(Dir); local
962 Stream_t *Stream = GetFs(Dir); local
975 Stream_t *Stream = GetFs(Dir); local
984 fs_free(Stream_t *Stream) argument
[all...]
H A Dfs.h41 char getDrive(Stream_t *Stream);
H A Dfile.c59 static File_t *getUnbufferedFile(Stream_t *Stream) argument
61 while(Stream->Class != &FileClass)
62 Stream = Stream->Next;
63 return (File_t *) Stream;
66 Fs_t *getFs(Stream_t *Stream) argument
68 return getUnbufferedFile(Stream)->Fs;
71 struct dirCache_t **getDirCacheP(Stream_t *Stream) argument
73 return &getUnbufferedFile(Stream)->dcp;
76 direntry_t *getDirentry(Stream_t *Stream) argument
156 Stream_t *Stream = GetFs(Dir); local
167 Stream_t *Stream = GetFs(Dir); local
174 printFat(Stream_t *Stream) argument
348 read_file(Stream_t *Stream, char *buf, mt_off_t iwhere, size_t len) argument
364 write_file(Stream_t *Stream, char *buf, mt_off_t iwhere, size_t len) argument
455 get_file_data(Stream_t *Stream, time_t *date, mt_size_t *size, int *type, int *address) argument
472 free_file(Stream_t *Stream) argument
483 flush_file(Stream_t *Stream) argument
501 pre_allocate_file(Stream_t *Stream, mt_size_t isize) argument
535 func1(void *Stream) argument
542 func2(void *Stream) argument
549 comp(void *Stream, void *Stream2) argument
573 Stream_t *Stream = GetFs(Dir); local
689 isRootDir(Stream_t *Stream) argument
[all...]
H A Dminfo.c39 static void displayInfosector(Stream_t *Stream, struct bootsector *boot) argument
47 force_read(Stream, (char *) infosec,
74 Stream_t *Stream; local
102 if(! (Stream = find_device(drive, O_RDONLY, &dev, boot,
182 displayInfosector(Stream,boot);
198 size = READS(Stream, buf, (mt_off_t) 0, size);
207 FREE(&Stream);
H A Dbuffer.c142 static int buf_read(Stream_t *Stream, char *buf, mt_off_t start, size_t len) argument
153 /*fprintf(stderr, "buf read %x %x %x\n", Stream, start, len);*/
189 static int buf_write(Stream_t *Stream, char *buf, mt_off_t start, size_t len) argument
202 Stream, (unsigned char) This->buf[0],
307 static int buf_flush(Stream_t *Stream) argument
321 static int buf_free(Stream_t *Stream) argument
347 Stream_t *Stream; local
365 Stream = (Stream_t *) malloc (sizeof(Buffer_t));
366 if(!Stream)
368 Buffer = (Buffer_t *) Stream;
[all...]
H A DfsP.h82 int fs_free(Stream_t *Stream);
100 Fs_t *getFs(Stream_t *Stream);
H A Dllong.h102 mt_size_t getfree(Stream_t *Stream);
103 int getfreeMinBytes(Stream_t *Stream, mt_size_t ref);
H A Dfilter.c42 static int read_filter(Stream_t *Stream, char *buf, mt_off_t iwhere, size_t len) argument
82 static int write_filter(Stream_t *Stream, char *buf, mt_off_t iwhere, argument
134 static int free_filter(Stream_t *Stream) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC++/
H A Dstream_decoder.cpp45 // Stream
49 Stream::Stream(): function in class:FLAC::Decoder::Stream
53 Stream::~Stream()
61 bool Stream::is_valid() const
66 bool Stream::set_ogg_serial_number(long value)
72 bool Stream::set_md5_checking(bool value)
78 bool Stream::set_metadata_respond(::FLAC__MetadataType type)
84 bool Stream
[all...]
H A Dstream_encoder.cpp46 // Stream
50 Stream::Stream(): function in class:FLAC::Encoder::Stream
54 Stream::~Stream()
62 bool Stream::is_valid() const
67 bool Stream::set_ogg_serial_number(long value)
73 bool Stream::set_verify(bool value)
79 bool Stream::set_streamable_subset(bool value)
85 bool Stream
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tests/
H A Dffserver.conf71 <Stream test_h.avi>
88 </Stream>
90 <Stream test_l.avi>
107 </Stream>
109 #<Stream test_h.mpg>
122 #</Stream>
124 #<Stream test_l.mpg>
137 #</Stream>
139 <Stream test.swf>
156 </Stream>
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/doc/
H A Davserver.conf75 <Stream test1.mpg>
167 </Stream>
176 #<Stream test.mjpg>
183 #</Stream>
188 #<Stream test.jpg>
196 #</Stream>
201 #<Stream test.swf>
207 #</Stream>
212 <Stream test.asf>
222 </Stream>
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/
H A Dffserver.conf71 <Stream test1.mpg>
163 </Stream>
172 #<Stream test.mjpg>
179 #</Stream>
184 #<Stream test.jpg>
192 #</Stream>
197 #<Stream test.swf>
203 #</Stream>
208 <Stream test.asf>
218 </Stream>
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/FLAC++/
H A Ddecoder.h68 * Second, there are two stream decoder classes. FLAC::Decoder::Stream
99 class FLACPP_API Stream { class in namespace:FLAC::Decoder
108 inline const char *resolved_as_cstring(const Stream &decoder) const { return ::FLAC__stream_decoder_get_resolved_state_string(decoder.decoder_); }
113 Stream();
114 virtual ~Stream();
199 Stream(const Stream &);
200 void operator=(const Stream &);
207 * FLAC::Decoder::Stream.
217 * Only the write, and error callbacks from FLAC::Decoder::Stream
[all...]
H A Dencoder.h69 * Second, there are two stream encoder classes. FLAC::Encoder::Stream
101 class FLACPP_API Stream { class in namespace:FLAC::Encoder
110 inline const char *resolved_as_cstring(const Stream &encoder) const { return ::FLAC__stream_encoder_get_resolved_state_string(encoder.encoder_); }
115 Stream();
116 virtual ~Stream();
152 virtual Decoder::Stream::State get_verify_decoder_state() const; ///< See FLAC__stream_encoder_get_verify_decoder_state()
208 Stream(const Stream &);
209 void operator=(const Stream &);
216 * FLAC::Encoder::Stream
[all...]

Completed in 186 milliseconds

123