pent              234 src/vfs/extfs/extfs.c     struct vfs_s_entry *pent, *pdir;
pent              248 src/vfs/extfs/extfs.c     pent = dir->ent;
pent              252 src/vfs/extfs/extfs.c     while ((pent != NULL) && (c != '\0') && (*p != '\0'))
pent              262 src/vfs/extfs/extfs.c             pent = pent->dir != NULL ? pent->dir->ent : NULL;
pent              267 src/vfs/extfs/extfs.c             pent = extfs_resolve_symlinks_int (pent, list);
pent              268 src/vfs/extfs/extfs.c             if (pent == NULL)
pent              274 src/vfs/extfs/extfs.c             if (!S_ISDIR (pent->ino->st.st_mode))
pent              281 src/vfs/extfs/extfs.c             pdir = pent;
pent              282 src/vfs/extfs/extfs.c             pl = g_queue_find_custom (pent->ino->subdir, p, vfs_s_entry_compare);
pent              283 src/vfs/extfs/extfs.c             pent = pl != NULL ? VFS_ENTRY (pl->data) : NULL;
pent              284 src/vfs/extfs/extfs.c             if (pent != NULL && q + 1 > name_end)
pent              288 src/vfs/extfs/extfs.c                 notadir = !S_ISDIR (pent->ino->st.st_mode);
pent              289 src/vfs/extfs/extfs.c                 return pent;
pent              293 src/vfs/extfs/extfs.c             if (pent == NULL && (flags & FL_MKDIR) != 0)
pent              294 src/vfs/extfs/extfs.c                 pent = extfs_generate_entry (super, p, pdir->ino, S_IFDIR | 0777);
pent              295 src/vfs/extfs/extfs.c             if (pent == NULL && (flags & FL_MKFILE) != 0)
pent              296 src/vfs/extfs/extfs.c                 pent = extfs_generate_entry (super, p, pdir->ino, S_IFREG | 0666);
pent              304 src/vfs/extfs/extfs.c     if (pent == NULL)
pent              306 src/vfs/extfs/extfs.c     return pent;
pent              415 src/vfs/extfs/extfs.c             struct vfs_s_entry *pent = NULL;
pent              439 src/vfs/extfs/extfs.c                 pent = extfs_find_entry (super->root, q, FL_MKDIR);
pent              440 src/vfs/extfs/extfs.c                 if (pent == NULL)
pent              447 src/vfs/extfs/extfs.c             if (pent != NULL)
pent              449 src/vfs/extfs/extfs.c                 entry = extfs_entry_new (super->me, p, pent->ino);
pent              450 src/vfs/extfs/extfs.c                 entry->dir = pent->ino;
pent              451 src/vfs/extfs/extfs.c                 g_queue_push_tail (pent->ino->subdir, entry);
pent              462 src/vfs/extfs/extfs.c                 pent = extfs_find_entry (super->root, current_link_name, FL_NONE);
pent              463 src/vfs/extfs/extfs.c                 if (pent == NULL)
pent              469 src/vfs/extfs/extfs.c                 pent->ino->st.st_nlink++;
pent              470 src/vfs/extfs/extfs.c                 entry->ino = pent->ino;
pent              852 src/vfs/extfs/extfs.c     struct vfs_s_entry *pent = NULL;
pent              867 src/vfs/extfs/extfs.c         pent = extfs_find_entry_int (entry->dir, entry->ino->linkname, looping, FL_NONE);
pent              870 src/vfs/extfs/extfs.c         if (pent == NULL)
pent              874 src/vfs/extfs/extfs.c     return pent;