HomeSort by relevance Sort by last modified time
    Searched defs:dentry (Results 1 - 9 of 9) sorted by null

  /external/squashfs-tools/kernel/fs/squashfs/
export.c 74 static struct dentry *squashfs_export_iget(struct super_block *sb,
78 struct dentry *dentry = ERR_PTR(-ENOENT); local
84 dentry = d_obtain_alias(squashfs_iget(sb, ino, ino_num));
86 return dentry;
90 static struct dentry *squashfs_fh_to_dentry(struct super_block *sb,
101 static struct dentry *squashfs_fh_to_parent(struct super_block *sb,
111 static struct dentry *squashfs_get_parent(struct dentry *child)
  /external/selinux/libselinux/src/
stringrep.c 56 struct dirent *dentry; local
102 dentry = readdir(dir);
103 while (dentry != NULL) {
107 snprintf(path, sizeof path, "%s/class/%s/perms/%s", selinux_mnt,s,dentry->d_name);
119 dentry = readdir(dir);
135 node->perms[value-1] = strdup(dentry->d_name);
139 dentry = readdir(dir);
  /build/make/tools/
fat16copy.py 97 A file inside of our fat image. The file may or may not have a dentry, and
149 backing: A file-like object from which we can read dentry info. Should have
171 Add a new dentry to this directory.
172 attributes: Attribute flags for this dentry. See the ATTRIBUTE_ constants
181 new_dentry = dentry(self.backing.fs, attributes, shortname, ext,
282 class dentry(object): class in inherits:object
288 attributes: The attribute flags for this dentry. See the ATTRIBUTE_ flags
290 shortname: The short name stored in this dentry. Up to 8 characters, no
292 ext: The file extension stored in this dentry. Up to 3 characters, no
294 longname: The long file name stored in this dentry
    [all...]
  /external/f2fs-tools/fsck/
dir.c 45 d->dentry = t->dentry;
55 d->dentry = (struct f2fs_dir_entry *)
80 de = &d->dentry[bit_pos];
110 unsigned int level, struct dentry *de)
114 struct f2fs_dir_entry *dentry = NULL; local
149 dentry = find_in_block(dentry_blk, de->name, de->len,
151 if (dentry) {
153 de->ino = le32_to_cpu(dentry->ino);
166 struct f2fs_node *dir, struct dentry *de
    [all...]
f2fs.h 125 struct f2fs_dir_entry *dentry; member in struct:f2fs_dentry_ptr
131 struct dentry { struct
  /external/u-boot/fs/ubifs/
ubifs.c 304 struct inode *dir = file->f_path.dentry->d_inode;
398 struct dentry *dentry; local
403 dentry = kzalloc(sizeof(struct dentry), 0);
405 if (!file || !dentry || !dir) {
412 file->f_path.dentry = dentry;
413 file->f_path.dentry->d_parent = dentry;
586 struct dentry *dentry; local
    [all...]
ubifs.h 44 struct dentry;
94 * dentry.
267 int (*statfs) (struct dentry *, struct kstatfs *);
273 int (*show_options)(struct seq_file *, struct dentry *);
274 int (*show_devname)(struct seq_file *, struct dentry *);
275 int (*show_path)(struct seq_file *, struct dentry *);
276 int (*show_stats)(struct seq_file *, struct dentry *);
300 struct dentry *s_root;
398 struct dentry *(*mount) (struct file_system_type *, int,
419 struct dentry *mnt_root; /* root of the mounted tree *
426 struct dentry *dentry; member in struct:path
567 struct dentry { struct
    [all...]
  /external/u-boot/cmd/
mtdparts.c 230 struct list_head *dentry; local
237 list_for_each(dentry, &devices) {
238 dev = list_entry(dentry, struct mtd_device, link);
1080 struct list_head *pentry, *dentry; local
1099 list_for_each(dentry, &devices) {
1100 dev = list_entry(dentry, struct mtd_device, link);
1179 if (dentry->next != &devices) {
1246 struct list_head *dentry, *pentry; local
1251 list_for_each(dentry, &devices) {
1252 dev = list_entry(dentry, struct mtd_device, link)
1347 struct list_head *dentry, *pentry; local
1482 struct list_head *dentry, *pentry; local
    [all...]
  /external/f2fs-tools/include/
f2fs_fs.h 741 #define F2FS_INLINE_DENTRY 0x04 /* file inline dentry flag */
855 __le32 flag; /* include cold/fsync/dentry marks and offset */
1059 /* the number of dentry in a block */
1089 struct f2fs_dir_entry dentry[NR_DENTRY_IN_BLOCK]; member in struct:f2fs_dentry_block
    [all...]

Completed in 1493 milliseconds