Lines Matching refs:NAME_SIZE
101 char PathName[NAME_SIZE]; // stores current file path name
124 char lineBuff[NAME_SIZE]; in TCReadTplTxtFile()
133 while( (buffPtr = fgets(lineBuff, NAME_SIZE, fp)) != NULL ) in TCReadTplTxtFile()
137 if( (strlen(lineBuff)) == (NAME_SIZE - 1) ) in TCReadTplTxtFile()
141 …if( lineBuff[ (NAME_SIZE - 2) ] != '\n' ) // fgets should always include a newline at a line's end in TCReadTplTxtFile()
144 … TCErrorMsg( "TCReadTplTextFile: line exceeded %d characters in '%s'", (NAME_SIZE-1), fileName ); in TCReadTplTxtFile()
184 char leftSide[NAME_SIZE], rightSide[NAME_SIZE]; in TCProcessKeyName()
251 char fullName[NAME_SIZE]; in TCProcessSiKey()
273 …TCAssertMsg( (len <= (NAME_SIZE-1)), "TCProcessSiKey: length of (%s + path) > %d characters\n", (N… in TCProcessSiKey()
652 char subStr[NAME_SIZE]; in TCGetKeyNum()
701 char tmp[NAME_SIZE]; in TCGetKeyString()
751 char tmpStr[NAME_SIZE]; in TCStripBlanks()
760 if( (len == 0) || (len > (NAME_SIZE-1)) ) in TCStripBlanks()