Lines Matching refs:pathname
236 info.pathname = path; in SaveToPathInfo()
241 if (!ConvertToProjectRelativePath(info.pathname)) in SaveToPathInfo()
248 if (!MakeRelativePath(GetSamplesDir(), info.pathname)) in SaveToPathInfo()
296 CString pathname; in MakeAbsolutePathname() local
301 pathname = info.pathname; in MakeAbsolutePathname()
305 pathname = ConcatPathNames(gOpenProjectDir, info.pathname); in MakeAbsolutePathname()
309 pathname = ConcatPathNames(GetSamplesDir(), info.pathname); in MakeAbsolutePathname()
312 return pathname; in MakeAbsolutePathname()
343 BOOL CheckOutputFileSecurity(CString &pathname, BOOL binary_mode) in CheckOutputFileSecurity() argument
345 int length = pathname.GetLength(); in CheckOutputFileSecurity()
351 if (pathname.Find(_T("Start Menu\\Programs")) >= 0) in CheckOutputFileSecurity()
354 error_msg += pathname; in CheckOutputFileSecurity()
359 index = pathname.ReverseFind(L'.'); in CheckOutputFileSecurity()
363 extension = pathname.Mid(index + 1); in CheckOutputFileSecurity()
367 index = pathname.GetLength(); in CheckOutputFileSecurity()
374 pathname = pathname.Left(index); in CheckOutputFileSecurity()
375 pathname += L".bin"; in CheckOutputFileSecurity()
383 pathname = pathname.Left(index); in CheckOutputFileSecurity()
384 pathname += L".c"; in CheckOutputFileSecurity()
1028 CString pathname; in GetSamplesDir() local
1035 pathname = module_path; in GetSamplesDir()
1036 if (pathname.Find(_T("WindowsApps"), 0) == -1) in GetSamplesDir()
1142 void AddRecentProject(CString &pathname) in AddRecentProject() argument
1152 if (StudioXIni.recent_project_paths[loop] == pathname) in AddRecentProject()
1172 StudioXIni.recent_project_paths[0] = pathname; in AddRecentProject()
1669 BOOL FileExists(INT pathtype, CString pathname) in FileExists() argument
1671 CString file = pathname; in FileExists()
1673 path_info.pathname = pathname; in FileExists()
1698 BOOL FileExists(INT display_index, INT resource_type, CString pathname) in FileExists() argument
1736 FormatPath(pathname); in FileExists()
1737 ConvertToProjectRelativePath(pathname); in FileExists()
1749 if (_tcscmp(str, pathname) == 0) in FileExists()