Searched refs:needLen (Results 1 – 3 of 3) sorted by relevance
162 int32_t needLen; in fopenOrError() local166 needLen = uprv_strlen(directory)+uprv_strlen(TDSRCPATH)+uprv_strlen(filename)+1; in fopenOrError()167 if(needLen > FILENAME_BUFFER) { in fopenOrError()169 filename, needLen, FILENAME_BUFFER); in fopenOrError()
934 int32_t needLen = 0; in uloc_setKeywordValue() local978 needLen = bufLen+1+keywordNameLen+1+keywordValueLen; in uloc_setKeywordValue()980 needLen--; /* already had the @ */ in uloc_setKeywordValue()985 if(needLen >= bufferCapacity) { in uloc_setKeywordValue()987 return needLen; /* no change */ in uloc_setKeywordValue()997 return needLen; in uloc_setKeywordValue()1093 needLen = bufLen+1+keywordNameLen+1+keywordValueLen; in uloc_setKeywordValue()1094 if(needLen >= bufferCapacity) { in uloc_setKeywordValue()1096 return needLen; /* no change */ in uloc_setKeywordValue()1117 buffer[needLen]=0; in uloc_setKeywordValue()[all …]
533 DWORD needLen = GetCurrentDirectory(MAX_PATH + 1, oldCurDir); in main() local534 if (needLen == 0 || needLen > MAX_PATH) in main()