Searched refs:ps (Results 1 - 25 of 884) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/aparser/
H A Dvluke.c10 io_struct ps; local
27 io_init(&ps, 0, MARSHALL);
28 ps.is_dynamic=True;
29 io_read(&ps, fd, st.st_size, 0);
30 ps.data_offset = 0;
31 ps.buffer_size = ps.grow_size;
32 ps.io = UNMARSHALL;
33 ps.autoalign = OPTION_autoalign;
34 ret = run_test(test, &ps, PARSE_SCALAR
[all...]
H A Dparser.c8 BOOL io_grow(io_struct *ps, uint32 extra_space) argument
13 ps->grow_size = MAX(ps->grow_size, ps->data_offset + extra_space);
15 if(ps->data_offset + extra_space <= ps->buffer_size)
23 if(UNMARSHALLING(ps) || !ps->is_dynamic) {
33 extra_space -= (ps->buffer_size - ps
66 io_mem_get(io_struct *ps, uint32 extra_size) argument
91 io_init(io_struct *ps, uint32 size, BOOL io) argument
119 io_debug(io_struct *ps, int depth, char *desc, char *fn_name) argument
129 io_align2(io_struct *ps, int offset) argument
144 io_align4(io_struct *ps, int offset) argument
164 io_align(io_struct *ps, int align) argument
187 io_read(io_struct *ps, int fd, size_t len, int timeout) argument
211 io_uint32(char *name, io_struct *ps, int depth, uint32 *data32, unsigned flags) argument
231 io_uint16(char *name, io_struct *ps, int depth, uint16 *data16, unsigned flags) argument
251 io_uint8(char *name, io_struct *ps, int depth, uint8 *data8, unsigned flags) argument
269 io_pointer(char *desc, io_struct *ps, int depth, void **p, unsigned flags) argument
284 io_SMBSTR(char *name, io_struct *ps, int depth, char **str, unsigned flags) argument
324 io_uint8s(char *name, io_struct *ps, int depth, uint8 **data8s, int len, unsigned flags) argument
350 io_uint8s_fixed(char *name, io_struct *ps, int depth, uint8 *data8s, int len, unsigned flags) argument
370 io_io_struct(char *name, io_struct *ps, int depth, io_struct *io, unsigned flags) argument
418 io_wstring(char *name, io_struct *ps, int depth, uint16 *data16s, int len, unsigned flags) argument
439 io_free(io_struct *ps) argument
451 io_alloc(char *name, io_struct *ps, void **ptr, unsigned size) argument
461 io_realloc(char *name, io_struct *ps, void **ptr, unsigned size) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Ddm-exception-store.c135 static int alloc_area(struct pstore *ps) argument
140 len = ps->snap->chunk_size << SECTOR_SHIFT;
146 ps->area = vmalloc(len);
147 if (!ps->area)
153 static void free_area(struct pstore *ps) argument
155 vfree(ps->area);
156 ps->area = NULL;
162 static int chunk_io(struct pstore *ps, uint32_t chunk, int rw) argument
165 .bdev = ps->snap->cow->bdev,
166 .sector = ps
184 area_io(struct pstore *ps, uint32_t area, int rw) argument
200 zero_area(struct pstore *ps, uint32_t area) argument
206 read_header(struct pstore *ps, int *new_snapshot) argument
283 write_header(struct pstore *ps) argument
301 get_exception(struct pstore *ps, uint32_t index) argument
308 read_exception(struct pstore *ps, uint32_t index, struct disk_exception *result) argument
318 write_exception(struct pstore *ps, uint32_t index, struct disk_exception *de) argument
333 insert_exceptions(struct pstore *ps, int *full) argument
374 read_exceptions(struct pstore *ps) argument
410 struct pstore *ps = get_info(store); local
421 struct pstore *ps = get_info(store); local
485 struct pstore *ps = get_info(store); local
514 struct pstore *ps = get_info(store); local
564 struct pstore *ps = get_info(store); local
573 struct pstore *ps; local
[all...]
H A Ddm-path-selector.h40 int (*create) (struct path_selector *ps, unsigned argc, char **argv);
41 void (*destroy) (struct path_selector *ps);
47 int (*add_path) (struct path_selector *ps, struct dm_path *path,
58 struct dm_path *(*select_path) (struct path_selector *ps,
64 void (*fail_path) (struct path_selector *ps, struct dm_path *p);
69 int (*reinstate_path) (struct path_selector *ps, struct dm_path *p);
75 int (*status) (struct path_selector *ps, struct dm_path *path,
78 int (*end_io) (struct path_selector *ps, struct dm_path *path);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/docs_src/ref/refs/
H A DMakefile3 COPY= bdb_usenix.ps embedded.html hash_usenix.ps libtp_usenix.ps
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/rpc_parse/
H A Dparse_sec.c34 BOOL sec_io_access(const char *desc, SEC_ACCESS *t, prs_struct *ps, int depth) argument
39 prs_debug(ps, depth, desc, "sec_io_access");
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) argument
60 prs_debug(ps, depth, desc, "sec_io_ace");
63 old_offset = prs_offset(ps);
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, dept
125 sec_io_acl(const char *desc, SEC_ACL **ppsa, prs_struct *ps, int depth) argument
209 sec_io_desc(const char *desc, SEC_DESC **ppsd, prs_struct *ps, int depth) argument
369 sec_io_desc_buf(const char *desc, SEC_DESC_BUF **ppsdb, prs_struct *ps, int depth) argument
[all...]
H A Dparse_ds.c27 static BOOL ds_io_dominfobasic( const char *desc, prs_struct *ps, int depth, DSROLE_PRIMARY_DOMAIN_INFO_BASIC **basic) argument
31 if ( UNMARSHALLING(ps) )
32 p = *basic = PRS_ALLOC_MEM(ps, DSROLE_PRIMARY_DOMAIN_INFO_BASIC, 1);
37 if ( !prs_uint16("machine_role", ps, depth, &p->machine_role) )
39 if ( !prs_uint16("unknown", ps, depth, &p->unknown) )
42 if ( !prs_uint32("flags", ps, depth, &p->flags) )
45 if ( !prs_uint32("netbios_ptr", ps, depth, &p->netbios_ptr) )
47 if ( !prs_uint32("dnsname_ptr", ps, depth, &p->dnsname_ptr) )
49 if ( !prs_uint32("forestname_ptr", ps, depth, &p->forestname_ptr) )
52 if ( !smb_io_uuid("domain_guid", &p->domain_guid, ps, dept
78 ds_io_q_getprimdominfo( const char *desc, prs_struct *ps, int depth, DS_Q_GETPRIMDOMINFO *q_u) argument
95 ds_io_r_getprimdominfo( const char *desc, prs_struct *ps, int depth, DS_R_GETPRIMDOMINFO *r_u) argument
156 ds_io_domain_trusts( const char *desc, prs_struct *ps, int depth, DS_DOMAIN_TRUSTS *trust) argument
191 ds_io_dom_trusts_ctr( const char *desc, prs_struct *ps, int depth, DS_DOMAIN_TRUSTS_CTR *ctr) argument
251 ds_io_q_enum_domain_trusts( const char *desc, prs_struct *ps, int depth, DS_Q_ENUM_DOM_TRUSTS *q_u) argument
277 ds_io_r_enum_domain_trusts( const char *desc, prs_struct *ps, int depth, DS_R_ENUM_DOM_TRUSTS *r_u) argument
[all...]
H A Dparse_shutdown.c50 BOOL shutdown_io_q_init(const char *desc, SHUTDOWN_Q_INIT *q_s, prs_struct *ps, argument
56 prs_debug(ps, depth, desc, "shutdown_io_q_init");
59 if (!prs_align(ps))
62 if (!prs_uint32("ptr_server", ps, depth, &(q_s->ptr_server)))
64 if (!prs_uint16("server", ps, depth, &(q_s->server)))
67 if (!prs_align(ps))
69 if (!prs_uint32("ptr_msg", ps, depth, &(q_s->ptr_msg)))
72 if (!smb_io_unihdr("hdr_msg", &(q_s->hdr_msg), ps, depth))
74 if (!smb_io_unistr2("uni_msg", &(q_s->uni_msg), q_s->hdr_msg.buffer, ps, depth))
76 if (!prs_align(ps))
92 shutdown_io_r_init(const char *desc, SHUTDOWN_R_INIT* r_s, prs_struct *ps, int depth) argument
123 shutdown_io_q_abort(const char *desc, SHUTDOWN_Q_ABORT *q_s, prs_struct *ps, int depth) argument
147 shutdown_io_r_abort(const char *desc, SHUTDOWN_R_ABORT *r_s, prs_struct *ps, int depth) argument
[all...]
H A Dparse_prs.c32 void prs_dump(char *name, int v, prs_struct *ps) argument
34 prs_dump_region(name, v, ps, ps->data_offset, ps->buffer_size);
41 void prs_dump_before(char *name, int v, prs_struct *ps) argument
43 prs_dump_region(name, v, ps, 0, ps->data_offset);
50 void prs_dump_region(char *name, int v, prs_struct *ps, argument
66 write(fd, ps->data_p + from_off, to_off - from_off);
80 void prs_debug(prs_struct *ps, in argument
94 prs_init(prs_struct *ps, uint32 size, TALLOC_CTX *ctx, BOOL io) argument
123 prs_mem_free(prs_struct *ps) argument
136 prs_mem_clear(prs_struct *ps) argument
147 prs_alloc_mem_(prs_struct *ps, size_t size, unsigned int count) argument
169 prs_get_mem_context(prs_struct *ps) argument
178 prs_give_memory(prs_struct *ps, char *buf, uint32 size, BOOL is_dynamic) argument
189 prs_take_memory(prs_struct *ps, uint32 *psize) argument
203 prs_set_buffer_size(prs_struct *ps, uint32 newsize) argument
229 prs_grow(prs_struct *ps, uint32 extra_space) argument
295 prs_force_grow(prs_struct *ps, uint32 extra_space) argument
324 prs_data_p(prs_struct *ps) argument
333 prs_data_size(prs_struct *ps) argument
342 prs_offset(prs_struct *ps) argument
351 prs_set_offset(prs_struct *ps, uint32 offset) argument
456 prs_set_endian_data(prs_struct *ps, BOOL endian) argument
466 prs_align(prs_struct *ps) argument
485 prs_align_uint16(prs_struct *ps) argument
501 prs_align_uint64(prs_struct *ps) argument
517 prs_align_needed(prs_struct *ps, uint32 needed) argument
529 prs_mem_get(prs_struct *ps, uint32 extra_size) argument
554 prs_switch_type(prs_struct *ps, BOOL io) argument
564 prs_force_dynamic(prs_struct *ps) argument
573 prs_uint8(const char *name, prs_struct *ps, int depth, uint8 *data8) argument
595 prs_uint16(const char *name, prs_struct *ps, int depth, uint16 *data16) argument
624 prs_uint32(const char *name, prs_struct *ps, int depth, uint32 *data32) argument
653 prs_ntstatus(const char *name, prs_struct *ps, int depth, NTSTATUS *status) argument
683 prs_werror(const char *name, prs_struct *ps, int depth, WERROR *status) argument
714 prs_uint8s(BOOL charmode, const char *name, prs_struct *ps, int depth, uint8 *data8s, int len) argument
747 prs_uint16s(BOOL charmode, const char *name, prs_struct *ps, int depth, uint16 *data16s, int len) argument
791 dbg_rw_punival(BOOL charmode, const char *name, int depth, prs_struct *ps, char *in_buf, char *out_buf, int len) argument
828 prs_uint16uni(BOOL charmode, const char *name, prs_struct *ps, int depth, uint16 *data16s, int len) argument
844 prs_uint32s(BOOL charmode, const char *name, prs_struct *ps, int depth, uint32 *data32s, int len) argument
888 prs_buffer5(BOOL charmode, const char *name, prs_struct *ps, int depth, BUFFER5 *str) argument
919 prs_buffer2(BOOL charmode, const char *name, prs_struct *ps, int depth, BUFFER2 *str) argument
950 prs_string2(BOOL charmode, const char *name, prs_struct *ps, int depth, STRING2 *str) argument
993 prs_unistr2(BOOL charmode, const char *name, prs_struct *ps, int depth, UNISTR2 *str) argument
1027 prs_unistr3(BOOL charmode, const char *name, UNISTR3 *str, prs_struct *ps, int depth) argument
1053 prs_unistr(const char *name, prs_struct *ps, int depth, UNISTR *str) argument
1178 prs_string(const char *name, prs_struct *ps, int depth, char *str, int max_buf_size) argument
1221 prs_uint16_pre(const char *name, prs_struct *ps, int depth, uint16 *data16, uint32 *offset) argument
1241 prs_uint16_post(const char *name, prs_struct *ps, int depth, uint16 *data16, uint32 ptr_uint16, uint32 start_offset) argument
1268 prs_uint32_pre(const char *name, prs_struct *ps, int depth, uint32 *data32, uint32 *offset) argument
1285 prs_uint32_post(const char *name, prs_struct *ps, int depth, uint32 *data32, uint32 ptr_uint32, uint32 data_size) argument
1304 tdb_prs_store(TDB_CONTEXT *tdb, char *keystr, prs_struct *ps) argument
1315 tdb_prs_fetch(TDB_CONTEXT *tdb, char *keystr, prs_struct *ps, TALLOC_CTX *mem_ctx) argument
1335 prs_hash1(prs_struct *ps, uint32 offset, uint8 sess_key[16], int len) argument
[all...]
H A Dparse_spoolss.c51 BOOL spoolss_io_system_time(const char *desc, prs_struct *ps, int depth, SYSTEMTIME *systime) argument
53 if(!prs_uint16("year", ps, depth, &systime->year))
55 if(!prs_uint16("month", ps, depth, &systime->month))
57 if(!prs_uint16("dayofweek", ps, depth, &systime->dayofweek))
59 if(!prs_uint16("day", ps, depth, &systime->day))
61 if(!prs_uint16("hour", ps, depth, &systime->hour))
63 if(!prs_uint16("minute", ps, depth, &systime->minute))
65 if(!prs_uint16("second", ps, depth, &systime->second))
67 if(!prs_uint16("milliseconds", ps, depth, &systime->milliseconds))
94 static BOOL smb_io_doc_info_1(const char *desc, DOC_INFO_1 *info_1, prs_struct *ps, in argument
125 smb_io_doc_info(const char *desc, DOC_INFO *info, prs_struct *ps, int depth) argument
174 smb_io_doc_info_container(const char *desc, DOC_INFO_CONTAINER *cont, prs_struct *ps, int depth) argument
201 smb_io_notify_option_type(const char *desc, SPOOL_NOTIFY_OPTION_TYPE *type, prs_struct *ps, int depth) argument
229 smb_io_notify_option_type_data(const char *desc, SPOOL_NOTIFY_OPTION_TYPE *type, prs_struct *ps, int depth) argument
260 smb_io_notify_option_type_ctr(const char *desc, SPOOL_NOTIFY_OPTION_TYPE_CTR *ctr , prs_struct *ps, int depth) argument
292 smb_io_notify_option(const char *desc, SPOOL_NOTIFY_OPTION *option, prs_struct *ps, int depth) argument
323 smb_io_notify_info_data(const char *desc,SPOOL_NOTIFY_INFO_DATA *data, prs_struct *ps, int depth) argument
402 smb_io_notify_info_data_strings(const char *desc,SPOOL_NOTIFY_INFO_DATA *data, prs_struct *ps, int depth) argument
533 smb_io_notify_info(const char *desc, SPOOL_NOTIFY_INFO *info, prs_struct *ps, int depth) argument
569 spool_io_user_level_1(const char *desc, SPOOL_USER_1 *q_u, prs_struct *ps, int depth) argument
608 spool_io_user_level(const char *desc, SPOOL_USER_CTR *q_u, prs_struct *ps, int depth) argument
646 spoolss_io_devmode(const char *desc, prs_struct *ps, int depth, DEVICEMODE *devmode) argument
832 spoolss_io_devmode_cont(const char *desc, DEVMODE_CTR *dm_c, prs_struct *ps, int depth) argument
877 spoolss_io_printer_default(const char *desc, PRINTER_DEFAULT *pd, prs_struct *ps, int depth) argument
1110 spoolss_io_q_open_printer(const char *desc, SPOOL_Q_OPEN_PRINTER *q_u, prs_struct *ps, int depth) argument
1141 spoolss_io_r_open_printer(const char *desc, SPOOL_R_OPEN_PRINTER *r_u, prs_struct *ps, int depth) argument
1166 spoolss_io_q_open_printer_ex(const char *desc, SPOOL_Q_OPEN_PRINTER_EX *q_u, prs_struct *ps, int depth) argument
1202 spoolss_io_r_open_printer_ex(const char *desc, SPOOL_R_OPEN_PRINTER_EX *r_u, prs_struct *ps, int depth) argument
1320 spoolss_io_q_getprinterdata(const char *desc, SPOOL_Q_GETPRINTERDATA *q_u, prs_struct *ps, int depth) argument
1349 spoolss_io_q_deleteprinterdata(const char *desc, SPOOL_Q_DELETEPRINTERDATA *q_u, prs_struct *ps, int depth) argument
1374 spoolss_io_r_deleteprinterdata(const char *desc, SPOOL_R_DELETEPRINTERDATA *r_u, prs_struct *ps, int depth) argument
1389 spoolss_io_q_deleteprinterdataex(const char *desc, SPOOL_Q_DELETEPRINTERDATAEX *q_u, prs_struct *ps, int depth) argument
1415 spoolss_io_r_deleteprinterdataex(const char *desc, SPOOL_R_DELETEPRINTERDATAEX *r_u, prs_struct *ps, int depth) argument
1431 spoolss_io_r_getprinterdata(const char *desc, SPOOL_R_GETPRINTERDATA *r_u, prs_struct *ps, int depth) argument
1487 spoolss_io_q_abortprinter(const char *desc, SPOOL_Q_ABORTPRINTER *q_u, prs_struct *ps, int depth) argument
1508 spoolss_io_r_abortprinter(const char *desc, SPOOL_R_ABORTPRINTER *r_u, prs_struct *ps, int depth) argument
1524 spoolss_io_q_deleteprinter(const char *desc, SPOOL_Q_DELETEPRINTER *q_u, prs_struct *ps, int depth) argument
1546 spoolss_io_r_deleteprinter(const char *desc, SPOOL_R_DELETEPRINTER *r_u, prs_struct *ps, int depth) argument
1569 spoolss_io_q_deleteprinterdriver(const char *desc, SPOOL_Q_DELETEPRINTERDRIVER *q_u, prs_struct *ps, int depth) argument
1596 spoolss_io_r_deleteprinterdriver(const char *desc, SPOOL_R_DELETEPRINTERDRIVER *r_u, prs_struct *ps, int depth) argument
1619 spoolss_io_q_deleteprinterdriverex(const char *desc, SPOOL_Q_DELETEPRINTERDRIVEREX *q_u, prs_struct *ps, int depth) argument
1654 spoolss_io_r_deleteprinterdriverex(const char *desc, SPOOL_R_DELETEPRINTERDRIVEREX *r_u, prs_struct *ps, int depth) argument
1678 spoolss_io_q_closeprinter(const char *desc, SPOOL_Q_CLOSEPRINTER *q_u, prs_struct *ps, int depth) argument
1700 spoolss_io_r_closeprinter(const char *desc, SPOOL_R_CLOSEPRINTER *r_u, prs_struct *ps, int depth) argument
1721 spoolss_io_q_startdocprinter(const char *desc, SPOOL_Q_STARTDOCPRINTER *q_u, prs_struct *ps, int depth) argument
1745 spoolss_io_r_startdocprinter(const char *desc, SPOOL_R_STARTDOCPRINTER *r_u, prs_struct *ps, int depth) argument
1762 spoolss_io_q_enddocprinter(const char *desc, SPOOL_Q_ENDDOCPRINTER *q_u, prs_struct *ps, int depth) argument
1783 spoolss_io_r_enddocprinter(const char *desc, SPOOL_R_ENDDOCPRINTER *r_u, prs_struct *ps, int depth) argument
1798 spoolss_io_q_startpageprinter(const char *desc, SPOOL_Q_STARTPAGEPRINTER *q_u, prs_struct *ps, int depth) argument
1819 spoolss_io_r_startpageprinter(const char *desc, SPOOL_R_STARTPAGEPRINTER *r_u, prs_struct *ps, int depth) argument
1834 spoolss_io_q_endpageprinter(const char *desc, SPOOL_Q_ENDPAGEPRINTER *q_u, prs_struct *ps, int depth) argument
1855 spoolss_io_r_endpageprinter(const char *desc, SPOOL_R_ENDPAGEPRINTER *r_u, prs_struct *ps, int depth) argument
1870 spoolss_io_q_writeprinter(const char *desc, SPOOL_Q_WRITEPRINTER *q_u, prs_struct *ps, int depth) argument
1907 spoolss_io_r_writeprinter(const char *desc, SPOOL_R_WRITEPRINTER *r_u, prs_struct *ps, int depth) argument
1924 spoolss_io_q_rffpcnex(const char *desc, SPOOL_Q_RFFPCNEX *q_u, prs_struct *ps, int depth) argument
1970 spoolss_io_r_rffpcnex(const char *desc, SPOOL_R_RFFPCNEX *r_u, prs_struct *ps, int depth) argument
1986 spoolss_io_q_rfnpcnex(const char *desc, SPOOL_Q_RFNPCNEX *q_u, prs_struct *ps, int depth) argument
2021 spoolss_io_r_rfnpcnex(const char *desc, SPOOL_R_RFNPCNEX *r_u, prs_struct *ps, int depth) argument
2143 prs_struct *ps=&buffer->prs; local
2207 prs_struct *ps=&buffer->prs; local
2333 prs_struct *ps= &buffer->prs; local
2394 prs_struct *ps=&buffer->prs; local
2462 prs_struct *ps=&buffer->prs; local
2563 prs_struct *ps=&buffer->prs; local
2588 prs_struct *ps=&buffer->prs; local
2679 prs_struct *ps=&buffer->prs; local
2700 prs_struct *ps=&buffer->prs; local
2722 prs_struct *ps=&buffer->prs; local
2748 prs_struct *ps=&buffer->prs; local
2768 prs_struct *ps=&buffer->prs; local
2787 prs_struct *ps=&buffer->prs; local
2814 prs_struct *ps=&buffer->prs; local
2833 prs_struct *ps=&buffer->prs; local
2862 prs_struct *ps=&buffer->prs; local
2901 prs_struct *ps=&buffer->prs; local
2966 prs_struct *ps=&buffer->prs; local
3010 prs_struct *ps=&buffer->prs; local
3076 prs_struct *ps=&buffer->prs; local
3109 spoolss_io_buffer(const char *desc, prs_struct *ps, int depth, NEW_BUFFER **pp_buffer) argument
3223 prs_struct *ps=&buffer->prs; local
3242 prs_struct *ps=&buffer->prs; local
3261 prs_struct *ps=&buffer->prs; local
3287 prs_struct *ps=&buffer->prs; local
3305 prs_struct *ps=&buffer->prs; local
3323 prs_struct *ps=&buffer->prs; local
3341 prs_struct *ps=&buffer->prs; local
3886 spoolss_io_q_getprinterdriver2(const char *desc, SPOOL_Q_GETPRINTERDRIVER2 *q_u, prs_struct *ps, int depth) argument
3928 spoolss_io_r_getprinterdriver2(const char *desc, SPOOL_R_GETPRINTERDRIVER2 *r_u, prs_struct *ps, int depth) argument
4001 spoolss_io_q_enumprinters(const char *desc, SPOOL_Q_ENUMPRINTERS *q_u, prs_struct *ps, int depth) argument
4037 spoolss_io_r_enumprinters(const char *desc, SPOOL_R_ENUMPRINTERS *r_u, prs_struct *ps, int depth) argument
4069 spoolss_io_r_getprinter(const char *desc, SPOOL_R_GETPRINTER *r_u, prs_struct *ps, int depth) argument
4097 spoolss_io_q_getprinter(const char *desc, SPOOL_Q_GETPRINTER *q_u, prs_struct *ps, int depth) argument
4227 spoolss_io_r_setprinter(const char *desc, SPOOL_R_SETPRINTER *r_u, prs_struct *ps, int depth) argument
4245 spoolss_io_q_setprinter(const char *desc, SPOOL_Q_SETPRINTER *q_u, prs_struct *ps, int depth) argument
4308 spoolss_io_r_fcpn(const char *desc, SPOOL_R_FCPN *r_u, prs_struct *ps, int depth) argument
4325 spoolss_io_q_fcpn(const char *desc, SPOOL_Q_FCPN *q_u, prs_struct *ps, int depth) argument
4344 spoolss_io_r_addjob(const char *desc, SPOOL_R_ADDJOB *r_u, prs_struct *ps, int depth) argument
4370 spoolss_io_q_addjob(const char *desc, SPOOL_Q_ADDJOB *q_u, prs_struct *ps, int depth) argument
4398 spoolss_io_r_enumjobs(const char *desc, SPOOL_R_ENUMJOBS *r_u, prs_struct *ps, int depth) argument
4450 spoolss_io_q_enumjobs(const char *desc, SPOOL_Q_ENUMJOBS *q_u, prs_struct *ps, int depth) argument
4483 spoolss_io_r_schedulejob(const char *desc, SPOOL_R_SCHEDULEJOB *r_u, prs_struct *ps, int depth) argument
4500 spoolss_io_q_schedulejob(const char *desc, SPOOL_Q_SCHEDULEJOB *q_u, prs_struct *ps, int depth) argument
4519 spoolss_io_r_setjob(const char *desc, SPOOL_R_SETJOB *r_u, prs_struct *ps, int depth) argument
4536 spoolss_io_q_setjob(const char *desc, SPOOL_Q_SETJOB *q_u, prs_struct *ps, int depth) argument
4564 spoolss_io_r_enumprinterdrivers(const char *desc, SPOOL_R_ENUMPRINTERDRIVERS *r_u, prs_struct *ps, int depth) argument
4614 spoolss_io_q_enumprinterdrivers(const char *desc, SPOOL_Q_ENUMPRINTERDRIVERS *q_u, prs_struct *ps, int depth) argument
4655 spoolss_io_q_enumforms(const char *desc, SPOOL_Q_ENUMFORMS *q_u, prs_struct *ps, int depth) argument
4682 spoolss_io_r_enumforms(const char *desc, SPOOL_R_ENUMFORMS *r_u, prs_struct *ps, int depth) argument
4711 spoolss_io_q_getform(const char *desc, SPOOL_Q_GETFORM *q_u, prs_struct *ps, int depth) argument
4744 spoolss_io_r_getform(const char *desc, SPOOL_R_GETFORM *r_u, prs_struct *ps, int depth) argument
4771 spoolss_io_r_enumports(const char *desc, SPOOL_R_ENUMPORTS *r_u, prs_struct *ps, int depth) argument
4800 spoolss_io_q_enumports(const char *desc, SPOOL_Q_ENUMPORTS *q_u, prs_struct *ps, int depth) argument
4833 spool_io_printer_info_level_1(const char *desc, SPOOL_PRINTER_INFO_LEVEL_1 *il, prs_struct *ps, int depth) argument
4864 spool_io_printer_info_level_3(const char *desc, SPOOL_PRINTER_INFO_LEVEL_3 *il, prs_struct *ps, int depth) argument
4882 spool_io_printer_info_level_2(const char *desc, SPOOL_PRINTER_INFO_LEVEL_2 *il, prs_struct *ps, int depth) argument
4961 spool_io_printer_info_level_7(const char *desc, SPOOL_PRINTER_INFO_LEVEL_7 *il, prs_struct *ps, int depth) argument
4982 spool_io_printer_info_level(const char *desc, SPOOL_PRINTER_INFO_LEVEL *il, prs_struct *ps, int depth) argument
5059 spoolss_io_q_addprinterex(const char *desc, SPOOL_Q_ADDPRINTEREX *q_u, prs_struct *ps, int depth) argument
5123 spoolss_io_r_addprinterex(const char *desc, SPOOL_R_ADDPRINTEREX *r_u, prs_struct *ps, int depth) argument
5141 spool_io_printer_driver_info_level_3(const char *desc, SPOOL_PRINTER_DRIVER_INFO_LEVEL_3 **q_u, prs_struct *ps, int depth) argument
5219 spool_io_printer_driver_info_level_6(const char *desc, SPOOL_PRINTER_DRIVER_INFO_LEVEL_6 **q_u, prs_struct *ps, int depth) argument
5410 smb_io_unibuffer(const char *desc, UNISTR2 *buffer, prs_struct *ps, int depth) argument
5429 spool_io_printer_driver_info_level(const char *desc, SPOOL_PRINTER_DRIVER_INFO_LEVEL *il, prs_struct *ps, int depth) argument
5577 spoolss_io_q_addprinterdriver(const char *desc, SPOOL_Q_ADDPRINTERDRIVER *q_u, prs_struct *ps, int depth) argument
5604 spoolss_io_r_addprinterdriver(const char *desc, SPOOL_R_ADDPRINTERDRIVER *q_u, prs_struct *ps, int depth) argument
5619 spoolss_io_q_addprinterdriverex(const char *desc, SPOOL_Q_ADDPRINTERDRIVEREX *q_u, prs_struct *ps, int depth) argument
5651 spoolss_io_r_addprinterdriverex(const char *desc, SPOOL_R_ADDPRINTERDRIVEREX *q_u, prs_struct *ps, int depth) argument
5834 spoolss_io_q_getprinterdriverdir(const char *desc, SPOOL_Q_GETPRINTERDRIVERDIR *q_u, prs_struct *ps, int depth) argument
5876 spoolss_io_r_getprinterdriverdir(const char *desc, SPOOL_R_GETPRINTERDRIVERDIR *r_u, prs_struct *ps, int depth) argument
5902 spoolss_io_r_enumprintprocessors(const char *desc, SPOOL_R_ENUMPRINTPROCESSORS *r_u, prs_struct *ps, int depth) argument
5931 spoolss_io_q_enumprintprocessors(const char *desc, SPOOL_Q_ENUMPRINTPROCESSORS *q_u, prs_struct *ps, int depth) argument
5973 spoolss_io_q_addprintprocessor(const char *desc, SPOOL_Q_ADDPRINTPROCESSOR *q_u, prs_struct *ps, int depth) argument
6007 spoolss_io_r_addprintprocessor(const char *desc, SPOOL_R_ADDPRINTPROCESSOR *r_u, prs_struct *ps, int depth) argument
6024 spoolss_io_r_enumprintprocdatatypes(const char *desc, SPOOL_R_ENUMPRINTPROCDATATYPES *r_u, prs_struct *ps, int depth) argument
6053 spoolss_io_q_enumprintprocdatatypes(const char *desc, SPOOL_Q_ENUMPRINTPROCDATATYPES *q_u, prs_struct *ps, int depth) argument
6096 spoolss_io_q_enumprintmonitors(const char *desc, SPOOL_Q_ENUMPRINTMONITORS *q_u, prs_struct *ps, int depth) argument
6130 spoolss_io_r_enumprintmonitors(const char *desc, SPOOL_R_ENUMPRINTMONITORS *r_u, prs_struct *ps, int depth) argument
6159 spoolss_io_r_enumprinterdata(const char *desc, SPOOL_R_ENUMPRINTERDATA *r_u, prs_struct *ps, int depth) argument
6216 spoolss_io_q_enumprinterdata(const char *desc, SPOOL_Q_ENUMPRINTERDATA *q_u, prs_struct *ps, int depth) argument
6299 spoolss_io_q_setprinterdata(const char *desc, SPOOL_Q_SETPRINTERDATA *q_u, prs_struct *ps, int depth) argument
6348 spoolss_io_r_setprinterdata(const char *desc, SPOOL_R_SETPRINTERDATA *r_u, prs_struct *ps, int depth) argument
6363 spoolss_io_q_resetprinter(const char *desc, SPOOL_Q_RESETPRINTER *q_u, prs_struct *ps, int depth) argument
6390 spoolss_io_r_resetprinter(const char *desc, SPOOL_R_RESETPRINTER *r_u, prs_struct *ps, int depth) argument
6406 spoolss_io_addform(const char *desc, FORM *f, uint32 ptr, prs_struct *ps, int depth) argument
6442 spoolss_io_q_deleteform(const char *desc, SPOOL_Q_DELETEFORM *q_u, prs_struct *ps, int depth) argument
6460 spoolss_io_r_deleteform(const char *desc, SPOOL_R_DELETEFORM *r_u, prs_struct *ps, int depth) argument
6476 spoolss_io_q_addform(const char *desc, SPOOL_Q_ADDFORM *q_u, prs_struct *ps, int depth) argument
6505 spoolss_io_r_addform(const char *desc, SPOOL_R_ADDFORM *r_u, prs_struct *ps, int depth) argument
6521 spoolss_io_q_setform(const char *desc, SPOOL_Q_SETFORM *q_u, prs_struct *ps, int depth) argument
6556 spoolss_io_r_setform(const char *desc, SPOOL_R_SETFORM *r_u, prs_struct *ps, int depth) argument
6573 spoolss_io_r_getjob(const char *desc, SPOOL_R_GETJOB *r_u, prs_struct *ps, int depth) argument
6600 spoolss_io_q_getjob(const char *desc, SPOOL_Q_GETJOB *q_u, prs_struct *ps, int depth) argument
6700 spoolss_io_q_replyopenprinter(const char *desc, SPOOL_Q_REPLYOPENPRINTER *q_u, prs_struct *ps, int depth) argument
6731 spoolss_io_r_replyopenprinter(const char *desc, SPOOL_R_REPLYOPENPRINTER *r_u, prs_struct *ps, int depth) argument
6771 spoolss_io_q_routerreplyprinter(const char *desc, SPOOL_Q_ROUTERREPLYPRINTER *q_u, prs_struct *ps, int depth) argument
6801 spoolss_io_r_routerreplyprinter(const char *desc, SPOOL_R_ROUTERREPLYPRINTER *r_u, prs_struct *ps, int depth) argument
6833 spoolss_io_q_replycloseprinter(const char *desc, SPOOL_Q_REPLYCLOSEPRINTER *q_u, prs_struct *ps, int depth) argument
6851 spoolss_io_r_replycloseprinter(const char *desc, SPOOL_R_REPLYCLOSEPRINTER *r_u, prs_struct *ps, int depth) argument
6978 spoolss_io_q_reply_rrpcn(const char *desc, SPOOL_Q_REPLY_RRPCN *q_u, prs_struct *ps, int depth) argument
7015 spoolss_io_r_reply_rrpcn(const char *desc, SPOOL_R_REPLY_RRPCN *r_u, prs_struct *ps, int depth) argument
7037 spoolss_io_q_getprinterdataex(const char *desc, SPOOL_Q_GETPRINTERDATAEX *q_u, prs_struct *ps, int depth) argument
7070 spoolss_io_r_getprinterdataex(const char *desc, SPOOL_R_GETPRINTERDATAEX *r_u, prs_struct *ps, int depth) argument
7109 spoolss_io_q_setprinterdataex(const char *desc, SPOOL_Q_SETPRINTERDATAEX *q_u, prs_struct *ps, int depth) argument
7165 spoolss_io_r_setprinterdataex(const char *desc, SPOOL_R_SETPRINTERDATAEX *r_u, prs_struct *ps, int depth) argument
7198 spoolss_io_q_enumprinterkey(const char *desc, SPOOL_Q_ENUMPRINTERKEY *q_u, prs_struct *ps, int depth) argument
7224 spoolss_io_r_enumprinterkey(const char *desc, SPOOL_R_ENUMPRINTERKEY *r_u, prs_struct *ps, int depth) argument
7266 spoolss_io_q_deleteprinterkey(const char *desc, SPOOL_Q_DELETEPRINTERKEY *q_u, prs_struct *ps, int depth) argument
7286 spoolss_io_r_deleteprinterkey(const char *desc, SPOOL_R_DELETEPRINTERKEY *r_u, prs_struct *ps, int depth) argument
7305 spoolss_io_q_enumprinterdataex(const char *desc, SPOOL_Q_ENUMPRINTERDATAEX *q_u, prs_struct *ps, int depth) argument
7330 spoolss_io_printer_enum_values_ctr(const char *desc, prs_struct *ps, PRINTER_ENUM_VALUES_CTR *ctr, int depth) argument
7412 spoolss_io_r_enumprinterdataex(const char *desc, SPOOL_R_ENUMPRINTERDATAEX *r_u, prs_struct *ps, int depth) argument
7489 spoolss_io_q_getprintprocessordirectory(const char *desc, SPOOL_Q_GETPRINTPROCESSORDIRECTORY *q_u, prs_struct *ps, int depth) argument
7541 spoolss_io_r_getprintprocessordirectory(const char *desc, SPOOL_R_GETPRINTPROCESSORDIRECTORY *r_u, prs_struct *ps, int depth) argument
7566 prs_struct *ps=&buffer->prs; local
[all...]
H A Dparse_dfs.c44 BOOL dfs_io_q_dfs_exist(const char *desc, DFS_Q_DFS_EXIST *q_d, prs_struct *ps, int depth) argument
49 prs_debug(ps, depth, desc, "dfs_io_q_dfs_exist");
58 BOOL dfs_io_r_dfs_exist(const char *desc, DFS_R_DFS_EXIST *q_d, prs_struct *ps, int depth) argument
63 prs_debug(ps, depth, desc, "dfs_io_r_dfs_exist");
66 if(!prs_align(ps))
69 if(!prs_uint32("exist flag", ps, 0, &q_d->status))
94 BOOL dfs_io_q_dfs_remove(const char *desc, DFS_Q_DFS_REMOVE *q_d, prs_struct *ps, int depth) argument
99 prs_debug(ps, depth, desc, "dfs_io_q_dfs_remove");
102 if(!prs_align(ps))
105 if(!smb_io_unistr2("DfsEntryPath",&q_d->DfsEntryPath, 1, ps, dept
134 dfs_io_r_dfs_remove(const char *desc, DFS_R_DFS_REMOVE *r_d, prs_struct *ps, int depth) argument
176 dfs_io_q_dfs_add(const char *desc, DFS_Q_DFS_ADD *q_d, prs_struct *ps, int depth) argument
221 dfs_io_r_dfs_add(const char *desc, DFS_R_DFS_ADD *r_d, prs_struct *ps, int depth) argument
252 dfs_io_q_dfs_get_info(const char *desc, DFS_Q_DFS_GET_INFO* q_i, prs_struct* ps, int depth) argument
292 dfs_io_r_dfs_get_info(const char *desc, DFS_R_DFS_GET_INFO* r_i, prs_struct* ps, int depth) argument
331 dfs_io_q_dfs_enum(const char *desc, DFS_Q_DFS_ENUM *q_d, prs_struct *ps, int depth) argument
368 dfs_io_dfs_info_ctr(const char *desc, DFS_INFO_CTR* ctr, uint32 num_entries, uint32 level, prs_struct* ps, int depth) argument
468 dfs_io_r_dfs_enum(const char *desc, DFS_R_DFS_ENUM *q_d, prs_struct *ps, int depth) argument
510 dfs_io_dfs_storage_info(const char *desc, DFS_INFO_3* info3, prs_struct *ps, int depth) argument
[all...]
H A Dparse_lsa.c30 static BOOL lsa_io_trans_names(const char *desc, LSA_TRANS_NAME_ENUM *trn, prs_struct *ps, int depth);
49 static BOOL lsa_io_trans_name(const char *desc, LSA_TRANS_NAME *trn, prs_struct *ps, argument
52 prs_debug(ps, depth, desc, "lsa_io_trans_name");
55 if(!prs_align(ps))
58 if(!prs_uint16("sid_name_use", ps, depth, &trn->sid_name_use))
60 if(!prs_align(ps))
63 if(!smb_io_unihdr ("hdr_name", &trn->hdr_name, ps, depth))
65 if(!prs_uint32("domain_idx ", ps, depth, &trn->domain_idx))
75 static BOOL lsa_io_dom_r_ref(const char *desc, DOM_R_REF *r_r, prs_struct *ps, argument
80 prs_debug(ps, dept
154 lsa_io_sec_qos(const char *desc, LSA_SEC_QOS *qos, prs_struct *ps, int depth) argument
214 lsa_io_obj_attr(const char *desc, LSA_OBJ_ATTR *attr, prs_struct *ps, int depth) argument
275 lsa_io_q_open_pol(const char *desc, LSA_Q_OPEN_POL *r_q, prs_struct *ps, int depth) argument
301 lsa_io_r_open_pol(const char *desc, LSA_R_OPEN_POL *r_p, prs_struct *ps, int depth) argument
340 lsa_io_q_open_pol2(const char *desc, LSA_Q_OPEN_POL2 *r_q, prs_struct *ps, int depth) argument
364 lsa_io_r_open_pol2(const char *desc, LSA_R_OPEN_POL2 *r_p, prs_struct *ps, int depth) argument
398 lsa_io_q_query_sec_obj(const char *desc, LSA_Q_QUERY_SEC_OBJ *q_q, prs_struct *ps, int depth) argument
417 lsa_io_r_query_sec_obj(const char *desc, LSA_R_QUERY_SEC_OBJ *r_u, prs_struct *ps, int depth) argument
457 lsa_io_q_query(const char *desc, LSA_Q_QUERY_INFO *q_q, prs_struct *ps, int depth) argument
491 lsa_io_q_enum_trust_dom(const char *desc, LSA_Q_ENUM_TRUST_DOM *q_e, prs_struct *ps, int depth) argument
564 lsa_io_r_enum_trust_dom(const char *desc, LSA_R_ENUM_TRUST_DOM *r_e, prs_struct *ps, int depth) argument
623 lsa_io_dom_query(const char *desc, DOM_QUERY *d_q, prs_struct *ps, int depth) argument
664 lsa_io_dom_query_2(const char *desc, DOM_QUERY_2 *d_q, prs_struct *ps, int depth) argument
705 lsa_io_dom_query_3(const char *desc, DOM_QUERY_3 *d_q, prs_struct *ps, int depth) argument
714 lsa_io_dom_query_5(const char *desc, DOM_QUERY_5 *d_q, prs_struct *ps, int depth) argument
723 lsa_io_dom_query_6(const char *desc, DOM_QUERY_6 *d_q, prs_struct *ps, int depth) argument
741 lsa_io_r_query(const char *desc, LSA_R_QUERY_INFO *r_q, prs_struct *ps, int depth) argument
830 lsa_io_sid_enum(const char *desc, LSA_SID_ENUM *sen, prs_struct *ps, int depth) argument
916 lsa_io_q_lookup_sids(const char *desc, LSA_Q_LOOKUP_SIDS *q_s, prs_struct *ps, int depth) argument
944 lsa_io_trans_names(const char *desc, LSA_TRANS_NAME_ENUM *trn, prs_struct *ps, int depth) argument
1001 lsa_io_r_lookup_sids(const char *desc, LSA_R_LOOKUP_SIDS *r_s, prs_struct *ps, int depth) argument
1070 lsa_io_q_lookup_names(const char *desc, LSA_Q_LOOKUP_NAMES *q_r, prs_struct *ps, int depth) argument
1132 lsa_io_r_lookup_names(const char *desc, LSA_R_LOOKUP_NAMES *r_r, prs_struct *ps, int depth) argument
1202 lsa_io_q_close(const char *desc, LSA_Q_CLOSE *q_c, prs_struct *ps, int depth) argument
1217 lsa_io_r_close(const char *desc, LSA_R_CLOSE *r_c, prs_struct *ps, int depth) argument
1235 lsa_io_q_open_secret(const char *desc, LSA_Q_OPEN_SECRET *q_c, prs_struct *ps, int depth) argument
1248 lsa_io_r_open_secret(const char *desc, LSA_R_OPEN_SECRET *r_c, prs_struct *ps, int depth) argument
1287 lsa_io_q_enum_privs(const char *desc, LSA_Q_ENUM_PRIVS *q_q, prs_struct *ps, int depth) argument
1309 lsa_io_priv_entries(const char *desc, LSA_PRIV_ENTRY *entries, uint32 count, prs_struct *ps, int depth) argument
1364 lsa_io_r_enum_privs(const char *desc, LSA_R_ENUM_PRIVS *r_q, prs_struct *ps, int depth) argument
1416 lsa_io_q_priv_get_dispname(const char *desc, LSA_Q_PRIV_GET_DISPNAME *q_q, prs_struct *ps, int depth) argument
1447 lsa_io_r_priv_get_dispname(const char *desc, LSA_R_PRIV_GET_DISPNAME *r_q, prs_struct *ps, int depth) argument
1497 lsa_io_q_enum_accounts(const char *desc, LSA_Q_ENUM_ACCOUNTS *q_q, prs_struct *ps, int depth) argument
1540 lsa_io_r_enum_accounts(const char *desc, LSA_R_ENUM_ACCOUNTS *r_q, prs_struct *ps, int depth) argument
1571 lsa_io_q_unk_get_connuser(const char *desc, LSA_Q_UNK_GET_CONNUSER *q_c, prs_struct *ps, int depth) argument
1603 lsa_io_r_unk_get_connuser(const char *desc, LSA_R_UNK_GET_CONNUSER *r_c, prs_struct *ps, int depth) argument
1653 lsa_io_q_create_account(const char *desc, LSA_Q_CREATEACCOUNT *r_c, prs_struct *ps, int depth) argument
1677 lsa_io_r_create_account(const char *desc, LSA_R_CREATEACCOUNT *r_c, prs_struct *ps, int depth) argument
1707 lsa_io_q_open_account(const char *desc, LSA_Q_OPENACCOUNT *r_c, prs_struct *ps, int depth) argument
1731 lsa_io_r_open_account(const char *desc, LSA_R_OPENACCOUNT *r_c, prs_struct *ps, int depth) argument
1759 lsa_io_q_enum_privsaccount(const char *desc, LSA_Q_ENUMPRIVSACCOUNT *r_c, prs_struct *ps, int depth) argument
1777 lsa_io_luid(const char *desc, LUID *r_c, prs_struct *ps, int depth) argument
1798 lsa_io_luid_attr(const char *desc, LUID_ATTR *r_c, prs_struct *ps, int depth) argument
1819 lsa_io_privilege_set(const char *desc, PRIVILEGE_SET *r_c, prs_struct *ps, int depth) argument
1866 lsa_io_r_enum_privsaccount(const char *desc, LSA_R_ENUMPRIVSACCOUNT *r_c, prs_struct *ps, int depth) argument
1908 lsa_io_q_getsystemaccount(const char *desc, LSA_Q_GETSYSTEMACCOUNT *r_c, prs_struct *ps, int depth) argument
1926 lsa_io_r_getsystemaccount(const char *desc, LSA_R_GETSYSTEMACCOUNT *r_c, prs_struct *ps, int depth) argument
1948 lsa_io_q_setsystemaccount(const char *desc, LSA_Q_SETSYSTEMACCOUNT *r_c, prs_struct *ps, int depth) argument
1969 lsa_io_r_setsystemaccount(const char *desc, LSA_R_SETSYSTEMACCOUNT *r_c, prs_struct *ps, int depth) argument
1996 smb_io_lsa_string( const char *desc, LSA_STRING *string, prs_struct *ps, int depth ) argument
2013 lsa_io_q_lookup_priv_value(const char *desc, LSA_Q_LOOKUP_PRIV_VALUE *r_c, prs_struct *ps, int depth) argument
2033 lsa_io_r_lookup_priv_value(const char *desc, LSA_R_LOOKUP_PRIV_VALUE *r_c, prs_struct *ps, int depth) argument
2055 lsa_io_q_addprivs(const char *desc, LSA_Q_ADDPRIVS *r_c, prs_struct *ps, int depth) argument
2087 lsa_io_r_addprivs(const char *desc, LSA_R_ADDPRIVS *r_c, prs_struct *ps, int depth) argument
2105 lsa_io_q_removeprivs(const char *desc, LSA_Q_REMOVEPRIVS *r_c, prs_struct *ps, int depth) argument
2150 lsa_io_r_removeprivs(const char *desc, LSA_R_REMOVEPRIVS *r_c, prs_struct *ps, int depth) argument
2176 lsa_io_dns_dom_info(const char *desc, LSA_DNS_DOM_INFO *info, prs_struct *ps, int depth) argument
2235 lsa_io_q_query_info2(const char *desc, LSA_Q_QUERY_INFO2 *q_c, prs_struct *ps, int depth) argument
2257 lsa_io_r_query_info2(const char *desc, LSA_R_QUERY_INFO2 *r_c, prs_struct *ps, int depth) argument
2334 lsa_io_q_enum_acct_rights(const char *desc, LSA_Q_ENUM_ACCT_RIGHTS *q_q, prs_struct *ps, int depth) argument
2356 lsa_io_r_enum_acct_rights(const char *desc, LSA_R_ENUM_ACCT_RIGHTS *r_c, prs_struct *ps, int depth) argument
2398 lsa_io_q_add_acct_rights(const char *desc, LSA_Q_ADD_ACCT_RIGHTS *q_q, prs_struct *ps, int depth) argument
2421 lsa_io_r_add_acct_rights(const char *desc, LSA_R_ADD_ACCT_RIGHTS *r_c, prs_struct *ps, int depth) argument
2456 lsa_io_q_remove_acct_rights(const char *desc, LSA_Q_REMOVE_ACCT_RIGHTS *q_q, prs_struct *ps, int depth) argument
2482 lsa_io_r_remove_acct_rights(const char *desc, LSA_R_REMOVE_ACCT_RIGHTS *r_c, prs_struct *ps, int depth) argument
[all...]
H A Dparse_echo.c36 prs_struct *ps, int depth)
38 if (!prs_uint32("request", ps, 0, &q_d->request))
45 prs_struct *ps, int depth)
47 if (!prs_uint32("response", ps, 0, &q_d->response))
61 prs_struct *ps, int depth)
63 if (!prs_uint32("size", ps, depth, &q_d->size))
66 if (!prs_uint32("size", ps, depth, &q_d->size))
69 if (UNMARSHALLING(ps)) {
70 q_d->data = PRS_ALLOC_MEM(ps, char, q_d->size);
76 if (!prs_uint8s(False, "data", ps, dept
35 echo_io_q_add_one(const char *desc, ECHO_Q_ADD_ONE *q_d, prs_struct *ps, int depth) argument
44 echo_io_r_add_one(const char *desc, ECHO_R_ADD_ONE *q_d, prs_struct *ps, int depth) argument
60 echo_io_q_echo_data(const char *desc, ECHO_Q_ECHO_DATA *q_d, prs_struct *ps, int depth) argument
82 echo_io_r_echo_data(const char *desc, ECHO_R_ECHO_DATA *q_d, prs_struct *ps, int depth) argument
107 echo_io_q_sink_data(const char *desc, ECHO_Q_SINK_DATA *q_d, prs_struct *ps, int depth) argument
129 echo_io_r_sink_data(const char *desc, ECHO_R_SINK_DATA *q_d, prs_struct *ps, int depth) argument
140 echo_io_q_source_data(const char *desc, ECHO_Q_SOURCE_DATA *q_d, prs_struct *ps, int depth) argument
149 echo_io_r_source_data(const char *desc, ECHO_R_SOURCE_DATA *q_d, prs_struct *ps, int depth) argument
[all...]
H A Dparse_misc.c94 static BOOL smb_io_utime(const char *desc, UTIME *t, prs_struct *ps, int depth) argument
99 prs_debug(ps, depth, desc, "smb_io_utime");
102 if(!prs_align(ps))
105 if(!prs_uint32 ("time", ps, depth, &t->time))
115 BOOL smb_io_time(const char *desc, NTTIME *nttime, prs_struct *ps, int depth) argument
120 prs_debug(ps, depth, desc, "smb_io_time");
123 if(!prs_align(ps))
126 if(!prs_uint32("low ", ps, depth, &nttime->low)) /* low part */
128 if(!prs_uint32("high", ps, depth, &nttime->high)) /* high part */
138 BOOL smb_io_lookup_level(const char *desc, LOOKUP_LEVEL *level, prs_struct *ps, in argument
181 smb_io_enum_hnd(const char *desc, ENUM_HND *hnd, prs_struct *ps, int depth) argument
207 smb_io_dom_sid(const char *desc, DOM_SID *sid, prs_struct *ps, int depth) argument
305 smb_io_dom_sid2(const char *desc, DOM_SID2 *sid, prs_struct *ps, int depth) argument
329 smb_io_uuid(const char *desc, struct uuid *uuid, prs_struct *ps, int depth) argument
368 smb_io_strhdr(const char *desc, STRHDR *hdr, prs_struct *ps, int depth) argument
403 smb_io_unihdr(const char *desc, UNIHDR *hdr, prs_struct *ps, int depth) argument
439 smb_io_hdrbuf_pre(const char *desc, BUFHDR *hdr, prs_struct *ps, int depth, uint32 *offset) argument
465 smb_io_hdrbuf_post(const char *desc, BUFHDR *hdr, prs_struct *ps, int depth, uint32 ptr_hdrbuf, uint32 max_len, uint32 len) argument
490 smb_io_hdrbuf(const char *desc, BUFHDR *hdr, prs_struct *ps, int depth) argument
523 smb_io_unihdr2(const char *desc, UNIHDR2 *hdr2, prs_struct *ps, int depth) argument
569 smb_io_unistr(const char *desc, UNISTR *uni, prs_struct *ps, int depth) argument
656 smb_io_buffer3(const char *desc, BUFFER3 *buf3, prs_struct *ps, int depth) argument
689 smb_io_buffer5(const char *desc, BUFFER5 *buf5, prs_struct *ps, int depth) argument
737 smb_io_buffer2(const char *desc, BUFFER2 *buf2, uint32 buffer, prs_struct *ps, int depth) argument
850 smb_io_string2(const char *desc, STRING2 *str2, uint32 buffer, prs_struct *ps, int depth) argument
1043 smb_io_unistr2(const char *desc, UNISTR2 *uni2, uint32 buffer, prs_struct *ps, int depth) argument
1109 smb_io_lockout_string_hdr(const char *desc, HDR_LOCKOUT_STRING *hdr_account_lockout, prs_struct *ps, int depth) argument
1127 smb_io_account_lockout_str(const char *desc, LOCKOUT_STRING *account_lockout, uint32 buffer, prs_struct *ps, int depth) argument
1159 smb_io_unistr2_array(const char *desc, UNISTR2_ARRAY *array, prs_struct *ps, int depth) argument
1220 smb_io_dom_rid2(const char *desc, DOM_RID2 *rid2, prs_struct *ps, int depth) argument
1260 smb_io_dom_rid3(const char *desc, DOM_RID3 *rid3, prs_struct *ps, int depth) argument
1323 smb_io_clnt_srv(const char *desc, DOM_CLNT_SRV *logcln, prs_struct *ps, int depth) argument
1379 smb_io_log_info(const char *desc, DOM_LOG_INFO *loginfo, prs_struct *ps, int depth) argument
1411 smb_io_chal(const char *desc, DOM_CHAL *chal, prs_struct *ps, int depth) argument
1429 smb_io_cred(const char *desc, DOM_CRED *cred, prs_struct *ps, int depth) argument
1473 smb_io_clnt_info2(const char *desc, DOM_CLNT_INFO2 *clnt, prs_struct *ps, int depth) argument
1517 smb_io_clnt_info(const char *desc, DOM_CLNT_INFO *clnt, prs_struct *ps, int depth) argument
1552 smb_io_logon_id(const char *desc, DOM_LOGON_ID *logonid, prs_struct *ps, int depth) argument
1589 smb_io_owf_info(const char *desc, OWF_INFO *hash, prs_struct *ps, int depth) argument
1610 smb_io_gid(const char *desc, DOM_GID *gid, prs_struct *ps, int depth) argument
1633 smb_io_pol_hnd(const char *desc, POLICY_HND *pol, prs_struct *ps, int depth) argument
1686 smb_io_unistr3(const char *desc, UNISTR3 *name, prs_struct *ps, int depth) argument
1713 prs_uint64(const char *name, prs_struct *ps, int depth, UINT64_S *data64) argument
1722 smb_io_bufhdr2(const char *desc, BUFHDR2 *hdr, prs_struct *ps, int depth) argument
1738 smb_io_bufhdr4(const char *desc, BUFHDR4 *hdr, prs_struct *ps, int depth) argument
1754 smb_io_buffer4(const char *desc, BUFFER4 *buf4, uint32 buffer, prs_struct *ps, int depth) argument
[all...]
H A Dparse_reg.c65 BOOL reg_io_q_open_hkcr(const char *desc, REG_Q_OPEN_HKCR *r_q, prs_struct *ps, int depth) argument
70 prs_debug(ps, depth, desc, "reg_io_q_open_hkcr");
73 if(!prs_align(ps))
76 if(!prs_uint32("ptr ", ps, depth, &r_q->ptr))
80 if(!prs_uint16("unknown_0", ps, depth, &r_q->unknown_0))
82 if(!prs_uint16("unknown_1", ps, depth, &r_q->unknown_1))
84 if(!prs_uint32("level ", ps, depth, &r_q->level))
96 BOOL reg_io_r_open_hkcr(const char *desc, REG_R_OPEN_HKCR *r_r, prs_struct *ps, int depth) argument
101 prs_debug(ps, depth, desc, "reg_io_r_open_hkcr");
104 if(!prs_align(ps))
133 reg_io_q_open_hklm(const char *desc, REG_Q_OPEN_HKLM * r_q, prs_struct *ps, int depth) argument
164 reg_io_r_open_hklm(const char *desc, REG_R_OPEN_HKLM * r_r, prs_struct *ps, int depth) argument
201 reg_io_q_flush_key(const char *desc, REG_Q_FLUSH_KEY *r_q, prs_struct *ps, int depth) argument
222 reg_io_r_flush_key(const char *desc, REG_R_FLUSH_KEY *r_r, prs_struct *ps, int depth) argument
243 reg_io_hdrbuf_sec(uint32 ptr, uint32 *ptr3, BUFHDR *hdr_sec, SEC_DESC_BUF *data, prs_struct *ps, int depth) argument
311 reg_io_q_create_key(const char *desc, REG_Q_CREATE_KEY *r_q, prs_struct *ps, int depth) argument
367 reg_io_r_create_key(const char *desc, REG_R_CREATE_KEY *r_r, prs_struct *ps, int depth) argument
409 reg_io_q_delete_val(const char *desc, REG_Q_DELETE_VALUE *r_q, prs_struct *ps, int depth) argument
438 reg_io_r_delete_val(const char *desc, REG_R_DELETE_VALUE *r_r, prs_struct *ps, int depth) argument
474 reg_io_q_delete_key(const char *desc, REG_Q_DELETE_KEY *r_q, prs_struct *ps, int depth) argument
502 reg_io_r_delete_key(const char *desc, REG_R_DELETE_KEY *r_r, prs_struct *ps, int depth) argument
535 reg_io_q_query_key(const char *desc, REG_Q_QUERY_KEY *r_q, prs_struct *ps, int depth) argument
564 reg_io_r_query_key(const char *desc, REG_R_QUERY_KEY *r_r, prs_struct *ps, int depth) argument
620 reg_io_q_unknown_1a(const char *desc, REG_Q_UNKNOWN_1A *r_q, prs_struct *ps, int depth) argument
641 reg_io_r_unknown_1a(const char *desc, REG_R_UNKNOWN_1A *r_r, prs_struct *ps, int depth) argument
665 reg_io_q_save_key(const char *desc, REG_Q_SAVE_KEY *r_q, prs_struct *ps, int depth) argument
694 reg_io_r_save_key(const char *desc, REG_R_SAVE_KEY *r_r, prs_struct *ps, int depth) argument
728 reg_io_q_open_hku(const char *desc, REG_Q_OPEN_HKU *r_q, prs_struct *ps, int depth) argument
757 reg_io_r_open_hku(const char *desc, REG_R_OPEN_HKU *r_r, prs_struct *ps, int depth) argument
792 reg_io_q_close(const char *desc, REG_Q_CLOSE *q_u, prs_struct *ps, int depth) argument
815 reg_io_r_close(const char *desc, REG_R_CLOSE *r_u, prs_struct *ps, int depth) argument
856 reg_io_q_set_key_sec(const char *desc, REG_Q_SET_KEY_SEC *r_q, prs_struct *ps, int depth) argument
885 reg_io_r_set_key_sec(const char *desc, REG_R_SET_KEY_SEC *r_q, prs_struct *ps, int depth) argument
926 reg_io_q_get_key_sec(const char *desc, REG_Q_GET_KEY_SEC *r_q, prs_struct *ps, int depth) argument
971 reg_io_r_get_key_sec(const char *desc, REG_R_GET_KEY_SEC *r_q, prs_struct *ps, int depth) argument
1035 reg_io_q_info(const char *desc, REG_Q_INFO *r_q, prs_struct *ps, int depth) argument
1168 reg_io_r_info(const char *desc, REG_R_INFO *r_r, prs_struct *ps, int depth) argument
1291 reg_io_q_enum_val(const char *desc, REG_Q_ENUM_VALUE *q_q, prs_struct *ps, int depth) argument
1350 reg_io_r_enum_val(const char *desc, REG_R_ENUM_VALUE *r_q, prs_struct *ps, int depth) argument
1426 reg_io_q_create_val(const char *desc, REG_Q_CREATE_VALUE *q_q, prs_struct *ps, int depth) argument
1461 reg_io_r_create_val(const char *desc, REG_R_CREATE_VALUE *r_q, prs_struct *ps, int depth) argument
1528 reg_io_q_enum_key(const char *desc, REG_Q_ENUM_KEY *q_q, prs_struct *ps, int depth) argument
1582 reg_io_r_enum_key(const char *desc, REG_R_ENUM_KEY *r_q, prs_struct *ps, int depth) argument
1654 reg_io_q_open_entry(const char *desc, REG_Q_OPEN_ENTRY *r_q, prs_struct *ps, int depth) argument
1702 reg_io_r_open_entry(const char *desc, REG_R_OPEN_ENTRY *r_r, prs_struct *ps, int depth) argument
1746 reg_io_q_shutdown(const char *desc, REG_Q_SHUTDOWN * q_s, prs_struct *ps, int depth) argument
1785 reg_io_r_shutdown(const char *desc, REG_R_SHUTDOWN * r_s, prs_struct *ps, int depth) argument
1816 reg_io_q_abort_shutdown(const char *desc, REG_Q_ABORT_SHUTDOWN * q_s, prs_struct *ps, int depth) argument
1840 reg_io_r_abort_shutdown(const char *desc, REG_R_ABORT_SHUTDOWN * r_s, prs_struct *ps, int depth) argument
[all...]
H A Dparse_wks.c45 BOOL wks_io_q_query_info(const char *desc, WKS_Q_QUERY_INFO *q_u, prs_struct *ps, int depth) argument
50 prs_debug(ps, depth, desc, "wks_io_q_query_info");
53 if(!prs_align(ps))
56 if(!prs_uint32("ptr_srv_name", ps, depth, &q_u->ptr_srv_name))
58 if(!smb_io_unistr2("", &q_u->uni_srv_name, q_u->ptr_srv_name, ps, depth))
60 if(!prs_align(ps))
63 if(!prs_uint16("switch_value", ps, depth, &q_u->switch_value))
65 if(!prs_align(ps))
93 static BOOL wks_io_wks_info_100(const char *desc, WKS_INFO_100 *inf, prs_struct *ps, int depth) argument
98 prs_debug(ps, dept
153 wks_io_r_query_info(const char *desc, WKS_R_QUERY_INFO *r_u, prs_struct *ps, int depth) argument
[all...]
H A Dparse_srv.c46 static BOOL srv_io_share_info0_str(const char *desc, SH_INFO_0_STR *sh0, prs_struct *ps, int depth) argument
51 prs_debug(ps, depth, desc, "srv_io_share_info0_str");
54 if(!prs_align(ps))
57 if(!smb_io_unistr2("", &sh0->uni_netname, True, ps, depth))
78 static BOOL srv_io_share_info0(const char *desc, SH_INFO_0 *sh0, prs_struct *ps, int depth) argument
83 prs_debug(ps, depth, desc, "srv_io_share_info0");
86 if(!prs_align(ps))
89 if(!prs_uint32("ptr_netname", ps, depth, &sh0->ptr_netname))
111 static BOOL srv_io_share_info1_str(const char *desc, SH_INFO_1_STR *sh1, prs_struct *ps, int depth) argument
116 prs_debug(ps, dept
153 srv_io_share_info1(const char *desc, SH_INFO_1 *sh1, prs_struct *ps, int depth) argument
194 srv_io_share_info2_str(const char *desc, SH_INFO_2 *sh, SH_INFO_2_STR *sh2, prs_struct *ps, int depth) argument
252 srv_io_share_info2(const char *desc, SH_INFO_2 *sh2, prs_struct *ps, int depth) argument
317 srv_io_share_info501(const char *desc, SH_INFO_501 *sh501, prs_struct *ps, int depth) argument
344 srv_io_share_info501_str(const char *desc, SH_INFO_501_STR *sh501, prs_struct *ps, int depth) argument
395 srv_io_share_info502(const char *desc, SH_INFO_502 *sh502, prs_struct *ps, int depth) argument
453 srv_io_share_info502_str(const char *desc, SH_INFO_502_STR *sh502, prs_struct *ps, int depth) argument
548 srv_io_share_info1004_str(const char *desc, SH_INFO_1004_STR *sh1004, prs_struct *ps, int depth) argument
580 srv_io_share_info1004(const char *desc, SH_INFO_1004 *sh1004, prs_struct *ps, int depth) argument
601 srv_io_share_info1005(const char* desc, SRV_SHARE_INFO_1005* sh1005, prs_struct* ps, int depth) argument
623 srv_io_share_info1006(const char* desc, SRV_SHARE_INFO_1006* sh1006, prs_struct* ps, int depth) argument
655 srv_io_share_info1007_str(const char *desc, SH_INFO_1007_STR *sh1007, prs_struct *ps, int depth) argument
688 srv_io_share_info1007(const char *desc, SH_INFO_1007 *sh1007, prs_struct *ps, int depth) argument
711 srv_io_share_info1501(const char* desc, SRV_SHARE_INFO_1501* sh1501, prs_struct* ps, int depth) argument
733 srv_io_srv_share_ctr(const char *desc, SRV_SHARE_INFO_CTR *ctr, prs_struct *ps, int depth) argument
1055 srv_io_q_net_share_enum(const char *desc, SRV_Q_NET_SHARE_ENUM *q_n, prs_struct *ps, int depth) argument
1090 srv_io_r_net_share_enum(const char *desc, SRV_R_NET_SHARE_ENUM *r_n, prs_struct *ps, int depth) argument
1139 srv_io_q_net_share_get_info(const char *desc, SRV_Q_NET_SHARE_GET_INFO *q_n, prs_struct *ps, int depth) argument
1171 srv_io_srv_share_info(const char *desc, prs_struct *ps, int depth, SRV_SHARE_INFO *r_n) argument
1282 srv_io_r_net_share_get_info(const char *desc, SRV_R_NET_SHARE_GET_INFO *r_n, prs_struct *ps, int depth) argument
1337 srv_io_q_net_share_set_info(const char *desc, SRV_Q_NET_SHARE_SET_INFO *q_n, prs_struct *ps, int depth) argument
1384 srv_io_r_net_share_set_info(const char *desc, SRV_R_NET_SHARE_SET_INFO *r_n, prs_struct *ps, int depth) argument
1415 srv_io_q_net_share_add(const char *desc, SRV_Q_NET_SHARE_ADD *q_n, prs_struct *ps, int depth) argument
1497 srv_io_r_net_share_add(const char *desc, SRV_R_NET_SHARE_ADD *r_n, prs_struct *ps, int depth) argument
1539 srv_io_q_net_share_del(const char *desc, SRV_Q_NET_SHARE_DEL *q_n, prs_struct *ps, int depth) argument
1570 srv_io_r_net_share_del(const char *desc, SRV_R_NET_SHARE_DEL *q_n, prs_struct *ps, int depth) argument
1602 srv_io_sess_info0_str(const char *desc, SESS_INFO_0_STR *ss0, prs_struct *ps, int depth) argument
1634 srv_io_sess_info0(const char *desc, SESS_INFO_0 *ss0, prs_struct *ps, int depth) argument
1655 srv_io_srv_sess_info_0(const char *desc, SRV_SESS_INFO_0 *ss0, prs_struct *ps, int depth) argument
1717 srv_io_sess_info1_str(const char *desc, SESS_INFO_1_STR *ss1, prs_struct *ps, int depth) argument
1760 srv_io_sess_info1(const char *desc, SESS_INFO_1 *ss1, prs_struct *ps, int depth) argument
1792 srv_io_srv_sess_info_1(const char *desc, SRV_SESS_INFO_1 *ss1, prs_struct *ps, int depth) argument
1842 srv_io_srv_sess_ctr(const char *desc, SRV_SESS_INFO_CTR **pp_ctr, prs_struct *ps, int depth) argument
1914 srv_io_q_net_sess_enum(const char *desc, SRV_Q_NET_SESS_ENUM *q_n, prs_struct *ps, int depth) argument
1969 srv_io_r_net_sess_enum(const char *desc, SRV_R_NET_SESS_ENUM *r_n, prs_struct *ps, int depth) argument
2013 srv_io_conn_info0(const char *desc, CONN_INFO_0 *ss0, prs_struct *ps, int depth) argument
2034 srv_io_srv_conn_info_0(const char *desc, SRV_CONN_INFO_0 *ss0, prs_struct *ps, int depth) argument
2089 srv_io_conn_info1_str(const char *desc, CONN_INFO_1_STR *ss1, prs_struct *ps, int depth) argument
2133 srv_io_conn_info1(const char *desc, CONN_INFO_1 *ss1, prs_struct *ps, int depth) argument
2167 srv_io_srv_conn_info_1(const char *desc, SRV_CONN_INFO_1 *ss1, prs_struct *ps, int depth) argument
2215 srv_io_srv_conn_ctr(const char *desc, SRV_CONN_INFO_CTR **pp_ctr, prs_struct *ps, int depth) argument
2286 srv_io_q_net_conn_enum(const char *desc, SRV_Q_NET_CONN_ENUM *q_n, prs_struct *ps, int depth) argument
2334 srv_io_r_net_conn_enum(const char *desc, SRV_R_NET_CONN_ENUM *r_n, prs_struct *ps, int depth) argument
2379 srv_io_file_info3_str(const char *desc, FILE_INFO_3_STR *sh1, prs_struct *ps, int depth) argument
2420 srv_io_file_info3(const char *desc, FILE_INFO_3 *fl3, prs_struct *ps, int depth) argument
2449 srv_io_srv_file_ctr(const char *desc, SRV_FILE_INFO_CTR *ctr, prs_struct *ps, int depth) argument
2543 srv_io_q_net_file_enum(const char *desc, SRV_Q_NET_FILE_ENUM *q_n, prs_struct *ps, int depth) argument
2598 srv_io_r_net_file_enum(const char *desc, SRV_R_NET_FILE_ENUM *r_n, prs_struct *ps, int depth) argument
2641 srv_io_q_net_file_close(const char *desc, SRV_Q_NET_FILE_CLOSE *q_n, prs_struct *ps, int depth) argument
2671 srv_io_r_net_file_close(const char *desc, SRV_R_NET_FILE_CLOSE *q_n, prs_struct *ps, int depth) argument
2705 srv_io_info_100(const char *desc, SRV_INFO_100 *sv100, prs_struct *ps, int depth) argument
2750 srv_io_info_101(const char *desc, SRV_INFO_101 *sv101, prs_struct *ps, int depth) argument
2820 srv_io_info_102(const char *desc, SRV_INFO_102 *sv102, prs_struct *ps, int depth) argument
2879 srv_io_info_ctr(const char *desc, SRV_INFO_CTR *ctr, prs_struct *ps, int depth) argument
2939 srv_io_q_net_srv_get_info(const char *desc, SRV_Q_NET_SRV_GET_INFO *q_n, prs_struct *ps, int depth) argument
3003 srv_io_q_net_srv_set_info(const char *desc, SRV_Q_NET_SRV_SET_INFO *q_n, prs_struct *ps, int depth) argument
3040 srv_io_r_net_srv_get_info(const char *desc, SRV_R_NET_SRV_GET_INFO *r_n, prs_struct *ps, int depth) argument
3064 srv_io_r_net_srv_set_info(const char *desc, SRV_R_NET_SRV_SET_INFO *r_n, prs_struct *ps, int depth) argument
3086 srv_io_q_net_remote_tod(const char *desc, SRV_Q_NET_REMOTE_TOD *q_n, prs_struct *ps, int depth) argument
3109 srv_io_time_of_day_info(const char *desc, TIME_OF_DAY_INFO *tod, prs_struct *ps, int depth) argument
3178 srv_io_r_net_remote_tod(const char *desc, SRV_R_NET_REMOTE_TOD *r_n, prs_struct *ps, int depth) argument
3230 srv_io_q_net_disk_enum(const char *desc, SRV_Q_NET_DISK_ENUM *q_n, prs_struct *ps, int depth) argument
3274 srv_io_r_net_disk_enum(const char *desc, SRV_R_NET_DISK_ENUM *r_n, prs_struct *ps, int depth) argument
3363 srv_io_q_net_name_validate(const char *desc, SRV_Q_NET_NAME_VALIDATE *q_n, prs_struct *ps, int depth) argument
3402 srv_io_r_net_name_validate(const char *desc, SRV_R_NET_NAME_VALIDATE *r_n, prs_struct *ps, int depth) argument
3423 srv_io_q_net_file_query_secdesc(const char *desc, SRV_Q_NET_FILE_QUERY_SECDESC *q_n, prs_struct *ps, int depth) argument
3471 srv_io_r_net_file_query_secdesc(const char *desc, SRV_R_NET_FILE_QUERY_SECDESC *r_n, prs_struct *ps, int depth) argument
3510 srv_io_q_net_file_set_secdesc(const char *desc, SRV_Q_NET_FILE_SET_SECDESC *q_n, prs_struct *ps, int depth) argument
3567 srv_io_r_net_file_set_secdesc(const char *desc, SRV_R_NET_FILE_SET_SECDESC *r_n, prs_struct *ps, int depth) argument
[all...]
H A Dparse_samr.c50 prs_struct *ps, int depth)
55 prs_debug(ps, depth, desc, "samr_io_q_close_hnd");
58 if(!prs_align(ps))
61 return smb_io_pol_hnd("pol", &q_u->pol, ps, depth);
69 prs_struct *ps, int depth)
74 prs_debug(ps, depth, desc, "samr_io_r_close_hnd");
77 if(!prs_align(ps))
80 if(!smb_io_pol_hnd("pol", &r_u->pol, ps, depth))
83 if(!prs_ntstatus("status", ps, depth, &r_u->status))
108 prs_struct *ps, in
49 samr_io_q_close_hnd(const char *desc, SAMR_Q_CLOSE_HND * q_u, prs_struct *ps, int depth) argument
68 samr_io_r_close_hnd(const char *desc, SAMR_R_CLOSE_HND * r_u, prs_struct *ps, int depth) argument
107 samr_io_q_lookup_domain(const char *desc, SAMR_Q_LOOKUP_DOMAIN * q_u, prs_struct *ps, int depth) argument
152 samr_io_r_lookup_domain(const char *desc, SAMR_R_LOOKUP_DOMAIN * r_u, prs_struct *ps, int depth) argument
196 samr_io_q_remove_sid_foreign_domain(const char *desc, SAMR_Q_REMOVE_SID_FOREIGN_DOMAIN * q_u, prs_struct *ps, int depth) argument
224 samr_io_r_remove_sid_foreign_domain(const char *desc, SAMR_R_REMOVE_SID_FOREIGN_DOMAIN * r_u, prs_struct *ps, int depth) argument
261 samr_io_q_open_domain(const char *desc, SAMR_Q_OPEN_DOMAIN * q_u, prs_struct *ps, int depth) argument
289 samr_io_r_open_domain(const char *desc, SAMR_R_OPEN_DOMAIN * r_u, prs_struct *ps, int depth) argument
326 samr_io_q_get_usrdom_pwinfo(const char *desc, SAMR_Q_GET_USRDOM_PWINFO * q_u, prs_struct *ps, int depth) argument
368 samr_io_r_get_usrdom_pwinfo(const char *desc, SAMR_R_GET_USRDOM_PWINFO * r_u, prs_struct *ps, int depth) argument
397 samr_io_q_set_sec_obj(const char *desc, SAMR_Q_SET_SEC_OBJ * q_u, prs_struct *ps, int depth) argument
440 samr_io_q_query_sec_obj(const char *desc, SAMR_Q_QUERY_SEC_OBJ * q_u, prs_struct *ps, int depth) argument
478 samr_io_q_query_dom_info(const char *desc, SAMR_Q_QUERY_DOMAIN_INFO * q_u, prs_struct *ps, int depth) argument
514 sam_io_unk_info3(const char *desc, SAM_UNK_INFO_3 * u_3, prs_struct *ps, int depth) argument
544 sam_io_unk_info6(const char *desc, SAM_UNK_INFO_6 * u_6, prs_struct *ps, int depth) argument
576 sam_io_unk_info7(const char *desc, SAM_UNK_INFO_7 * u_7, prs_struct *ps, int depth) argument
606 sam_io_unk_info8(const char *desc, SAM_UNK_INFO_8 * u_8, prs_struct *ps, int depth) argument
643 sam_io_unk_info12(const char *desc, SAM_UNK_INFO_12 * u_12, prs_struct *ps, int depth) argument
676 sam_io_unk_info5(const char *desc, SAM_UNK_INFO_5 * u_5, prs_struct *ps, int depth) argument
730 sam_io_unk_info2(const char *desc, SAM_UNK_INFO_2 * u_2, prs_struct *ps, int depth) argument
803 sam_io_unk_info1(const char *desc, SAM_UNK_INFO_1 * u_1, prs_struct *ps, int depth) argument
851 samr_io_r_query_dom_info(const char *desc, SAMR_R_QUERY_DOMAIN_INFO * r_u, prs_struct *ps, int depth) argument
926 samr_io_r_set_sec_obj(const char *desc, SAMR_R_SET_SEC_OBJ * r_u, prs_struct *ps, int depth) argument
948 samr_io_r_query_sec_obj(const char *desc, SAMR_R_QUERY_SEC_OBJ * r_u, prs_struct *ps, int depth) argument
977 sam_io_sam_str1(const char *desc, SAM_STR1 * sam, uint32 acct_buf, uint32 name_buf, uint32 desc_buf, prs_struct *ps, int depth) argument
1027 sam_io_sam_entry1(const char *desc, SAM_ENTRY1 * sam, prs_struct *ps, int depth) argument
1064 sam_io_sam_str2(const char *desc, SAM_STR2 * sam, uint32 acct_buf, uint32 desc_buf, prs_struct *ps, int depth) argument
1105 sam_io_sam_entry2(const char *desc, SAM_ENTRY2 * sam, prs_struct *ps, int depth) argument
1140 sam_io_sam_str3(const char *desc, SAM_STR3 * sam, uint32 acct_buf, uint32 desc_buf, prs_struct *ps, int depth) argument
1182 sam_io_sam_entry3(const char *desc, SAM_ENTRY3 * sam, prs_struct *ps, int depth) argument
1227 sam_io_sam_entry4(const char *desc, SAM_ENTRY4 * sam, prs_struct *ps, int depth) argument
1265 sam_io_sam_entry5(const char *desc, SAM_ENTRY5 * sam, prs_struct *ps, int depth) argument
1301 sam_io_sam_entry(const char *desc, SAM_ENTRY * sam, prs_struct *ps, int depth) argument
1342 samr_io_q_enum_dom_users(const char *desc, SAMR_Q_ENUM_DOM_USERS * q_e, prs_struct *ps, int depth) argument
1400 samr_io_r_enum_dom_users(const char *desc, SAMR_R_ENUM_DOM_USERS * r_u, prs_struct *ps, int depth) argument
1485 samr_io_q_query_dispinfo(const char *desc, SAMR_Q_QUERY_DISPINFO * q_e, prs_struct *ps, int depth) argument
1597 sam_io_sam_dispinfo_1(const char *desc, SAM_DISPINFO_1 * sam, uint32 num_entries, prs_struct *ps, int depth) argument
1703 sam_io_sam_dispinfo_2(const char *desc, SAM_DISPINFO_2 * sam, uint32 num_entries, prs_struct *ps, int depth) argument
1790 sam_io_sam_dispinfo_3(const char *desc, SAM_DISPINFO_3 * sam, uint32 num_entries, prs_struct *ps, int depth) argument
1878 sam_io_sam_dispinfo_4(const char *desc, SAM_DISPINFO_4 * sam, uint32 num_entries, prs_struct *ps, int depth) argument
1964 sam_io_sam_dispinfo_5(const char *desc, SAM_DISPINFO_5 * sam, uint32 num_entries, prs_struct *ps, int depth) argument
2039 samr_io_r_query_dispinfo(const char *desc, SAMR_R_QUERY_DISPINFO * r_u, prs_struct *ps, int depth) argument
2137 samr_io_q_open_group(const char *desc, SAMR_Q_OPEN_GROUP * q_u, prs_struct *ps, int depth) argument
2164 samr_io_r_open_group(const char *desc, SAMR_R_OPEN_GROUP * r_u, prs_struct *ps, int depth) argument
2208 samr_io_group_info1(const char *desc, GROUP_INFO1 * gr1, prs_struct *ps, int depth) argument
2264 samr_io_group_info2(const char *desc, GROUP_INFO2 *gr2, prs_struct *ps, int depth) argument
2299 samr_io_group_info3(const char *desc, GROUP_INFO3 *gr3, prs_struct *ps, int depth) argument
2333 samr_io_group_info4(const char *desc, GROUP_INFO4 * gr4, prs_struct *ps, int depth) argument
2357 samr_group_info_ctr(const char *desc, GROUP_INFO_CTR **ctr, prs_struct *ps, int depth) argument
2419 samr_io_q_create_dom_group(const char *desc, SAMR_Q_CREATE_DOM_GROUP * q_e, prs_struct *ps, int depth) argument
2452 samr_io_r_create_dom_group(const char *desc, SAMR_R_CREATE_DOM_GROUP * r_u, prs_struct *ps, int depth) argument
2491 samr_io_q_delete_dom_group(const char *desc, SAMR_Q_DELETE_DOM_GROUP * q_u, prs_struct *ps, int depth) argument
2513 samr_io_r_delete_dom_group(const char *desc, SAMR_R_DELETE_DOM_GROUP * r_u, prs_struct *ps, int depth) argument
2551 samr_io_q_del_groupmem(const char *desc, SAMR_Q_DEL_GROUPMEM * q_e, prs_struct *ps, int depth) argument
2588 samr_io_r_del_groupmem(const char *desc, SAMR_R_DEL_GROUPMEM * r_u, prs_struct *ps, int depth) argument
2624 samr_io_q_add_groupmem(const char *desc, SAMR_Q_ADD_GROUPMEM * q_e, prs_struct *ps, int depth) argument
2663 samr_io_r_add_groupmem(const char *desc, SAMR_R_ADD_GROUPMEM * r_u, prs_struct *ps, int depth) argument
2698 samr_io_q_set_groupinfo(const char *desc, SAMR_Q_SET_GROUPINFO * q_e, prs_struct *ps, int depth) argument
2734 samr_io_r_set_groupinfo(const char *desc, SAMR_R_SET_GROUPINFO * r_u, prs_struct *ps, int depth) argument
2770 samr_io_q_query_groupinfo(const char *desc, SAMR_Q_QUERY_GROUPINFO * q_e, prs_struct *ps, int depth) argument
2809 samr_io_r_query_groupinfo(const char *desc, SAMR_R_QUERY_GROUPINFO * r_u, prs_struct *ps, int depth) argument
2852 samr_io_q_query_groupmem(const char *desc, SAMR_Q_QUERY_GROUPMEM * q_u, prs_struct *ps, int depth) argument
2904 samr_io_r_query_groupmem(const char *desc, SAMR_R_QUERY_GROUPMEM * r_u, prs_struct *ps, int depth) argument
2986 samr_io_q_query_usergroups(const char *desc, SAMR_Q_QUERY_USERGROUPS * q_u, prs_struct *ps, int depth) argument
3035 samr_io_gids(const char *desc, uint32 *num_gids, DOM_GID ** gid, prs_struct *ps, int depth) argument
3073 samr_io_r_query_usergroups(const char *desc, SAMR_R_QUERY_USERGROUPS * r_u, prs_struct *ps, int depth) argument
3128 samr_io_q_enum_domains(const char *desc, SAMR_Q_ENUM_DOMAINS * q_e, prs_struct *ps, int depth) argument
3180 samr_io_r_enum_domains(const char *desc, SAMR_R_ENUM_DOMAINS * r_u, prs_struct *ps, int depth) argument
3267 samr_io_q_enum_dom_groups(const char *desc, SAMR_Q_ENUM_DOM_GROUPS * q_e, prs_struct *ps, int depth) argument
3319 samr_io_r_enum_dom_groups(const char *desc, SAMR_R_ENUM_DOM_GROUPS * r_u, prs_struct *ps, int depth) argument
3402 samr_io_q_enum_dom_aliases(const char *desc, SAMR_Q_ENUM_DOM_ALIASES * q_e, prs_struct *ps, int depth) argument
3453 samr_io_r_enum_dom_aliases(const char *desc, SAMR_R_ENUM_DOM_ALIASES * r_u, prs_struct *ps, int depth) argument
3537 samr_io_alias_info1(const char *desc, ALIAS_INFO1 * al1, prs_struct *ps, int depth) argument
3586 samr_io_alias_info3(const char *desc, ALIAS_INFO3 * al3, prs_struct *ps, int depth) argument
3611 samr_alias_info_ctr(const char *desc, ALIAS_INFO_CTR * ctr, prs_struct *ps, int depth) argument
3659 samr_io_q_query_aliasinfo(const char *desc, SAMR_Q_QUERY_ALIASINFO * q_e, prs_struct *ps, int depth) argument
3698 samr_io_r_query_aliasinfo(const char *desc, SAMR_R_QUERY_ALIASINFO * r_u, prs_struct *ps, int depth) argument
3743 samr_io_q_set_aliasinfo(const char *desc, SAMR_Q_SET_ALIASINFO * q_u, prs_struct *ps, int depth) argument
3767 samr_io_r_set_aliasinfo(const char *desc, SAMR_R_SET_ALIASINFO * r_u, prs_struct *ps, int depth) argument
3809 samr_io_q_query_useraliases(const char *desc, SAMR_Q_QUERY_USERALIASES * q_u, prs_struct *ps, int depth) argument
3894 samr_io_rids(const char *desc, uint32 *num_rids, uint32 **rid, prs_struct *ps, int depth) argument
3933 samr_io_r_query_useraliases(const char *desc, SAMR_R_QUERY_USERALIASES * r_u, prs_struct *ps, int depth) argument
3981 samr_io_q_open_alias(const char *desc, SAMR_Q_OPEN_ALIAS * q_u, prs_struct *ps, int depth) argument
4008 samr_io_r_open_alias(const char *desc, SAMR_R_OPEN_ALIAS * r_u, prs_struct *ps, int depth) argument
4058 samr_io_q_lookup_rids(const char *desc, SAMR_Q_LOOKUP_RIDS * q_u, prs_struct *ps, int depth) argument
4144 samr_io_r_lookup_rids(const char *desc, SAMR_R_LOOKUP_RIDS * r_u, prs_struct *ps, int depth) argument
4238 samr_io_q_delete_alias(const char *desc, SAMR_Q_DELETE_DOM_ALIAS * q_u, prs_struct *ps, int depth) argument
4260 samr_io_r_delete_alias(const char *desc, SAMR_R_DELETE_DOM_ALIAS * r_u, prs_struct *ps, int depth) argument
4301 samr_io_q_create_dom_alias(const char *desc, SAMR_Q_CREATE_DOM_ALIAS * q_u, prs_struct *ps, int depth) argument
4334 samr_io_r_create_dom_alias(const char *desc, SAMR_R_CREATE_DOM_ALIAS * r_u, prs_struct *ps, int depth) argument
4375 samr_io_q_add_aliasmem(const char *desc, SAMR_Q_ADD_ALIASMEM * q_u, prs_struct *ps, int depth) argument
4399 samr_io_r_add_aliasmem(const char *desc, SAMR_R_ADD_ALIASMEM * r_u, prs_struct *ps, int depth) argument
4434 samr_io_q_del_aliasmem(const char *desc, SAMR_Q_DEL_ALIASMEM * q_u, prs_struct *ps, int depth) argument
4458 samr_io_r_del_aliasmem(const char *desc, SAMR_R_DEL_ALIASMEM * r_u, prs_struct *ps, int depth) argument
4492 samr_io_q_delete_dom_alias(const char *desc, SAMR_Q_DELETE_DOM_ALIAS * q_u, prs_struct *ps, int depth) argument
4526 samr_io_r_delete_dom_alias(const char *desc, SAMR_R_DELETE_DOM_ALIAS * r_u, prs_struct *ps, int depth) argument
4560 samr_io_q_query_aliasmem(const char *desc, SAMR_Q_QUERY_ALIASMEM * q_u, prs_struct *ps, int depth) argument
4606 samr_io_r_query_aliasmem(const char *desc, SAMR_R_QUERY_ALIASMEM * r_u, prs_struct *ps, int depth) argument
4699 samr_io_q_lookup_names(const char *desc, SAMR_Q_LOOKUP_NAMES * q_u, prs_struct *ps, int depth) argument
4806 samr_io_r_lookup_names(const char *desc, SAMR_R_LOOKUP_NAMES * r_u, prs_struct *ps, int depth) argument
4904 samr_io_q_delete_dom_user(const char *desc, SAMR_Q_DELETE_DOM_USER * q_u, prs_struct *ps, int depth) argument
4926 samr_io_r_delete_dom_user(const char *desc, SAMR_R_DELETE_DOM_USER * r_u, prs_struct *ps, int depth) argument
4965 samr_io_q_open_user(const char *desc, SAMR_Q_OPEN_USER * q_u, prs_struct *ps, int depth) argument
4992 samr_io_r_open_user(const char *desc, SAMR_R_OPEN_USER * r_u, prs_struct *ps, int depth) argument
5038 samr_io_q_create_user(const char *desc, SAMR_Q_CREATE_USER * q_u, prs_struct *ps, int depth) argument
5072 samr_io_r_create_user(const char *desc, SAMR_R_CREATE_USER * r_u, prs_struct *ps, int depth) argument
5114 samr_io_q_query_userinfo(const char *desc, SAMR_Q_QUERY_USERINFO * q_u, prs_struct *ps, int depth) argument
5139 sam_io_logon_hrs(const char *desc, LOGON_HRS * hrs, prs_struct *ps, int depth) argument
5190 sam_io_user_info12(const char *desc, SAM_USER_INFO_12 * u, prs_struct *ps, int depth) argument
5232 sam_io_user_info7(const char *desc, SAM_USER_INFO_7 * usr, prs_struct *ps, int depth) argument
5268 sam_io_user_info10(const char *desc, SAM_USER_INFO_10 * usr, prs_struct *ps, int depth) argument
5332 sam_io_user_info11(const char *desc, SAM_USER_INFO_11 * usr, prs_struct *ps, int depth) argument
5423 sam_io_user_info24(const char *desc, SAM_USER_INFO_24 * usr, prs_struct *ps, int depth) argument
5643 sam_io_user_info23(const char *desc, SAM_USER_INFO_23 * usr, prs_struct *ps, int depth) argument
5774 sam_io_user_info25(const char *desc, SAM_USER_INFO_25 * usr, prs_struct *ps, int depth) argument
6140 sam_io_user_info21(const char *desc, SAM_USER_INFO_21 * usr, prs_struct *ps, int depth) argument
6265 sam_io_user_info20(const char *desc, SAM_USER_INFO_20 *usr, prs_struct *ps, int depth) argument
6388 samr_io_userinfo_ctr(const char *desc, SAM_USERINFO_CTR **ppctr, prs_struct *ps, int depth) argument
6537 samr_io_r_query_userinfo(const char *desc, SAMR_R_QUERY_USERINFO * r_u, prs_struct *ps, int depth) argument
6584 samr_io_q_set_userinfo(const char *desc, SAMR_Q_SET_USERINFO * q_u, prs_struct *ps, int depth) argument
6621 samr_io_r_set_userinfo(const char *desc, SAMR_R_SET_USERINFO * r_u, prs_struct *ps, int depth) argument
6671 samr_io_q_set_userinfo2(const char *desc, SAMR_Q_SET_USERINFO2 * q_u, prs_struct *ps, int depth) argument
6709 samr_io_r_set_userinfo2(const char *desc, SAMR_R_SET_USERINFO2 * r_u, prs_struct *ps, int depth) argument
6748 samr_io_q_connect(const char *desc, SAMR_Q_CONNECT * q_u, prs_struct *ps, int depth) argument
6777 samr_io_r_connect(const char *desc, SAMR_R_CONNECT * r_u, prs_struct *ps, int depth) argument
6822 samr_io_q_connect4(const char *desc, SAMR_Q_CONNECT4 * q_u, prs_struct *ps, int depth) argument
6853 samr_io_r_connect4(const char *desc, SAMR_R_CONNECT4 * r_u, prs_struct *ps, int depth) argument
6892 samr_io_q_connect_anon(const char *desc, SAMR_Q_CONNECT_ANON * q_u, prs_struct *ps, int depth) argument
6920 samr_io_r_connect_anon(const char *desc, SAMR_R_CONNECT_ANON * r_u, prs_struct *ps, int depth) argument
6959 samr_io_q_get_dom_pwinfo(const char *desc, SAMR_Q_GET_DOM_PWINFO * q_u, prs_struct *ps, int depth) argument
6987 samr_io_r_get_dom_pwinfo(const char *desc, SAMR_R_GET_DOM_PWINFO * r_u, prs_struct *ps, int depth) argument
7036 samr_io_enc_passwd(const char *desc, SAMR_ENC_PASSWD * pwd, prs_struct *ps, int depth) argument
7079 samr_io_enc_hash(const char *desc, SAMR_ENC_HASH * hsh, prs_struct *ps, int depth) argument
7134 samr_io_q_chgpasswd_user(const char *desc, SAMR_Q_CHGPASSWD_USER * q_u, prs_struct *ps, int depth) argument
7192 samr_io_r_chgpasswd_user(const char *desc, SAMR_R_CHGPASSWD_USER * r_u, prs_struct *ps, int depth) argument
7227 samr_io_q_unknown_2e(const char *desc, SAMR_Q_UNKNOWN_2E *q_u, prs_struct *ps, int depth) argument
7273 samr_io_r_samr_unknown_2e(const char *desc, SAMR_R_UNKNOWN_2E * r_u, prs_struct *ps, int depth) argument
7362 samr_io_q_set_domain_info(const char *desc, SAMR_Q_SET_DOMAIN_INFO *q_u, prs_struct *ps, int depth) argument
7443 samr_io_r_set_domain_info(const char *desc, SAMR_R_SET_DOMAIN_INFO * r_u, prs_struct *ps, int depth) argument
[all...]
H A Dparse_net.c33 static BOOL net_io_neg_flags(const char *desc, NEG_FLAGS *neg, prs_struct *ps, int depth) argument
38 prs_debug(ps, depth, desc, "net_io_neg_flags");
41 if(!prs_align(ps))
44 if(!prs_uint32("neg_flags", ps, depth, &neg->neg_flags))
69 static BOOL net_io_netinfo_3(const char *desc, NETLOGON_INFO_3 *info, prs_struct *ps, int depth) argument
74 prs_debug(ps, depth, desc, "net_io_netinfo_3");
77 if(!prs_align(ps))
80 if(!prs_uint32("flags ", ps, depth, &info->flags))
82 if(!prs_uint32("logon_attempts", ps, depth, &info->logon_attempts))
84 if(!prs_uint32("reserved_1 ", ps, dept
113 net_io_netinfo_1(const char *desc, NETLOGON_INFO_1 *info, prs_struct *ps, int depth) argument
154 net_io_netinfo_2(const char *desc, NETLOGON_INFO_2 *info, prs_struct *ps, int depth) argument
185 net_io_ctrl_data_info_5(const char *desc, CTRL_DATA_INFO_5 *info, prs_struct *ps, int depth) argument
207 net_io_ctrl_data_info_6(const char *desc, CTRL_DATA_INFO_6 *info, prs_struct *ps, int depth) argument
233 net_io_q_logon_ctrl2(const char *desc, NET_Q_LOGON_CTRL2 *q_l, prs_struct *ps, int depth) argument
335 net_io_r_logon_ctrl2(const char *desc, NET_R_LOGON_CTRL2 *r_l, prs_struct *ps, int depth) argument
379 net_io_q_logon_ctrl(const char *desc, NET_Q_LOGON_CTRL *q_l, prs_struct *ps, int depth) argument
452 net_io_r_logon_ctrl(const char *desc, NET_R_LOGON_CTRL *r_l, prs_struct *ps, int depth) argument
500 net_io_q_getdcname(const char *desc, NET_Q_GETDCNAME *r_t, prs_struct *ps, int depth) argument
544 net_io_r_getdcname(const char *desc, NET_R_GETDCNAME *r_t, prs_struct *ps, int depth) argument
600 net_io_r_trust_dom(const char *desc, NET_R_TRUST_DOM_LIST *r_t, prs_struct *ps, int depth) argument
652 net_io_q_trust_dom(const char *desc, NET_Q_TRUST_DOM_LIST *q_l, prs_struct *ps, int depth) argument
692 net_io_q_req_chal(const char *desc, NET_Q_REQ_CHAL *q_c, prs_struct *ps, int depth) argument
721 net_io_r_req_chal(const char *desc, NET_R_REQ_CHAL *r_c, prs_struct *ps, int depth) argument
746 net_io_q_auth(const char *desc, NET_Q_AUTH *q_a, prs_struct *ps, int depth) argument
769 net_io_r_auth(const char *desc, NET_R_AUTH *r_a, prs_struct *ps, int depth) argument
810 net_io_q_auth_2(const char *desc, NET_Q_AUTH_2 *q_a, prs_struct *ps, int depth) argument
835 net_io_r_auth_2(const char *desc, NET_R_AUTH_2 *r_a, prs_struct *ps, int depth) argument
878 net_io_q_auth_3(const char *desc, NET_Q_AUTH_3 *q_a, prs_struct *ps, int depth) argument
903 net_io_r_auth_3(const char *desc, NET_R_AUTH_3 *r_a, prs_struct *ps, int depth) argument
953 net_io_q_srv_pwset(const char *desc, NET_Q_SRV_PWSET *q_s, prs_struct *ps, int depth) argument
976 net_io_r_srv_pwset(const char *desc, NET_R_SRV_PWSET *r_s, prs_struct *ps, int depth) argument
1107 net_io_id_info1(const char *desc, NET_ID_INFO_1 *id, prs_struct *ps, int depth) argument
1205 net_io_id_info2(const char *desc, NET_ID_INFO_2 *id, prs_struct *ps, int depth) argument
1291 net_io_id_info_ctr(const char *desc, NET_ID_INFO_CTR **pp_ctr, prs_struct *ps, int depth) argument
1334 smb_io_sam_info(const char *desc, DOM_SAM_INFO *sam, prs_struct *ps, int depth) argument
1498 net_io_user_info3(const char *desc, NET_USER_INFO_3 *usr, prs_struct *ps, int depth, uint16 validation_level) argument
1690 net_io_q_sam_logon(const char *desc, NET_Q_SAM_LOGON *q_l, prs_struct *ps, int depth) argument
1717 net_io_r_sam_logon(const char *desc, NET_R_SAM_LOGON *r_l, prs_struct *ps, int depth) argument
1761 net_io_q_sam_logoff(const char *desc, NET_Q_SAM_LOGOFF *q_l, prs_struct *ps, int depth) argument
1782 net_io_r_sam_logoff(const char *desc, NET_R_SAM_LOGOFF *r_l, prs_struct *ps, int depth) argument
1836 net_io_q_sam_sync(const char *desc, NET_Q_SAM_SYNC * q_s, prs_struct *ps, int depth) argument
1868 net_io_sam_delta_hdr(const char *desc, SAM_DELTA_HDR * delta, prs_struct *ps, int depth) argument
1898 net_io_sam_delta_mod_count(const char *desc, SAM_DELTA_MOD_COUNT *info, prs_struct *ps, int depth) argument
1922 net_io_sam_domain_info(const char *desc, SAM_DOMAIN_INFO * info, prs_struct *ps, int depth) argument
1999 net_io_sam_group_info(const char *desc, SAM_GROUP_INFO * info, prs_struct *ps, int depth) argument
2034 net_io_sam_passwd_info(const char *desc, SAM_PWD * pwd, prs_struct *ps, int depth) argument
2144 net_io_sam_account_info(const char *desc, uint8 sess_key[16], SAM_ACCOUNT_INFO * info, prs_struct *ps, int depth) argument
2335 net_io_sam_group_mem_info(const char *desc, SAM_GROUP_MEM_INFO * info, prs_struct *ps, int depth) argument
2417 net_io_sam_alias_info(const char *desc, SAM_ALIAS_INFO * info, prs_struct *ps, int depth) argument
2453 net_io_sam_alias_mem_info(const char *desc, SAM_ALIAS_MEM_INFO * info, prs_struct *ps, int depth) argument
2524 net_io_sam_policy_info(const char *desc, SAM_DELTA_POLICY *info, prs_struct *ps, int depth) argument
2757 net_io_sam_privs_info(const char *desc, SAM_DELTA_PRIVS *info, prs_struct *ps, int depth) argument
2844 net_io_sam_delta_ctr(const char *desc, uint8 sess_key[16], SAM_DELTA_CTR * delta, uint16 type, prs_struct *ps, int depth) argument
2922 net_io_r_sam_sync(const char *desc, uint8 sess_key[16], NET_R_SAM_SYNC * r_s, prs_struct *ps, int depth) argument
3029 net_io_q_sam_deltas(const char *desc, NET_Q_SAM_DELTAS *q_s, prs_struct *ps, int depth) argument
3058 net_io_r_sam_deltas(const char *desc, uint8 sess_key[16], NET_R_SAM_DELTAS *r_s, prs_struct *ps, int depth) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libads/
H A Dauthdata.c47 prs_struct *ps, int depth)
52 prs_debug(ps, depth, desc, "pac_io_unknown_type_10");
55 if (!smb_io_time("unknown_time", &type_10->unknown_time, ps, depth))
58 if (!prs_uint16("len", ps, depth, &type_10->len))
61 if (UNMARSHALLING(ps) && type_10->len) {
62 type_10->username = PRS_ALLOC_MEM(ps, uint16, type_10->len);
69 if (!prs_uint16s(True, "name", ps, depth, type_10->username,
79 prs_struct *ps, int depth)
84 prs_debug(ps, depth, desc, "pac_io_krb_sids");
87 if (UNMARSHALLING(ps)) {
46 pac_io_unknown_type_10(const char *desc, UNKNOWN_TYPE_10 *type_10, prs_struct *ps, int depth) argument
78 pac_io_krb_sids(const char *desc, KRB_SID_AND_ATTRS *sid_and_attr, prs_struct *ps, int depth) argument
102 pac_io_krb_attrs(const char *desc, KRB_SID_AND_ATTRS *sid_and_attr, prs_struct *ps, int depth) argument
119 pac_io_krb_sid_and_attr_array(const char *desc, KRB_SID_AND_ATTR_ARRAY *array, uint32 num, prs_struct *ps, int depth) argument
163 pac_io_group_membership(const char *desc, GROUP_MEMBERSHIP *membership, prs_struct *ps, int depth) argument
182 pac_io_group_membership_array(const char *desc, GROUP_MEMBERSHIP_ARRAY *array, uint32 num, prs_struct *ps, int depth) argument
219 pac_io_pac_logon_info(const char *desc, PAC_LOGON_INFO *info, prs_struct *ps, int depth) argument
409 pac_io_pac_signature_data(const char *desc, PAC_SIGNATURE_DATA *data, uint32 length, prs_struct *ps, int depth) argument
435 pac_io_pac_info_hdr_ctr(const char *desc, PAC_INFO_HDR *hdr, prs_struct *ps, int depth) argument
524 pac_io_pac_info_hdr(const char *desc, PAC_INFO_HDR *hdr, prs_struct *ps, int depth) argument
547 pac_io_pac_data(const char *desc, PAC_DATA *data, prs_struct *ps, int depth) argument
589 prs_struct ps; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/utils/
H A Drpccheck.c30 prs_struct ps; local
44 prs_init(&ps, 1600, 4, ctx, MARSHALL);
49 if(!prs_append_data(&ps, &d, 1))
54 prs_switch_type(&ps, UNMARSHALL);
55 prs_set_offset(&ps, 0);
58 if(!samr_io_r_query_userinfo("", &rpc_stub, &ps, 0))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc/
H A Dide.h41 u16 *ps = dst; local
46 if(((unsigned long)ps) & 0x2) {
47 *ps++ = *data_port;
50 pi = (u32 *)ps;
59 ps = (u16 *)pi;
61 *ps++ = *data_port;
72 const u16 *ps = src; local
78 *data_port = *ps++;
81 pi = (const u32 *)ps;
90 ps
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/lib/
H A DPeeCeeI.c24 u16 *ps = (u16 *)src; local
28 u16 val = le16_to_cpup(ps);
30 ps++;
33 pi = (u32 *)ps;
42 ps = (u16 *)pi;
44 u16 val = le16_to_cpup(ps);
64 u16 *ps = (u16 *)src; local
71 l = cpu_to_le16p(ps) << 16;
72 ps++;
73 pi = (u32 *)ps;
159 u16 *ps = dst; local
192 u16 *ps; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/scripts/
H A Dipv6-down.sample19 if ps h "$PID" >/dev/null 2>&1; then
22 if ps h "$PID" >/dev/null 2>&1; then
24 if ps h "$PID" >/dev/null 2>&1; then
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/docs_src/images/
H A DMakefile3 COPY= api.gif next.gif prev.gif ps.gif ref.gif

Completed in 275 milliseconds

1234567891011>>