st                581 dmtcp_restart.cpp   struct stat st;
st                582 dmtcp_restart.cpp   if (stat(path, &st) == -1) {
st                589 dmtcp_restart.cpp     JASSERT(S_ISDIR(st.st_mode)) (path) .Text("ckptdir not a directory");
st                946 plugin/ipc/file/fileconnection.cpp   struct stat st;
st                949 plugin/ipc/file/fileconnection.cpp   stat(_path.c_str(),&st);
st                951 plugin/ipc/file/fileconnection.cpp   _mode = st.st_mode;
st                 66 util_exec.cpp    struct stat st;
st                 67 util_exec.cpp    stat(pathname, &st);
st                 68 util_exec.cpp    return (S_ISDIR(st.st_mode) == 1
st                 69 util_exec.cpp            && (st.st_mode & 0777) == 0700
st                 70 util_exec.cpp            && st.st_uid == getuid()