• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asus-wl-520gu-7.0.1.45/src/router/samba/source/rpc_parse/

Lines Matching defs:depth

34 BOOL sec_io_access(const char *desc, SEC_ACCESS *t, prs_struct *ps, int depth)
39 prs_debug(ps, depth, desc, "sec_io_access");
40 depth++;
42 if(!prs_uint32("mask", ps, depth, &t->mask))
52 BOOL sec_io_ace(const char *desc, SEC_ACE *psa, prs_struct *ps, int depth)
60 prs_debug(ps, depth, desc, "sec_io_ace");
61 depth++;
65 if(!prs_uint8("type ", ps, depth, &psa->type))
68 if(!prs_uint8("flags", ps, depth, &psa->flags))
71 if(!prs_uint16_pre("size ", ps, depth, &psa->size, &offset_ace_size))
74 if(!sec_io_access("info ", &psa->info, ps, depth))
79 if (!smb_io_dom_sid("trustee ", &psa->trustee , ps, depth))
82 if (!prs_uint32("obj_flags", ps, depth, &psa->obj_flags))
86 if (!prs_uint8s(False, "obj_guid", ps, depth, psa->obj_guid.info, GUID_SIZE))
90 if (!prs_uint8s(False, "inh_guid", ps, depth, psa->inh_guid.info, GUID_SIZE))
93 if(!smb_io_dom_sid("trustee ", &psa->trustee , ps, depth))
97 if(!prs_uint16_post("size ", ps, depth, &psa->size, offset_ace_size, old_offset))
109 BOOL sec_io_acl(const char *desc, SEC_ACL **ppsa, prs_struct *ps, int depth)
137 prs_debug(ps, depth, desc, "sec_io_acl");
138 depth++;
142 if(!prs_uint16("revision", ps, depth, &psa->revision))
145 if(!prs_uint16_pre("size ", ps, depth, &psa->size, &offset_acl_size))
148 if(!prs_uint32("num_aces ", ps, depth, &psa->num_aces))
164 if(!sec_io_ace(tmp, &psa->ace[i], ps, depth))
168 if(!prs_uint16_post("size ", ps, depth, &psa->size, offset_acl_size, old_offset))
179 BOOL sec_io_desc(const char *desc, SEC_DESC **ppsd, prs_struct *ps, int depth)
203 prs_debug(ps, depth, desc, "sec_io_desc");
204 depth++;
219 if(!prs_uint16("revision ", ps, depth, &psd->revision))
222 if(!prs_uint16("type ", ps, depth, &psd->type))
225 if(!prs_uint32("off_owner_sid", ps, depth, &psd->off_owner_sid))
228 if(!prs_uint32("off_grp_sid ", ps, depth, &psd->off_grp_sid))
231 if(!prs_uint32("off_sacl ", ps, depth, &psd->off_sacl))
234 if(!prs_uint32("off_dacl ", ps, depth, &psd->off_dacl))
251 if(!smb_io_dom_sid("owner_sid ", psd->owner_sid , ps, depth))
272 if(!smb_io_dom_sid("grp_sid", psd->grp_sid, ps, depth))
285 if(!sec_io_acl("sacl", &psd->sacl, ps, depth))
297 if(!sec_io_acl("dacl", &psd->dacl, ps, depth))
313 BOOL sec_io_desc_buf(const char *desc, SEC_DESC_BUF **ppsdb, prs_struct *ps, int depth)
332 prs_debug(ps, depth, desc, "sec_io_desc_buf");
333 depth++;
338 if(!prs_uint32_pre("max_len", ps, depth, &psdb->max_len, &off_max_len))
341 if(!prs_uint32 ("ptr ", ps, depth, &psdb->ptr))
344 if(!prs_uint32_pre("len ", ps, depth, &psdb->len, &off_len))
351 if(!sec_io_desc("sec ", &psdb->sec, ps, depth))
359 if(!prs_uint32_post("max_len", ps, depth, &psdb->max_len, off_max_len, size == 0 ? psdb->max_len : size))
362 if(!prs_uint32_post("len ", ps, depth, &psdb->len, off_len, size))