Searched refs:p_path (Results 1 – 12 of 12) sorted by relevance
/netbsd-src/bin/cp/ |
H A D | utils.c | 109 (void)unlink(to.p_path); in copy_file() 110 if (link(entp->fts_path, to.p_path)) { in copy_file() 111 warn("%s", to.p_path); in copy_file() 139 (void)fprintf(stderr, "overwrite %s? ", to.p_path); in copy_file() 150 lstat(to.p_path, &sb) : stat(to.p_path, &sb); in copy_file() 152 warn("stat: %s", to.p_path); in copy_file() 158 to_fd = open(to.p_path, O_WRONLY | O_TRUNC, 0); in copy_file() 160 to_fd = open(to.p_path, O_WRONLY | O_TRUNC | O_CREAT, in copy_file() 168 (void)unlink(to.p_path); in copy_file() 169 to_fd = open(to.p_path, O_WRONLY | O_TRUNC | O_CREAT, in copy_file() [all …]
|
H A D | cp.c | 82 while ((p).p_end > (p).p_path + 1 && (p).p_end[-1] == '/') \ 87 PATH_T to = { .p_end = to.p_path, .target_end = empty }; 210 if (strlcpy(to.p_path, target, sizeof(to.p_path)) >= sizeof(to.p_path)) in main() 212 to.p_end = to.p_path + strlen(to.p_path); in main() 238 r = lstat(to.p_path, &to_stat); in main() 240 r = stat(to.p_path, &to_stat); in main() 242 err(EXIT_FAILURE, "%s", to.p_path); in main() 278 to.p_path); in main() 280 errx(1, "%s is not a directory", to.p_path); in main() 361 to.target_end - to.p_path + 1) > MAXPATHLEN) { in copy() [all …]
|
H A D | extern.h | 40 char p_path[MAXPATHLEN + 1]; /* pointer to the start of a path */ member
|
/netbsd-src/usr.bin/whatis/ |
H A D | whatis.c | 76 char *beg, *conffile, **p, *p_augment, *p_path; in main() local 80 p_augment = p_path = NULL; in main() 88 p_path = optarg; in main() 113 if (p_path || (p_path = getenv("MANPATH"))) in main() 114 whatis(argv, p_path, 1); in main()
|
/netbsd-src/usr.bin/apropos/ |
H A D | apropos.c | 79 char *conffile, *machine, **p, *p_augment, *p_path, *sflag; in main() local 83 p_augment = p_path = NULL; in main() 92 p_path = optarg; in main() 125 if (p_path || (p_path = getenv("MANPATH"))) in main() 126 apropos(argv, p_path, true, sflag, machine); in main()
|
/netbsd-src/sys/kern/ |
H A D | kern_fork.c | 390 if (p1->p_path) in fork1() 391 p2->p_path = kmem_strdupsize(p1->p_path, NULL, KM_SLEEP); in fork1() 393 p2->p_path = NULL; in fork1()
|
H A D | kern_proc.c | 2683 COND_SET_PTR(p->p_path, psrc->p_path, allowaddr); in fill_proc() 2978 if (p->p_path == NULL) { in fill_pathname() 2984 size_t len = strlen(p->p_path) + 1; in fill_pathname() 2987 error = sysctl_copyout(l, p->p_path, oldp, copylen); in fill_pathname()
|
H A D | exec_elf.c | 161 char *path = l->l_proc->p_path; in elf_populate_auxv()
|
H A D | kern_exit.c | 1272 kmem_strfree(p->p_path); in proc_free()
|
H A D | kern_exec.c | 1036 kmem_strfree(p->p_path); in pathexec() 1037 p->p_path = kmem_strdupsize(resolvedname, NULL, KM_SLEEP); in pathexec()
|
/netbsd-src/sys/sys/ |
H A D | proc.h | 313 char *p_path; /* :: full pathname of executable */ member
|
/netbsd-src/sys/miscfs/procfs/ |
H A D | procfs_vnops.c | 970 vap->va_bytes = vap->va_size = strlen(procp->p_path); in procfs_getattr() 1820 bp = pown->p_path; in procfs_readlink()
|