Lines Matching refs:iLen

265   size_t iLen;  in PathAddBackslashA()  local
270 if (!lpszPath || (iLen = strlen(lpszPath)) >= MAX_PATH) in PathAddBackslashA()
273 if (iLen) in PathAddBackslashA()
296 size_t iLen; in PathAddBackslashW() local
300 if (!lpszPath || (iLen = strlenW(lpszPath)) >= MAX_PATH) in PathAddBackslashW()
303 if (iLen) in PathAddBackslashW()
305 lpszPath += iLen; in PathAddBackslashW()
961 size_t iLen = strlen(lpszPath) + 1; in PathQuoteSpacesA() local
963 if (iLen + 2 < MAX_PATH) in PathQuoteSpacesA()
965 memmove(lpszPath + 1, lpszPath, iLen); in PathQuoteSpacesA()
967 lpszPath[iLen] = '"'; in PathQuoteSpacesA()
968 lpszPath[iLen + 1] = '\0'; in PathQuoteSpacesA()
984 int iLen = strlenW(lpszPath) + 1; in PathQuoteSpacesW() local
986 if (iLen + 2 < MAX_PATH) in PathQuoteSpacesW()
988 memmove(lpszPath + 1, lpszPath, iLen * sizeof(WCHAR)); in PathQuoteSpacesW()
990 lpszPath[iLen] = '"'; in PathQuoteSpacesW()
991 lpszPath[iLen + 1] = '\0'; in PathQuoteSpacesW()
1142 int iLen = lstrlenW(lpszPath); in PathFileExistsDefExtW() local
1143 if (iLen > (MAX_PATH - 5)) in PathFileExistsDefExtW()
1156 lstrcpyW(lpszPath + iLen, pszExts[iChoose]); in PathFileExistsDefExtW()
1165 *(lpszPath + iLen) = (WCHAR)'\0'; in PathFileExistsDefExtW()
2753 size_t iLen = 0; in PathCommonPrefixA() local
2781 iLen = lpszIter1 - lpszFile1; /* Common to this point */ in PathCommonPrefixA()
2790 if (iLen == 2) in PathCommonPrefixA()
2791 iLen++; /* Feature/Bug compatible with Win32 */ in PathCommonPrefixA()
2793 if (iLen && achPath) in PathCommonPrefixA()
2795 memcpy(achPath,lpszFile1,iLen); in PathCommonPrefixA()
2796 achPath[iLen] = '\0'; in PathCommonPrefixA()
2798 return iLen; in PathCommonPrefixA()
2808 size_t iLen = 0; in PathCommonPrefixW() local
2836 iLen = lpszIter1 - lpszFile1; /* Common to this point */ in PathCommonPrefixW()
2845 if (iLen == 2) in PathCommonPrefixW()
2846 iLen++; /* Feature/Bug compatible with Win32 */ in PathCommonPrefixW()
2848 if (iLen && achPath) in PathCommonPrefixW()
2850 memcpy(achPath,lpszFile1,iLen * sizeof(WCHAR)); in PathCommonPrefixW()
2851 achPath[iLen] = '\0'; in PathCommonPrefixW()
2853 return iLen; in PathCommonPrefixW()