Searched refs:needLen (Results 1 – 3 of 3) sorted by relevance
165 int32_t needLen; in fopenOrError() local169 needLen = uprv_strlen(directory)+uprv_strlen(TDSRCPATH)+uprv_strlen(filename)+1; in fopenOrError()170 if(needLen > FILENAME_BUFFER) { in fopenOrError()172 filename, needLen, FILENAME_BUFFER); in fopenOrError()
974 int32_t needLen = 0; in uloc_setKeywordValue() local1031 needLen = bufLen+1+keywordNameLen+1+keywordValueLen; in uloc_setKeywordValue()1033 needLen--; /* already had the @ */ in uloc_setKeywordValue()1038 if(needLen >= bufferCapacity) { in uloc_setKeywordValue()1040 return needLen; /* no change */ in uloc_setKeywordValue()1047 return needLen; in uloc_setKeywordValue()1166 needLen = (int32_t)(startSearchHere - buffer) + updatedKeysAndValuesLen; in uloc_setKeywordValue()1167 if(needLen >= bufferCapacity) { in uloc_setKeywordValue()1169 return needLen; /* no change */ in uloc_setKeywordValue()1174 buffer[needLen]=0; in uloc_setKeywordValue()[all …]
553 DWORD needLen = GetCurrentDirectory(MAX_PATH + 1, oldCurDir); in main() local554 if (needLen == 0 || needLen > MAX_PATH) in main()