Lines Matching defs:res
145 bool res = false;
148 res = BOOLToBool(::SetFileTime(hDir, cTime, aTime, mTime));
151 return res;
696 bool res = MyGetFullPathName(path, resDirPrefix);
697 if (!res)
703 return res;
957 int res = rename(oldFile, newFile);
958 if (res == 0)
967 res = stat(oldFile, &info_file);
968 if (res != 0)
1008 char *res = getcwd(s, MY_PATH_MAX);
1009 if (res)
1019 res = getcwd(NULL, 0);
1020 if (res)
1022 path = fas2fs(res);
1023 ::free(res);
1198 int res;
1205 res = fchmodat(AT_FDCWD, path, (st.st_mode) & g_umask.mask,
1212 res = chmod(path, (st.st_mode) & g_umask.mask);
1215 return (res == 0);