Searched defs:cchSubContent (Results 1 - 1 of 1) sorted by relevance

/vbox/src/bldprogs/
H A Dfilesplitter.cpp207 * @param cchSubContent The length of the content.
209 static bool compareSubFile(const char *pcszFilename, const char *pcszSubContent, size_t cchSubContent) argument
214 if ((size_t)FileStat.st_size < cchSubContent)
223 bool fRc = cchExisting == cchSubContent
224 && !memcmp(pcszSubContent, pszExisting, cchSubContent);
237 * @param cchSubContent The size of the content.
239 static int writeSubFile(const char *pcszFilename, const char *pcszSubContent, size_t cchSubContent) argument
247 if (fwrite(pcszSubContent, cchSubContent, 1, pFile) != 1)

Completed in 43 milliseconds