newpath           240 mtcp/mtcp_sys.h # define mtcp_sys_rename(oldpath,newpath)  \
newpath           241 mtcp/mtcp_sys.h          mtcp_inline_syscall(renameat,4,AT_FDCWD,oldpath,AT_FDCWD,newpath)
newpath           742 plugin/ipc/file/fileconnection.cpp     string newpath = jalib::Filesystem::GetDeviceName(_fds[0]);
newpath           743 plugin/ipc/file/fileconnection.cpp     JTRACE("This is Resource Manager file!") (_fds[0]) (newpath) (_path) (this);
newpath           744 plugin/ipc/file/fileconnection.cpp     if (newpath != _path) {
newpath           746 plugin/ipc/file/fileconnection.cpp         (_path) (newpath);
newpath           747 plugin/ipc/file/fileconnection.cpp       _path = newpath;
newpath           753 plugin/ipc/file/fileconnection.cpp     char newpath[PATH_MAX];
newpath           754 plugin/ipc/file/fileconnection.cpp     newpath[0] = '\0';
newpath           755 plugin/ipc/file/fileconnection.cpp     dmtcp_get_new_file_path(_path.c_str(), cwd.c_str(), newpath);
newpath           756 plugin/ipc/file/fileconnection.cpp     if (newpath[0] != '\0') {
newpath           757 plugin/ipc/file/fileconnection.cpp       JASSERT(jalib::Filesystem::FileExists(newpath)) (_path) (newpath)
newpath           759 plugin/ipc/file/fileconnection.cpp       _path = newpath;
newpath           364 plugin/ipc/file/filewrappers.cpp   const char *newpath = path;
newpath           371 plugin/ipc/file/filewrappers.cpp     newpath = currPtsDevName;
newpath           374 plugin/ipc/file/filewrappers.cpp   int fd = (*fn) (newpath, flags, mode);
newpath           377 plugin/ipc/file/filewrappers.cpp     FileConnList::instance().processFileConnection(fd, newpath, flags, mode);
newpath           447 plugin/ipc/file/filewrappers.cpp   const char *newpath = path;
newpath           454 plugin/ipc/file/filewrappers.cpp     newpath = currPtsDevName;
newpath           457 plugin/ipc/file/filewrappers.cpp   FILE *file =(*fn) (newpath, mode);
newpath           460 plugin/ipc/file/filewrappers.cpp     FileConnList::instance().processFileConnection(fileno(file), newpath,
newpath           481 plugin/ipc/file/filewrappers.cpp   const char *newpath = path;
newpath           488 plugin/ipc/file/filewrappers.cpp     newpath = currPtsDevName;
newpath           491 plugin/ipc/file/filewrappers.cpp   FILE *file = _real_freopen(newpath, mode, stream);
newpath           494 plugin/ipc/file/filewrappers.cpp     FileConnList::instance().processFileConnection(fileno(file), newpath,
newpath           569 plugin/ipc/file/filewrappers.cpp static void updateStatPath(const char *path, char **newpath)
newpath           575 plugin/ipc/file/filewrappers.cpp     strcpy(*newpath, currPtsDevName);
newpath           577 plugin/ipc/file/filewrappers.cpp     *newpath = (char*) path;
newpath           584 plugin/ipc/file/filewrappers.cpp   char *newpath = tmpbuf;
newpath           586 plugin/ipc/file/filewrappers.cpp   updateStatPath(path, &newpath);
newpath           587 plugin/ipc/file/filewrappers.cpp   int retval = _real_xstat(vers, newpath, buf);
newpath           595 plugin/ipc/file/filewrappers.cpp   char *newpath = tmpbuf;
newpath           597 plugin/ipc/file/filewrappers.cpp   updateStatPath(path, &newpath);
newpath           598 plugin/ipc/file/filewrappers.cpp   int retval = _real_xstat64(vers, newpath, buf);
newpath           624 plugin/ipc/file/filewrappers.cpp   char *newpath = tmpbuf;
newpath           626 plugin/ipc/file/filewrappers.cpp   updateStatPath(path, &newpath);
newpath           627 plugin/ipc/file/filewrappers.cpp   int retval = _real_lxstat(vers, newpath, buf);
newpath           635 plugin/ipc/file/filewrappers.cpp   char *newpath = tmpbuf;
newpath           637 plugin/ipc/file/filewrappers.cpp   updateStatPath(path, &newpath);
newpath           638 plugin/ipc/file/filewrappers.cpp   int retval = _real_lxstat64(vers, newpath, buf);
newpath           650 plugin/ipc/file/filewrappers.cpp   char *newpath = tmpbuf;
newpath           658 plugin/ipc/file/filewrappers.cpp     updateStatPath(path, &newpath);
newpath           659 plugin/ipc/file/filewrappers.cpp     retval = _real_readlink(newpath, buf, bufsiz);
newpath            64 plugin/pid/pid_filewrappers.cpp static void updateProcPathVirtualToReal(const char *path, char **newpath)
newpath            72 plugin/pid/pid_filewrappers.cpp       sprintf(*newpath, "/proc/%d%s", realPid, rest);
newpath            76 plugin/pid/pid_filewrappers.cpp   *newpath = (char *)path;
newpath            80 plugin/pid/pid_filewrappers.cpp static void updateProcPathRealToVirtual(const char *path, char **newpath)
newpath            88 plugin/pid/pid_filewrappers.cpp       sprintf(*newpath, "/proc/%d%s", virtualPid, rest);
newpath            92 plugin/pid/pid_filewrappers.cpp   *newpath = (char *)path;
newpath           109 plugin/pid/pid_filewrappers.cpp   char *newpath = tmpbuf;
newpath           110 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
newpath           111 plugin/pid/pid_filewrappers.cpp   return _real_open(newpath, flags, mode);
newpath           126 plugin/pid/pid_filewrappers.cpp   char *newpath = tmpbuf;
newpath           127 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
newpath           128 plugin/pid/pid_filewrappers.cpp   return _real_open64(newpath, flags, mode);
newpath           134 plugin/pid/pid_filewrappers.cpp   char *newpath = tmpbuf;
newpath           135 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
newpath           136 plugin/pid/pid_filewrappers.cpp   return _real_fopen(newpath, mode);
newpath           142 plugin/pid/pid_filewrappers.cpp   char *newpath = tmpbuf;
newpath           143 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
newpath           144 plugin/pid/pid_filewrappers.cpp   return _real_fopen64(newpath, mode);
newpath           158 plugin/pid/pid_filewrappers.cpp   char *newpath = tmpbuf;
newpath           159 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
newpath           160 plugin/pid/pid_filewrappers.cpp   int retval = _real_xstat( vers, newpath, buf );
newpath           167 plugin/pid/pid_filewrappers.cpp   char *newpath = tmpbuf;
newpath           168 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
newpath           169 plugin/pid/pid_filewrappers.cpp   int retval = _real_xstat64( vers, newpath, buf );
newpath           190 plugin/pid/pid_filewrappers.cpp   char *newpath = tmpbuf;
newpath           191 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
newpath           192 plugin/pid/pid_filewrappers.cpp   int retval = _real_lxstat( vers, newpath, buf );
newpath           199 plugin/pid/pid_filewrappers.cpp   char *newpath = tmpbuf;
newpath           200 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
newpath           201 plugin/pid/pid_filewrappers.cpp   int retval = _real_lxstat64( vers, newpath, buf );
newpath           208 plugin/pid/pid_filewrappers.cpp   char *newpath = tmpbuf;
newpath           210 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
newpath           211 plugin/pid/pid_filewrappers.cpp   return NEXT_FNC(readlink) (newpath, buf, bufsiz);
newpath           214 plugin/pid/pid_filewrappers.cpp     JASSERT(ret < bufsiz)(ret)(bufsiz)(buf)(newpath);
newpath           216 plugin/pid/pid_filewrappers.cpp     updateProcPathRealToVirtual(buf, newpath);
newpath           217 plugin/pid/pid_filewrappers.cpp     JASSERT(strlen(newpath) < bufsiz)(newpath)(bufsiz);
newpath           218 plugin/pid/pid_filewrappers.cpp     strcpy(buf, newpath);
newpath           227 plugin/pid/pid_filewrappers.cpp   char *newpath = tmpbuf;
newpath           228 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
newpath           230 plugin/pid/pid_filewrappers.cpp   char *retval = NEXT_FNC_DEFAULT(realpath) (newpath, resolved_path);
newpath           232 plugin/pid/pid_filewrappers.cpp     updateProcPathRealToVirtual(retval, &newpath);
newpath           233 plugin/pid/pid_filewrappers.cpp     strcpy(retval, newpath);
newpath           258 plugin/pid/pid_filewrappers.cpp   char *newpath = tmpbuf;
newpath           259 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
newpath           260 plugin/pid/pid_filewrappers.cpp   return NEXT_FNC(access) (newpath, mode);
newpath           302 plugin/svipc/dmtcp-test.h                                      char *newpath)