Lines Matching defs:type

448  * @type:	dump flags for this attribute type
451 static void ntfs_dump_flags(const char *indent, ATTR_TYPES type, le32 flags)
512 if (type == AT_FILE_NAME) {
585 ntfs_dump_flags("\t", attr->type, standard_attr->file_attributes);
662 printf("\t\tAttribute type:\t0x%x\n",
663 (unsigned int)le32_to_cpu(entry->type));
882 switch (ace->type) {
897 printf("%sACE:\t\t type:%s flags:0x%x access:0x%x\n", prefix,
1169 static const char *get_attribute_type_name(le32 type)
1171 switch (type) {
1221 get_attribute_type_name(a->type),
1222 (unsigned)le32_to_cpu(a->type),
1356 static void ntfs_dump_index_key(INDEX_ENTRY *entry, INDEX_ATTR_TYPE type)
1361 switch (type) {
1402 ntfs_log_verbose("\t\tIndex attr type is UNKNOWN: \t 0x%08x\n",
1403 (unsigned)type);
1421 static void ntfs_dump_index_data(INDEX_ENTRY *entry, INDEX_ATTR_TYPE type)
1428 switch (type) {
1533 ntfs_log_verbose("\t\tIndex attr type is UNKNOWN: \t 0x%08x\n",
1534 (unsigned)type);
1544 static int ntfs_dump_index_entries(INDEX_ENTRY *entry, INDEX_ATTR_TYPE type)
1572 switch (type) {
1592 ntfs_dump_index_key(entry, type);
1594 ntfs_dump_index_data(entry, type);
1624 if (index_root->type) {
1625 if (index_root->type == AT_FILE_NAME)
1629 ntfs_log_error("Unknown index attribute type: 0x%0X\n",
1630 index_root->type);
1659 static void ntfs_dump_index_attr_type(INDEX_ATTR_TYPE type)
1661 if (type == INDEX_ATTR_DIRECTORY_I30)
1663 else if (type == INDEX_ATTR_SECURE_SDH)
1665 else if (type == INDEX_ATTR_SECURE_SII)
1667 else if (type == INDEX_ATTR_OBJID_O)
1669 else if (type == INDEX_ATTR_QUOTA_O)
1671 else if (type == INDEX_ATTR_QUOTA_Q)
1673 else if (type == INDEX_ATTR_REPARSE_R)
1703 INDEX_ATTR_TYPE type;
1710 type = get_index_attr_type(ni, attr, index_root);
1712 ntfs_dump_index_attr_type(type);
1735 ntfs_dump_index_entries(entry, type));
1756 static s32 ntfs_dump_index_block(INDEX_BLOCK *ib, INDEX_ATTR_TYPE type,
1781 return ntfs_dump_index_entries(entry, type);
1793 INDEX_ATTR_TYPE type;
1808 type = get_index_attr_type(ni, attr, ir);
1831 entries = ntfs_dump_index_block(tmp_alloc, type,
2062 printf("===== Please report this unknown attribute type to %s =====\n",
2160 if (ctx->attr->type == AT_END || ctx->attr->type == AT_UNUSED) {
2161 printf("Weird: %s attribute type was found, please "
2164 ctx->attr->type));
2170 switch (ctx->attr->type) {