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

/netbsd-current/bin/cp/
H A Dutils.c109 (void)unlink(to.p_path);
110 if (link(entp->fts_path, to.p_path)) {
111 warn("%s", to.p_path);
139 (void)fprintf(stderr, "overwrite %s? ", to.p_path);
150 lstat(to.p_path, &sb) : stat(to.p_path, &sb);
152 warn("stat: %s", to.p_path);
158 to_fd = open(to.p_path, O_WRONLY | O_TRUNC, 0);
160 to_fd = open(to.p_path, O_WRONLY | O_TRUNC | O_CREAT,
168 (void)unlink(to.p_path);
[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))
212 to.p_end = to.p_path + strlen(to.p_path);
238 r = lstat(to.p_path, &to_stat);
240 r = stat(to.p_path, &to_stat);
242 err(EXIT_FAILURE, "%s", to.p_path);
[all...]
H A Dextern.h40 char p_path[MAXPATHLEN + 1]; /* pointer to the start of a path */ member in struct:__anon1
/netbsd-current/usr.bin/whatis/
H A Dwhatis.c76 char *beg, *conffile, **p, *p_augment, *p_path; local
80 p_augment = p_path = NULL;
88 p_path = optarg;
113 if (p_path || (p_path = getenv("MANPATH")))
114 whatis(argv, p_path, 1);
/netbsd-current/usr.bin/apropos/
H A Dapropos.c79 char *conffile, *machine, **p, *p_augment, *p_path, *sflag; local
83 p_augment = p_path = NULL;
92 p_path = optarg;
125 if (p_path || (p_path = getenv("MANPATH")))
126 apropos(argv, p_path, true, sflag, machine);
/netbsd-current/sys/kern/
H A Dkern_fork.c390 if (p1->p_path)
391 p2->p_path = kmem_strdupsize(p1->p_path, NULL, KM_SLEEP);
393 p2->p_path = NULL;
H A Dkern_proc.c2683 COND_SET_PTR(p->p_path, psrc->p_path, allowaddr);
2978 if (p->p_path == NULL) {
2984 size_t len = strlen(p->p_path) + 1;
2987 error = sysctl_copyout(l, p->p_path, oldp, copylen);
H A Dexec_elf.c158 char *path = l->l_proc->p_path;
H A Dkern_exit.c1272 kmem_strfree(p->p_path);
H A Dkern_exec.c1035 kmem_strfree(p->p_path);
1036 p->p_path = kmem_strdupsize(resolvedname, NULL, KM_SLEEP);
/netbsd-current/sys/sys/
H A Dproc.h313 char *p_path; /* :: full pathname of executable */ member in struct:proc
/netbsd-current/sys/miscfs/procfs/
H A Dprocfs_vnops.c899 vap->va_bytes = vap->va_size = strlen(procp->p_path);
1689 bp = pown->p_path;

Completed in 346 milliseconds