path              116 ckptserializer.cpp static int test_use_compression(char *compressor, char *command, char *path,
path              152 ckptserializer.cpp   if (Util::findExecutable(command, getenv("PATH"), path) == NULL) {
path               33 ckptserializer.h     int openCkptFileToWrite(const string& path);
path              125 dmtcp_restart.cpp static int readCkptHeader(const string& path, ProcessInfo *pInfo);
path              126 dmtcp_restart.cpp static int openCkptFileToRead(const string& path);
path              131 dmtcp_restart.cpp     RestoreTarget(const string& path)
path              132 dmtcp_restart.cpp       : _path(path)
path              396 dmtcp_restart.cpp int readCkptHeader(const string& path, ProcessInfo *pInfo)
path              398 dmtcp_restart.cpp   int fd = openCkptFileToRead(path);
path              539 dmtcp_restart.cpp int openCkptFileToRead(const string& path)
path              542 dmtcp_restart.cpp   int fd = open_ckpt_to_read(path.c_str());
path              544 dmtcp_restart.cpp   JASSERT(fd >= 0) (path) .Text("Failed to open file.");
path              546 dmtcp_restart.cpp   JASSERT(read(fd, buf, len) == len)(path) .Text("read() failed");
path              548 dmtcp_restart.cpp     JTRACE("opened checkpoint file [uncompressed]")(path);
path              551 dmtcp_restart.cpp     fd = open_ckpt_to_read(path.c_str()); /* Re-open from beginning */
path              552 dmtcp_restart.cpp     JASSERT(fd >= 0) (path) .Text("Failed to open file.");
path              579 dmtcp_restart.cpp static void setNewCkptDir(char *path)
path              582 dmtcp_restart.cpp   if (stat(path, &st) == -1) {
path              583 dmtcp_restart.cpp     JASSERT(mkdir(path, S_IRWXU) == 0 || errno == EEXIST)
path              584 dmtcp_restart.cpp       (JASSERT_ERRNO) (path)
path              586 dmtcp_restart.cpp     JASSERT(0 == access(path, X_OK|W_OK)) (path)
path              589 dmtcp_restart.cpp     JASSERT(S_ISDIR(st.st_mode)) (path) .Text("ckptdir not a directory");
path              592 dmtcp_restart.cpp   int fd = open(path, O_RDONLY);
path              593 dmtcp_restart.cpp   JASSERT(fd != -1) (path);
path              595 dmtcp_restart.cpp     (fd) (path);
path              217 dmtcpworker.cpp static void writeCurrentLogFileNameToPrevLogFile(string& path)
path              227 dmtcpworker.cpp   int fd = open(path.c_str(), O_WRONLY | O_APPEND, 0);
path               71 execwrappers.cpp static bool isBlacklistedProgram(const char *path)
path               73 execwrappers.cpp   string programName = jalib::Filesystem::BaseName(path);
path              230 execwrappers.cpp static void execShortLivedProcessAndExit(const char *path, char *const argv[])
path              238 execwrappers.cpp     output = _real_popen(path, "r");
path              240 execwrappers.cpp     string command = path;
path              263 execwrappers.cpp static void dmtcpPrepareForExec(const char *path, char *const argv[],
path              266 execwrappers.cpp   JTRACE("Preparing for Exec") (path);
path              270 execwrappers.cpp   if (path != NULL && Util::strStartsWith(path, libPrefix))
path              271 execwrappers.cpp     execShortLivedProcessAndExit(path, argv);
path              272 execwrappers.cpp   if (path != NULL && Util::strStartsWith(path, lib64Prefix))
path              273 execwrappers.cpp     execShortLivedProcessAndExit(path, argv);
path              279 execwrappers.cpp   if (path != NULL && Util::strEndsWith(path, "/utempter")) {
path              280 execwrappers.cpp     JTRACE("Trying to exec: utempter")(path)(argv[0])(argv[1]);
path              299 execwrappers.cpp     execShortLivedProcessAndExit(path, argv);
path              307 execwrappers.cpp   if (Util::isSetuid(path)) {
path              308 execwrappers.cpp     if (Util::isScreen(path)) {
path              312 execwrappers.cpp     Util::patchArgvIfSetuid(path, argv, newArgv);
path              317 execwrappers.cpp     *filename = (char*)path;
path              336 execwrappers.cpp   JTRACE("Will exec filename instead of path") (path) (*filename);
path              351 execwrappers.cpp static void dmtcpProcessFailedExec(const char *path, char *newArgv[])
path              355 execwrappers.cpp   if (Util::isSetuid(path)) {
path              364 execwrappers.cpp   JTRACE("Processed failed Exec Attempt") (path) (getenv("LD_PRELOAD"));
path              531 execwrappers.cpp extern "C" int execv (const char *path, char *const argv[])
path              533 execwrappers.cpp   JTRACE("execv() wrapper, calling execve with environ") (path);
path              540 execwrappers.cpp   return execve(path, argv, (char* const*) &env[0]);
path              610 execwrappers.cpp extern "C" int execl (const char *path, const char *arg, ...)
path              612 execwrappers.cpp   JTRACE("execl() wrapper") (path);
path              647 execwrappers.cpp   int ret = execv (path, (char *const *) argv);
path              700 execwrappers.cpp extern "C" int execle(const char *path, const char *arg, ...)
path              702 execwrappers.cpp   JTRACE("execle() wrapper") (path);
path              738 execwrappers.cpp   int ret = execve (path, (char *const *) argv, (char *const *) envp);
path              231 mtcp/mtcp_sys.h # define mtcp_sys_access(path,mode)  \
path              232 mtcp/mtcp_sys.h          mtcp_inline_syscall(faccessat,4,AT_FDCWD,path,mode,AT_EACCESS)
path              233 mtcp/mtcp_sys.h # define mtcp_sys_unlink(path)  mtcp_inline_syscall(unlinkat,3,AT_FDCWD, path, 0)
path              185 nosyscallsreal.c int _real_execv (const char *path, char *const argv[])
path              187 nosyscallsreal.c   REAL_FUNC_PASSTHROUGH (execv) (path,argv);
path              412 nosyscallsreal.c FILE * _real_fopen(const char *path, const char *mode) {
path              413 nosyscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (FILE *, fopen) (path, mode);
path              416 nosyscallsreal.c FILE * _real_fopen64(const char *path, const char *mode) {
path              417 nosyscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (FILE *, fopen64) (path, mode);
path              441 nosyscallsreal.c ssize_t _real_readlink(const char *path, char *buf, size_t bufsiz) {
path              442 nosyscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (ssize_t, readlink) (path, buf, bufsiz);
path               72 plugin/ipc/file/fileconnection.cpp static bool _isBlacklistedFile(string& path)
path               74 plugin/ipc/file/fileconnection.cpp   if ((Util::strStartsWith(path, "/dev/") &&
path               75 plugin/ipc/file/fileconnection.cpp        !Util::strStartsWith(path, "/dev/shm/")) ||
path               76 plugin/ipc/file/fileconnection.cpp       Util::strStartsWith(path, "/proc/") ||
path               77 plugin/ipc/file/fileconnection.cpp       Util::strStartsWith(path, dmtcp_get_tmpdir())) {
path              228 plugin/ipc/file/fileconnection.cpp PtyConnection::PtyConnection(int fd, const char *path,
path              240 plugin/ipc/file/fileconnection.cpp       _ptsName = path;
path              245 plugin/ipc/file/fileconnection.cpp       _ptsName = path;
path              246 plugin/ipc/file/fileconnection.cpp       SharedData::getVirtPtyName(path, buf, sizeof(buf));
path              248 plugin/ipc/file/fileconnection.cpp         SharedData::createVirtualPtyName(path, buf, sizeof(buf));
path              256 plugin/ipc/file/fileconnection.cpp       _masterName = path;
path              276 plugin/ipc/file/fileconnection.cpp       _ptsName = path;
path              277 plugin/ipc/file/fileconnection.cpp       SharedData::getVirtPtyName(path, buf, sizeof(buf));
path              279 plugin/ipc/file/fileconnection.cpp       JASSERT(strlen(buf) != 0) (path);
path              284 plugin/ipc/file/fileconnection.cpp       _masterName = path;
path              288 plugin/ipc/file/fileconnection.cpp       _ptsName = path;
path              922 plugin/ipc/file/fileconnection.cpp string FileConnection::getSavedFilePath(const string& path)
path               60 plugin/ipc/file/fileconnection.h       PtyConnection(int fd, const char *path, int flags, mode_t mode, int type);
path              126 plugin/ipc/file/fileconnection.h       FileConnection(const string& path, int flags, mode_t mode,
path              129 plugin/ipc/file/fileconnection.h         , _path(path)
path              161 plugin/ipc/file/fileconnection.h       string getSavedFilePath(const string& path);
path              183 plugin/ipc/file/fileconnection.h       FifoConnection(const string& path, int flags, mode_t mode)
path              185 plugin/ipc/file/fileconnection.h           , _path(path)
path              211 plugin/ipc/file/fileconnection.h       string getSavedFilePath(const string& path);
path              432 plugin/ipc/file/fileconnlist.cpp Connection *FileConnList::findDuplication(int fd, const char *path)
path              434 plugin/ipc/file/fileconnlist.cpp   string npath(path);
path              450 plugin/ipc/file/fileconnlist.cpp void FileConnList::processFileConnection(int fd, const char *path,
path              458 plugin/ipc/file/fileconnlist.cpp   if (path == NULL) {
path              461 plugin/ipc/file/fileconnlist.cpp     device = jalib::Filesystem::ResolveSymlink(path);
path              463 plugin/ipc/file/fileconnlist.cpp       device = path;
path              467 plugin/ipc/file/fileconnlist.cpp   path = device.c_str();
path              468 plugin/ipc/file/fileconnlist.cpp   if (strcmp(path, "/dev/tty") == 0) {
path              470 plugin/ipc/file/fileconnlist.cpp     c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_DEV_TTY);
path              471 plugin/ipc/file/fileconnlist.cpp   } else if (strcmp(path, "/dev/pty") == 0) {
path              473 plugin/ipc/file/fileconnlist.cpp   } else if (Util::strStartsWith(path, "/dev/pty")) {
path              475 plugin/ipc/file/fileconnlist.cpp     c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_BSD_MASTER);
path              476 plugin/ipc/file/fileconnlist.cpp   } else if (Util::strStartsWith(path, "/dev/tty")) {
path              478 plugin/ipc/file/fileconnlist.cpp     c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_BSD_SLAVE);
path              479 plugin/ipc/file/fileconnlist.cpp   } else if (strcmp(path, "/dev/ptmx") == 0 ||
path              480 plugin/ipc/file/fileconnlist.cpp              strcmp(path, "/dev/pts/ptmx") == 0) {
path              482 plugin/ipc/file/fileconnlist.cpp     c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_MASTER);
path              483 plugin/ipc/file/fileconnlist.cpp   } else if (Util::strStartsWith(path, "/dev/pts/")) {
path              485 plugin/ipc/file/fileconnlist.cpp     c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_SLAVE);
path              489 plugin/ipc/file/fileconnlist.cpp     if (dmtcp_is_bq_file && dmtcp_is_bq_file(path)) {
path              493 plugin/ipc/file/fileconnlist.cpp     c = new FileConnection(path, flags, mode, type);
path              496 plugin/ipc/file/fileconnlist.cpp     c = new FifoConnection(path, flags, mode);
path              498 plugin/ipc/file/fileconnlist.cpp     JASSERT(false) (path) .Text("Unimplemented file type.");
path               58 plugin/ipc/file/fileconnlist.h       Connection *findDuplication(int fd, const char *path);
path               59 plugin/ipc/file/fileconnlist.h       void processFileConnection(int fd, const char *path, int flags, mode_t mode);
path              360 plugin/ipc/file/filewrappers.cpp static int _open_open64_work(int(*fn) (const char *path, int flags, ...),
path              361 plugin/ipc/file/filewrappers.cpp                              const char *path, int flags, mode_t mode)
path              364 plugin/ipc/file/filewrappers.cpp   const char *newpath = path;
path              368 plugin/ipc/file/filewrappers.cpp   if (Util::strStartsWith(path, VIRT_PTS_PREFIX_STR)) {
path              369 plugin/ipc/file/filewrappers.cpp     SharedData::getRealPtyName(path, currPtsDevName,
path              387 plugin/ipc/file/filewrappers.cpp extern "C" int open(const char *path, int flags, ...)
path              397 plugin/ipc/file/filewrappers.cpp   return _open_open64_work(_real_open, path, flags, mode);
path              400 plugin/ipc/file/filewrappers.cpp extern "C" int __open_2(const char *path, int flags)
path              402 plugin/ipc/file/filewrappers.cpp   return _open_open64_work(_real_open, path, flags, 0);
path              413 plugin/ipc/file/filewrappers.cpp extern "C" int open64(const char *path, int flags, ...)
path              423 plugin/ipc/file/filewrappers.cpp   return _open_open64_work(_real_open64, path, flags, mode);
path              426 plugin/ipc/file/filewrappers.cpp extern "C" int __open64_2(const char *path, int flags)
path              428 plugin/ipc/file/filewrappers.cpp   return _open_open64_work(_real_open64, path, flags, 0);
path              431 plugin/ipc/file/filewrappers.cpp extern "C" int creat(const char *path, mode_t mode)
path              434 plugin/ipc/file/filewrappers.cpp   return _open_open64_work(_real_open, path, O_CREAT|O_WRONLY|O_TRUNC, mode);
path              437 plugin/ipc/file/filewrappers.cpp extern "C" int creat64(const char *path, mode_t mode)
path              440 plugin/ipc/file/filewrappers.cpp   return _open_open64_work(_real_open64, path, O_CREAT|O_WRONLY|O_TRUNC, mode);
path              443 plugin/ipc/file/filewrappers.cpp static FILE *_fopen_fopen64_work(FILE*(*fn) (const char *path, const char *mode),
path              444 plugin/ipc/file/filewrappers.cpp                                  const char *path, const char *mode)
path              447 plugin/ipc/file/filewrappers.cpp   const char *newpath = path;
path              451 plugin/ipc/file/filewrappers.cpp   if (Util::strStartsWith(path, VIRT_PTS_PREFIX_STR)) {
path              452 plugin/ipc/file/filewrappers.cpp     SharedData::getRealPtyName(path, currPtsDevName,
path              468 plugin/ipc/file/filewrappers.cpp extern "C" FILE *fopen(const char* path, const char* mode)
path              470 plugin/ipc/file/filewrappers.cpp   return _fopen_fopen64_work(_real_fopen, path, mode);
path              473 plugin/ipc/file/filewrappers.cpp extern "C" FILE *fopen64(const char* path, const char* mode)
path              475 plugin/ipc/file/filewrappers.cpp   return _fopen_fopen64_work(_real_fopen64, path, mode);
path              478 plugin/ipc/file/filewrappers.cpp extern "C" FILE *freopen(const char *path, const char *mode, FILE *stream)
path              481 plugin/ipc/file/filewrappers.cpp   const char *newpath = path;
path              485 plugin/ipc/file/filewrappers.cpp   if (Util::strStartsWith(path, VIRT_PTS_PREFIX_STR)) {
path              486 plugin/ipc/file/filewrappers.cpp     SharedData::getRealPtyName(path, currPtsDevName,
path              502 plugin/ipc/file/filewrappers.cpp extern "C" int openat(int dirfd, const char *path, int flags, ...)
path              509 plugin/ipc/file/filewrappers.cpp   int fd = _real_openat(dirfd, path, flags, mode);
path              520 plugin/ipc/file/filewrappers.cpp extern "C" int openat_2(int dirfd, const char *path, int flags)
path              522 plugin/ipc/file/filewrappers.cpp   return openat(dirfd, path, flags, 0);
path              525 plugin/ipc/file/filewrappers.cpp extern "C" int __openat_2(int dirfd, const char *path, int flags)
path              527 plugin/ipc/file/filewrappers.cpp   return openat(dirfd, path, flags, 0);
path              530 plugin/ipc/file/filewrappers.cpp extern "C" int openat64(int dirfd, const char *path, int flags, ...)
path              537 plugin/ipc/file/filewrappers.cpp   int fd = _real_openat64(dirfd, path, flags, mode);
path              548 plugin/ipc/file/filewrappers.cpp extern "C" int openat64_2(int dirfd, const char *path, int flags)
path              550 plugin/ipc/file/filewrappers.cpp   return openat64(dirfd, path, flags, 0);
path              553 plugin/ipc/file/filewrappers.cpp extern "C" int __openat64_2(int dirfd, const char *path, int flags)
path              555 plugin/ipc/file/filewrappers.cpp   return openat64(dirfd, path, flags, 0);
path              569 plugin/ipc/file/filewrappers.cpp static void updateStatPath(const char *path, char **newpath)
path              571 plugin/ipc/file/filewrappers.cpp   if (Util::strStartsWith(path, VIRT_PTS_PREFIX_STR)) {
path              573 plugin/ipc/file/filewrappers.cpp     SharedData::getRealPtyName(path, currPtsDevName,
path              577 plugin/ipc/file/filewrappers.cpp     *newpath = (char*) path;
path              581 plugin/ipc/file/filewrappers.cpp extern "C" int __xstat(int vers, const char *path, struct stat *buf)
path              586 plugin/ipc/file/filewrappers.cpp   updateStatPath(path, &newpath);
path              592 plugin/ipc/file/filewrappers.cpp extern "C" int __xstat64(int vers, const char *path, struct stat64 *buf)
path              597 plugin/ipc/file/filewrappers.cpp   updateStatPath(path, &newpath);
path              621 plugin/ipc/file/filewrappers.cpp extern "C" int __lxstat(int vers, const char *path, struct stat *buf)
path              626 plugin/ipc/file/filewrappers.cpp   updateStatPath(path, &newpath);
path              632 plugin/ipc/file/filewrappers.cpp extern "C" int __lxstat64(int vers, const char *path, struct stat64 *buf)
path              637 plugin/ipc/file/filewrappers.cpp   updateStatPath(path, &newpath);
path              647 plugin/ipc/file/filewrappers.cpp extern "C" ssize_t readlink(const char *path, char *buf, size_t bufsiz)
path              653 plugin/ipc/file/filewrappers.cpp   if (path != NULL && strcmp(path, "/proc/self/exe") == 0) {
path              658 plugin/ipc/file/filewrappers.cpp     updateStatPath(path, &newpath);
path              665 plugin/ipc/file/filewrappers.cpp extern "C" ssize_t __readlink_chk(const char *path, char *buf,
path              668 plugin/ipc/file/filewrappers.cpp   return readlink(path, buf, bufsiz);
path              696 plugin/ipc/file/filewrappers.cpp extern "C" char *realpath(const char *path, char *resolved_path)
path              699 plugin/ipc/file/filewrappers.cpp   if (Util::strStartsWith(path, "/dev/pts")) {
path              700 plugin/ipc/file/filewrappers.cpp     JASSERT(strlen(path) < PATH_MAX);
path              702 plugin/ipc/file/filewrappers.cpp       ret = (char*) malloc(strlen(path) + 1);
path              706 plugin/ipc/file/filewrappers.cpp     strcpy(ret, path);
path              708 plugin/ipc/file/filewrappers.cpp     ret = _real_realpath(path, resolved_path);
path              713 plugin/ipc/file/filewrappers.cpp extern "C" char *__realpath(const char *path, char *resolved_path)
path              715 plugin/ipc/file/filewrappers.cpp   return realpath(path, resolved_path);
path              718 plugin/ipc/file/filewrappers.cpp extern "C" char *__realpath_chk(const char *path, char *resolved_path,
path              721 plugin/ipc/file/filewrappers.cpp   return realpath(path, resolved_path);
path              724 plugin/ipc/file/filewrappers.cpp extern "C" char *canonicalize_file_name(const char *path)
path              726 plugin/ipc/file/filewrappers.cpp   return realpath(path, NULL);
path              729 plugin/ipc/file/filewrappers.cpp extern "C" int access(const char *path, int mode)
path              731 plugin/ipc/file/filewrappers.cpp   if (Util::strStartsWith(path, "/dev/pts")) {
path              734 plugin/ipc/file/filewrappers.cpp     SharedData::getRealPtyName(path, currPtsDevName, sizeof(currPtsDevName));
path              739 plugin/ipc/file/filewrappers.cpp   return _real_access(path, mode);
path               64 plugin/pid/pid_filewrappers.cpp static void updateProcPathVirtualToReal(const char *path, char **newpath)
path               66 plugin/pid/pid_filewrappers.cpp   if (Util::strStartsWith(path, PROC_PREFIX)) {
path               69 plugin/pid/pid_filewrappers.cpp     pid_t virtualPid = strtol(&path[index], &rest, 0);
path               76 plugin/pid/pid_filewrappers.cpp   *newpath = (char *)path;
path               80 plugin/pid/pid_filewrappers.cpp static void updateProcPathRealToVirtual(const char *path, char **newpath)
path               82 plugin/pid/pid_filewrappers.cpp   if (Util::strStartsWith(path, PROC_PREFIX)) {
path               85 plugin/pid/pid_filewrappers.cpp     pid_t realPid = strtol(&path[index], &rest, 0);
path               92 plugin/pid/pid_filewrappers.cpp   *newpath = (char *)path;
path               98 plugin/pid/pid_filewrappers.cpp extern "C" int open (const char *path, int flags, ... )
path              110 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
path              115 plugin/pid/pid_filewrappers.cpp extern "C" int open64 (const char *path, int flags, ... )
path              127 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
path              131 plugin/pid/pid_filewrappers.cpp extern "C" FILE *fopen (const char* path, const char* mode)
path              135 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
path              139 plugin/pid/pid_filewrappers.cpp extern "C" FILE *fopen64 (const char* path, const char* mode)
path              143 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
path              155 plugin/pid/pid_filewrappers.cpp extern "C" int __xstat(int vers, const char *path, struct stat *buf)
path              159 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
path              164 plugin/pid/pid_filewrappers.cpp extern "C" int __xstat64(int vers, const char *path, struct stat64 *buf)
path              168 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
path              187 plugin/pid/pid_filewrappers.cpp extern "C" int __lxstat(int vers, const char *path, struct stat *buf)
path              191 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
path              196 plugin/pid/pid_filewrappers.cpp extern "C" int __lxstat64(int vers, const char *path, struct stat64 *buf)
path              200 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
path              205 plugin/pid/pid_filewrappers.cpp extern "C" ssize_t readlink(const char *path, char *buf, size_t bufsiz)
path              210 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
path              224 plugin/pid/pid_filewrappers.cpp extern "C" char *realpath(const char *path, char *resolved_path)
path              228 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
path              238 plugin/pid/pid_filewrappers.cpp extern "C" char *__realpath(const char *path, char *resolved_path)
path              240 plugin/pid/pid_filewrappers.cpp   return realpath(path, resolved_path);
path              243 plugin/pid/pid_filewrappers.cpp extern "C" char *__realpath_chk(const char *path, char *resolved_path,
path              246 plugin/pid/pid_filewrappers.cpp   return realpath(path, resolved_path);
path              249 plugin/pid/pid_filewrappers.cpp extern "C" char *canonicalize_file_name(const char *path)
path              251 plugin/pid/pid_filewrappers.cpp   return realpath(path, NULL);
path              255 plugin/pid/pid_filewrappers.cpp extern "C" int access(const char *path, int mode)
path              259 plugin/pid/pid_filewrappers.cpp   updateProcPathVirtualToReal(path, &newpath);
path              358 plugin/pid/pid_syscallsreal.c int _real_open(const char *path, int flags, ...) {
path              367 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH(open) (path, flags, mode);
path              370 plugin/pid/pid_syscallsreal.c int _real_open64(const char *path, int flags, ...) {
path              379 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH(open64) (path, flags, mode);
path              382 plugin/pid/pid_syscallsreal.c FILE* _real_fopen(const char *path, const char *mode) {
path              383 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED(FILE*, fopen) (path, mode);
path              386 plugin/pid/pid_syscallsreal.c FILE* _real_fopen64(const char *path, const char *mode) {
path              387 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED(FILE*, fopen) (path, mode);
path              394 plugin/pid/pid_syscallsreal.c int _real_xstat(int vers, const char *path, struct stat *buf) {
path              395 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH(__xstat) (vers, path, buf);
path              398 plugin/pid/pid_syscallsreal.c int _real_xstat64(int vers, const char *path, struct stat64 *buf) {
path              399 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH(__xstat64) (vers, path, buf);
path              402 plugin/pid/pid_syscallsreal.c int _real_lxstat(int vers, const char *path, struct stat *buf) {
path              403 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH(__lxstat) (vers, path, buf);
path              406 plugin/pid/pid_syscallsreal.c int _real_lxstat64(int vers, const char *path, struct stat64 *buf) {
path              407 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH(__lxstat64) (vers, path, buf);
path              410 plugin/pid/pid_syscallsreal.c ssize_t _real_readlink(const char *path, char *buf, size_t bufsiz) {
path              411 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH(readlink) (path, buf, bufsiz);
path              216 plugin/pid/pidwrappers.h   FILE* _real_fopen(const char *path, const char *mode);
path              217 plugin/pid/pidwrappers.h   FILE* _real_fopen64(const char *path, const char *mode);
path              219 plugin/pid/pidwrappers.h   int _real_xstat(int vers, const char *path, struct stat *buf);
path              220 plugin/pid/pidwrappers.h   int _real_xstat64(int vers, const char *path, struct stat64 *buf);
path              221 plugin/pid/pidwrappers.h   int _real_lxstat(int vers, const char *path, struct stat *buf);
path              222 plugin/pid/pidwrappers.h   int _real_lxstat64(int vers, const char *path, struct stat64 *buf);
path              223 plugin/pid/pidwrappers.h   ssize_t _real_readlink(const char *path, char *buf, size_t bufsiz);
path              288 plugin/svipc/dmtcp-test.h EXTERNC int dmtcp_is_bq_file(const char *path)
path              290 plugin/svipc/dmtcp-test.h EXTERNC int dmtcp_bq_should_ckpt_file(const char *path, int *type)
path              292 plugin/svipc/dmtcp-test.h EXTERNC int dmtcp_bq_restore_file(const char *path, const char *savedFilePath,
path              300 plugin/svipc/dmtcp-test.h EXTERNC int dmtcp_must_ckpt_file(const char *path) __attribute((weak));
path              592 syscallsreal.c int _real_execv (const char *path, char *const argv[])
path              594 syscallsreal.c   REAL_FUNC_PASSTHROUGH (execv) (path,argv);
path              840 syscallsreal.c FILE * _real_fopen(const char *path, const char *mode) {
path              841 syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (FILE *, fopen) (path, mode);
path              845 syscallsreal.c FILE * _real_fopen64(const char *path, const char *mode) {
path              846 syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (FILE *, fopen64) (path, mode);
path              893 syscallsreal.c int _real_xstat(int vers, const char *path, struct stat *buf) {
path              894 syscallsreal.c   REAL_FUNC_PASSTHROUGH (__xstat) (vers, path, buf);
path              898 syscallsreal.c int _real_xstat64(int vers, const char *path, struct stat64 *buf) {
path              899 syscallsreal.c   REAL_FUNC_PASSTHROUGH (__xstat64) (vers, path, buf);
path              903 syscallsreal.c int _real_lxstat(int vers, const char *path, struct stat *buf) {
path              904 syscallsreal.c   REAL_FUNC_PASSTHROUGH (__lxstat) (vers, path, buf);
path              908 syscallsreal.c int _real_lxstat64(int vers, const char *path, struct stat64 *buf) {
path              909 syscallsreal.c   REAL_FUNC_PASSTHROUGH (__lxstat64) (vers, path, buf);
path              913 syscallsreal.c ssize_t _real_readlink(const char *path, char *buf, size_t bufsiz) {
path              914 syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (ssize_t, readlink) (path, buf, bufsiz);
path              305 syscallwrappers.h   int _real_execv (const char *path, char *const argv[]);
path              320 syscallwrappers.h   FILE* _real_fopen(const char *path, const char *mode);
path              321 syscallwrappers.h   FILE* _real_fopen64(const char *path, const char *mode);
path              391 syscallwrappers.h   int _real_xstat(int vers, const char *path, struct stat *buf);
path              392 syscallwrappers.h   int _real_xstat64(int vers, const char *path, struct stat64 *buf);
path              393 syscallwrappers.h   int _real_lxstat(int vers, const char *path, struct stat *buf);
path              394 syscallwrappers.h   int _real_lxstat64(int vers, const char *path, struct stat64 *buf);
path              395 syscallwrappers.h   ssize_t _real_readlink(const char *path, char *buf, size_t bufsiz);
path              464 util_exec.cpp  void Util::runMtcpRestore(int is32bitElf, const char* path, int fd,
path              490 util_exec.cpp    JTRACE ("launching mtcp_restart --fd")(fd)(path);
path              205 util_misc.cpp  bool Util::createDirectoryTree(const string& path)
path              207 util_misc.cpp    size_t index = path.rfind('/');
path              212 util_misc.cpp    string dir = path.substr(0, index);
path              214 util_misc.cpp    index = path.find('/');
path              217 util_misc.cpp        string dirName = path.substr(0, index);
path              241 util_misc.cpp      index = path.find('/', index+1);
path              584 util_misc.cpp    char *path;
path              595 util_misc.cpp      path = exec_path;
path              598 util_misc.cpp        *path++ = *tmp_env++;
path              601 util_misc.cpp      *path++ = '/'; /* '...//... is same as .../... in POSIX */
path              603 util_misc.cpp      *path++ = '\0';