/src/usr.bin/locate/bigram/ |
locate.bigram.c | 97 char *oldpath = buf1, *path = buf2; local in function:main 111 for ( cp = path; *cp == *oldpath; cp++, oldpath++ ) 112 if ( *oldpath == '\0' ) 122 path = buf2, oldpath = buf1; 124 path = buf1, oldpath = buf2;
|
/src/usr.bin/locate/code/ |
locate.code.c | 106 char *cp, *oldpath, *path; local in function:main 127 oldpath = buf1; 144 for (cp = path; *cp == *oldpath; cp++, oldpath++) 145 if (*oldpath == '\0') 177 oldpath = buf1; 180 oldpath = buf2;
|
/src/usr.bin/utoppya/ |
utoppya.c | 277 char *oldpath, *newpath, *o, *n; local in function:cmd_rename 282 o = oldpath = argv[1]; 285 for (o = oldpath; *o != '\0'; o++) 292 for (o = oldpath; *o && *o == '\\'; o++) 299 oldpath, newpath); 301 if (find_toppy_dirent(oldpath, &ud) == 0) 302 errx(EX_DATAERR, "'%s' does not exist on the Toppy", oldpath); 305 errx(EX_DATAERR, "%s: not a regular file", oldpath); 314 err(EX_OSERR, "ioctl(UTOPPYIORENAME, %s, %s)", oldpath,
|
/src/lib/librefuse/refuse/ |
fs.h | 62 int fuse_fs_rename_v27(struct fuse_fs* fs, const char* oldpath, const char* newpath); 63 int fuse_fs_rename_v30(struct fuse_fs* fs, const char* oldpath, const char* newpath, unsigned int flags); 67 int fuse_fs_link(struct fuse_fs* fs, const char* oldpath, const char* newpath);
|
fs.c | 203 fuse_fs_rename_v27(struct fuse_fs* fs, const char* oldpath, const char* newpath) { 204 return fuse_fs_rename_v30(fs, oldpath, newpath, 0); 208 fuse_fs_rename_v30(struct fuse_fs* fs, const char* oldpath, 215 return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->rename(oldpath, newpath); \ 231 return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->rename(oldpath, newpath, flags); \ 329 fuse_fs_link(struct fuse_fs* fs, const char* oldpath, const char* newpath) { 335 return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->link(oldpath, newpath); \
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_posix.h | 56 uptr internal_rename(const char *oldpath, const char *newpath);
|
sanitizer_solaris.cc | 140 DECLARE__REAL_AND_INTERNAL(uptr, rename, const char *oldpath, 142 return _REAL(rename)(oldpath, newpath);
|
sanitizer_netbsd.cc | 192 uptr internal_rename(const char *oldpath, const char *newpath) { 194 return _REAL(rename, oldpath, newpath);
|
sanitizer_mac.cc | 266 uptr internal_rename(const char *oldpath, const char *newpath) { 267 return rename(oldpath, newpath);
|
sanitizer_linux.cc | 416 uptr internal_rename(const char *oldpath, const char *newpath) { 418 return internal_syscall(SYSCALL(renameat), AT_FDCWD, (uptr)oldpath, AT_FDCWD, 421 return internal_syscall(SYSCALL(rename), (uptr)oldpath, (uptr)newpath);
|
/src/lib/libukfs/ |
ukfs.c | 1028 char *newpath, *oldpath; local in function:ukfs_chdir 1042 oldpath = ukfs->ukfs_cwd; 1045 free(oldpath);
|