Home
last modified time | relevance | path

Searched refs:p_path (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/bin/cp/
H A Dutils.c109 (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 Dcp.c82 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 Dextern.h40 char p_path[MAXPATHLEN + 1]; /* pointer to the start of a path */ member
/netbsd-src/usr.bin/whatis/
H A Dwhatis.c76 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 Dapropos.c79 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 Dkern_fork.c390 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 Dkern_proc.c2683 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 Dexec_elf.c161 char *path = l->l_proc->p_path; in elf_populate_auxv()
H A Dkern_exit.c1272 kmem_strfree(p->p_path); in proc_free()
H A Dkern_exec.c1036 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 Dproc.h313 char *p_path; /* :: full pathname of executable */ member
/netbsd-src/sys/miscfs/procfs/
H A Dprocfs_vnops.c970 vap->va_bytes = vap->va_size = strlen(procp->p_path); in procfs_getattr()
1820 bp = pown->p_path; in procfs_readlink()