Home
last modified time | relevance | path

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

/sdk/find_java2/src/
DJavaPath.cpp60 TCHAR *shortPath = (TCHAR *)malloc(lenShort * sizeof(TCHAR)); in toShortPath() local
62 DWORD length = GetShortPathName(longPath, shortPath, lenShort); in toShortPath()
65 free(shortPath); in toShortPath()
67 shortPath = (TCHAR *)malloc(length); in toShortPath()
68 length = GetShortPathName(longPath, shortPath, lenShort); in toShortPath()
72 mPath = CPath(shortPath); in toShortPath()
75 free(shortPath); in toShortPath()
/sdk/find_java/src/source/
Dutils.h334 char * shortPath = (char *)malloc(lenShort); in toShortPath() local
336 DWORD length = GetShortPathName(longPath, shortPath, lenShort); in toShortPath()
339 free(shortPath); in toShortPath()
341 shortPath = (char *)malloc(length); in toShortPath()
342 length = GetShortPathName(longPath, shortPath, lenShort); in toShortPath()
345 if (length != 0) dest->set(shortPath); in toShortPath()
347 free(shortPath); in toShortPath()