Home | History | Annotate | Download | only in src

Lines Matching defs:Stream

35 #define MAXTABLES    255     // Max Number of tables in a single stream
61 SEOF, // End of stream
62 SSYNERROR, // Syntax error found on stream
128 char** DataFormat; // The binary stream descriptor
129 char** Data; // The binary stream
133 // File stream being parsed
136 FILE* Stream; // File stream or NULL if holded in memory
143 cmsUInt32Number TablesCount; // How many tables in this stream
162 // Allowed keywords & datasets. They have visibility on whole stream
172 char* MemoryBlock; // The stream if holded in memory
181 // The stream for save operations
184 FILE* stream; // For save-to-file behaviour
485 // Read Next character from stream
489 if (it8 -> FileStack[it8 ->IncludeSP]->Stream) {
491 it8 ->ch = fgetc(it8 ->FileStack[it8 ->IncludeSP]->Stream);
493 if (feof(it8 -> FileStack[it8 ->IncludeSP]->Stream)) {
497 fclose(it8 ->FileStack[it8->IncludeSP--]->Stream);
839 // Eof stream markers
931 FileNest->Stream = fopen(FileNest->FileName, "rt");
932 if (FileNest->Stream == NULL) {
1571 if (f ->stream) { // Should I write it to a file?
1573 if (fwrite(str, 1, len, f->stream) != len) {
1768 sd.stream = fopen(cFileName, "wt");
1769 if (!sd.stream) return FALSE;
1779 if (fclose(sd.stream) != 0) return FALSE;
1794 sd.stream = NULL;
2354 it8 ->FileStack[0]->Stream = fopen(cFileName, "rt");
2356 if (!it8 ->FileStack[0]->Stream) {
2367 fclose(it8 ->FileStack[0]->Stream);
2375 if (fclose(it8 ->FileStack[0]->Stream)!= 0) {