Lines Matching refs:NAME_SIZE
106 char PathName[NAME_SIZE]; // stores current file path name
129 char lineBuff[NAME_SIZE]; in TCReadTplTxtFile()
138 while( (buffPtr = fgets(lineBuff, NAME_SIZE, fp)) != NULL ) in TCReadTplTxtFile()
142 if( (strlen(lineBuff)) == (NAME_SIZE - 1) ) in TCReadTplTxtFile()
146 …if( lineBuff[ (NAME_SIZE - 2) ] != '\n' ) // fgets should always include a newline at a line's end in TCReadTplTxtFile()
149 … TCErrorMsg( "TCReadTplTextFile: line exceeded %d characters in '%s'", (NAME_SIZE-1), fileName ); in TCReadTplTxtFile()
189 char leftSide[NAME_SIZE], rightSide[NAME_SIZE]; in TCProcessKeyName()
256 char fullName[NAME_SIZE]; in TCProcessSiKey()
278 …TCAssertMsg( (len <= (NAME_SIZE-1)), "TCProcessSiKey: length of (%s + path) > %d characters\n", (N… in TCProcessSiKey()
657 char subStr[NAME_SIZE]; in TCGetKeyNum()
706 char tmp[NAME_SIZE]; in TCGetKeyString()
756 char tmpStr[NAME_SIZE]; in TCStripBlanks()
765 if( (len == 0) || (len > (NAME_SIZE-1)) ) in TCStripBlanks()