/external/autotest/client/bin/ |
D | fsinfo.py | 31 def parse_mke2fs_conf(fs_type, conf_file='/etc/mke2fs.conf'): argument 54 if len(components) == 2 and current_fs_type == fs_type: 285 def match_ext_options(fs_type, dev, needed_options): argument 288 conf_opt = parse_mke2fs_conf(fs_type) 361 def match_mkfs_option(fs_type, dev, needed_options): argument 363 if fs_type.startswith('ext'): 364 ret = match_ext_options(fs_type, dev, needed_options) 365 elif fs_type == 'xfs':
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_state_fs.c | 116 struct lp_type fs_type, in generate_quad_mask() argument 130 assert(fs_type.width == 32); in generate_quad_mask() 131 assert(fs_type.length <= Elements(bits)); in generate_quad_mask() 132 mask_type = lp_int_type(fs_type); in generate_quad_mask() 142 assert(fs_type.length == 4); in generate_quad_mask() 149 assert(fs_type.length == 4); in generate_quad_mask() 169 for (i = 0; i < fs_type.length / 4; i++) { in generate_quad_mask() 176 mask = LLVMBuildAnd(builder, mask, LLVMConstVector(bits, fs_type.length), ""); in generate_quad_mask() 770 struct lp_type fs_type; in generate_fragment() local 832 memset(&fs_type, 0, sizeof fs_type); in generate_fragment() [all …]
|
/external/autotest/client/site_tests/platform_FilePerms/ |
D | platform_FilePerms.py | 264 fs_type = mtab[fs]['type'] 265 if fs_type in ignored_types: 267 fs, fs_type) 274 if fs_type != self.expected_mount_options[fs]['type']: 277 mtab_path, fs, fs_type,
|
/external/freetype/src/base/ |
D | ftfstype.c | 47 extra.fs_type != 0 ) in FT_Get_FSType_Flags() 48 return extra.fs_type; in FT_Get_FSType_Flags()
|
/external/pdfium/third_party/freetype/src/base/ |
D | ftfstype.c | 47 extra.fs_type != 0 ) in FT_Get_FSType_Flags() 48 return extra.fs_type; in FT_Get_FSType_Flags()
|
/external/e2fsprogs/misc/ |
D | blkid.c | 135 static void pretty_print_line(const char *device, const char *fs_type, in pretty_print_line() argument 161 len = pretty_print_word(fs_type, fs_type_len, len, 0); in pretty_print_line() 172 const char *uuid = "", *fs_type = "", *label = ""; in pretty_print_dev() local 196 fs_type = value; in pretty_print_dev() 216 pretty_print_line(devname, fs_type, label, mtpt, uuid); in pretty_print_dev()
|
D | fsck.c | 744 static void compile_fs_type(char *fs_type, struct fs_type_compile *cmp) in compile_fs_type() argument 750 if (fs_type) { in compile_fs_type() 751 for (cp=fs_type; *cp; cp++) { in compile_fs_type() 768 if (!fs_type) in compile_fs_type() 771 list = string_copy(fs_type); in compile_fs_type()
|
D | mke2fs.c | 1050 static char **parse_fs_type(const char *fs_type, in parse_fs_type() argument 1072 if (fs_type) in parse_fs_type() 1073 ext_type = fs_type; in parse_fs_type() 1293 char * fs_type = 0; in PRS() local 1570 if (fs_type) { in PRS() 1575 fs_type = strdup(optarg); in PRS() 1713 if (!fs_type) in PRS() 1715 "fs_type", 0, &fs_type); in PRS() 1725 fs_types = parse_fs_type(fs_type, usage_types, &fs_param, in PRS() 2151 free(fs_type); in PRS()
|
/external/autotest/client/site_tests/build_RootFilesystemSize/ |
D | build_RootFilesystemSize.py | 42 fs_type = output_columns[1] 50 if fs_type == 'squashfs':
|
/external/kernel-headers/original/uapi/linux/ |
D | msdos_fs.h | 136 __u8 fs_type[8]; /* file system type */ member 159 __u8 fs_type[8]; /* file system type */ member
|
/external/autotest/client/tests/xfstests/ |
D | control | 134 for fs_type in FS_TYPES: 135 p.mkfs(fs_type) 137 tag = "%s.%s" % (test, fs_type)
|
/external/pdfium/third_party/freetype/src/cid/ |
D | cidtoken.h | 57 T1_FIELD_NUM ( "FSType", fs_type, 0 )
|
/external/autotest/client/samples/ |
D | control.patch_verify | 19 job.run_test('parallel_dd', fs=partition, fs_type='ext4', iterations=1,
|
/external/pdfium/third_party/freetype/src/type1/ |
D | t1tokens.h | 50 T1_FIELD_NUM ( "FSType", fs_type,
|
D | t1driver.c | 522 retval = sizeof ( type1->font_extra.fs_type ); in t1_ps_get_font_value() 524 *((FT_UShort *)value) = type1->font_extra.fs_type; in t1_ps_get_font_value()
|
/external/freetype/include/internal/ |
D | t1types.h | 88 FT_UShort fs_type; member
|
/external/pdfium/third_party/freetype/include/freetype/internal/ |
D | t1types.h | 88 FT_UShort fs_type; member
|
/external/squashfs-tools/kernel/fs/squashfs/ |
D | super.c | 342 static int squashfs_get_sb(struct file_system_type *fs_type, int flags, in squashfs_get_sb() argument 346 return get_sb_bdev(fs_type, flags, dev_name, data, squashfs_fill_super, in squashfs_get_sb()
|
/external/libchrome/crypto/ |
D | nss_util.cc | 161 base::FileSystemType fs_type = base::FILE_SYSTEM_UNKNOWN; in UseLocalCacheOfNSSDatabaseIfNFS() local 162 if (base::GetFileSystemType(database_dir, &fs_type)) in UseLocalCacheOfNSSDatabaseIfNFS() 163 db_on_nfs = (fs_type == base::FILE_SYSTEM_NFS); in UseLocalCacheOfNSSDatabaseIfNFS()
|
/external/sfntly/cpp/src/sfntly/table/core/ |
D | os2_table.cc | 324 void OS2Table::Builder::SetFsType(int32_t fs_type) { in SetFsType() argument 325 InternalWriteData()->WriteUShort(Offset::kFsType, fs_type); in SetFsType()
|
D | os2_table.h | 337 void SetFsType(int32_t fs_type);
|
/external/selinux/secilc/docs/ |
D | cil_reference_guide.md | 205 …This example includes all `fs_type type` entries except `file.usermodehelper` and `file.proc_secur… 212 fs_type
|
/external/e2fsprogs/po/ |
D | de.po | 4370 "Warning: the fs_type %s is not defined in mke2fs.conf\n" 4374 "Warnung: Der fs_type %s ist in mke2fs.conf nicht definiert\n"
|
D | sv.po | 4395 "Warning: the fs_type %s is not defined in mke2fs.conf\n" 4399 "Varning: fs_type %s är inte definierad i mke2fs.conf\n"
|
D | cs.po | 4415 "Warning: the fs_type %s is not defined in mke2fs.conf\n" 4419 "Pozor: fs_type (druh SS) %s není v mke2fs.conf definován\n"
|