HomeSort by relevance Sort by last modified time
    Searched full:dentry (Results 1 - 25 of 37) sorted by null

1 2

  /external/llvm/test/CodeGen/X86/
2007-11-04-LiveIntervalCrash.ll 4 %struct.dentry = type { %struct.dentry_operations* }
5 %struct.dentry_operations = type { i32 (%struct.dentry*, %struct.qstr*)* }
8 define %struct.dentry* @d_hash_and_lookup(%struct.dentry* %dir, %struct.qstr* %name) {
32 %tmp75 = tail call i32 null( %struct.dentry* %dir, %struct.qstr* %name ) ; <i32> [#uses=0]
33 %tmp84 = tail call i32 (...) @d_lookup( %struct.dentry* %dir, %struct.qstr* %name ) ; <i32> [#uses=0]
34 ret %struct.dentry* null
  /external/swiftshader/third_party/LLVM/test/CodeGen/X86/
2007-11-04-LiveIntervalCrash.ll 4 %struct.dentry = type { %struct.dentry_operations* }
5 %struct.dentry_operations = type { i32 (%struct.dentry*, %struct.qstr*)* }
8 define %struct.dentry* @d_hash_and_lookup(%struct.dentry* %dir, %struct.qstr* %name) {
32 %tmp75 = tail call i32 null( %struct.dentry* %dir, %struct.qstr* %name ) ; <i32> [#uses=0]
33 %tmp84 = tail call i32 (...)* @d_lookup( %struct.dentry* %dir, %struct.qstr* %name ) ; <i32> [#uses=0]
34 ret %struct.dentry* 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)
namei.c 135 static struct dentry *squashfs_lookup(struct inode *dir, struct dentry *dentry,
138 const unsigned char *name = dentry->d_name.name;
139 int len = dentry->d_name.len;
226 return d_splice_alias(inode, dentry);
227 d_add(dentry, inode);
super.c 300 static int squashfs_statfs(struct dentry *dentry, struct kstatfs *buf)
302 struct squashfs_sb_info *msblk = dentry->d_sb->s_fs_info;
  /external/ltp/testcases/kernel/syscalls/utils/
inotify.h 102 extern void inotify_d_instantiate(struct dentry *, struct inode *);
103 extern void inotify_d_move(struct dentry *);
106 extern void inotify_dentry_parent_queue_event(struct dentry *, __u32, __u32,
132 static inline void inotify_d_instantiate(struct dentry *dentry,
137 static inline void inotify_d_move(struct dentry *dentry)
148 static inline void inotify_dentry_parent_queue_event(struct dentry *dentry,
  /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...]
fsck.c 721 DBG(3, "ino[0x%x] has inline dentry!\n", nid);
1119 u8 *bitmap, struct f2fs_dir_entry *dentry,
1132 name_len = le16_to_cpu(dentry[idx].name_len);
1161 new, le32_to_cpu(dentry[idx].ino),
1165 static int f2fs_check_hash_code(struct f2fs_dir_entry *dentry,
1171 if (dentry->hash_code != hash_code) {
1177 new, le32_to_cpu(dentry->hash_code),
1179 dentry->hash_code = cpu_to_le32(hash_code);
1226 struct f2fs_dir_entry *dentry,
1235 if (le32_to_cpu(dentry->ino) != child->p_ino)
    [all...]
fsck.h 57 u32 i_namelen; /* dentry namelen */
227 int f2fs_build_file(struct f2fs_sb_info *, struct dentry *);
241 int f2fs_create(struct f2fs_sb_info *, struct dentry *);
242 int f2fs_mkdir(struct f2fs_sb_info *, struct dentry *);
243 int f2fs_symlink(struct f2fs_sb_info *, struct dentry *);
sload.c 45 int entries, struct dentry *de)
95 static int set_perms_and_caps(struct dentry *de)
124 static void set_inode_metadata(struct dentry *de)
174 struct dentry *dentries;
184 dentries = calloc(entries, sizeof(struct dentry));
f2fs.h 125 struct f2fs_dir_entry *dentry; member in struct:f2fs_dentry_ptr
131 struct dentry { struct
segment.c 275 int f2fs_build_file(struct f2fs_sb_info *sbi, struct dentry *de)
  /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);
  /external/fio/
err.h 6 * scheme where we can return either an error code or a dentry
  /external/syslinux/lzo/src/
lzo_dict.h 233 # define DENTRY(p,in) (p)
236 # define DENTRY(p,in) ((lzo_dict_t) pd(p, in))
243 # define UPDATE_D(dict,drun,dv,p,in) dict[ DINDEX(dv,p) ] = DENTRY(p,in)
244 # define UPDATE_I(dict,drun,index,p,in) dict[index] = DENTRY(p,in)
245 # define UPDATE_P(ptr,drun,p,in) (ptr)[0] = DENTRY(p,in)
250 dict[ DINDEX(dv,p) + drun++ ] = DENTRY(p,in); drun &= DD_MASK
252 dict[ (index) + drun++ ] = DENTRY(p,in); drun &= DD_MASK
254 (ptr) [ drun++ ] = DENTRY(p,in); drun &= DD_MASK
  /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/ltp/testcases/kernel/syscalls/getcwd/
getcwd04.c 22 * 232d2d6 dcache: Translating dentry into pathname without
27 * prepend_path() needs to reinitialize dentry/vfsmount/mnt on restarts
  /external/kernel-headers/original/uapi/linux/nfsd/
nfsfh.h 19 * This is the old "dentry style" Linux NFSv2 file handle.
25 __u32 fb_dcookie; /* dentry cookie - always 0xfeebbaca */
  /external/squashfs-tools/kernel-2.4/fs/squashfs/
squashfs2_0.c 44 static struct dentry *squashfs_lookup_2(struct inode *i, struct dentry *dentry);
629 static struct dentry *squashfs_lookup_2(struct inode *i, struct dentry *dentry)
631 const unsigned char *name = dentry->d_name.name;
632 int len = dentry->d_name.len;
726 d_add(dentry, inode);
inode.c 50 static struct dentry *squashfs_lookup(struct inode *, struct dentry *);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/nfsd/
nfsfh.h 24 * This is the old "dentry style" Linux NFSv2 file handle.
30 __u32 fb_dcookie; /* dentry cookie - always 0xfeebbaca */
  /external/f2fs-tools/mkfs/
f2fs_format.c 1000 raw_node->i.i_size = cpu_to_le64(1 * blk_size_bytes); /* dentry */
    [all...]
  /external/ltp/testcases/kernel/fs/scsi/ltpfs/
LtpfsCmds.c 273 inode = nd.dentry->d_inode;
  /external/f2fs-tools/include/
f2fs_fs.h 700 #define F2FS_INLINE_DENTRY 0x04 /* file inline dentry flag */
808 __le32 flag; /* include cold/fsync/dentry marks and offset */
1009 /* the number of dentry in a block */
1038 struct f2fs_dir_entry dentry[NR_DENTRY_IN_BLOCK]; member in struct:f2fs_dentry_block
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/dex/
PackageDexUsage.java 276 for (Map.Entry<String, DexUseInfo> dEntry : packageUseInfo.mDexUseInfoMap.entrySet()) {
277 String dexPath = dEntry.getKey();
278 DexUseInfo dexUseInfo = dEntry.getValue();
    [all...]

Completed in 1085 milliseconds

1 2