Lines Matching refs:newpath
1147 char newpath[MAXPATHLEN]; in restore_keystore_file() local
1153 if (((len = snprintf(newpath, MAXPATHLEN, "%s.new", in restore_keystore_file()
1167 if ((newfd = open(newpath, O_RDWR|O_NONBLOCK, 0)) != -1) { in restore_keystore_file()
1176 newpath, backuppath)) { in restore_keystore_file()
1179 newpath, strerror(errno)); in restore_keystore_file()
1188 gettext(ERR_NOT_REG), newpath); in restore_keystore_file()
1195 gettext(ERR_WRITE), newpath, in restore_keystore_file()
2179 char newpath[MAXPATHLEN]; in write_keystore_file() local
2184 (void) snprintf(newpath, MAXPATHLEN, "%s.new", dest); in write_keystore_file()
2187 if ((fd = open(newpath, O_CREAT|O_EXCL|O_WRONLY|O_NONBLOCK, in write_keystore_file()
2190 newpath, strerror(errno)); in write_keystore_file()
2197 newpath, strerror(errno)); in write_keystore_file()
2204 newpath); in write_keystore_file()
2211 newpath, strerror(errno)); in write_keystore_file()
2218 newpath); in write_keystore_file()
2232 (void) rename(newpath, dest); in write_keystore_file()