Lines Matching refs:resultPath

467 bool MyGetFullPathName(LPCWSTR fileName, UString &resultPath)  in MyGetFullPathName()  argument
469 resultPath = fileName; in MyGetFullPathName()
473 bool MyGetFullPathName(LPCWSTR fileName, UString &resultPath, int &fileNamePartStartIndex) in MyGetFullPathName() argument
475 resultPath = fileName; in MyGetFullPathName()
477 fileNamePartStartIndex = resultPath.ReverseFind(WCHAR_PATH_SEPARATOR); in MyGetFullPathName()
523 bool MyGetFullPathName(LPCTSTR fileName, CSysString &resultPath, int &fileNamePartStartIndex) in MyGetFullPathName() argument
525 resultPath.Empty(); in MyGetFullPathName()
527 LPTSTR buffer = resultPath.GetBuffer(MAX_PATH); in MyGetFullPathName()
529 resultPath.ReleaseBuffer(); in MyGetFullPathName()
536 buffer = resultPath.GetBuffer(needLength + 1); in MyGetFullPathName()
538 resultPath.ReleaseBuffer(); in MyGetFullPathName()
549 AddTrailingDots(fileName, resultPath); in MyGetFullPathName()
556 bool MyGetFullPathName(LPCWSTR fileName, UString &resultPath, int &fileNamePartStartIndex) in MyGetFullPathName() argument
558 resultPath.Empty(); in MyGetFullPathName()
562 LPWSTR buffer = resultPath.GetBuffer(MAX_PATH); in MyGetFullPathName()
564 resultPath.ReleaseBuffer(); in MyGetFullPathName()
571 buffer = resultPath.GetBuffer(needLength + 1); in MyGetFullPathName()
573 resultPath.ReleaseBuffer(); in MyGetFullPathName()
583 AddTrailingDots(fileName, resultPath); in MyGetFullPathName()
594 resultPath = resultPath1 + resultPath2; in MyGetFullPathName()
668 CSysString &resultPath, UINT32 &filePart) in MySearchPath() argument
672 MAX_PATH, resultPath.GetBuffer(MAX_PATH + 1), &filePartPointer); in MySearchPath()
673 filePart = (UINT32)(filePartPointer - (LPCTSTR)resultPath); in MySearchPath()
674 resultPath.ReleaseBuffer(); in MySearchPath()
681 UString &resultPath, UINT32 &filePart) in MySearchPath() argument
687 MAX_PATH, resultPath.GetBuffer(MAX_PATH + 1), &filePartPointer); in MySearchPath()
688 filePart = (UINT32)(filePartPointer - (LPCWSTR)resultPath); in MySearchPath()
689 resultPath.ReleaseBuffer(); in MySearchPath()
703 resultPath = resultPath1 + resultPath2; in MySearchPath()
759 UINT CTempFile::Create(LPCTSTR dirPath, LPCTSTR prefix, CSysString &resultPath) in Create() argument
762 UINT number = MyGetTempFileName(dirPath, prefix, resultPath); in Create()
765 _fileName = resultPath; in Create()
771 bool CTempFile::Create(LPCTSTR prefix, CSysString &resultPath) in Create() argument
776 if (Create(tempPath, prefix, resultPath) != 0) in Create()
783 return (Create(tempPath, prefix, resultPath) != 0); in Create()
797 UINT CTempFileW::Create(LPCWSTR dirPath, LPCWSTR prefix, UString &resultPath) in Create() argument
800 UINT number = MyGetTempFileName(dirPath, prefix, resultPath); in Create()
803 _fileName = resultPath; in Create()
809 bool CTempFileW::Create(LPCWSTR prefix, UString &resultPath) in Create() argument
814 if (Create(tempPath, prefix, resultPath) != 0) in Create()
818 return (Create(tempPath, prefix, resultPath) != 0); in Create()