Home
last modified time | relevance | path

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

/titanic_41/usr/src/cmd/svr4pkg/libinst/
H A Dcopyf.c85 copyf(char *a_srcPath, char *a_dstPath, time_t a_mytime) in copyf() argument
96 srcFd = open(a_srcPath, O_RDONLY, 0); in copyf()
98 progerr(ERR_OPEN_READ, a_srcPath, errno, strerror(errno)); in copyf()
105 progerr(ERR_FSTAT, srcFd, a_srcPath, errno, strerror(errno)); in copyf()
146 status = copyFile(srcFd, dstFd, a_srcPath, a_dstPath, &srcStatbuf, 0); in copyf()
175 progerr(ERR_READ, a_srcPath, errno, strerror(errno)); in copyf()
199 copyFile(int a_srcFd, int a_dstFd, char *a_srcPath, char *a_dstPath, in copyFile() argument
208 echoDebug(DBG_COPY_FILE, a_srcPath, a_dstPath); in copyFile()
267 progerr(ERR_COPY_MEMORY, a_srcPath, errno, in copyFile()
286 progerr(ERR_READ, a_srcPath, in copyFile()
[all …]
/titanic_41/usr/src/cmd/svr4pkg/pkginstall/
H A Dcppath.c90 cppath(int a_ctrl, char *a_srcPath, char *a_dstPath, mode_t a_mode) in cppath() argument
102 echoDebug(DBG_CPPATH_ENTRY, a_ctrl, a_mode, a_srcPath, a_dstPath); in cppath()
106 srcFd = open(a_srcPath, O_RDONLY); in cppath()
108 progerr(ERR_OPEN_READ, a_srcPath, in cppath()
116 progerr(ERR_FSTAT, srcFd, a_srcPath, errno, strerror(errno)); in cppath()
163 status = copyFile(srcFd, dstFd, a_srcPath, a_dstPath, &srcStatbuf, 0); in cppath()
169 progerr(ERR_INPUT, a_srcPath, errno, strerror(errno)); in cppath()