OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lenShort
(Results
1 - 2
of
2
) sorted by null
/sdk/find_java2/src/
JavaPath.cpp
59
DWORD
lenShort
= _tcslen(longPath) + 1;
60
TCHAR *shortPath = (TCHAR *)malloc(
lenShort
* sizeof(TCHAR));
62
DWORD length = GetShortPathName(longPath, shortPath,
lenShort
);
63
if (length >
lenShort
) {
66
lenShort
= length;
68
length = GetShortPathName(longPath, shortPath,
lenShort
);
/sdk/find_java/src/source/
utils.h
333
DWORD
lenShort
= (DWORD)strlen(longPath) + 1; // GetShortPathName deals with DWORDs
334
char * shortPath = (char *)malloc(
lenShort
);
336
DWORD length = GetShortPathName(longPath, shortPath,
lenShort
);
337
if (length >
lenShort
) {
340
lenShort
= length;
342
length = GetShortPathName(longPath, shortPath,
lenShort
);
Completed in 184 milliseconds