Home
last modified time | relevance | path

Searched refs:cachepath (Results 1 – 2 of 2) sorted by relevance

/external/quake/quake/src/WinQuake/
Dcommon.cpp1365 void COM_CopyFile (const char *netpath, const char *cachepath) in COM_CopyFile() argument
1372 COM_CreatePath (cachepath); // create directories up to the cache file in COM_CopyFile()
1373 out = Sys_FileOpenWrite (cachepath); in COM_CopyFile()
1402 char cachepath[MAX_OSPATH]; in COM_FindFile() local
1465 strcpy (cachepath, netpath); in COM_FindFile()
1470 sprintf (cachepath,"%s%s", com_cachedir, netpath); in COM_FindFile()
1472 sprintf (cachepath,"%s%s", com_cachedir, netpath+2); in COM_FindFile()
1474 sprintf (cachepath,"%s%s", com_cachedir, netpath); in COM_FindFile()
1477 cachetime = Sys_FileTime (cachepath); in COM_FindFile()
1480 COM_CopyFile (netpath, cachepath); in COM_FindFile()
[all …]
/external/quake/quake/src/QW/client/
Dcommon.c1441 void COM_CopyFile (char *netpath, char *cachepath) in COM_CopyFile() argument
1448 COM_CreatePath (cachepath); // create directories up to the cache file in COM_CopyFile()
1449 out = fopen(cachepath, "wb"); in COM_CopyFile()
1451 Sys_Error ("Error opening %s", cachepath); in COM_CopyFile()