Lines Matching refs:a_mode
68 static int write_file(char **r_linknam, int a_ctrl, mode_t a_mode,
90 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()
137 usemode = (a_mode ^ BADMODE) ? a_mode : 0644; in cppath()
138 if (a_mode != usemode && usemode == 0644) { in cppath()
140 a_mode = usemode; in cppath()
143 a_mode = (srcStatbuf.st_mode & S_IAMB); in cppath()
145 a_mode = 0666; in cppath()
153 dstFd = write_file(&linknam, a_ctrl, a_mode, a_dstPath); in cppath()
296 write_file(char **r_linknam, int a_ctrl, mode_t a_mode, char *a_file) in write_file() argument
304 echoDebug(DBG_WRITEFILE_ENTRY, a_ctrl, a_mode, a_file); in write_file()
352 if (fchmod(fd, a_mode) < 0) { in write_file()
353 progerr(ERR_FCHMOD, loc_link, a_mode, errno, in write_file()
364 fd = open(a_file, O_WRONLY | O_CREAT | O_TRUNC, a_mode); in write_file()
367 fd = open(a_file, O_WRONLY | O_CREAT | O_TRUNC, a_mode); in write_file()