Home
last modified time | relevance | path

Searched refs:nLen (Results 1 - 2 of 2) sorted by relevance

/commonlibrary/utils_lite/file/src/file_impl_hal/
H A Dfile.c76 int nLen; in UtilsFileCopy() local
81 nLen = UtilsFileRead(fpSrc, dataBuf, BUFFER_SIZE); in UtilsFileCopy()
82 while (nLen > 0) { in UtilsFileCopy()
83 if (UtilsFileWrite(fpDest, dataBuf, nLen) != nLen) { in UtilsFileCopy()
86 nLen = UtilsFileRead(fpSrc, dataBuf, BUFFER_SIZE); in UtilsFileCopy()
88 copyFailed = (nLen < 0); in UtilsFileCopy()
/commonlibrary/utils_lite/js/builtin/filekit/src/
H A Dnativeapi_fs_impl.c179 int nLen = read(fdSrc, dataBuf, BUFFER_SIZE); in DoCopyFile() local
180 while (nLen > 0) { in DoCopyFile()
181 if (write(fdDest, dataBuf, nLen) != nLen) { in DoCopyFile()
185 nLen = read(fdSrc, dataBuf, BUFFER_SIZE); in DoCopyFile()
188 return (nLen < 0) ? ERROR_CODE_IO : NATIVE_SUCCESS; in DoCopyFile()

Completed in 1 milliseconds