ea_list 7059 source3/include/proto.h struct ea_list *read_ea_list_entry(TALLOC_CTX *ctx, const char *pdata, size_t data_size, size_t *pbytes_used); ea_list 1880 source3/include/smb.h struct ea_list *next, *prev; ea_list 145 source3/include/vfs.h struct ea_list; ea_list 344 source3/include/vfs.h struct ea_list *ea_list, ea_list 52 source3/include/vfs_macros.h #define SMB_VFS_CREATE_FILE(conn, req, root_dir_fid, fname, create_file_flags, access_mask, share_access, create_disposition, create_options, file_attributes, oplock_request, allocation_size, sd, ea_list, result, pinfo, psbuf) (((conn)->vfs.ops.create_file)((conn)->vfs.handles.create_file, (req), (root_dir_fid), (fname), (create_file_flags), (access_mask), (share_access), (create_disposition), (create_options), (file_attributes), (oplock_request), (allocation_size), (sd), (ea_list), (result), (pinfo), (psbuf))) ea_list 186 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_CREATE_FILE(conn, req, root_dir_fid, fname, create_file_flags, access_mask, share_access, create_disposition, create_options, file_attributes, oplock_request, allocation_size, sd, ea_list, result, pinfo, psbuf) (((conn)->vfs_opaque.ops.create_file)((conn)->vfs_opaque.handles.create_file, (req), (root_dir_fid), (fname), (create_file_flags), (access_mask), (share_access), (create_disposition), (create_options), (file_attributes), (oplock_request), (allocation_size), (sd), (ea_list), (result), (pinfo), (psbuf))) ea_list 321 source3/include/vfs_macros.h #define SMB_VFS_NEXT_CREATE_FILE(handle, req, root_dir_fid, fname, create_file_flags, access_mask, share_access, create_disposition, create_options, file_attributes, oplock_request, allocation_size, sd, ea_list, result, pinfo, psbuf) (((handle)->vfs_next.ops.create_file)((handle)->vfs_next.handles.create_file, (req), (root_dir_fid), (fname), (create_file_flags), (access_mask), (share_access), (create_disposition), (create_options), (file_attributes), (oplock_request), (allocation_size), (sd), (ea_list), (result), (pinfo), (psbuf))) ea_list 2051 source3/libsmb/clifile.c struct ea_struct *ea_list; ea_list 2118 source3/libsmb/clifile.c ea_list = TALLOC_ARRAY(ctx, struct ea_struct, num_eas); ea_list 2119 source3/libsmb/clifile.c if (!ea_list) { ea_list 2127 source3/libsmb/clifile.c struct ea_struct *ea = &ea_list[num_eas]; ea_list 2149 source3/libsmb/clifile.c *pea_list = ea_list; ea_list 1663 source3/modules/onefs_open.c ea_list, sd, fname)); ea_list 1909 source3/modules/onefs_open.c if ((ea_list != NULL) && (info == FILE_WAS_CREATED)) { ea_list 1910 source3/modules/onefs_open.c status = set_ea(conn, fsp, fname, ea_list); ea_list 2029 source3/modules/onefs_open.c ea_list, sd, create_file_flags, fname)); ea_list 2111 source3/modules/onefs_open.c ea_list, /* ea_list */ ea_list 299 source3/modules/vfs_default.c allocation_size, sd, ea_list, result, pinfo, ea_list 1226 source3/modules/vfs_full_audit.c ea_list, /* ea_list */ ea_list 227 source3/modules/vfs_onefs_shadow_copy.c oplock_request, allocation_size, sd, ea_list, result, ea_list 800 source3/smbd/nttrans.c static struct ea_list *read_nttrans_ea_list(TALLOC_CTX *ctx, const char *pdata, size_t data_size) ea_list 802 source3/smbd/nttrans.c struct ea_list *ea_list_head = NULL; ea_list 811 source3/smbd/nttrans.c struct ea_list *eal = read_ea_list_entry(ctx, pdata + offset + 4, data_size - offset - 4, NULL); ea_list 817 source3/smbd/nttrans.c DLIST_ADD_END(ea_list_head, eal, struct ea_list *); ea_list 861 source3/smbd/nttrans.c struct ea_list *ea_list = NULL; ea_list 964 source3/smbd/nttrans.c ea_list = read_nttrans_ea_list(talloc_tos(), data + sd_len, ea_list 966 source3/smbd/nttrans.c if (ea_list == NULL) { ea_list 1000 source3/smbd/nttrans.c ea_list, /* ea_list */ ea_list 2896 source3/smbd/open.c ea_list, sd, fname)); ea_list 3166 source3/smbd/open.c if ((ea_list != NULL) && ea_list 3168 source3/smbd/open.c status = set_ea(conn, fsp, fname, ea_list); ea_list 3366 source3/smbd/open.c ea_list, sd, create_file_flags, fname)); ea_list 3488 source3/smbd/open.c oplock_request, allocation_size, sd, ea_list, ea_list 254 source3/smbd/trans2.c static struct ea_list *get_ea_list_from_file(TALLOC_CTX *mem_ctx, connection_struct *conn, files_struct *fsp, ea_list 260 source3/smbd/trans2.c struct ea_list *ea_list_head = NULL; ea_list 277 source3/smbd/trans2.c struct ea_list *listp; ea_list 284 source3/smbd/trans2.c listp = TALLOC_P(mem_ctx, struct ea_list); ea_list 304 source3/smbd/trans2.c DLIST_ADD_END(ea_list_head, listp, struct ea_list *); ea_list 337 source3/smbd/trans2.c for (p = pdata + 4; ea_list; ea_list = ea_list->next) { ea_list 340 source3/smbd/trans2.c push_ascii_fstring(dos_ea_name, ea_list->ea.name); ea_list 345 source3/smbd/trans2.c if (ea_list->ea.value.length > 65535) { ea_list 348 source3/smbd/trans2.c if (4 + dos_namelen + 1 + ea_list->ea.value.length > total_data_size) { ea_list 353 source3/smbd/trans2.c SCVAL(p,0,ea_list->ea.flags); ea_list 355 source3/smbd/trans2.c SSVAL(p,2,ea_list->ea.value.length); ea_list 357 source3/smbd/trans2.c memcpy( p + 4 + dos_namelen + 1, ea_list->ea.value.data, ea_list->ea.value.length); ea_list 359 source3/smbd/trans2.c total_data_size -= 4 + dos_namelen + 1 + ea_list->ea.value.length; ea_list 360 source3/smbd/trans2.c p += 4 + dos_namelen + 1 + ea_list->ea.value.length; ea_list 390 source3/smbd/trans2.c struct ea_list *ea_list = get_ea_list_from_file(mem_ctx, conn, fsp, fname, &total_ea_len); ea_list 392 source3/smbd/trans2.c for (; ea_list; ea_list = ea_list->next) { ea_list 393 source3/smbd/trans2.c if (strequal(&unix_ea_name[5], ea_list->ea.name)) { ea_list 395 source3/smbd/trans2.c &unix_ea_name[5], ea_list->ea.name)); ea_list 396 source3/smbd/trans2.c safe_strcpy(&unix_ea_name[5], ea_list->ea.name, sizeof(fstring)-6); ea_list 412 source3/smbd/trans2.c for (;ea_list; ea_list = ea_list->next) { ea_list 417 source3/smbd/trans2.c fstrcat(unix_ea_name, ea_list->ea.name); ea_list 421 source3/smbd/trans2.c DEBUG(10,("set_ea: ea_name %s ealen = %u\n", unix_ea_name, (unsigned int)ea_list->ea.value.length)); ea_list 428 source3/smbd/trans2.c if (ea_list->ea.value.length == 0) { ea_list 452 source3/smbd/trans2.c ea_list->ea.value.data, ea_list->ea.value.length, 0); ea_list 457 source3/smbd/trans2.c ea_list->ea.value.data, ea_list->ea.value.length, 0); ea_list 477 source3/smbd/trans2.c static struct ea_list *read_ea_name_list(TALLOC_CTX *ctx, const char *pdata, size_t data_size) ea_list 479 source3/smbd/trans2.c struct ea_list *ea_list_head = NULL; ea_list 483 source3/smbd/trans2.c struct ea_list *eal = TALLOC_ZERO_P(ctx, struct ea_list); ea_list 508 source3/smbd/trans2.c DLIST_ADD_END(ea_list_head, eal, struct ea_list *); ea_list 519 source3/smbd/trans2.c struct ea_list *read_ea_list_entry(TALLOC_CTX *ctx, const char *pdata, size_t data_size, size_t *pbytes_used) ea_list 521 source3/smbd/trans2.c struct ea_list *eal = TALLOC_ZERO_P(ctx, struct ea_list); ea_list 580 source3/smbd/trans2.c static struct ea_list *read_ea_list(TALLOC_CTX *ctx, const char *pdata, size_t data_size) ea_list 582 source3/smbd/trans2.c struct ea_list *ea_list_head = NULL; ea_list 587 source3/smbd/trans2.c struct ea_list *eal = read_ea_list_entry(ctx, pdata + offset, data_size - offset, &bytes_used); ea_list 593 source3/smbd/trans2.c DLIST_ADD_END(ea_list_head, eal, struct ea_list *); ea_list 607 source3/smbd/trans2.c struct ea_list *listp; ea_list 628 source3/smbd/trans2.c static struct ea_list *ea_list_union(struct ea_list *name_list, struct ea_list *file_list, size_t *total_ea_len) ea_list 630 source3/smbd/trans2.c struct ea_list *nlistp, *flistp; ea_list 888 source3/smbd/trans2.c struct ea_list *ea_list = NULL; ea_list 975 source3/smbd/trans2.c ea_list = read_ea_list(talloc_tos(), pdata + 4, ea_list 977 source3/smbd/trans2.c if (!ea_list) { ea_list 1000 source3/smbd/trans2.c ea_list, /* ea_list */ ea_list 1539 source3/smbd/trans2.c struct ea_list *file_list = NULL; ea_list 1906 source3/smbd/trans2.c struct ea_list *ea_list = NULL; ea_list 2038 source3/smbd/trans2.c ea_list = read_ea_name_list(ctx, pdata + 4, ea_size - 4); ea_list 2039 source3/smbd/trans2.c if (!ea_list) { ea_list 2115 source3/smbd/trans2.c &last_entry_off, ea_list); ea_list 2246 source3/smbd/trans2.c struct ea_list *ea_list = NULL; ea_list 2344 source3/smbd/trans2.c ea_list = read_ea_name_list(ctx, pdata + 4, ea_size - 4); ea_list 2345 source3/smbd/trans2.c if (!ea_list) { ea_list 2466 source3/smbd/trans2.c &last_entry_off, ea_list); ea_list 3849 source3/smbd/trans2.c struct ea_list *ea_list = NULL; ea_list 4128 source3/smbd/trans2.c ea_list = read_ea_name_list(ctx, pdata + 4, ea_size - 4); ea_list 4129 source3/smbd/trans2.c if (!ea_list) { ea_list 4269 source3/smbd/trans2.c struct ea_list *ea_file_list = NULL; ea_list 4274 source3/smbd/trans2.c ea_list = ea_list_union(ea_list, ea_file_list, &total_ea_len); ea_list 4276 source3/smbd/trans2.c if (!ea_list || (total_ea_len > data_size)) { ea_list 4282 source3/smbd/trans2.c data_size = fill_ea_buffer(ctx, pdata, data_size, conn, ea_list); ea_list 4293 source3/smbd/trans2.c ea_list = get_ea_list_from_file(ctx, conn, fsp, fname, &total_ea_len); ea_list 4294 source3/smbd/trans2.c if (!ea_list || (total_ea_len > data_size)) { ea_list 4300 source3/smbd/trans2.c data_size = fill_ea_buffer(ctx, pdata, data_size, conn, ea_list); ea_list 5128 source3/smbd/trans2.c struct ea_list *ea_list = NULL; ea_list 5152 source3/smbd/trans2.c ea_list = read_ea_list(ctx, pdata + 4, total_data - 4); ea_list 5153 source3/smbd/trans2.c if (!ea_list) { ea_list 5156 source3/smbd/trans2.c status = set_ea(conn, fsp, fname, ea_list); ea_list 7144 source3/smbd/trans2.c struct ea_list *ea_list = NULL; ea_list 7220 source3/smbd/trans2.c ea_list = read_ea_list(talloc_tos(), pdata + 4, ea_list 7222 source3/smbd/trans2.c if (!ea_list) { ea_list 7240 source3/smbd/trans2.c if (ea_list) { ea_list 7241 source3/smbd/trans2.c status = set_ea(conn, NULL, directory, ea_list); ea_list 4666 source3/torture/torture.c struct ea_struct *ea_list = NULL; ea_list 4713 source3/torture/torture.c if (!cli_get_ea_list_path(cli, fname, mem_ctx, &num_eas, &ea_list)) { ea_list 4726 source3/torture/torture.c printf("%d: ea_name = %s. Val = ", i, ea_list[i].name); ea_list 4727 source3/torture/torture.c dump_data(0, ea_list[i].value.data, ea_list 4728 source3/torture/torture.c ea_list[i].value.length); ea_list 4748 source3/torture/torture.c if (!cli_get_ea_list_path(cli, fname, mem_ctx, &num_eas, &ea_list)) { ea_list 4755 source3/torture/torture.c printf("%d: ea_name = %s. Val = ", i, ea_list[i].name); ea_list 4756 source3/torture/torture.c dump_data(0, ea_list[i].value.data, ea_list 4757 source3/torture/torture.c ea_list[i].value.length); ea_list 567 source4/libcli/raw/interfaces.h } ea_list; ea_list 1410 source4/libcli/raw/interfaces.h struct smb_ea_list *ea_list; ea_list 2577 source4/libcli/raw/interfaces.h } ea_list; ea_list 361 source4/libcli/raw/rawfile.c if (parms->ntcreatex.in.ea_list) { ea_list 362 source4/libcli/raw/rawfile.c uint32_t ea_size = ea_list_size_chained(parms->ntcreatex.in.ea_list->num_eas, ea_list 363 source4/libcli/raw/rawfile.c parms->ntcreatex.in.ea_list->eas, 4); ea_list 369 source4/libcli/raw/rawfile.c parms->ntcreatex.in.ea_list->num_eas, ea_list 370 source4/libcli/raw/rawfile.c parms->ntcreatex.in.ea_list->eas, 4); ea_list 320 source4/libcli/raw/rawfileinfo.c &parms->ea_list.out.num_eas, ea_list 321 source4/libcli/raw/rawfileinfo.c &parms->ea_list.out.eas); ea_list 667 source4/libcli/raw/rawfileinfo.c parms->ea_list.in.num_names, ea_list 668 source4/libcli/raw/rawfileinfo.c parms->ea_list.in.ea_names)) { ea_list 743 source4/libcli/raw/rawfileinfo.c parms->ea_list.in.num_names, ea_list 744 source4/libcli/raw/rawfileinfo.c parms->ea_list.in.ea_names)) { ea_list 549 source4/libcli/raw/rawsearch.c data->ea_list.resume_key = IVAL(blob->data, 0); ea_list 554 source4/libcli/raw/rawsearch.c data->ea_list.create_time = raw_pull_dos_date2(tree->session->transport, ea_list 556 source4/libcli/raw/rawsearch.c data->ea_list.access_time = raw_pull_dos_date2(tree->session->transport, ea_list 558 source4/libcli/raw/rawsearch.c data->ea_list.write_time = raw_pull_dos_date2(tree->session->transport, ea_list 560 source4/libcli/raw/rawsearch.c data->ea_list.size = IVAL(blob->data, 12); ea_list 561 source4/libcli/raw/rawsearch.c data->ea_list.alloc_size = IVAL(blob->data, 16); ea_list 562 source4/libcli/raw/rawsearch.c data->ea_list.attrib = SVAL(blob->data, 20); ea_list 573 source4/libcli/raw/rawsearch.c &data->ea_list.eas.num_eas, ea_list 574 source4/libcli/raw/rawsearch.c &data->ea_list.eas.eas); ea_list 579 source4/libcli/raw/rawsearch.c &data->ea_list.name, ea_list 457 source4/ntvfs/ntvfs_generic.c io2->generic.in.ea_list = talloc(io2, struct smb_ea_list); ea_list 458 source4/ntvfs/ntvfs_generic.c io2->generic.in.ea_list->num_eas = io->t2open.in.num_eas; ea_list 459 source4/ntvfs/ntvfs_generic.c io2->generic.in.ea_list->eas = io->t2open.in.eas; ea_list 529 source4/ntvfs/ntvfs_generic.c io2->generic.in.ea_list = &io->smb2.in.eas; ea_list 112 source4/ntvfs/posix/pvfs_open.c if (io->ntcreatex.in.ea_list) { ea_list 114 source4/ntvfs/posix/pvfs_open.c io->ntcreatex.in.ea_list->num_eas, ea_list 115 source4/ntvfs/posix/pvfs_open.c io->ntcreatex.in.ea_list->eas); ea_list 178 source4/ntvfs/posix/pvfs_qfileinfo.c info->ea_list.in.num_names, ea_list 179 source4/ntvfs/posix/pvfs_qfileinfo.c info->ea_list.in.ea_names, ea_list 180 source4/ntvfs/posix/pvfs_qfileinfo.c &info->ea_list.out); ea_list 137 source4/ntvfs/posix/pvfs_search.c file->ea_list.resume_key = dir_index; ea_list 138 source4/ntvfs/posix/pvfs_search.c file->ea_list.create_time = nt_time_to_unix(name->dos.create_time); ea_list 139 source4/ntvfs/posix/pvfs_search.c file->ea_list.access_time = nt_time_to_unix(name->dos.access_time); ea_list 140 source4/ntvfs/posix/pvfs_search.c file->ea_list.write_time = nt_time_to_unix(name->dos.write_time); ea_list 141 source4/ntvfs/posix/pvfs_search.c file->ea_list.size = name->st.st_size; ea_list 142 source4/ntvfs/posix/pvfs_search.c file->ea_list.alloc_size = name->dos.alloc_size; ea_list 143 source4/ntvfs/posix/pvfs_search.c file->ea_list.attrib = name->dos.attrib; ea_list 144 source4/ntvfs/posix/pvfs_search.c file->ea_list.name.s = fname; ea_list 148 source4/ntvfs/posix/pvfs_search.c &file->ea_list.eas); ea_list 135 source4/smb_server/smb/nttrans.c io->ntcreatex.in.ea_list = NULL; ea_list 174 source4/smb_server/smb/nttrans.c io->ntcreatex.in.ea_list = talloc(io, struct smb_ea_list); ea_list 175 source4/smb_server/smb/nttrans.c if (io->ntcreatex.in.ea_list == NULL) { ea_list 180 source4/smb_server/smb/nttrans.c &io->ntcreatex.in.ea_list->num_eas, ea_list 181 source4/smb_server/smb/nttrans.c &io->ntcreatex.in.ea_list->eas); ea_list 2193 source4/smb_server/smb/reply.c io->ntcreatex.in.ea_list = NULL; ea_list 363 source4/smb_server/smb/trans2.c list_size = ea_list_size(st->ea_list.out.num_eas, ea_list 364 source4/smb_server/smb/trans2.c st->ea_list.out.eas); ea_list 368 source4/smb_server/smb/trans2.c st->ea_list.out.num_eas, st->ea_list.out.eas); ea_list 478 source4/smb_server/smb/trans2.c &st->ea_list.in.num_names, ea_list 479 source4/smb_server/smb/trans2.c &st->ea_list.in.ea_names)); ea_list 519 source4/smb_server/smb/trans2.c &st->ea_list.in.num_names, ea_list 520 source4/smb_server/smb/trans2.c &st->ea_list.in.ea_names)); ea_list 763 source4/smb_server/smb/trans2.c ea_size = ea_list_size(file->ea_list.eas.num_eas, file->ea_list.eas.eas); ea_list 766 source4/smb_server/smb/trans2.c SIVAL(trans->out.data.data, ofs, file->ea_list.resume_key); ea_list 772 source4/smb_server/smb/trans2.c srv_push_dos_date2(req->smb_conn, data, 0, file->ea_list.create_time); ea_list 773 source4/smb_server/smb/trans2.c srv_push_dos_date2(req->smb_conn, data, 4, file->ea_list.access_time); ea_list 774 source4/smb_server/smb/trans2.c srv_push_dos_date2(req->smb_conn, data, 8, file->ea_list.write_time); ea_list 775 source4/smb_server/smb/trans2.c SIVAL(data, 12, file->ea_list.size); ea_list 776 source4/smb_server/smb/trans2.c SIVAL(data, 16, file->ea_list.alloc_size); ea_list 777 source4/smb_server/smb/trans2.c SSVAL(data, 20, file->ea_list.attrib); ea_list 778 source4/smb_server/smb/trans2.c ea_put_list(data+22, file->ea_list.eas.num_eas, file->ea_list.eas.eas); ea_list 779 source4/smb_server/smb/trans2.c TRANS2_CHECK(smbsrv_blob_append_string(trans, &trans->out.data, file->ea_list.name.s, ea_list 178 source4/torture/raw/acls.c io.ntcreatex.in.ea_list = NULL; ea_list 284 source4/torture/raw/acls.c io.ntcreatex.in.ea_list = NULL; ea_list 1863 source4/torture/raw/acls.c io.ntcreatex.in.ea_list = NULL; ea_list 373 source4/torture/raw/eas.c struct smb_ea_list ea_list; ea_list 392 source4/torture/raw/eas.c ea_list.num_eas = 3; ea_list 393 source4/torture/raw/eas.c ea_list.eas = eas; ea_list 407 source4/torture/raw/eas.c io.ntcreatex.in.ea_list = &ea_list; ea_list 425 source4/torture/raw/eas.c ea_list.num_eas = 1; ea_list 885 source4/torture/raw/open.c io.ntcreatex.in.ea_list = NULL; ea_list 1254 source4/torture/raw/search.c return strcmp(r1->ea_list.name.s, r2->ea_list.name.s); ea_list 1328 source4/torture/raw/search.c nxt.t2fnext.in.resume_key = result.list[1].ea_list.resume_key; ea_list 1330 source4/torture/raw/search.c nxt.t2fnext.in.last_name = result.list[1].ea_list.name.s; ea_list 1346 source4/torture/raw/search.c CHECK_VALUE(result.list[0].ea_list.eas.num_eas, 2); ea_list 1347 source4/torture/raw/search.c CHECK_STRING(result.list[0].ea_list.name.s, "file1.txt"); ea_list 1348 source4/torture/raw/search.c CHECK_STRING(result.list[0].ea_list.eas.eas[0].name.s, "SECOND EA"); ea_list 1349 source4/torture/raw/search.c CHECK_VALUE(result.list[0].ea_list.eas.eas[0].value.length, 0); ea_list 1350 source4/torture/raw/search.c CHECK_STRING(result.list[0].ea_list.eas.eas[1].name.s, "THIRD EA"); ea_list 1351 source4/torture/raw/search.c CHECK_VALUE(result.list[0].ea_list.eas.eas[1].value.length, 0); ea_list 1353 source4/torture/raw/search.c CHECK_STRING(result.list[1].ea_list.name.s, "file2.txt"); ea_list 1354 source4/torture/raw/search.c CHECK_STRING(result.list[1].ea_list.eas.eas[0].name.s, "SECOND EA"); ea_list 1355 source4/torture/raw/search.c CHECK_VALUE(result.list[1].ea_list.eas.eas[0].value.length, 9); ea_list 1356 source4/torture/raw/search.c CHECK_STRING((const char *)result.list[1].ea_list.eas.eas[0].value.data, "Value Two"); ea_list 1357 source4/torture/raw/search.c CHECK_STRING(result.list[1].ea_list.eas.eas[1].name.s, "THIRD EA"); ea_list 1358 source4/torture/raw/search.c CHECK_VALUE(result.list[1].ea_list.eas.eas[1].value.length, 0); ea_list 1360 source4/torture/raw/search.c CHECK_STRING(result.list[2].ea_list.name.s, "file3.txt"); ea_list 1361 source4/torture/raw/search.c CHECK_STRING(result.list[2].ea_list.eas.eas[0].name.s, "SECOND EA"); ea_list 1362 source4/torture/raw/search.c CHECK_VALUE(result.list[2].ea_list.eas.eas[0].value.length, 9); ea_list 1363 source4/torture/raw/search.c CHECK_STRING((const char *)result.list[2].ea_list.eas.eas[0].value.data, "Value Two"); ea_list 1364 source4/torture/raw/search.c CHECK_STRING(result.list[2].ea_list.eas.eas[1].name.s, "THIRD EA"); ea_list 1365 source4/torture/raw/search.c CHECK_VALUE(result.list[2].ea_list.eas.eas[1].value.length, 0); ea_list 413 source4/torture/util_smb.c info.ea_list.level = RAW_FILEINFO_EA_LIST; ea_list 414 source4/torture/util_smb.c info.ea_list.in.file.path = fname; ea_list 415 source4/torture/util_smb.c info.ea_list.in.num_names = 1; ea_list 416 source4/torture/util_smb.c info.ea_list.in.ea_names = &ea; ea_list 426 source4/torture/util_smb.c if (info.ea_list.out.num_eas != 1) { ea_list 432 source4/torture/util_smb.c if (strcasecmp_m(eaname, info.ea_list.out.eas[0].name.s) != 0) { ea_list 434 source4/torture/util_smb.c eaname, info.ea_list.out.eas[0].name.s); ea_list 440 source4/torture/util_smb.c if (info.ea_list.out.eas[0].value.length != 0) { ea_list 449 source4/torture/util_smb.c if (strlen(value) == info.ea_list.out.eas[0].value.length && ea_list 450 source4/torture/util_smb.c memcmp(value, info.ea_list.out.eas[0].value.data, ea_list 451 source4/torture/util_smb.c info.ea_list.out.eas[0].value.length) == 0) { ea_list 458 source4/torture/util_smb.c (int)info.ea_list.out.eas[0].value.length, ea_list 459 source4/torture/util_smb.c (int)info.ea_list.out.eas[0].value.length, ea_list 460 source4/torture/util_smb.c info.ea_list.out.eas[0].value.data,