Home
last modified time | relevance | path

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

/commonlibrary/utils_lite/file/src/file_impl_hal/
H A Dfile.c77 char* dataBuf = (char *)malloc(BUFFER_SIZE); in UtilsFileCopy() local
78 if (dataBuf == NULL) { in UtilsFileCopy()
81 nLen = UtilsFileRead(fpSrc, dataBuf, BUFFER_SIZE); in UtilsFileCopy()
83 if (UtilsFileWrite(fpDest, dataBuf, nLen) != nLen) { in UtilsFileCopy()
86 nLen = UtilsFileRead(fpSrc, dataBuf, BUFFER_SIZE); in UtilsFileCopy()
91 free(dataBuf); in UtilsFileCopy()
/commonlibrary/utils_lite/js/builtin/filekit/src/
H A Dnativeapi_fs_impl.c175 char* dataBuf = (char *)malloc(BUFFER_SIZE); in DoCopyFile() local
176 if (dataBuf == NULL) { in DoCopyFile()
179 int nLen = read(fdSrc, dataBuf, BUFFER_SIZE); in DoCopyFile()
181 if (write(fdDest, dataBuf, nLen) != nLen) { in DoCopyFile()
182 free(dataBuf); in DoCopyFile()
185 nLen = read(fdSrc, dataBuf, BUFFER_SIZE); in DoCopyFile()
187 free(dataBuf); in DoCopyFile()

Completed in 2 milliseconds