HomeSort by: relevance | last modified time | path
    Searched defs:directory_p (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/miscfs/genfs/
genfs_rename.c 395 bool directory_p, reparent_p, replaced_p; local in function:genfs_rename_knote
410 directory_p = (fvp->v_type == VDIR);
414 KASSERT((tvp == NULL) || (directory_p == (tvp->v_type == VDIR)));
417 if (directory_p && reparent_p)
427 if (directory_p)
  /src/sys/ufs/lfs/
lfs_rename.c 737 bool directory_p, reparent_p; local in function:ulfs_gro_rename
773 directory_p = (fvp->v_type == VDIR);
774 KASSERT(directory_p == ((VTOI(fvp)->i_mode & LFS_IFMT) == LFS_IFDIR));
775 KASSERT((tvp == NULL) || (directory_p == (tvp->v_type == VDIR)));
776 KASSERT((tvp == NULL) || (directory_p ==
817 if (directory_p && reparent_p) {
845 if (directory_p && reparent_p) {
863 if (directory_p)
877 ((directory_p && reparent_p) ? reparent_p : directory_p),
    [all...]
  /src/sys/ufs/ufs/
ufs_rename.c 289 bool directory_p, reparent_p; local in function:ufs_gro_rename
323 directory_p = (fvp->v_type == VDIR);
324 KASSERT(directory_p == ((VTOI(fvp)->i_mode & IFMT) == IFDIR));
325 KASSERT((tvp == NULL) || (directory_p == (tvp->v_type == VDIR)));
326 KASSERT((tvp == NULL) || (directory_p ==
369 if (directory_p && reparent_p) {
398 if (directory_p && reparent_p) {
416 if (directory_p)
430 ((directory_p && reparent_p) ? reparent_p : directory_p),
    [all...]
  /src/sys/ufs/ext2fs/
ext2fs_rename.c 279 bool directory_p, reparent_p; local in function:ext2fs_gro_rename
313 directory_p = (fvp->v_type == VDIR);
314 KASSERT(directory_p == ((VTOI(fvp)->i_e2fs_mode & IFMT) == IFDIR));
315 KASSERT((tvp == NULL) || (directory_p == (tvp->v_type == VDIR)));
316 KASSERT((tvp == NULL) || (directory_p ==
354 if (directory_p && reparent_p) {
377 if (directory_p && reparent_p) {
393 if (directory_p)
412 if (directory_p && !reparent_p) {
433 if (directory_p) {
    [all...]
  /src/sys/fs/msdosfs/
msdosfs_rename.c 378 bool directory_p, reparent_p; local in function:msdosfs_gro_rename
420 directory_p = (fvp->v_type == VDIR);
421 KASSERT(directory_p ==
423 KASSERT((tvp == NULL) || (directory_p == (tvp->v_type == VDIR)));
424 KASSERT((tvp == NULL) || (directory_p ==
426 if (directory_p) {
497 if (!directory_p) {
521 if (directory_p && reparent_p) {
533 if (directory_p)

Completed in 44 milliseconds