Lines Matching refs:outfile
179 CString outfile = m_project->mHeader.resource_path; in SetOutFile() local
180 if (outfile.GetAt(outfile.GetLength() - 1) != '\\') in SetOutFile()
182 outfile += '\\'; in SetOutFile()
184 outfile += filename; in SetOutFile()
186 if (outfile.GetAt(1) != ':') in SetOutFile()
188 ConvertToProjectRelativePath(outfile); in SetOutFile()
190 info.pathname = outfile; in SetOutFile()
193 outfile = MakeAbsolutePathname(info); in SetOutFile()
196 if (!CheckOutputFileSecurity(outfile, binary_mode)) in SetOutFile()
207 if (!outfile.Compare(pathname)) in SetOutFile()
217 if (!m_outfile->Open(outfile, CFile::modeCreate | CFile::modeWrite)) in SetOutFile()
220 … msg.Format(_T("Could not open output file:\n%s\nPlease check resource file path."), outfile); in SetOutFile()