Searched refs:abssdlen (Results 1 – 1 of 1) sorted by relevance
/reactos/drivers/filesystems/btrfs/ |
H A D | security.c | 520 ULONG abssdlen = 0, dacllen = 0, sacllen = 0, ownerlen = 0, grouplen = 0; in fcb_get_sd() local 540 …Status = RtlSelfRelativeToAbsoluteSD(fcb->sd, NULL, &abssdlen, NULL, &dacllen, NULL, &sacllen, NUL… in fcb_get_sd() 547 if (abssdlen + dacllen + sacllen + ownerlen + grouplen == 0) { in fcb_get_sd() 552 …buf = (uint8_t*)ExAllocatePoolWithTag(PagedPool, abssdlen + dacllen + sacllen + ownerlen + grouple… in fcb_get_sd() 559 dacl = (PACL)(buf + abssdlen); in fcb_get_sd() 560 sacl = (PACL)(buf + abssdlen + dacllen); in fcb_get_sd() 561 owner = (PSID)(buf + abssdlen + dacllen + sacllen); in fcb_get_sd() 562 group = (PSID)(buf + abssdlen + dacllen + sacllen + ownerlen); in fcb_get_sd() 564 …Status = RtlSelfRelativeToAbsoluteSD(fcb->sd, abssd, &abssdlen, dacl, &dacllen, sacl, &sacllen, ow… in fcb_get_sd()
|