Searched refs:rename (Results 1 - 25 of 98) sorted by relevance

1234

/haiku-fatelf/src/bin/coreutils/man/
H A Dmv.x2 mv \- move (rename) files
6 rename(2)
/haiku-fatelf/src/kits/network/libbind/isc/
H A Dmovefile.c25 * rename() is lame (can't overwrite an existing file) on some systems.
31 return (rename(oldname, newname));
/haiku-fatelf/src/bin/gdb/libiberty/
H A Drename.c0 /* rename -- rename a file
6 @deftypefn Supplemental int rename (const char *@var{old}, const char *@var{new})
25 rename (zfrom, zto) function
/haiku-fatelf/src/system/libroot/posix/stdio/
H A Drename.c16 rename(const char *from, const char *to) function
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/rename/
H A Drename.c36 puts("rename test: Overwrite a directory with files in it");
37 printf(" %s\n",rename("__file", "__directory") ? "Could not rename file!" : "Rename succeeded.");
43 // rename the file and try to remove the directory
44 puts("rename test: Overwrite an empty directory");
45 printf(" %s\n", rename("__file","__directory") ? "Could not rename file!" : "Rename succeeded.");
/haiku-fatelf/src/bin/coreutils/src/
H A Dcopy.h95 following programs: mv (when rename doesn't work), cp, install.
136 /* If true, rather than copying, first attempt to use rename.
147 rename an entry in the file even though it is a sticky directory,
266 /* Arrange to make rename calls go through the wrapper function
267 on systems with a rename function that fails for a source file name
271 # undef rename macro
272 # define rename rpl_rename macro
H A Dln.c236 if (rename (dest, dest_backup) != 0)
270 that refer to the same file), rename succeeds and DEST remains.
320 if (rename (dest_backup, dest) != 0)
/haiku-fatelf/src/bin/bash/lib/sh/
H A Drename.c2 * rename - rename a file
42 rename (from, to) function
/haiku-fatelf/src/bin/network/wget/build-aux/
H A Dcompile44 arguments, and rename the output as expected.
/haiku-fatelf/src/libs/print/libgutenprint/scripts/
H A Dcompile43 arguments, and rename the output as expected.
/haiku-fatelf/headers/private/userlandfs/fuse/
H A Dfuse_compat.h21 int (*rename) (const char *, const char *); member in struct:fuse_operations_compat25
80 int (*rename) (const char *, const char *); member in struct:fuse_operations_compat22
131 int (*rename) (const char *, const char *); member in struct:fuse_operations_compat2
179 int (*rename) (const char *, const char *); member in struct:fuse_operations_compat1
H A Dfuse_lowlevel_compat.h30 void (*rename) (fuse_req_t req, fuse_ino_t parent, const char *name, member in struct:fuse_lowlevel_ops_compat25
97 void (*rename) (fuse_req_t req, fuse_ino_t parent, const char *name, member in struct:fuse_lowlevel_ops_compat
/haiku-fatelf/src/bin/coreutils/lib/
H A Drename.c1 /* Work around rename bugs in some systems.
24 #undef rename macro
27 /* The mingw rename has problems with trailing slashes; it also
43 Windows, on which the system rename function will not replace
87 before calling rename. There are no symlinks on mingw, so stat
117 directory if rename then fails, but it was empty, so not much
177 rename() does not. */
295 return rename (src, dst); /* Let strace see the ENOENT failure. */
330 return rename (src, dst);
336 before calling rename
[all...]
H A Dstdio.in.h511 # undef rename
512 # define rename rpl_rename
513 extern int rename (const char *old_filename, const char *new_filename)
517 # undef rename
518 # define rename(o,n) \
519 (GL_LINK_WARNING ("rename is buggy on some platforms - " \
520 "use gnulib module rename for more portability"), \
521 rename (o, n))
/haiku-fatelf/headers/cpp/
H A Diostdio.h100 #define rename ??? __P((const char* _old, const char* _new))
/haiku-fatelf/src/bin/gdb/include/gdb/
H A Dcallback.h86 int (*rename) PARAMS ((host_callback *, const char *, const char *));
85 int (*rename) PARAMS ((host_callback *, const char *, const char *)); member in struct:host_callback_struct
/haiku-fatelf/src/bin/
H A Dtrash.cpp48 err = rename(path.Path(), original_path);
98 err = rename(original_path, trashed_file);
/haiku-fatelf/src/build/libroot/
H A Dfs_attr_generic.cpp562 // rename the attribute and type files
563 if (rename(fromAttrPath.c_str(), toAttrPath.c_str()) < 0)
566 if (rename(fromTypePath.c_str(), toTypePath.c_str()) < 0) {
567 // renaming the type file failed: try to rename back the attribute file
570 rename(toAttrPath.c_str(), fromAttrPath.c_str());
H A Dfs_darwin.cpp346 // call rename() ignoring the fd's
347 return rename(oldPath, newPath);
374 return rename(ignoreOldFD ? oldPath : oldFullPath,
/haiku-fatelf/src/bin/network/tcpdump/lbl/
H A Dos-sunos4.h139 int rename(const char *, const char *);
/haiku-fatelf/src/bin/network/tcpdump/libpcap/lbl/
H A Dos-sunos4.h139 int rename(const char *, const char *);
/haiku-fatelf/src/kits/mail/
H A DHaikuMailFormatFilter.cpp196 printf("FolderFilter::ProcessMailMessage: could not rename mail (%s)! "
/haiku-fatelf/src/servers/syslog_daemon/
H A Dsyslog_output.cpp78 rename(syslog.Path(), oldlog.Path());
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_fs.cpp37 if (fs->ops.rename == NULL)
39 return fs->ops.rename(oldpath, newpath);
/haiku-fatelf/src/bin/patch/
H A Dutil.c136 while (rename (to, bakname) != 0)
139 pfatal ("Can't rename file %s to %s",
155 if (rename (from, to) == 0)
166 if (rename (from, to) == 0)
188 pfatal ("Can't rename file %s to %s",

Completed in 174 milliseconds

1234