Searched defs:aclbuf (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_nt_transact_security.c500 struct mbuf_chain aclbuf; local
516 if (MBC_SHADOW_CHAIN(&aclbuf, mbc, offset, bytes_left) != 0)
519 if (smb_mbc_decodef(&aclbuf, "b.ww2.", &revision, &size, &acecnt))
529 if (smb_mbc_decodef(&aclbuf, "bbwl",
541 aclbuf.chain_offset += sidlen;
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dpass3b.c47 static caddr_t aclbuf; /* hold acl's for parsing */ variable
48 static int64_t aclbufoff; /* offset into aclbuf */
49 static int64_t maxaclsize; /* how big aclbuf is */
116 if (aclbuf != NULL) {
117 free((void *)aclbuf);
119 if ((aclbuf = malloc(maxaclsize)) == NULL) {
120 errexit("cannot alloc %lld bytes for aclbuf\n",
142 (void) memset(aclbuf, 0, (size_t)maxaclsize);
144 bufchk(aclbuf, (int64_t)aclp->i_isize, aclp->i_number)) {
174 free((void *)aclbuf);
[all...]

Completed in 46 milliseconds