Home
last modified time | relevance | path

Searched refs:lenShort (Results 1 – 2 of 2) sorted by relevance

/sdk/find_java2/src/
DJavaPath.cpp59 DWORD lenShort = _tcslen(longPath) + 1; in toShortPath() local
60 TCHAR *shortPath = (TCHAR *)malloc(lenShort * sizeof(TCHAR)); in toShortPath()
62 DWORD length = GetShortPathName(longPath, shortPath, lenShort); in toShortPath()
63 if (length > lenShort) { in toShortPath()
66 lenShort = length; in toShortPath()
68 length = GetShortPathName(longPath, shortPath, lenShort); in toShortPath()
/sdk/find_java/src/source/
Dutils.h333 DWORD lenShort = (DWORD)strlen(longPath) + 1; // GetShortPathName deals with DWORDs in toShortPath() local
334 char * shortPath = (char *)malloc(lenShort); in toShortPath()
336 DWORD length = GetShortPathName(longPath, shortPath, lenShort); in toShortPath()
337 if (length > lenShort) { in toShortPath()
340 lenShort = length; in toShortPath()
342 length = GetShortPathName(longPath, shortPath, lenShort); in toShortPath()