Lines Matching refs:sec_desc
1035 static void ntfs_dump_security_descriptor(SECURITY_DESCRIPTOR_ATTR *sec_desc,
1040 printf("%s\tRevision:\t\t %u\n", indent, sec_desc->revision);
1044 le16_to_cpu(sec_desc->control));
1046 if (~sec_desc->control & SE_SELF_RELATIVE) {
1047 SECURITY_DESCRIPTOR *sd = (SECURITY_DESCRIPTOR *)sec_desc;
1057 if (sec_desc->owner) {
1058 sid = ntfs_sid_to_mbs((SID *)((char *)sec_desc +
1059 le32_to_cpu(sec_desc->owner)), NULL, 0);
1065 if (sec_desc->group) {
1066 sid = ntfs_sid_to_mbs((SID *)((char *)sec_desc +
1067 le32_to_cpu(sec_desc->group)), NULL, 0);
1074 if (sec_desc->control & SE_SACL_PRESENT) {
1075 if (sec_desc->control & SE_SACL_DEFAULTED) {
1080 (ACL *)((char *)sec_desc +
1081 le32_to_cpu(sec_desc->sacl)));
1087 if (sec_desc->control & SE_DACL_PRESENT) {
1088 if (sec_desc->control & SE_SACL_DEFAULTED) {
1093 (ACL *)((char *)sec_desc +
1094 le32_to_cpu(sec_desc->dacl)));