Searched refs:pdir (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/contrib/tcsh/
H A Dma.setp.c101 char *pdir[MAXDIRS]; /* directory names for each pathlist */ member in struct:pelem
273 pe->pdir[pe->pdirs] = p;
294 len += strlen(pe->pdir[i]) + 1;
301 for (q = pe->pdir[i]; *p = *q; p++, q++);
322 if (pe->pdir[i] == NULL)
324 p = pe->pdir[i];
325 pe->pdir[i] = NULL;
361 if (pe->pdir[n] == NULL)
363 p = pe->pdir[n];
364 pe->pdir[
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/cmd/mktree/
H A Dmktree.c51 static char *getfdname(char *pdir, char type, int level, int dir, int file);
96 mktree(char *pdir, int level) argument
108 (void) strcpy(dname, getfdname(pdir, TYPE_D, level, d, 0));
132 (void) strcpy(fname, getfdname(pdir, TYPE_F, level, d, f));
140 getfdname(char *pdir, char type, int level, int dir, int file) argument
143 if (snprintf(fdname, size, "%s/%c-l%dd%df%d", pdir, type, level, dir,
/freebsd-13-stable/tests/sys/cddl/zfs/bin/
H A Dmktree.c53 static char *getfdname(char *pdir, char type, int level, int dir, int file);
98 mktree(char *pdir, int level) argument
110 (void) strcpy(dname, getfdname(pdir, TYPE_D, level, d, 0));
134 (void) strcpy(fname, getfdname(pdir, TYPE_F, level, d, f));
142 getfdname(char *pdir, char type, int level, int dir, int file) argument
145 "%s/%c-l%dd%df%d", pdir, type, level, dir, file);
/freebsd-13-stable/contrib/subversion/subversion/libsvn_delta/
H A Dpath_driver.c241 const char *pdir;
286 pdir = svn_relpath_dirname(relpath, scratch_pool);
288 if (strlen(pdir) > common_len)
290 const char *piece = pdir + common_len + 1;
294 const char *rel = pdir;
302 rel = apr_pstrmemdup(scratch_pool, pdir, piece - pdir);
344 state->last_path = apr_pstrdup(state->pool, db ? relpath : pdir);
239 const char *pdir; local
/freebsd-13-stable/sys/powerpc/booke/
H A Dpmap_64.c190 pte_t **pdir; local
198 pdir = pdir_l1[PDIR_L1_IDX(va)];
199 if (pdir == NULL)
201 ptbl = pdir[PDIR_IDX(va)];
302 vm_offset_t pdir_l1, pdir, ptbl; local
309 pdir = get_pgtbl_page(pmap, (vm_offset_t *)pdir_l1, pdir_l1_idx,
311 if (pdir == 0)
313 ptbl = get_pgtbl_page(pmap, (vm_offset_t *)pdir, pdir_idx,
333 pte_t **pdir; local
344 pdir
[all...]
H A Dpmap_32.c297 /* Free ptbl pages and invalidate pdir entry. */
320 * Invalidate the pdir entry as soon as possible, so that other CPUs
602 pte_t **pdir; local
611 pdir = pmap->pm_pdir;
613 if (pdir[i] == NULL)
616 pte = &pdir[i][j];
640 /* Initialize kernel pdir */
680 debugf(" kernel pdir at %#jx end = %#jx\n",
/freebsd-13-stable/sys/net/
H A Dif_enc.c249 int pdir; local
272 pdir = PFIL_IN;
283 pdir = PFIL_OUT;
303 if (ph == NULL || (pdir == PFIL_OUT && !PFIL_HOOKED_OUT(ph)) ||
304 (pdir == PFIL_IN && !PFIL_HOOKED_IN(ph)))
309 if (pfil_run_hooks(ph, ctx->mp, ifp, pdir, ctx->inp) != PFIL_PASS) {
/freebsd-13-stable/contrib/atf/atf-c/detail/
H A Dfs_test.c569 atf_fs_path_t pdir, pfile; local
572 RE(atf_fs_path_init_fmt(&pdir, "dir"));
575 create_dir(atf_fs_path_cstring(&pdir), 0755);
579 RE(atf_fs_exists(&pdir, &b));
592 ATF_REQUIRE(chmod(atf_fs_path_cstring(&pdir), 0000) != -1);
596 ATF_REQUIRE(chmod(atf_fs_path_cstring(&pdir), 0755) != -1);
606 atf_fs_path_fini(&pdir);
/freebsd-13-stable/sys/ufs/ufs/
H A Dufs_vnops.c2720 struct inode *ip, *pdir; local
2725 pdir = VTOI(dvp);
2734 if (pdir->i_effnlink < 2) {
2749 ip->i_gid = pdir->i_gid;
2750 DIP_SET(ip, i_gid, pdir->i_gid);
2766 (pdir->i_mode & ISUID) &&
2767 (pdir->i_uid != cnp->cn_cred->cr_uid) && pdir->i_uid) {
2768 ip->i_uid = pdir->i_uid;
2783 ucred.cr_groups[0] = pdir
[all...]
/freebsd-13-stable/sys/fs/ext2fs/
H A Dext2_vnops.c1950 struct inode *ip, *pdir; local
1954 pdir = VTOI(dvp);
1968 ip->i_gid = pdir->i_gid;
1980 (pdir->i_mode & ISUID) &&
1981 (pdir->i_uid != cnp->cn_cred->cr_uid) && pdir->i_uid) {
1982 ip->i_uid = pdir->i_uid;

Completed in 137 milliseconds