mapsfd            603 mtcp/mtcp_restart.c   int mapsfd = mtcp_sys_open2("/proc/self/maps", O_RDONLY);
mapsfd            604 mtcp/mtcp_restart.c   if (mapsfd < 0) {
mapsfd            609 mtcp/mtcp_restart.c   while (mtcp_readmapsline(mapsfd, &area)) {
mapsfd            635 mtcp/mtcp_restart.c       mtcp_sys_lseek(mapsfd, 0, SEEK_SET);
mapsfd            638 mtcp/mtcp_restart.c   mtcp_sys_close (mapsfd);
mapsfd           1028 mtcp/mtcp_restart.c   int mapsfd = mtcp_sys_open2("/proc/self/maps", O_RDONLY);
mapsfd           1029 mtcp/mtcp_restart.c   if (mapsfd < 0) {
mapsfd           1034 mtcp/mtcp_restart.c   while (mtcp_readmapsline(mapsfd, &area)) {
mapsfd           1040 mtcp/mtcp_restart.c   mtcp_sys_close (mapsfd);
mapsfd           1050 mtcp/mtcp_restart.c   int mapsfd = mtcp_sys_open2("/proc/self/maps", O_RDONLY);
mapsfd           1051 mtcp/mtcp_restart.c   if (mapsfd < 0) {
mapsfd           1056 mtcp/mtcp_restart.c   while (mtcp_readmapsline(mapsfd, &area)) {
mapsfd           1074 mtcp/mtcp_restart.c   mtcp_sys_close (mapsfd);
mapsfd            408 mtcp/mtcp_util.c int mtcp_readmapsline (int mapsfd, Area *area)
mapsfd            417 mtcp/mtcp_util.c   c = mtcp_readhex (mapsfd, &startaddr);
mapsfd            422 mtcp/mtcp_util.c   c = mtcp_readhex (mapsfd, &endaddr);
mapsfd            426 mtcp/mtcp_util.c   rflag = c = mtcp_readchar (mapsfd);
mapsfd            428 mtcp/mtcp_util.c   wflag = c = mtcp_readchar (mapsfd);
mapsfd            430 mtcp/mtcp_util.c   xflag = c = mtcp_readchar (mapsfd);
mapsfd            432 mtcp/mtcp_util.c   sflag = c = mtcp_readchar (mapsfd);
mapsfd            435 mtcp/mtcp_util.c   c = mtcp_readchar (mapsfd);
mapsfd            438 mtcp/mtcp_util.c   c = mtcp_readhex (mapsfd, (VA *)&offset);
mapsfd            442 mtcp/mtcp_util.c   c = mtcp_readhex (mapsfd, (VA *)&devmajor);
mapsfd            444 mtcp/mtcp_util.c   c = mtcp_readhex (mapsfd, (VA *)&devminor);
mapsfd            446 mtcp/mtcp_util.c   c = mtcp_readdec (mapsfd, (VA *)&inodenum);
mapsfd            448 mtcp/mtcp_util.c   while (c == ' ') c = mtcp_readchar (mapsfd);
mapsfd            454 mtcp/mtcp_util.c       c = mtcp_readchar (mapsfd);
mapsfd            481 mtcp/mtcp_util.c     c = mtcp_readchar (mapsfd);
mapsfd            521 mtcp/mtcp_util.c   int mapsfd = mtcp_sys_open("/proc/self/maps", O_RDONLY, 0);
mapsfd            522 mtcp/mtcp_util.c   MTCP_ASSERT(mapsfd != -1);
mapsfd            524 mtcp/mtcp_util.c   while (mtcp_readmapsline (mapsfd, &area)) {
mapsfd            603 mtcp/mtcp_util.c   mtcp_sys_close(mapsfd);
mapsfd            184 mtcp/mtcp_util.h int mtcp_readmapsline (int mapsfd, Area *area);
mapsfd            418 util_misc.cpp  int Util::readProcMapsLine(int mapsfd, ProcMapsArea *area)
mapsfd            426 util_misc.cpp    c = readHex (mapsfd, &startaddr);
mapsfd            431 util_misc.cpp    c = readHex (mapsfd, &endaddr);
mapsfd            435 util_misc.cpp    rflag = c = readChar (mapsfd);
mapsfd            437 util_misc.cpp    wflag = c = readChar (mapsfd);
mapsfd            439 util_misc.cpp    xflag = c = readChar (mapsfd);
mapsfd            441 util_misc.cpp    sflag = c = readChar (mapsfd);
mapsfd            444 util_misc.cpp    c = readChar (mapsfd);
mapsfd            447 util_misc.cpp    c = readHex (mapsfd, (VA *)&offset);
mapsfd            451 util_misc.cpp    c = readHex (mapsfd, (VA *)&devmajor);
mapsfd            453 util_misc.cpp    c = readHex (mapsfd, (VA *)&devminor);
mapsfd            455 util_misc.cpp    c = readDec (mapsfd, (VA *)&inodenum);
mapsfd            457 util_misc.cpp    while (c == ' ') c = readChar (mapsfd);
mapsfd            466 util_misc.cpp        c = readChar (mapsfd);