Home
last modified time | relevance | path

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

/ohos5.0/base/tee/tee_client/services/teecd/src/
H A Dfs_work_agent.c921 static int32_t DoCopy(int32_t fromFd, int32_t toFd) in DoCopy() argument
935 wcount = write(toFd, buf, (size_t)rcount); in DoCopy()
951 ret = fsync(toFd); in DoCopy()
993 int32_t toFd = open(realToPath, O_WRONLY | O_TRUNC | O_CREAT, fromStat.st_mode); in CopyFile() local
994 if (toFd == -1) { in CopyFile()
1000 ret = DoCopy(fromFd, toFd); in CopyFile()
1008 close(toFd); in CopyFile()