Lines Matching refs:tplName
294 static void TCGetFileModTime ( const char* tplName, struct tm* refTmPtr );
300 static u32 TCGetTplVersion ( const char* tplName );
310 static void TCWriteCachedScriptFile ( const char* tplName, struct tm* refTmPtr );
2617 static u32 TCGetTplVersion ( const char* tplName ) in TCGetTplVersion() argument
2623 fp = fopen( tplName, "rb"); in TCGetTplVersion()
2624 TCAssertMsg( (fp != NULL), "TCGetTplVersion: couldn't open existing tpl %s for read\n", tplName ); in TCGetTplVersion()
2630 TCErrorMsg( "TCGetTplVersion: fread failed for %s version number\n", tplName ); in TCGetTplVersion()
2816 static void TCWriteCachedScriptFile( const char* tplName, struct tm* refTmPtr ) in TCWriteCachedScriptFile() argument
2836 TCAssertMsg( (tplName != NULL), "TCWriteCachedScriptFile: NULL tplName\n" ); in TCWriteCachedScriptFile()
2837 TCAssertMsg( (*tplName != '\0'), "TCWriteCachedScriptFile: NULL tplName\n" ); in TCWriteCachedScriptFile()
2914 strSize = strlen( tplName ) + 1; in TCWriteCachedScriptFile()
2916 fwrite( tplName, strSize, 1, fp ); in TCWriteCachedScriptFile()