Home
last modified time | relevance | path

Searched refs:rdev (Results 1 – 14 of 14) sorted by relevance

/openbmc/u-boot/fs/ubifs/
H A Dmisc.h145 static inline int ubifs_encode_dev(union ubifs_dev_desc *dev, dev_t rdev) in ubifs_encode_dev() argument
147 if (new_valid_dev(rdev)) { in ubifs_encode_dev()
148 dev->new = cpu_to_le32(new_encode_dev(rdev)); in ubifs_encode_dev()
151 dev->huge = cpu_to_le64(huge_encode_dev(rdev)); in ubifs_encode_dev()
H A Dsuper.c367 dev_t rdev; in ubifs_iget() local
378 rdev = new_decode_dev(le32_to_cpu(dev->new)); in ubifs_iget()
380 rdev = huge_decode_dev(le64_to_cpu(dev->huge)); in ubifs_iget()
387 init_special_inode(inode, inode->i_mode, rdev); in ubifs_iget()
/openbmc/openbmc/poky/meta/recipes-devtools/makedevs/makedevs/
H A Dmakedevs.c256 unsigned long gid, unsigned long mode, dev_t rdev) in add_new_device() argument
263 path, name, uid, gid, mode, (short)(rdev >> 8), (short)(rdev & 0xff)); in add_new_device()
290 mknod(path, mode, rdev); in add_new_device()
408 dev_t rdev; in interpret_table_entry() local
416 rdev = MKDEV(major, minor + (i - start) * increment); in interpret_table_entry()
418 add_new_device(buf, path, uid, gid, mode, rdev); in interpret_table_entry()
423 dev_t rdev = MKDEV(major, minor); in interpret_table_entry() local
424 add_new_device(name, path, uid, gid, mode, rdev); in interpret_table_entry()
/openbmc/u-boot/fs/yaffs2/
H A Dyaffs_attribs.h23 void yaffs_attribs_init(struct yaffs_obj *obj, u32 gid, u32 uid, u32 rdev);
H A Dyaffs_attribs.c48 void yaffs_attribs_init(struct yaffs_obj *obj, u32 gid, u32 uid, u32 rdev) in yaffs_attribs_init() argument
58 obj->yst_rdev = rdev; in yaffs_attribs_init()
H A Dyaffs_guts.h888 u32 gid, u32 rdev);
H A Dyaffs_guts.c2118 const YCHAR *alias_str, u32 rdev) in yaffs_create_obj() argument
2148 yaffs_attribs_init(in, gid, uid, rdev); in yaffs_create_obj()
2205 u32 gid, u32 rdev) in yaffs_create_special() argument
2208 uid, gid, NULL, NULL, rdev); in yaffs_create_special()
/openbmc/u-boot/fs/btrfs/
H A Dbtrfs.c59 printf("%4u,%5u ", (unsigned int) (inode.rdev >> 20), in readdir_callback()
60 (unsigned int) (inode.rdev & 0xfffff)); in readdir_callback()
H A Dconv-funcs.h140 nlink, uid, gid, mode, rdev, flags, sequence, atime, ctime, mtime,
H A Dbtrfs_tree.h551 __u64 rdev; member
/openbmc/qemu/hw/9pfs/
H A D9p-local.c242 int uid = -1, gid = -1, mode = -1, rdev = -1; in local_set_mapped_file_attrat() local
285 rdev = atoi(buf + 12); in local_set_mapped_file_attrat()
322 rdev = credp->fc_rdev; in local_set_mapped_file_attrat()
334 if (rdev != -1) { in local_set_mapped_file_attrat()
335 fprintf(fp, "virtfs.rdev=%d\n", rdev); in local_set_mapped_file_attrat()
/openbmc/qemu/include/standard-headers/linux/
H A Dfuse.h291 uint32_t rdev; member
742 uint32_t rdev; member
/openbmc/qemu/tests/qtest/libqos/
H A Dvirtio-9p-client.h49 uint64_t rdev; member
H A Dvirtio-9p-client.c542 v9fs_uint64_read(req, &attr->rdev); in v9fs_rgetattr()