HomeSort by relevance Sort by last modified time
    Searched refs:longPath (Results 1 - 5 of 5) sorted by null

  /external/lzma/CPP/Windows/
FileFind.cpp 117 UString longPath;
118 if (GetLongPath(wildcard, longPath))
119 _handle = ::FindFirstFileW(longPath, &fd);
140 UString longPath;
141 if (GetLongPath(wildcard, longPath))
142 _handle = ::FindFirstFileW(longPath, &fd);
367 UString longPath;
368 if (GetLongPath(pathName, longPath))
369 _handle = ::FindFirstChangeNotificationW(longPath, BoolToBOOL(watchSubtree), notifyFilter);
384 UString longPath;
    [all...]
FileDir.cpp 106 UString longPath;
107 if (GetLongPath(fileName, longPath))
108 hDir = ::CreateFileW(longPath, GENERIC_WRITE,
128 UString longPath;
129 if (GetLongPath(fileName, longPath))
130 return BOOLToBool(::SetFileAttributesW(longPath, fileAttributes));
140 UString longPath;
141 if (GetLongPath(pathName, longPath))
142 return BOOLToBool(::RemoveDirectoryW(longPath));
179 UString longPath;
    [all...]
FileIO.cpp 94 bool GetLongPath(LPCWSTR path, UString &longPath)
96 if (GetLongPathBase(path, longPath))
97 return !longPath.IsEmpty();
117 UString longPath;
118 if (GetLongPath(fileName, longPath))
119 _handle = ::CreateFileW(longPath, desiredAccess, shareMode,
145 UString longPath;
146 if (GetLongPath(fileName, longPath))
147 _handle = ::CreateFileW(longPath, desiredAccess, shareMode,
FileDir.h 50 bool MyGetShortPathName(LPCTSTR longPath, CSysString &shortPath);
  /sdk/find_java/src/source/
utils.h 330 const char *longPath = mStr;
333 DWORD lenShort = strlen(longPath) + 1;
336 DWORD length = GetShortPathName(longPath, shortPath, lenShort);
342 length = GetShortPathName(longPath, shortPath, lenShort);

Completed in 67 milliseconds