file 66 VMPI/SymbianPortUtils.cpp RFile file;
file 74 VMPI/SymbianPortUtils.cpp TInt err = file.Open(fs, _L("c:\\debug.txt"), EFileWrite);
file 77 VMPI/SymbianPortUtils.cpp err = file.Create(fs, _L("c:\\debug.txt"), EFileWrite);
file 82 VMPI/SymbianPortUtils.cpp file.Seek(ESeekEnd, pos);
file 83 VMPI/SymbianPortUtils.cpp file.Write(aBuffer);
file 84 VMPI/SymbianPortUtils.cpp file.Close();
file 230 axscript/axtam.cpp std::fstream file((char *)fname->toUTF8String()->c_str(), std::ios_base::in | std::ios_base::binary | std::ios_base::ate);
file 231 axscript/axtam.cpp if (file.good()) {
file 232 axscript/axtam.cpp std::ifstream::pos_type size(file.tellg());
file 234 axscript/axtam.cpp file.seekg(0);
file 235 axscript/axtam.cpp file.read((char *)code.getBuffer(), size);
file 46 core/CodegenLIR-inlines.h REALLY_INLINE LineNumberRecord* JITCodeInfo::add(MMgc::GC* gc, uintptr_t loc, Stringp file, uint32_t line)
file 48 core/CodegenLIR-inlines.h LineNumberRecord* record = new (gc) LineNumberRecord(file,line);
file 84 core/CodegenLIR.h LineNumberRecord* add(MMgc::GC* gc, uintptr_t loc, Stringp file, uint32_t line);
file 617 core/MethodInfo.cpp return dmi ? (AbcFile*)(dmi->file) : NULL;
file 660 core/MethodInfo.cpp dmi->file = file;
file 67 core/MethodInfo.h DWB(AbcFile*) file; // the abc file from which this method came
file 254 core/MethodInfo.h void setFile(AbcFile* file);
file 260 core/MethodInfo.h AbcFile* file() const;
file 169 core/avmplusDebugger.cpp AbcFile* abc = f->file();
file 305 core/avmplusDebugger.cpp Stringp file = core->callStack->filename();
file 310 core/avmplusDebugger.cpp if (file)
file 311 core/avmplusDebugger.cpp core->console << " " << line << "\t\t " << file << "\n";
file 323 core/avmplusDebugger.cpp Stringp file = ( core->callStack->filename() ) ? Stringp(core->callStack->filename()) : Stringp(core->kEmptyString);
file 340 core/avmplusDebugger.cpp Atom argv[5] = { trace_callback->atom(), file->atom(), core->intToAtom(line), name->atom(), args->atom() };
file 420 core/avmplusDebugger.cpp scanCode(file, pool, f);
file 436 core/avmplusDebugger.cpp m->setFile(file);
file 513 core/avmplusDebugger.cpp active = file->sourceNamed(name);
file 517 core/avmplusDebugger.cpp file->sourceAdd(active);
file 285 core/avmplusDebugger.h void debugFile(Stringp file);
file 457 core/avmplusDebugger.h void scanResources(AbcFile* file, PoolObject* pool);
file 458 core/avmplusDebugger.h bool scanCode(AbcFile* file, PoolObject* pool, MethodInfo* m);
file 169 extensions/Selftest.cpp text, file, line );
file 226 extensions/Selftest.cpp selftestRunner->logFailure(text_expr, file, line);
file 94 extensions/Selftest.h void logFailure(const char* text, const char* file, int line);
file 131 extensions/Selftest.h void verifyPass(int expr, const char* text_expr, const char* file, int line);
file 60 other-licenses/zlib/gzio.c FILE *file; /* .gz file */
file 117 other-licenses/zlib/gzio.c s->file = NULL;
file 181 other-licenses/zlib/gzio.c s->file = fd < 0 ? F_OPEN(path, fmode) : (FILE*)fdopen(fd, fmode);
file 183 other-licenses/zlib/gzio.c if (s->file == NULL) {
file 189 other-licenses/zlib/gzio.c fprintf(s->file, "%c%c%c%c%c%c%c%c%c%c", gz_magic[0], gz_magic[1],
file 199 other-licenses/zlib/gzio.c s->start = ftell(s->file) - s->stream.avail_in;
file 239 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 247 other-licenses/zlib/gzio.c if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
file 267 other-licenses/zlib/gzio.c s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
file 270 other-licenses/zlib/gzio.c if (ferror(s->file)) s->z_err = Z_ERRNO;
file 303 other-licenses/zlib/gzio.c len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
file 304 other-licenses/zlib/gzio.c if (len == 0 && ferror(s->file)) s->z_err = Z_ERRNO;
file 375 other-licenses/zlib/gzio.c if (s->file != NULL && fclose(s->file)) {
file 399 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 441 other-licenses/zlib/gzio.c (uInt)fread(next_out, 1, s->stream.avail_out, s->file);
file 452 other-licenses/zlib/gzio.c s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
file 455 other-licenses/zlib/gzio.c if (ferror(s->file)) {
file 508 other-licenses/zlib/gzio.c return gzread(file, &c, 1) == 1 ? c : -1;
file 519 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 548 other-licenses/zlib/gzio.c while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ;
file 564 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 576 other-licenses/zlib/gzio.c if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
file 633 other-licenses/zlib/gzio.c return gzwrite(file, buf, (unsigned)len);
file 670 other-licenses/zlib/gzio.c return gzwrite(file, buf, len);
file 684 other-licenses/zlib/gzio.c return gzwrite(file, &cc, 1) == 1 ? (int)cc : -1;
file 697 other-licenses/zlib/gzio.c return gzwrite(file, (char*)s, (unsigned)strlen(s));
file 711 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 721 other-licenses/zlib/gzio.c if ((uInt)fwrite(s->outbuf, 1, len, s->file) != len) {
file 750 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 751 other-licenses/zlib/gzio.c int err = do_flush (file, flush);
file 754 other-licenses/zlib/gzio.c fflush(s->file);
file 772 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 798 other-licenses/zlib/gzio.c size = gzwrite(file, s->inbuf, size);
file 819 other-licenses/zlib/gzio.c if (fseek(s->file, offset, SEEK_SET) < 0) return -1L;
file 828 other-licenses/zlib/gzio.c } else if (gzrewind(file) < 0) {
file 847 other-licenses/zlib/gzio.c size = gzread(file, s->outbuf, (uInt)size);
file 860 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 873 other-licenses/zlib/gzio.c return fseek(s->file, s->start, SEEK_SET);
file 884 other-licenses/zlib/gzio.c return gzseek(file, 0L, SEEK_CUR);
file 894 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 911 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 926 other-licenses/zlib/gzio.c fputc((int)(x & 0xff), file);
file 956 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 964 other-licenses/zlib/gzio.c if (do_flush (file, Z_FINISH) != Z_OK)
file 965 other-licenses/zlib/gzio.c return destroy((gz_stream*)file);
file 967 other-licenses/zlib/gzio.c putLong (s->file, s->crc);
file 968 other-licenses/zlib/gzio.c putLong (s->file, (uLong)(s->in & 0xffffffff));
file 971 other-licenses/zlib/gzio.c return destroy((gz_stream*)file);
file 992 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 1020 other-licenses/zlib/gzio.c gz_stream *s = (gz_stream*)file;
file 1025 other-licenses/zlib/gzio.c clearerr(s->file);
file 1098 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
file 1106 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
file 1114 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
file 1122 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...));
file 1135 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
file 1142 other-licenses/zlib/zlib.h ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
file 1151 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
file 1157 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
file 1163 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file));
file 1173 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush));
file 1183 other-licenses/zlib/zlib.h ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file,
file 1201 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORT gzrewind OF((gzFile file));
file 1208 other-licenses/zlib/zlib.h ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file));
file 1217 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORT gzeof OF((gzFile file));
file 1223 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
file 1229 other-licenses/zlib/zlib.h ZEXTERN int ZEXPORT gzclose OF((gzFile file));
file 1236 other-licenses/zlib/zlib.h ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
file 1245 other-licenses/zlib/zlib.h ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));
file 699 shell/DebugCLI.cpp if (!file)
file 702 shell/DebugCLI.cpp currentFile = file;
file 713 shell/DebugCLI.cpp if (f.valid() && ((uint64_t)file->length() < UINT32_T_MAX)) { //cannot handle files > 4GB
file 168 shell/DebugCLI.h void setCurrentSource(Stringp file);
file 44 shell/FileInputStream.cpp file = Platform::GetInstance()->createFile();
file 45 shell/FileInputStream.cpp if(file)
file 47 shell/FileInputStream.cpp if(file->open(filename, File::OPEN_READ_BINARY))
file 49 shell/FileInputStream.cpp len = file->size();
file 53 shell/FileInputStream.cpp Platform::GetInstance()->destroyFile(file);
file 54 shell/FileInputStream.cpp file = NULL;
file 61 shell/FileInputStream.cpp return file != NULL;
file 66 shell/FileInputStream.cpp Platform::GetInstance()->destroyFile(file);
file 71 shell/FileInputStream.cpp file->setPosition(offset);
file 76 shell/FileInputStream.cpp int64_t pos = file->getPosition();
file 87 shell/FileInputStream.cpp return file->read(buffer, count);
file 76 shell/FileInputStream.h File *file;
file 94 shell/Platform.h virtual void destroyFile(File* file) = 0;
file 44 shell/PosixFile.cpp if(file)
file 46 shell/PosixFile.cpp fclose(file);
file 54 shell/PosixFile.cpp file = fopen(filename, fileAttributes[flags] );
file 56 shell/PosixFile.cpp return file != 0;
file 61 shell/PosixFile.cpp fclose(file);
file 62 shell/PosixFile.cpp file = 0;
file 67 shell/PosixFile.cpp return fread(buffer, 1, bytesToRead, file);
file 72 shell/PosixFile.cpp return fwrite(buffer, 1, bytesToWrite, file);
file 77 shell/PosixFile.cpp return ftell(file);
file 82 shell/PosixFile.cpp return fseek(file, pos, SEEK_SET) == 0;
file 87 shell/PosixFile.cpp fseek(file, 0L, SEEK_END);
file 88 shell/PosixFile.cpp int64_t pos = ftell(file);
file 89 shell/PosixFile.cpp fseek (file, 0L, SEEK_SET);
file 96 shell/PosixFile.cpp return feof(file) != 0;
file 48 shell/PosixFile.h PosixFile() : file(0) {}
file 61 shell/PosixFile.h FILE* file;
file 55 shell/PosixPartialPlatform.cpp mmfx_delete( file );
file 53 shell/PosixPartialPlatform.h virtual void destroyFile(File* file);
file 306 shell/ShellCore.cpp FileInputStream file(executablePath);
file 308 shell/ShellCore.cpp file.seek(file.length() - 8);
file 309 shell/ShellCore.cpp file.read(header, 8);
file 317 shell/ShellCore.cpp file.seek(file.length() - 8 - abcLength);
file 318 shell/ShellCore.cpp file.read(code.getBuffer(), abcLength);
file 326 shell/ShellCore.cpp FileInputStream file(filename);
file 329 shell/ShellCore.cpp if (!file.valid())
file 332 shell/ShellCore.cpp file.seek(file.length() - 8);
file 333 shell/ShellCore.cpp file.read(header, 8);
file 44 shell/WinFile.cpp if(file)
file 46 shell/WinFile.cpp fclose(file);
file 54 shell/WinFile.cpp file = fopen(filename, fileAttributes[flags] );
file 56 shell/WinFile.cpp return file != NULL;
file 61 shell/WinFile.cpp fclose(file);
file 62 shell/WinFile.cpp file = NULL;
file 67 shell/WinFile.cpp return fread(buffer, 1, bytesToRead, file);
file 72 shell/WinFile.cpp return fwrite(buffer, 1, bytesToWrite, file);
file 78 shell/WinFile.cpp return ftell(file);
file 80 shell/WinFile.cpp return _ftelli64(file);
file 87 shell/WinFile.cpp return fseek(file, (long)pos, SEEK_SET) == 0;
file 89 shell/WinFile.cpp return _fseeki64(file, pos, SEEK_SET) == 0;
file 96 shell/WinFile.cpp fseek(file, 0L, SEEK_END);
file 97 shell/WinFile.cpp int64_t pos = ftell(file);
file 98 shell/WinFile.cpp fseek (file, 0L, SEEK_SET);
file 100 shell/WinFile.cpp _fseeki64(file, 0LL, SEEK_END);
file 101 shell/WinFile.cpp int64_t pos = _ftelli64(file);
file 102 shell/WinFile.cpp _fseeki64 (file, 0LL, SEEK_SET);
file 110 shell/WinFile.cpp return feof(file) != 0;
file 48 shell/WinFile.h WinFile() : file(0) {}
file 61 shell/WinFile.h FILE* file;
file 102 shell/avmshellWin.cpp delete file;
file 422 utils/wmremote/ceremoteshell/ceremoteshell.cpp char *file;
file 424 utils/wmremote/ceremoteshell/ceremoteshell.cpp file=strtok(filelist,"\t");
file 425 utils/wmremote/ceremoteshell/ceremoteshell.cpp while (file!=NULL) {
file 426 utils/wmremote/ceremoteshell/ceremoteshell.cpp dwLen=MultiByteToWideChar(CP_ACP,0,file,-1,wFile, 1024);
file 428 utils/wmremote/ceremoteshell/ceremoteshell.cpp file=strtok(NULL,"\t");
file 146 vprof/vprof.cpp vprof_printf ("%s", e->file);
file 202 vprof/vprof.cpp if ((e->line == line) && (VMPI_strcmp (e->file, file) == 0)) {
file 219 vprof/vprof.cpp e = findEntry (file, line);
file 229 vprof/vprof.cpp e->file = file;
file 306 vprof/vprof.cpp e = findEntry (file, line);
file 320 vprof/vprof.cpp e->file = file;
file 108 vprof/vprof.h int profileValue (void** id, char* file, int line, int64_t value, ...);
file 110 vprof/vprof.h int histValue(void** id, char* file, int line, int64_t value, int nbins, ...);
file 226 vprof/vprof.h char* file;