Lines Matching refs:ea
2082 * dump the ea attribute
2086 const EA_ATTR *ea;
2118 ea = (EA_ATTR*)buf;
2127 ea = (EA_ATTR*)((u8*)attr + le16_to_cpu(attr->value_offset));
2132 if (ea->flags) {
2133 if (ea->flags == NEED_EA)
2137 (unsigned)ea->flags);
2141 (unsigned)ea->name_length,
2142 (unsigned)ea->name_length);
2144 (unsigned)le16_to_cpu(ea->value_length),
2145 (unsigned)le16_to_cpu(ea->value_length));
2147 printf("\tName:\t\t '%s'\n", ea->name);
2149 if (ea->name_length == 11 &&
2151 (const char*)ea->name, 11)) {
2152 pval = (const le32*)(ea->value + ea->name_length + 1);
2156 pvalue = ea->value + ea->name_length + 1;
2158 cnt = le16_to_cpu(ea->value_length);
2164 if (le16_to_cpu(ea->value_length) > 32)
2169 if (ea->next_entry_offset) {
2170 offset += le32_to_cpu(ea->next_entry_offset);
2171 ea = (const EA_ATTR*)((const u8*)ea
2172 + le32_to_cpu(ea->next_entry_offset));