Searched refs:fileNamePartStartIndex (Results 1 – 3 of 3) sorted by relevance
/external/lzma/CPP/Windows/ |
D | FileDir.cpp | 473 bool MyGetFullPathName(LPCWSTR fileName, UString &resultPath, int &fileNamePartStartIndex) in MyGetFullPathName() argument 477 fileNamePartStartIndex = resultPath.ReverseFind(WCHAR_PATH_SEPARATOR); in MyGetFullPathName() 478 fileNamePartStartIndex++; in MyGetFullPathName() 523 bool MyGetFullPathName(LPCTSTR fileName, CSysString &resultPath, int &fileNamePartStartIndex) in MyGetFullPathName() argument 544 fileNamePartStartIndex = lstrlen(fileName); in MyGetFullPathName() 546 fileNamePartStartIndex = (int)(fileNamePointer - buffer); in MyGetFullPathName() 556 bool MyGetFullPathName(LPCWSTR fileName, UString &resultPath, int &fileNamePartStartIndex) in MyGetFullPathName() argument 579 fileNamePartStartIndex = MyStringLen(fileName); in MyGetFullPathName() 581 fileNamePartStartIndex = (int)(fileNamePointer - buffer); in MyGetFullPathName() 589 if (!MyGetFullPathName(GetSysPath(fileName), sysPath, fileNamePartStartIndex)) in MyGetFullPathName() [all …]
|
D | FileDir.h | 48 bool MyGetFullPathName(LPCWSTR fileName, UString &resultPath, int &fileNamePartStartIndex); 52 bool MyGetFullPathName(LPCTSTR fileName, CSysString &resultPath, int &fileNamePartStartIndex); 56 int &fileNamePartStartIndex);
|
/external/lzma/CPP/7zip/UI/Common/ |
D | OpenArchive.cpp | 475 int fileNamePartStartIndex; in SetCallback() local 476 NFile::NDirectory::MyGetFullPathName(filePath, fullName, fileNamePartStartIndex); in SetCallback() 478 fullName.Left(fileNamePartStartIndex), in SetCallback() 479 fullName.Mid(fileNamePartStartIndex)); in SetCallback() 497 int fileNamePartStartIndex; in Open2() local 498 if (!NFile::NDirectory::MyGetFullPathName(filePath, fullName, fileNamePartStartIndex)) in Open2() 500 prefix = fullName.Left(fileNamePartStartIndex); in Open2() 501 name = fullName.Mid(fileNamePartStartIndex); in Open2()
|