Lines Matching refs:nPathLen
880 sal_uInt32 nPathLen = 0;
966 nPathLen = strHome->length;
973 if (nLen + nPathLen >= _MAX_PATH)
976 strcpy(Path + nPathLen, pPath);
977 nPathLen += nLen;
998 nPathLen = strConfig->length;
1005 if (nLen + nPathLen >= _MAX_PATH)
1008 strcpy(Path + nPathLen, pPath);
1009 nPathLen += nLen;
1018 if (((nPathLen = GetWindowsDirectoryW(Path, _MAX_PATH)) == 0) || (nPathLen >= _MAX_PATH))
1026 if (nLen + nPathLen >= MAX_PATH)
1029 strcpy(Path + nPathLen, pPath);
1030 nPathLen += nLen;
1041 nPathLen = strlen(Path);
1047 nPathLen = strlen(Path);
1065 nPathLen = strConfigDir->length;
1068 if (nPathLen && (Path[nPathLen - 1] != L'/') && (Path[nPathLen - 1] != L'\\'))
1070 Path[nPathLen++] = L'\\';
1071 Path[nPathLen] = 0;
1074 if (nPathLen + nFileLen >= MAX_PATH)
1078 strcpy(Path + nPathLen, File);
1079 nPathLen += nFileLen;
1082 rtl_uString_newFromStr_WithLength(&strTmp, Path, nPathLen);