OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newpath
(Results
1 - 13
of
13
) sorted by relevancy
/src/sys/dev/
firmload.c
83
char
newpath
[PATH_MAX+1];
local
88
node.sysctl_data = &
newpath
[0];
103
if (expected_char != 0 &&
newpath
[i] != expected_char)
105
if (
newpath
[i] == '\0')
107
else if (
newpath
[i] == ':')
/src/usr.bin/utoppya/
utoppya.c
277
char *oldpath, *
newpath
, *o, *n;
local
283
n =
newpath
= argv[2];
288
for (n =
newpath
; *n != '\0'; n++)
294
for (n =
newpath
; *n && *n == '\\'; n++)
299
oldpath,
newpath
);
307
if (find_toppy_dirent(
newpath
, &ud))
308
errx(EX_DATAERR, "'%s' already exists",
newpath
);
315
newpath
);
/src/lib/libpuffs/
paths.c
221
size_t offset, struct puffs_pathobj *
newpath
)
287
newpath
->po_path = path;
288
newpath
->po_len = plen;
/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);
209
const char*
newpath
, unsigned int flags) {
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
141
const char *
newpath
) {
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
) {
419
(uptr)
newpath
);
421
return internal_syscall(SYSCALL(rename), (uptr)oldpath, (uptr)
newpath
);
/src/sys/rump/librump/rumpvfs/
rumpfs.c
735
char *
newpath
;
local
743
newpath
= malloc(newpathlen, M_TEMP, M_WAITOK);
745
strlcpy(
newpath
, rnd->rn_hostpath, newpathlen);
746
strlcat(
newpath
, "/", newpathlen);
747
strlcat(
newpath
, cnp->cn_nameptr, newpathlen);
749
if ((error = rumpuser_getfileinfo(
newpath
, &fsize, &hft)) != 0){
750
free(
newpath
, M_TEMP);
756
free(
newpath
, M_TEMP);
767
rn->rn_hostpath =
newpath
;
/src/lib/libukfs/
ukfs.c
1029
char *
newpath
, *oldpath;
local
1037
newpath
= malloc(MAXPATHLEN);
1038
if (rump_sys___getcwd(
newpath
, MAXPATHLEN) == -1) {
1044
ukfs->ukfs_cwd =
newpath
;
/src/sys/fs/hfs/
libhfs.c
384
char*
newpath
;
local
412
newpath
= hfslib_realloc(path, 514 + total_path_length*2, cbargs);
413
if (
newpath
== NULL)
415
path =
newpath
;
Completed in 26 milliseconds
Indexes created Sat Feb 21 16:20:20 UTC 2026