Searched refs:rename (Results 151 - 175 of 209) sorted by relevance

123456789

/freebsd-11-stable/usr.sbin/kldxref/
H A Dkldxref.c679 /* close and rename the current hint file */
683 rename(tempname, xrefname);
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_util.c290 if (_unlink(stats_drift_file)) /* rename semantics differ under NT */
297 if (rename(stats_temp_file, stats_drift_file))
299 "Unable to rename temp drift file %s to %s, %m",
302 /* we have no rename NFS of ftp in use */
/freebsd-11-stable/usr.sbin/config/
H A Dmain.c588 * compare two files; rename if changed.
631 if (rename(from_name, to_name) < 0)
632 err(EX_OSERR, "rename(%s, %s)", from_name, to_name);
/freebsd-11-stable/contrib/gcc/doc/
H A Dmakefile.texi149 For each package that is bootstrapped, rename directories so that,
/freebsd-11-stable/contrib/elftoolchain/elfcopy/
H A Dmain.c157 {"rename-section", required_argument, NULL, ECP_RENAME_SECTION},
570 * If in_place is set act as if editing the file in place, avoiding rename()
581 * First, check if we can use rename().
584 if (rename(src, dst) >= 0) {
591 * If the rename() failed due to 'src' and 'dst' residing in
982 "illegal format for --rename-section");
990 sac->rename = 1;
1499 --rename-section OLDNAME=NEWNAME[,FLAGS]\n\
/freebsd-11-stable/crypto/heimdal/kadmin/
H A DMakefile.in122 mod.$(OBJEXT) rename.$(OBJEXT) stash.$(OBJEXT) util.$(OBJEXT) \
450 rename.c \
683 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rename.Po@am__quote@
/freebsd-11-stable/contrib/wpa/hs20/client/
H A Dosu_client.c263 if (rename("Cert/est-cacerts.pem", buf) < 0) {
271 if (rename("Cert/est_cert.pem", buf) < 0) {
288 if (rename("Cert/privkey-plain.pem", buf) < 0) {
723 rename(pps_fname, backup);
727 rename(backup, pps_fname);
/freebsd-11-stable/targets/pseudo/tests/
H A DMakefile.depend240 tests/sys/pjdfstest/tests/rename \
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_file.c779 if (ldebug(rename))
780 printf(ARGS(rename, "%s, %s"), from, to);
/freebsd-11-stable/usr.sbin/newsyslog/
H A Dnewsyslog.c1846 (void)rename(zfile1, zfile2);
2656 * to rename() fails, then "neither the old file nor the new
2671 failed = rename(tempfile, realfile);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dremote-fileio.c950 ret = rename (oldpath, newpath);
1287 "rename", remote_fileio_func_rename,
H A Dremote-rdp.c860 args->n = callback->rename (callback, args[0].s, args[1].s);
/freebsd-11-stable/contrib/pjdfstest/
H A Dpjdfstest.c161 { "rename", ACTION_RENAME, { TYPE_STRING, TYPE_STRING, TYPE_NONE } },
702 rval = rename(STR(0), STR(1));
/freebsd-11-stable/crypto/heimdal/lib/hdb/
H A Dhdb-mitdb.c588 ret = rename(old, new);
/freebsd-11-stable/usr.bin/makewhatis/
H A Dmakewhatis.c387 rename(tmp_file, name);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzpool/common/sys/
H A Dzfs_context.h536 #define vn_rename(from, to, seg) rename((from), (to))
/freebsd-11-stable/crypto/openssh/
H A Dhostfile.c625 if (rename(temp, filename) == -1) {
627 error("%s: rename \"%s\" to \"%s\": %s", __func__,
/freebsd-11-stable/usr.bin/sort/
H A Dsort.c1313 if (rename(outfile, real_outfile) < 0)
/freebsd-11-stable/usr.bin/unifdef/
H A Dunifdef.c421 if (rename(ofn, backname) < 0)
422 err(2, "can't rename \"%s\" to \"%s\"", ofn, backname);
430 err(2, "can't rename \"%s\" to \"%s\"", tempname, ofn);
/freebsd-11-stable/usr.sbin/pwd_mkdb/
H A Dpwd_mkdb.c190 * unlink/rename race.
632 * The rename means that everything is unlocked, as the original file
639 * Close locked password file after rename()
734 if (rename(from, to) != 0 ||
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h406 /// Files are renamed as if by POSIX rename(), except that on Windows there may
410 /// @param from The path to rename from.
411 /// @param to The path to rename to. This is created.
412 std::error_code rename(const Twine &from, const Twine &to);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mac.cpp344 return rename(oldpath, newpath);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp245 // We then atomically rename the link into place which will just move the
246 // link. If rename fails something is more seriously wrong so just return
248 if (auto EC = sys::fs::rename(TmpPath, Path)) {
645 // For example, if we rename .text to .prefix.text, we also rename
/freebsd-11-stable/contrib/less/
H A Dcmdbuf.c1728 * Windows rename doesn't remove an existing file,
1733 rename(tempname, histname);
/freebsd-11-stable/contrib/gcc/
H A Dprotoize.c2279 suffix, rename the file such that its suffix is changed to .C. This
2293 we want to do the renaming. Note that we only rename files with the .c
2303 if (rename (filename, new_filename) == -1)
2306 notice ("%s: warning: can't rename file '%s' to '%s': %s\n",
3917 file to make a new edited in-core copy of the file. Finally, rename the
4182 else if (rename (convert_filename, new_filename) == -1)
4356 /* If we are working in cplusplus mode, try to rename all .c files to .C

Completed in 232 milliseconds

123456789