stream             78 mtcp/NOTES-x86_64/example.c   FILE *stream = fopen("/etc/passwd", "r");
stream             80 mtcp/NOTES-x86_64/example.c                0, 1024, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, fileno(stream), 0);
stream             82 mtcp/NOTES-x86_64/example.c   fclose(stream);
stream             91 mtcp/NOTES-x86_64/example.c   FILE *stream = fopen("/etc/passwd", "r");
stream             93 mtcp/NOTES-x86_64/example.c                0, 1024, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, fileno(stream), 0);
stream             94 mtcp/NOTES-x86_64/example.c   fclose(stream);
stream             21 mtcp/NOTES-x86_64/example2.c   FILE *stream = fopen("/etc/passwd", "r");
stream             23 mtcp/NOTES-x86_64/example2.c            0, 1024, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, fileno(stream), 0);
stream             25 mtcp/NOTES-x86_64/example2.c   fclose(stream);
stream             34 mtcp/NOTES-x86_64/example2.c   FILE *stream = fopen("/etc/passwd", "r");
stream             36 mtcp/NOTES-x86_64/example2.c            0, 1024, PROT_READ, MAP_PRIVATE | MAP_FIXED | MAP_ANONYMOUS, fileno(stream), 0);
stream             37 mtcp/NOTES-x86_64/example2.c   fclose(stream);
stream            478 plugin/ipc/file/filewrappers.cpp extern "C" FILE *freopen(const char *path, const char *mode, FILE *stream)
stream            491 plugin/ipc/file/filewrappers.cpp   FILE *file = _real_freopen(newpath, mode, stream);