Home
last modified time | relevance | path

Searched refs:S_IRUGO (Results 1 – 7 of 7) sorted by relevance

/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
Dstat.h42 #if !defined(S_IRUGO)
44 #define S_IRUGO COMPAT_S_IRUGO macro
Dfs.h43 #define S_IRUGO (S_IRUSR | S_IRGRP | S_IROTH) macro
/third_party/uboot/u-boot-2020.01/drivers/mtd/ubi/
Dbuild.c133 __ATTR(version, S_IRUGO, ubi_version_show, NULL),
149 __ATTR(eraseblock_size, S_IRUGO, dev_attribute_show, NULL);
151 __ATTR(avail_eraseblocks, S_IRUGO, dev_attribute_show, NULL);
153 __ATTR(total_eraseblocks, S_IRUGO, dev_attribute_show, NULL);
155 __ATTR(volumes_count, S_IRUGO, dev_attribute_show, NULL);
157 __ATTR(max_ec, S_IRUGO, dev_attribute_show, NULL);
159 __ATTR(reserved_for_bad, S_IRUGO, dev_attribute_show, NULL);
161 __ATTR(bad_peb_count, S_IRUGO, dev_attribute_show, NULL);
163 __ATTR(max_vol_count, S_IRUGO, dev_attribute_show, NULL);
165 __ATTR(min_io_size, S_IRUGO, dev_attribute_show, NULL);
[all …]
Dvmt.c33 __ATTR(reserved_ebs, S_IRUGO, vol_attribute_show, NULL);
35 __ATTR(type, S_IRUGO, vol_attribute_show, NULL);
37 __ATTR(name, S_IRUGO, vol_attribute_show, NULL);
39 __ATTR(corrupted, S_IRUGO, vol_attribute_show, NULL);
41 __ATTR(alignment, S_IRUGO, vol_attribute_show, NULL);
43 __ATTR(usable_eb_size, S_IRUGO, vol_attribute_show, NULL);
45 __ATTR(data_bytes, S_IRUGO, vol_attribute_show, NULL);
47 __ATTR(upd_marker, S_IRUGO, vol_attribute_show, NULL);
/third_party/uboot/u-boot-2020.01/drivers/mtd/
Dmtdcore.c242 static DEVICE_ATTR(type, S_IRUGO, mtd_type_show, NULL);
252 static DEVICE_ATTR(flags, S_IRUGO, mtd_flags_show, NULL);
263 static DEVICE_ATTR(size, S_IRUGO, mtd_size_show, NULL);
273 static DEVICE_ATTR(erasesize, S_IRUGO, mtd_erasesize_show, NULL);
283 static DEVICE_ATTR(writesize, S_IRUGO, mtd_writesize_show, NULL);
294 static DEVICE_ATTR(subpagesize, S_IRUGO, mtd_subpagesize_show, NULL);
304 static DEVICE_ATTR(oobsize, S_IRUGO, mtd_oobsize_show, NULL);
314 static DEVICE_ATTR(numeraseregions, S_IRUGO, mtd_numeraseregions_show,
325 static DEVICE_ATTR(name, S_IRUGO, mtd_name_show, NULL);
334 static DEVICE_ATTR(ecc_strength, S_IRUGO, mtd_ecc_strength_show, NULL);
[all …]
/third_party/ltp/testcases/kernel/device-drivers/base/tbase/
Dtbase.c221 DEVICE_ATTR(test_id, S_IRUGO, NULL, NULL);
224 BUS_ATTR(test_id, S_IRUGO, NULL, NULL);
/third_party/uboot/u-boot-2020.01/fs/ubifs/
Dsb.c304 ino->mode = cpu_to_le32(S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO); in create_default_filesystem()