Home | History | Annotate | Download | only in toolutil

Lines Matching refs:currentBufferSize

14 static int32_t currentBufferSize = DEFAULT_BUFFER_SIZE;
24 char* buffer = uprv_malloc(sizeof(char) * currentBufferSize);
44 currentBufferSize *= 2;
46 buffer = uprv_malloc(sizeof(char) * currentBufferSize);
54 if (T_FileStream_readLine(f, buffer, currentBufferSize) == NULL) {
62 if (uprv_strlen(buffer) == (currentBufferSize - 1) && buffer[currentBufferSize-2] != '\n') {
68 idx = extractFlag(buffer, currentBufferSize, tmpFlagBuffer, flagBufferSize, flagNames, numOfFlags, status);
71 result = currentBufferSize;
98 currentBufferSize = DEFAULT_BUFFER_SIZE;