Searched refs:ea (Results 151 - 159 of 159) sorted by path

1234567

/linux-master/fs/smb/client/
H A Dsmb2ops.c1125 struct smb2_file_full_ea_info *ea = NULL; local
1222 len = sizeof(*ea) + ea_name_len + ea_value_len + 1;
1223 ea = kzalloc(len, GFP_KERNEL);
1224 if (ea == NULL) {
1229 ea->ea_name_length = ea_name_len;
1230 ea->ea_value_length = cpu_to_le16(ea_value_len);
1231 memcpy(ea->ea_data, ea_name, ea_name_len + 1);
1232 memcpy(ea->ea_data + ea_name_len + 1, ea_value, ea_value_len);
1235 data[0] = ea;
1268 kfree(ea);
[all...]
H A Dsmb2pdu.h120 * [7] : create ea context
420 struct smb2_file_full_ea_info ea; member in struct:smb2_create_ea_ctx
/linux-master/fs/smb/server/
H A Dsmb2pdu.c2310 * @path: dentry path for get ea
3205 rc = smb2_set_ea(&ea_buf->ea,
4600 ksmbd_debug(SMB, "no ea data in the file\n");
4696 /* no more ea entries */
H A Dsmb2pdu.h386 struct smb2_ea_info ea; member in struct:create_ea_buf_req
/linux-master/fs/udf/
H A Dmisc.c30 uint8_t *ea = NULL, *ad = NULL; local
35 ea = iinfo->i_data;
39 ad = ea;
50 eahd = (struct extendedAttrHeaderDesc *)ea;
87 memmove(&ea[offset - aal + size],
88 &ea[aal], offset - aal);
97 memmove(&ea[offset - ial + size],
98 &ea[ial], offset - ial);
108 memmove(&ea[offset - aal + size],
109 &ea[aa
132 uint8_t *ea = NULL; local
[all...]
H A Dnamei.c574 uint8_t *ea; local
638 ea = epos.bh->b_data + udf_ext0_offset(inode);
640 ea = iinfo->i_data + iinfo->i_lenEAttr;
643 pc = (struct pathComponent *)ea;
662 pc = (struct pathComponent *)(ea + elen);
/linux-master/include/linux/
H A Dcoresight.h249 * @ea: Device attribute for sink representation under PMU directory.
271 struct dev_ext_attribute *ea; member in struct:coresight_device
/linux-master/mm/damon/
H A Dcore-test.h198 unsigned long ea[] = {100, 112, 122, 130, 156, 170, 184, 230}; local
207 r = damon_new_region(sa[i], ea[i]);
/linux-master/net/appletalk/
H A Daarp.c716 struct elapaarp *ea = aarp_hdr(skb); local
731 if (!skb_pull(skb, sizeof(*ea)))
734 function = ntohs(ea->function);
738 ea->hw_len != ETH_ALEN || ea->pa_len != AARP_PA_ALEN ||
739 ea->pa_src_zero || ea->pa_dst_zero)
743 hash = ea->pa_src_node % (AARP_HASH_SIZE - 1);
746 sa.s_node = ea->pa_src_node;
747 sa.s_net = ea
[all...]

Completed in 321 milliseconds

1234567