out 121 lib/crypto/md4.c out[0] = x&0xFF;
out 122 lib/crypto/md4.c out[1] = (x>>8)&0xFF;
out 123 lib/crypto/md4.c out[2] = (x>>16)&0xFF;
out 124 lib/crypto/md4.c out[3] = (x>>24)&0xFF;
out 171 lib/crypto/md4.c copy4(out, state.A);
out 172 lib/crypto/md4.c copy4(out+4, state.B);
out 173 lib/crypto/md4.c copy4(out+8, state.C);
out 174 lib/crypto/md4.c copy4(out+12, state.D);
out 232 lib/popt/popthelp.c if (!*left) goto out;
out 323 lib/popt/popthelp.c goto out;
out 355 lib/popt/popthelp.c out:
out 144 lib/replace/getpass.c FILE *in, *out;
out 159 lib/replace/getpass.c out = stderr;
out 161 lib/replace/getpass.c out = in;
out 181 lib/replace/getpass.c fputs(prompt, out);
out 182 lib/replace/getpass.c fflush(out);
out 207 lib/replace/getpass.c fprintf(out, "\n");
out 208 lib/replace/getpass.c fflush(out);
out 163 lib/tdb/common/traverse.c goto out;
out 166 lib/tdb/common/traverse.c goto out;
out 176 lib/tdb/common/traverse.c goto out;
out 186 lib/tdb/common/traverse.c goto out;
out 190 lib/tdb/common/traverse.c out:
out 94 lib/util/charset/tests/iconv.c uint8_t out[4];
out 101 lib/util/charset/tests/iconv.c ptr_out = (char *)out;
out 102 lib/util/charset/tests/iconv.c size_out = sizeof(out);
out 103 lib/util/charset/tests/iconv.c memset(out, 0, sizeof(out));
out 109 lib/util/charset/tests/iconv.c return out[0] | (out[1]<<8) | (out[2]<<16) | (out[3]<<24);
out 236 lib/util/genrand.c if(urand_fd != -1 && (read(urand_fd, out, len) == len)) {
out 252 lib/util/genrand.c p = out;
out 273 lib/util/genrand.c if(urand_fd != -1 && (read(urand_fd, out, len) == len)) {
out 277 lib/util/genrand.c generate_random_buffer(out, len);
out 52 lib/zlib/contrib/blast/blast.c unsigned char out[MAXWIN]; /* output buffer and sliding window */
out 341 lib/zlib/contrib/blast/blast.c to = s->out + s->next;
out 356 lib/zlib/contrib/blast/blast.c if (s->outfun(s->outhow, s->out, s->next)) return 1;
out 365 lib/zlib/contrib/blast/blast.c s->out[s->next++] = symbol;
out 367 lib/zlib/contrib/blast/blast.c if (s->outfun(s->outhow, s->out, s->next)) return 1;
out 402 lib/zlib/contrib/blast/blast.c if (err != 1 && s.next && s.outfun(s.outhow, s.out, s.next) && err == 0)
out 183 lib/zlib/contrib/infback9/infback9.c if (out(out_desc, put, (unsigned)left)) { \
out 578 lib/zlib/contrib/infback9/infback9.c if (out(out_desc, window, (unsigned)(WSIZE - left)))
out 83 lib/zlib/contrib/inflate86/inffas86.c /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */
out 112 lib/zlib/contrib/inflate86/inffas86.c ar.out = strm->next_out;
out 113 lib/zlib/contrib/inflate86/inffas86.c ar.beg = ar.out - (start - strm->avail_out);
out 114 lib/zlib/contrib/inflate86/inffas86.c ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
out 1146 lib/zlib/contrib/inflate86/inffas86.c strm->next_out = ar.out;
out 1150 lib/zlib/contrib/inflate86/inffas86.c strm->avail_out = (unsigned)(ar.out < ar.end ?
out 1151 lib/zlib/contrib/inflate86/inffas86.c PAD_AVAIL_OUT + (ar.end - ar.out) :
out 1152 lib/zlib/contrib/inflate86/inffas86.c PAD_AVAIL_OUT - (ar.out - ar.end));
out 8 lib/zlib/contrib/iostream/test.cpp gzofstream os( 1, ios::out );
out 34 lib/zlib/contrib/iostream/zfstream.cpp mode = ios::out;
out 44 lib/zlib/contrib/iostream/zfstream.cpp if ( io_mode & (ios::out|ios::app )) {
out 76 lib/zlib/contrib/iostream/zfstream.cpp mode = ios::out;
out 86 lib/zlib/contrib/iostream/zfstream.cpp if ( io_mode & (ios::out|ios::app )) {
out 175 lib/zlib/contrib/iostream/zfstream.cpp if ( !is_open() || !(mode & ios::out) )
out 85 lib/zlib/contrib/iostream/zfstream.h gzofstream( const char *name, int io_mode = ios::out );
out 86 lib/zlib/contrib/iostream/zfstream.h gzofstream( int fd, int io_mode = ios::out );
out 9 lib/zlib/contrib/iostream2/zstream_test.cpp ozstream out("temp.gz");
out 10 lib/zlib/contrib/iostream2/zstream_test.cpp out < "This works well" < h < g;
out 11 lib/zlib/contrib/iostream2/zstream_test.cpp out.close();
out 19 lib/zlib/contrib/iostream2/zstream_test.cpp out.open("temp.gz"); // try ascii output; zcat temp.gz to see the results
out 20 lib/zlib/contrib/iostream2/zstream_test.cpp out << setw(50) << setfill('#') << setprecision(20) << x << endl << y << endl << z << endl;
out 21 lib/zlib/contrib/iostream2/zstream_test.cpp out << z << endl << y << endl << x << endl;
out 22 lib/zlib/contrib/iostream2/zstream_test.cpp out << 1.1234567890123456789 << endl;
out 58 lib/zlib/contrib/iostream3/zfstream.cc if ((mode & std::ios_base::in) && (mode & std::ios_base::out))
out 86 lib/zlib/contrib/iostream3/zfstream.cc if ((mode & std::ios_base::in) && (mode & std::ios_base::out))
out 136 lib/zlib/contrib/iostream3/zfstream.cc bool testo = mode & std::ios_base::out;
out 234 lib/zlib/contrib/iostream3/zfstream.cc if (!this->is_open() || !(io_mode & std::ios_base::out))
out 247 lib/zlib/contrib/iostream3/zfstream.cc if (!this->is_open() || !(io_mode & std::ios_base::out))
out 456 lib/zlib/contrib/iostream3/zfstream.cc if (!sb.open(name, mode | std::ios_base::out))
out 467 lib/zlib/contrib/iostream3/zfstream.cc if (!sb.attach(fd, mode | std::ios_base::out))
out 336 lib/zlib/contrib/iostream3/zfstream.h std::ios_base::openmode mode = std::ios_base::out);
out 345 lib/zlib/contrib/iostream3/zfstream.h std::ios_base::openmode mode = std::ios_base::out);
out 375 lib/zlib/contrib/iostream3/zfstream.h std::ios_base::openmode mode = std::ios_base::out);
out 387 lib/zlib/contrib/iostream3/zfstream.h std::ios_base::openmode mode = std::ios_base::out);
out 88 lib/zlib/contrib/masmx64/inffas8664.c /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */
out 129 lib/zlib/contrib/masmx64/inffas8664.c ar.out = strm->next_out;
out 130 lib/zlib/contrib/masmx64/inffas8664.c ar.beg = ar.out - (start - strm->avail_out);
out 131 lib/zlib/contrib/masmx64/inffas8664.c ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
out 174 lib/zlib/contrib/masmx64/inffas8664.c strm->next_out = ar.out;
out 178 lib/zlib/contrib/masmx64/inffas8664.c strm->avail_out = (unsigned)(ar.out < ar.end ?
out 179 lib/zlib/contrib/masmx64/inffas8664.c PAD_AVAIL_OUT + (ar.end - ar.out) :
out 180 lib/zlib/contrib/masmx64/inffas8664.c PAD_AVAIL_OUT - (ar.out - ar.end));
out 85 lib/zlib/contrib/puff/puff.c unsigned char *out; /* output buffer */
out 166 lib/zlib/contrib/puff/puff.c if (s->out != NIL) {
out 170 lib/zlib/contrib/puff/puff.c s->out[s->outcnt++] = s->in[s->incnt++];
out 442 lib/zlib/contrib/puff/puff.c if (s->out != NIL) {
out 444 lib/zlib/contrib/puff/puff.c s->out[s->outcnt] = symbol;
out 462 lib/zlib/contrib/puff/puff.c if (s->out != NIL) {
out 465 lib/zlib/contrib/puff/puff.c s->out[s->outcnt] = s->out[s->outcnt - dist];
out 750 lib/zlib/contrib/puff/puff.c s.out = dest;
out 159 lib/zlib/crc32.c FILE *out;
out 161 lib/zlib/crc32.c out = fopen("crc32.h", "w");
out 162 lib/zlib/crc32.c if (out == NULL) return;
out 163 lib/zlib/crc32.c fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
out 164 lib/zlib/crc32.c fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
out 165 lib/zlib/crc32.c fprintf(out, "local const unsigned long FAR ");
out 166 lib/zlib/crc32.c fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
out 167 lib/zlib/crc32.c write_table(out, crc_table[0]);
out 169 lib/zlib/crc32.c fprintf(out, "#ifdef BYFOUR\n");
out 171 lib/zlib/crc32.c fprintf(out, " },\n {\n");
out 172 lib/zlib/crc32.c write_table(out, crc_table[k]);
out 174 lib/zlib/crc32.c fprintf(out, "#endif\n");
out 176 lib/zlib/crc32.c fprintf(out, " }\n};\n");
out 177 lib/zlib/crc32.c fclose(out);
out 190 lib/zlib/crc32.c fprintf(out, "%s0x%08lxUL%s", n % 5 ? "" : " ", table[n],
out 276 lib/zlib/examples/gun.c if (outcnt && out(&outd, outbuf, outcnt)) {
out 346 lib/zlib/examples/gun.c if (out(&outd, outbuf, outcnt)) {
out 466 lib/zlib/examples/gun.c ret = inflateBack(strm, in, indp, out, &outd);
out 390 lib/zlib/examples/gzappend.c unsigned char *in, *out;
out 403 lib/zlib/examples/gzappend.c out = malloc(CHUNK);
out 404 lib/zlib/examples/gzappend.c if (out == NULL) bye("out of memory", "");
out 423 lib/zlib/examples/gzappend.c strm->next_out = out;
out 427 lib/zlib/examples/gzappend.c len = write(gd, out + CHUNK - strm->avail_out - left, left);
out 437 lib/zlib/examples/gzappend.c out[0] = (unsigned char)(strm->adler);
out 438 lib/zlib/examples/gzappend.c out[1] = (unsigned char)(strm->adler >> 8);
out 439 lib/zlib/examples/gzappend.c out[2] = (unsigned char)(strm->adler >> 16);
out 440 lib/zlib/examples/gzappend.c out[3] = (unsigned char)(strm->adler >> 24);
out 441 lib/zlib/examples/gzappend.c out[4] = (unsigned char)(strm->total_in);
out 442 lib/zlib/examples/gzappend.c out[5] = (unsigned char)(strm->total_in >> 8);
out 443 lib/zlib/examples/gzappend.c out[6] = (unsigned char)(strm->total_in >> 16);
out 444 lib/zlib/examples/gzappend.c out[7] = (unsigned char)(strm->total_in >> 24);
out 447 lib/zlib/examples/gzappend.c ret = write(gd, out + 8 - len, len);
out 455 lib/zlib/examples/gzappend.c free(out);
out 246 lib/zlib/examples/gzjoin.c putc(val & 0xff, out);
out 247 lib/zlib/examples/gzjoin.c putc((val >> 8) & 0xff, out);
out 248 lib/zlib/examples/gzjoin.c putc((val >> 16) & 0xff, out);
out 249 lib/zlib/examples/gzjoin.c putc((val >> 24) & 0xff, out);
out 266 lib/zlib/examples/gzjoin.c fwrite("\x1f\x8b\x08\0\0\0\0\0\0\xff", 1, 10, out);
out 319 lib/zlib/examples/gzjoin.c fwrite(start, 1, strm.next_in - start, out);
out 360 lib/zlib/examples/gzjoin.c fwrite(start, 1, strm.next_in - start, out);
out 378 lib/zlib/examples/gzjoin.c fwrite(start, 1, in->next - start - 1, out);
out 382 lib/zlib/examples/gzjoin.c putc(last, out);
out 388 lib/zlib/examples/gzjoin.c putc(last, out);
out 390 lib/zlib/examples/gzjoin.c putc(0, out); /* two more bits in block header */
out 391 lib/zlib/examples/gzjoin.c fwrite("\0\0\xff\xff", 1, 4, out);
out 397 lib/zlib/examples/gzjoin.c putc(last | 8, out);
out 400 lib/zlib/examples/gzjoin.c putc(last | 0x20, out);
out 403 lib/zlib/examples/gzjoin.c putc(last | 0x80, out);
out 404 lib/zlib/examples/gzjoin.c putc(0, out);
out 420 lib/zlib/examples/gzjoin.c put4(*crc, out);
out 421 lib/zlib/examples/gzjoin.c put4(*tot, out);
out 272 lib/zlib/examples/gzlog.c unsigned char *out;
out 278 lib/zlib/examples/gzlog.c out = malloc(max);
out 279 lib/zlib/examples/gzlog.c if (out == NULL)
out 283 lib/zlib/examples/gzlog.c free(out);
out 289 lib/zlib/examples/gzlog.c free(out);
out 302 lib/zlib/examples/gzlog.c free(out);
out 307 lib/zlib/examples/gzlog.c strm.next_out = out;
out 327 lib/zlib/examples/gzlog.c free(out);
out 334 lib/zlib/examples/gzlog.c if (write(log->fd, out, len) != len) {
out 335 lib/zlib/examples/gzlog.c free(out);
out 338 lib/zlib/examples/gzlog.c free(out);
out 32 lib/zlib/examples/zpipe.c char out[CHUNK];
out 56 lib/zlib/examples/zpipe.c strm.next_out = out;
out 60 lib/zlib/examples/zpipe.c if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
out 88 lib/zlib/examples/zpipe.c char out[CHUNK];
out 114 lib/zlib/examples/zpipe.c strm.next_out = out;
out 126 lib/zlib/examples/zpipe.c if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
out 63 lib/zlib/examples/zran.c off_t out; /* corresponding offset in uncompressed data */
out 120 lib/zlib/examples/zran.c next->out = out;
out 260 lib/zlib/examples/zran.c while (--ret && here[1].out <= offset)
out 286 lib/zlib/examples/zran.c offset -= here->out;
out 390 lib/zlib/examples/zran.c offset = (index->list[index->have - 1].out << 1) / 3;
out 68 lib/zlib/gzio.c z_off_t out; /* bytes out of deflate or inflate */
out 119 lib/zlib/gzio.c s->out = 0;
out 415 lib/zlib/gzio.c s->out++;
out 443 lib/zlib/gzio.c s->out += len;
out 461 lib/zlib/gzio.c s->out += s->stream.avail_out;
out 464 lib/zlib/gzio.c s->out -= s->stream.avail_out;
out 521 lib/zlib/gzio.c s->out--;
out 581 lib/zlib/gzio.c s->out += s->stream.avail_out;
out 584 lib/zlib/gzio.c s->out -= s->stream.avail_out;
out 727 lib/zlib/gzio.c s->out += s->stream.avail_out;
out 729 lib/zlib/gzio.c s->out -= s->stream.avail_out;
out 808 lib/zlib/gzio.c offset += s->out;
out 819 lib/zlib/gzio.c s->in = s->out = offset;
out 824 lib/zlib/gzio.c if (offset >= s->out) {
out 825 lib/zlib/gzio.c offset -= s->out;
out 837 lib/zlib/gzio.c s->out++;
out 849 lib/zlib/gzio.c return s->out;
out 870 lib/zlib/gzio.c s->out = 0;
out 207 lib/zlib/infback.c if (out(out_desc, put, left)) { \
out 593 lib/zlib/infback.c if (out(out_desc, state->window, state->wsize - left))
out 74 lib/zlib/inffast.c unsigned char FAR *out; /* local strm->next_out */
out 101 lib/zlib/inffast.c out = strm->next_out - OFF;
out 102 lib/zlib/inffast.c beg = out - (start - strm->avail_out);
out 103 lib/zlib/inffast.c end = out + (strm->avail_out - 257);
out 137 lib/zlib/inffast.c PUP(out) = (unsigned char)(this.val);
out 186 lib/zlib/inffast.c op = (unsigned)(out - beg); /* max distance in output */
out 200 lib/zlib/inffast.c PUP(out) = PUP(from);
out 202 lib/zlib/inffast.c from = out - dist; /* rest from output */
out 211 lib/zlib/inffast.c PUP(out) = PUP(from);
out 218 lib/zlib/inffast.c PUP(out) = PUP(from);
out 220 lib/zlib/inffast.c from = out - dist; /* rest from output */
out 229 lib/zlib/inffast.c PUP(out) = PUP(from);
out 231 lib/zlib/inffast.c from = out - dist; /* rest from output */
out 235 lib/zlib/inffast.c PUP(out) = PUP(from);
out 236 lib/zlib/inffast.c PUP(out) = PUP(from);
out 237 lib/zlib/inffast.c PUP(out) = PUP(from);
out 241 lib/zlib/inffast.c PUP(out) = PUP(from);
out 243 lib/zlib/inffast.c PUP(out) = PUP(from);
out 247 lib/zlib/inffast.c from = out - dist; /* copy direct from output */
out 249 lib/zlib/inffast.c PUP(out) = PUP(from);
out 250 lib/zlib/inffast.c PUP(out) = PUP(from);
out 251 lib/zlib/inffast.c PUP(out) = PUP(from);
out 255 lib/zlib/inffast.c PUP(out) = PUP(from);
out 257 lib/zlib/inffast.c PUP(out) = PUP(from);
out 285 lib/zlib/inffast.c } while (in < last && out < end);
out 295 lib/zlib/inffast.c strm->next_out = out + OFF;
out 297 lib/zlib/inffast.c strm->avail_out = (unsigned)(out < end ?
out 298 lib/zlib/inffast.c 257 + (end - out) : 257 - (out - end));
out 348 lib/zlib/inflate.c copy = out - strm->avail_out;
out 564 lib/zlib/inflate.c unsigned in, out; /* save starting available input and output */
out 585 lib/zlib/inflate.c out = left;
out 953 lib/zlib/inflate.c inflate_fast(strm, out);
out 1039 lib/zlib/inflate.c if (state->offset > state->whave + out - left) {
out 1048 lib/zlib/inflate.c copy = out - left;
out 1080 lib/zlib/inflate.c out -= left;
out 1081 lib/zlib/inflate.c strm->total_out += out;
out 1082 lib/zlib/inflate.c state->total += out;
out 1083 lib/zlib/inflate.c if (out)
out 1085 lib/zlib/inflate.c UPDATE(state->check, put - out, out);
out 1086 lib/zlib/inflate.c out = left;
out 1135 lib/zlib/inflate.c if (state->wsize || (state->mode < CHECK && out != strm->avail_out))
out 1136 lib/zlib/inflate.c if (updatewindow(strm, out)) {
out 1141 lib/zlib/inflate.c out -= strm->avail_out;
out 1143 lib/zlib/inflate.c strm->total_out += out;
out 1144 lib/zlib/inflate.c state->total += out;
out 1145 lib/zlib/inflate.c if (state->wrap && out)
out 1147 lib/zlib/inflate.c UPDATE(state->check, strm->next_out - out, out);
out 1150 lib/zlib/inflate.c if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
out 1266 lib/zlib/inflate.c unsigned long in, out; /* temporary to save total_in and total_out */
out 1298 lib/zlib/inflate.c in = strm->total_in; out = strm->total_out;
out 1300 lib/zlib/inflate.c strm->total_in = in; strm->total_out = out;
out 110 lib/zlib/minigzip.c if (gz_compress_mmap(in, out) == Z_OK) return;
out 120 lib/zlib/minigzip.c if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
out 123 lib/zlib/minigzip.c if (gzclose(out) != Z_OK) error("failed gzclose");
out 152 lib/zlib/minigzip.c len = gzwrite(out, (char *)buf, (unsigned)buf_len);
out 154 lib/zlib/minigzip.c if (len != (int)buf_len) error(gzerror(out, &err));
out 158 lib/zlib/minigzip.c if (gzclose(out) != Z_OK) error("failed gzclose");
out 179 lib/zlib/minigzip.c if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
out 183 lib/zlib/minigzip.c if (fclose(out)) error("failed fclose");
out 199 lib/zlib/minigzip.c gzFile out;
out 209 lib/zlib/minigzip.c out = gzopen(outfile, mode);
out 210 lib/zlib/minigzip.c if (out == NULL) {
out 214 lib/zlib/minigzip.c gz_compress(in, out);
out 228 lib/zlib/minigzip.c FILE *out;
out 248 lib/zlib/minigzip.c out = fopen(outfile, "wb");
out 249 lib/zlib/minigzip.c if (out == NULL) {
out 254 lib/zlib/minigzip.c gz_uncompress(in, out);
out 213 libcli/ldap/ldap_message.h bool (*encode)(void *mem_ctx, void *in, DATA_BLOB *out);
out 144 libcli/nbt/libnbt.h } out;
out 160 libcli/nbt/libnbt.h } out;
out 183 libcli/nbt/libnbt.h } out;
out 213 libcli/nbt/libnbt.h } out;
out 236 libcli/nbt/libnbt.h } out;
out 253 libcli/nbt/libnbt.h } out;
out 274 libcli/nbt/libnbt.h } out;
out 89 libcli/nbt/namequery.c io->out.reply_from = talloc_steal(mem_ctx, req->replies[0].dest->addr);
out 104 libcli/nbt/namequery.c io->out.name = packet->answers[0].name;
out 105 libcli/nbt/namequery.c io->out.num_addrs = packet->answers[0].rdata.netbios.length / 6;
out 106 libcli/nbt/namequery.c io->out.reply_addrs = talloc_array(mem_ctx, const char *, io->out.num_addrs+1);
out 107 libcli/nbt/namequery.c if (io->out.reply_addrs == NULL) {
out 112 libcli/nbt/namequery.c for (i=0;i<io->out.num_addrs;i++) {
out 113 libcli/nbt/namequery.c io->out.reply_addrs[i] = talloc_steal(io->out.reply_addrs,
out 116 libcli/nbt/namequery.c io->out.reply_addrs[i] = NULL;
out 118 libcli/nbt/namequery.c talloc_steal(mem_ctx, io->out.name.name);
out 119 libcli/nbt/namequery.c talloc_steal(mem_ctx, io->out.name.scope);
out 193 libcli/nbt/namequery.c io->out.reply_from = talloc_steal(mem_ctx, req->replies[0].dest->addr);
out 208 libcli/nbt/namequery.c io->out.name = packet->answers[0].name;
out 209 libcli/nbt/namequery.c talloc_steal(mem_ctx, io->out.name.name);
out 210 libcli/nbt/namequery.c talloc_steal(mem_ctx, io->out.name.scope);
out 212 libcli/nbt/namequery.c io->out.status = packet->answers[0].rdata.status;
out 213 libcli/nbt/namequery.c talloc_steal(mem_ctx, io->out.status.names);
out 214 libcli/nbt/namequery.c for (i=0;i<io->out.status.num_names;i++) {
out 215 libcli/nbt/namequery.c talloc_steal(io->out.status.names, io->out.status.names[i].name);
out 103 libcli/nbt/namerefresh.c io->out.reply_from = talloc_steal(mem_ctx, req->replies[0].dest->addr);
out 112 libcli/nbt/namerefresh.c io->out.rcode = packet->operation & NBT_RCODE;
out 113 libcli/nbt/namerefresh.c io->out.name = packet->answers[0].name;
out 118 libcli/nbt/namerefresh.c io->out.reply_addr = talloc_steal(mem_ctx,
out 120 libcli/nbt/namerefresh.c talloc_steal(mem_ctx, io->out.name.name);
out 121 libcli/nbt/namerefresh.c talloc_steal(mem_ctx, io->out.name.scope);
out 192 libcli/nbt/namerefresh.c if (state->io->out.rcode == 0 &&
out 285 libcli/nbt/namerefresh.c io->out.wins_server = talloc_steal(mem_ctx, state->wins_servers[0]);
out 286 libcli/nbt/namerefresh.c io->out.rcode = state->io->out.rcode;
out 111 libcli/nbt/nameregister.c io->out.reply_from = talloc_steal(mem_ctx, req->replies[0].dest->addr);
out 120 libcli/nbt/nameregister.c io->out.rcode = packet->operation & NBT_RCODE;
out 121 libcli/nbt/nameregister.c io->out.name = packet->answers[0].name;
out 126 libcli/nbt/nameregister.c io->out.reply_addr = talloc_steal(mem_ctx,
out 128 libcli/nbt/nameregister.c talloc_steal(mem_ctx, io->out.name.name);
out 129 libcli/nbt/nameregister.c talloc_steal(mem_ctx, io->out.name.scope);
out 194 libcli/nbt/nameregister.c state->io->out.reply_from,
out 195 libcli/nbt/nameregister.c nbt_name_string(state, &state->io->out.name),
out 196 libcli/nbt/nameregister.c state->io->out.reply_addr,
out 197 libcli/nbt/nameregister.c state->io->out.rcode));
out 330 libcli/nbt/nameregister.c if (state->io->out.rcode == 0 &&
out 425 libcli/nbt/nameregister.c io->out.wins_server = talloc_steal(mem_ctx, state->wins_servers[0]);
out 426 libcli/nbt/nameregister.c io->out.rcode = state->io->out.rcode;
out 101 libcli/nbt/namerelease.c io->out.reply_from = talloc_steal(mem_ctx, req->replies[0].dest->addr);
out 110 libcli/nbt/namerelease.c io->out.rcode = packet->operation & NBT_RCODE;
out 111 libcli/nbt/namerelease.c io->out.name = packet->answers[0].name;
out 116 libcli/nbt/namerelease.c io->out.reply_addr = talloc_steal(mem_ctx,
out 118 libcli/nbt/namerelease.c talloc_steal(mem_ctx, io->out.name.name);
out 119 libcli/nbt/namerelease.c talloc_steal(mem_ctx, io->out.name.scope);
out 176 libcli/nbt/pynbt.c PyTuple_SetItem(ret, 0, PyString_FromString(io.out.reply_from));
out 178 libcli/nbt/pynbt.c py_name = PyObject_FromNBTName(node->socket, py_iconv_convenience(node->socket), &io.out.name);
out 184 libcli/nbt/pynbt.c reply_addrs = PyList_New(io.out.num_addrs);
out 190 libcli/nbt/pynbt.c for (i = 0; i < io.out.num_addrs; i++) {
out 191 libcli/nbt/pynbt.c PyList_SetItem(reply_addrs, i, PyString_FromString(io.out.reply_addrs[i]));
out 234 libcli/nbt/pynbt.c PyTuple_SetItem(ret, 0, PyString_FromString(io.out.reply_from));
out 236 libcli/nbt/pynbt.c py_name = PyObject_FromNBTName(node->socket, py_iconv_convenience(NULL), &io.out.name);
out 242 libcli/nbt/pynbt.c py_names = PyList_New(io.out.status.num_names);
out 244 libcli/nbt/pynbt.c for (i = 0; i < io.out.status.num_names; i++) {
out 246 libcli/nbt/pynbt.c io.out.status.names[i].name,
out 247 libcli/nbt/pynbt.c io.out.status.names[i].nb_flags,
out 248 libcli/nbt/pynbt.c io.out.status.names[i].type));
out 297 libcli/nbt/pynbt.c PyTuple_SetItem(ret, 0, PyString_FromString(io.out.reply_from));
out 299 libcli/nbt/pynbt.c py_name = PyObject_FromNBTName(node->socket, py_iconv_convenience(NULL), &io.out.name);
out 305 libcli/nbt/pynbt.c PyTuple_SetItem(ret, 2, PyString_FromString(io.out.reply_addr));
out 307 libcli/nbt/pynbt.c PyTuple_SetItem(ret, 3, PyInt_FromLong(io.out.rcode));
out 352 libcli/nbt/pynbt.c PyTuple_SetItem(ret, 0, PyString_FromString(io.out.reply_from));
out 354 libcli/nbt/pynbt.c py_name = PyObject_FromNBTName(node->socket, py_iconv_convenience(NULL), &io.out.name);
out 360 libcli/nbt/pynbt.c PyTuple_SetItem(ret, 2, PyString_FromString(io.out.reply_addr));
out 362 libcli/nbt/pynbt.c PyTuple_SetItem(ret, 3, PyInt_FromLong(io.out.rcode));
out 125 libcli/nbt/tools/nmblookup.c io.out.reply_from);
out 126 libcli/nbt/tools/nmblookup.c for (i=0;i<io.out.status.num_names;i++) {
out 128 libcli/nbt/tools/nmblookup.c clean_name(nbtsock, io.out.status.names[i].name),
out 129 libcli/nbt/tools/nmblookup.c io.out.status.names[i].type,
out 130 libcli/nbt/tools/nmblookup.c node_status_flags(nbtsock, io.out.status.names[i].nb_flags));
out 133 libcli/nbt/tools/nmblookup.c io.out.status.statistics.unit_id[0],
out 134 libcli/nbt/tools/nmblookup.c io.out.status.statistics.unit_id[1],
out 135 libcli/nbt/tools/nmblookup.c io.out.status.statistics.unit_id[2],
out 136 libcli/nbt/tools/nmblookup.c io.out.status.statistics.unit_id[3],
out 137 libcli/nbt/tools/nmblookup.c io.out.status.statistics.unit_id[4],
out 138 libcli/nbt/tools/nmblookup.c io.out.status.statistics.unit_id[5]);
out 170 libcli/nbt/tools/nmblookup.c for (i=0;i<io.out.num_addrs;i++) {
out 172 libcli/nbt/tools/nmblookup.c io.out.reply_addrs[i],
out 173 libcli/nbt/tools/nmblookup.c io.out.name.name,
out 174 libcli/nbt/tools/nmblookup.c io.out.name.type);
out 176 libcli/nbt/tools/nmblookup.c if (options.node_status && io.out.num_addrs > 0) {
out 177 libcli/nbt/tools/nmblookup.c do_node_status(nbtsock, io.out.reply_addrs[0], port);
out 41 librpc/gen_ndr/cli_dfs.c *version = *r.out.version;
out 92 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 95 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 139 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 142 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 190 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 193 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 237 librpc/gen_ndr/cli_dfs.c *info = *r.out.info;
out 241 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 244 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 287 librpc/gen_ndr/cli_dfs.c if (info && r.out.info) {
out 288 librpc/gen_ndr/cli_dfs.c *info = *r.out.info;
out 290 librpc/gen_ndr/cli_dfs.c if (total && r.out.total) {
out 291 librpc/gen_ndr/cli_dfs.c *total = *r.out.total;
out 296 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 299 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 337 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 340 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 378 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 381 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 419 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 422 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 460 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 463 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 516 librpc/gen_ndr/cli_dfs.c if (unknown2 && r.out.unknown2) {
out 517 librpc/gen_ndr/cli_dfs.c *unknown2 = *r.out.unknown2;
out 522 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 525 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 572 librpc/gen_ndr/cli_dfs.c if (unknown && r.out.unknown) {
out 573 librpc/gen_ndr/cli_dfs.c *unknown = *r.out.unknown;
out 578 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 581 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 627 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 630 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 674 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 677 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 719 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 722 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 768 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 771 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 814 librpc/gen_ndr/cli_dfs.c *server_fullname = *r.out.server_fullname;
out 815 librpc/gen_ndr/cli_dfs.c *is_root = *r.out.is_root;
out 816 librpc/gen_ndr/cli_dfs.c *ttl = *r.out.ttl;
out 820 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 823 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 869 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 872 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 914 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 917 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 955 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 958 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 996 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 999 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 1044 librpc/gen_ndr/cli_dfs.c if (info && r.out.info) {
out 1045 librpc/gen_ndr/cli_dfs.c *info = *r.out.info;
out 1047 librpc/gen_ndr/cli_dfs.c if (total && r.out.total) {
out 1048 librpc/gen_ndr/cli_dfs.c *total = *r.out.total;
out 1053 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 1056 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 1094 librpc/gen_ndr/cli_dfs.c *werror = r.out.result;
out 1097 librpc/gen_ndr/cli_dfs.c return werror_to_ntstatus(r.out.result);
out 46 librpc/gen_ndr/cli_drsuapi.c if (bind_info && r.out.bind_info) {
out 47 librpc/gen_ndr/cli_drsuapi.c *bind_info = *r.out.bind_info;
out 49 librpc/gen_ndr/cli_drsuapi.c *bind_handle = *r.out.bind_handle;
out 53 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 56 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 93 librpc/gen_ndr/cli_drsuapi.c *bind_handle = *r.out.bind_handle;
out 97 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 100 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 144 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 147 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 190 librpc/gen_ndr/cli_drsuapi.c *level_out = *r.out.level_out;
out 191 librpc/gen_ndr/cli_drsuapi.c *ctr = *r.out.ctr;
out 195 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 198 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 242 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 245 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 283 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 286 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 324 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 327 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 365 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 368 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 406 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 409 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 452 librpc/gen_ndr/cli_drsuapi.c *level_out = *r.out.level_out;
out 453 librpc/gen_ndr/cli_drsuapi.c *ctr = *r.out.ctr;
out 457 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 460 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 498 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 501 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 544 librpc/gen_ndr/cli_drsuapi.c *level_out = *r.out.level_out;
out 545 librpc/gen_ndr/cli_drsuapi.c *info = *r.out.info;
out 549 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 552 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 595 librpc/gen_ndr/cli_drsuapi.c *level_out = *r.out.level_out;
out 596 librpc/gen_ndr/cli_drsuapi.c *ctr = *r.out.ctr;
out 600 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 603 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 646 librpc/gen_ndr/cli_drsuapi.c *level_out = *r.out.level_out;
out 647 librpc/gen_ndr/cli_drsuapi.c *res = *r.out.res;
out 651 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 654 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 697 librpc/gen_ndr/cli_drsuapi.c *level_out = *r.out.level_out;
out 698 librpc/gen_ndr/cli_drsuapi.c *res = *r.out.res;
out 702 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 705 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 743 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 746 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 789 librpc/gen_ndr/cli_drsuapi.c *level_out = *r.out.level_out;
out 790 librpc/gen_ndr/cli_drsuapi.c *ctr = *r.out.ctr;
out 794 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 797 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 840 librpc/gen_ndr/cli_drsuapi.c *level_out = *r.out.level_out;
out 841 librpc/gen_ndr/cli_drsuapi.c *ctr = *r.out.ctr;
out 845 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 848 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 886 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 889 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 932 librpc/gen_ndr/cli_drsuapi.c *info_type = *r.out.info_type;
out 933 librpc/gen_ndr/cli_drsuapi.c *info = *r.out.info;
out 937 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 940 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 978 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 981 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 1024 librpc/gen_ndr/cli_drsuapi.c *level_out = *r.out.level_out;
out 1025 librpc/gen_ndr/cli_drsuapi.c *ctr = *r.out.ctr;
out 1029 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 1032 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 1070 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 1073 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 1111 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 1114 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 1157 librpc/gen_ndr/cli_drsuapi.c *level_out = *r.out.level_out;
out 1158 librpc/gen_ndr/cli_drsuapi.c *ctr = *r.out.ctr;
out 1162 librpc/gen_ndr/cli_drsuapi.c *werror = r.out.result;
out 1165 librpc/gen_ndr/cli_drsuapi.c return werror_to_ntstatus(r.out.result);
out 44 librpc/gen_ndr/cli_dssetup.c if (info && r.out.info) {
out 45 librpc/gen_ndr/cli_dssetup.c *info = *r.out.info;
out 50 librpc/gen_ndr/cli_dssetup.c *werror = r.out.result;
out 53 librpc/gen_ndr/cli_dssetup.c return werror_to_ntstatus(r.out.result);
out 91 librpc/gen_ndr/cli_dssetup.c *werror = r.out.result;
out 94 librpc/gen_ndr/cli_dssetup.c return werror_to_ntstatus(r.out.result);
out 132 librpc/gen_ndr/cli_dssetup.c *werror = r.out.result;
out 135 librpc/gen_ndr/cli_dssetup.c return werror_to_ntstatus(r.out.result);
out 173 librpc/gen_ndr/cli_dssetup.c *werror = r.out.result;
out 176 librpc/gen_ndr/cli_dssetup.c return werror_to_ntstatus(r.out.result);
out 214 librpc/gen_ndr/cli_dssetup.c *werror = r.out.result;
out 217 librpc/gen_ndr/cli_dssetup.c return werror_to_ntstatus(r.out.result);
out 255 librpc/gen_ndr/cli_dssetup.c *werror = r.out.result;
out 258 librpc/gen_ndr/cli_dssetup.c return werror_to_ntstatus(r.out.result);
out 296 librpc/gen_ndr/cli_dssetup.c *werror = r.out.result;
out 299 librpc/gen_ndr/cli_dssetup.c return werror_to_ntstatus(r.out.result);
out 337 librpc/gen_ndr/cli_dssetup.c *werror = r.out.result;
out 340 librpc/gen_ndr/cli_dssetup.c return werror_to_ntstatus(r.out.result);
out 378 librpc/gen_ndr/cli_dssetup.c *werror = r.out.result;
out 381 librpc/gen_ndr/cli_dssetup.c return werror_to_ntstatus(r.out.result);
out 419 librpc/gen_ndr/cli_dssetup.c *werror = r.out.result;
out 422 librpc/gen_ndr/cli_dssetup.c return werror_to_ntstatus(r.out.result);
out 460 librpc/gen_ndr/cli_dssetup.c *werror = r.out.result;
out 463 librpc/gen_ndr/cli_dssetup.c return werror_to_ntstatus(r.out.result);
out 43 librpc/gen_ndr/cli_echo.c *out_data = *r.out.out_data;
out 85 librpc/gen_ndr/cli_echo.c memcpy(out_data, r.out.out_data, r.in.len * sizeof(*out_data));
out 165 librpc/gen_ndr/cli_echo.c memcpy(data, r.out.data, r.in.len * sizeof(*data));
out 205 librpc/gen_ndr/cli_echo.c *s2 = *r.out.s2;
out 245 librpc/gen_ndr/cli_echo.c *info = *r.out.info;
out 248 librpc/gen_ndr/cli_echo.c return r.out.result;
out 326 librpc/gen_ndr/cli_echo.c *foo1 = *r.out.foo1;
out 327 librpc/gen_ndr/cli_echo.c *foo2 = *r.out.foo2;
out 328 librpc/gen_ndr/cli_echo.c *foo3 = *r.out.foo3;
out 367 librpc/gen_ndr/cli_echo.c *data = *r.out.data;
out 136 librpc/gen_ndr/cli_epmapper.c *entry_handle = *r.out.entry_handle;
out 137 librpc/gen_ndr/cli_epmapper.c *num_ents = *r.out.num_ents;
out 138 librpc/gen_ndr/cli_epmapper.c memcpy(entries, r.out.entries, r.in.max_ents * sizeof(*entries));
out 185 librpc/gen_ndr/cli_epmapper.c *entry_handle = *r.out.entry_handle;
out 186 librpc/gen_ndr/cli_epmapper.c *num_towers = *r.out.num_towers;
out 187 librpc/gen_ndr/cli_epmapper.c memcpy(towers, r.out.towers, r.in.max_towers * sizeof(*towers));
out 226 librpc/gen_ndr/cli_epmapper.c *entry_handle = *r.out.entry_handle;
out 46 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 86 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 122 librpc/gen_ndr/cli_eventlog.c *handle = *r.out.handle;
out 125 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 161 librpc/gen_ndr/cli_eventlog.c *handle = *r.out.handle;
out 164 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 201 librpc/gen_ndr/cli_eventlog.c *number = *r.out.number;
out 204 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 241 librpc/gen_ndr/cli_eventlog.c *oldest_entry = *r.out.oldest_entry;
out 244 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 280 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 325 librpc/gen_ndr/cli_eventlog.c *handle = *r.out.handle;
out 328 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 373 librpc/gen_ndr/cli_eventlog.c *log_handle = *r.out.log_handle;
out 376 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 419 librpc/gen_ndr/cli_eventlog.c *handle = *r.out.handle;
out 422 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 467 librpc/gen_ndr/cli_eventlog.c memcpy(data, r.out.data, r.in.number_of_bytes * sizeof(*data));
out 468 librpc/gen_ndr/cli_eventlog.c *sent_size = *r.out.sent_size;
out 469 librpc/gen_ndr/cli_eventlog.c *real_size = *r.out.real_size;
out 472 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 534 librpc/gen_ndr/cli_eventlog.c if (record_number && r.out.record_number) {
out 535 librpc/gen_ndr/cli_eventlog.c *record_number = *r.out.record_number;
out 537 librpc/gen_ndr/cli_eventlog.c if (time_written && r.out.time_written) {
out 538 librpc/gen_ndr/cli_eventlog.c *time_written = *r.out.time_written;
out 542 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 578 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 614 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 650 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 686 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 722 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 758 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 794 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 830 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 866 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 902 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 944 librpc/gen_ndr/cli_eventlog.c memcpy(buffer, r.out.buffer, r.in.buf_size * sizeof(*buffer));
out 945 librpc/gen_ndr/cli_eventlog.c *bytes_needed = *r.out.bytes_needed;
out 948 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 986 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 1050 librpc/gen_ndr/cli_eventlog.c if (record_number && r.out.record_number) {
out 1051 librpc/gen_ndr/cli_eventlog.c *record_number = *r.out.record_number;
out 1053 librpc/gen_ndr/cli_eventlog.c if (time_written && r.out.time_written) {
out 1054 librpc/gen_ndr/cli_eventlog.c *time_written = *r.out.time_written;
out 1058 librpc/gen_ndr/cli_eventlog.c return r.out.result;
out 54 librpc/gen_ndr/cli_initshutdown.c *werror = r.out.result;
out 57 librpc/gen_ndr/cli_initshutdown.c return werror_to_ntstatus(r.out.result);
out 97 librpc/gen_ndr/cli_initshutdown.c *werror = r.out.result;
out 100 librpc/gen_ndr/cli_initshutdown.c return werror_to_ntstatus(r.out.result);
out 150 librpc/gen_ndr/cli_initshutdown.c *werror = r.out.result;
out 153 librpc/gen_ndr/cli_initshutdown.c return werror_to_ntstatus(r.out.result);
out 42 librpc/gen_ndr/cli_lsa.c *handle = *r.out.handle;
out 45 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 83 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 124 librpc/gen_ndr/cli_lsa.c *resume_handle = *r.out.resume_handle;
out 125 librpc/gen_ndr/cli_lsa.c *privs = *r.out.privs;
out 128 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 167 librpc/gen_ndr/cli_lsa.c *sdbuf = *r.out.sdbuf;
out 170 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 212 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 248 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 289 librpc/gen_ndr/cli_lsa.c *handle = *r.out.handle;
out 292 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 331 librpc/gen_ndr/cli_lsa.c *info = *r.out.info;
out 334 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 376 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 412 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 453 librpc/gen_ndr/cli_lsa.c *acct_handle = *r.out.acct_handle;
out 456 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 497 librpc/gen_ndr/cli_lsa.c *resume_handle = *r.out.resume_handle;
out 498 librpc/gen_ndr/cli_lsa.c *sids = *r.out.sids;
out 501 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 542 librpc/gen_ndr/cli_lsa.c *trustdom_handle = *r.out.trustdom_handle;
out 545 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 586 librpc/gen_ndr/cli_lsa.c *resume_handle = *r.out.resume_handle;
out 587 librpc/gen_ndr/cli_lsa.c *domains = *r.out.domains;
out 590 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 637 librpc/gen_ndr/cli_lsa.c *domains = *r.out.domains;
out 638 librpc/gen_ndr/cli_lsa.c *sids = *r.out.sids;
out 639 librpc/gen_ndr/cli_lsa.c *count = *r.out.count;
out 642 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 687 librpc/gen_ndr/cli_lsa.c *domains = *r.out.domains;
out 688 librpc/gen_ndr/cli_lsa.c *names = *r.out.names;
out 689 librpc/gen_ndr/cli_lsa.c *count = *r.out.count;
out 692 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 733 librpc/gen_ndr/cli_lsa.c *sec_handle = *r.out.sec_handle;
out 736 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 777 librpc/gen_ndr/cli_lsa.c *acct_handle = *r.out.acct_handle;
out 780 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 817 librpc/gen_ndr/cli_lsa.c *privs = *r.out.privs;
out 820 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 860 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 902 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 938 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 974 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1011 librpc/gen_ndr/cli_lsa.c *access_mask = *r.out.access_mask;
out 1014 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1054 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1095 librpc/gen_ndr/cli_lsa.c *trustdom_handle = *r.out.trustdom_handle;
out 1098 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1137 librpc/gen_ndr/cli_lsa.c *info = *r.out.info;
out 1140 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1182 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1223 librpc/gen_ndr/cli_lsa.c *sec_handle = *r.out.sec_handle;
out 1226 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1268 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1312 librpc/gen_ndr/cli_lsa.c if (new_val && r.out.new_val) {
out 1313 librpc/gen_ndr/cli_lsa.c *new_val = *r.out.new_val;
out 1315 librpc/gen_ndr/cli_lsa.c if (new_mtime && r.out.new_mtime) {
out 1316 librpc/gen_ndr/cli_lsa.c *new_mtime = *r.out.new_mtime;
out 1318 librpc/gen_ndr/cli_lsa.c if (old_val && r.out.old_val) {
out 1319 librpc/gen_ndr/cli_lsa.c *old_val = *r.out.old_val;
out 1321 librpc/gen_ndr/cli_lsa.c if (old_mtime && r.out.old_mtime) {
out 1322 librpc/gen_ndr/cli_lsa.c *old_mtime = *r.out.old_mtime;
out 1326 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1365 librpc/gen_ndr/cli_lsa.c *luid = *r.out.luid;
out 1368 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1407 librpc/gen_ndr/cli_lsa.c *name = *r.out.name;
out 1410 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1454 librpc/gen_ndr/cli_lsa.c *disp_name = *r.out.disp_name;
out 1455 librpc/gen_ndr/cli_lsa.c *returned_language_id = *r.out.returned_language_id;
out 1458 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1494 librpc/gen_ndr/cli_lsa.c *handle = *r.out.handle;
out 1497 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1536 librpc/gen_ndr/cli_lsa.c *sids = *r.out.sids;
out 1539 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1578 librpc/gen_ndr/cli_lsa.c *rights = *r.out.rights;
out 1581 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1623 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1667 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1708 librpc/gen_ndr/cli_lsa.c *info = *r.out.info;
out 1711 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1755 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1795 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1831 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1867 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1908 librpc/gen_ndr/cli_lsa.c *handle = *r.out.handle;
out 1911 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1951 librpc/gen_ndr/cli_lsa.c *account_name = *r.out.account_name;
out 1952 librpc/gen_ndr/cli_lsa.c if (authority_name && r.out.authority_name) {
out 1953 librpc/gen_ndr/cli_lsa.c *authority_name = *r.out.authority_name;
out 1957 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 1996 librpc/gen_ndr/cli_lsa.c *info = *r.out.info;
out 1999 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2041 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2082 librpc/gen_ndr/cli_lsa.c *info = *r.out.info;
out 2085 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2129 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2170 librpc/gen_ndr/cli_lsa.c *resume_handle = *r.out.resume_handle;
out 2171 librpc/gen_ndr/cli_lsa.c *domains = *r.out.domains;
out 2174 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2217 librpc/gen_ndr/cli_lsa.c *trustdom_handle = *r.out.trustdom_handle;
out 2220 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2256 librpc/gen_ndr/cli_lsa.c *handle = *r.out.handle;
out 2259 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2298 librpc/gen_ndr/cli_lsa.c *info = *r.out.info;
out 2301 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2343 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2384 librpc/gen_ndr/cli_lsa.c *trustdom_handle = *r.out.trustdom_handle;
out 2387 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2423 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2472 librpc/gen_ndr/cli_lsa.c *domains = *r.out.domains;
out 2473 librpc/gen_ndr/cli_lsa.c *names = *r.out.names;
out 2474 librpc/gen_ndr/cli_lsa.c *count = *r.out.count;
out 2477 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2528 librpc/gen_ndr/cli_lsa.c *domains = *r.out.domains;
out 2529 librpc/gen_ndr/cli_lsa.c *sids = *r.out.sids;
out 2530 librpc/gen_ndr/cli_lsa.c *count = *r.out.count;
out 2533 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2576 librpc/gen_ndr/cli_lsa.c *trustdom_handle = *r.out.trustdom_handle;
out 2579 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2615 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2651 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2687 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2723 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2759 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2795 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2831 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2867 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2918 librpc/gen_ndr/cli_lsa.c *domains = *r.out.domains;
out 2919 librpc/gen_ndr/cli_lsa.c *sids = *r.out.sids;
out 2920 librpc/gen_ndr/cli_lsa.c *count = *r.out.count;
out 2923 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2959 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 2995 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 3031 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 3067 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 3108 librpc/gen_ndr/cli_lsa.c *forest_trust_info = *r.out.forest_trust_info;
out 3111 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 3147 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 3183 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 3230 librpc/gen_ndr/cli_lsa.c *domains = *r.out.domains;
out 3231 librpc/gen_ndr/cli_lsa.c *names = *r.out.names;
out 3232 librpc/gen_ndr/cli_lsa.c *count = *r.out.count;
out 3235 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 3284 librpc/gen_ndr/cli_lsa.c *domains = *r.out.domains;
out 3285 librpc/gen_ndr/cli_lsa.c *sids = *r.out.sids;
out 3286 librpc/gen_ndr/cli_lsa.c *count = *r.out.count;
out 3289 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 3325 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 3361 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 3397 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 3433 librpc/gen_ndr/cli_lsa.c return r.out.result;
out 48 librpc/gen_ndr/cli_netlogon.c *info = *r.out.info;
out 52 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 55 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 97 librpc/gen_ndr/cli_netlogon.c *info = *r.out.info;
out 101 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 104 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 154 librpc/gen_ndr/cli_netlogon.c if (return_authenticator && r.out.return_authenticator) {
out 155 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 157 librpc/gen_ndr/cli_netlogon.c *validation = *r.out.validation;
out 158 librpc/gen_ndr/cli_netlogon.c *authoritative = *r.out.authoritative;
out 161 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 207 librpc/gen_ndr/cli_netlogon.c if (return_authenticator && r.out.return_authenticator) {
out 208 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 212 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 253 librpc/gen_ndr/cli_netlogon.c *return_credentials = *r.out.return_credentials;
out 256 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 301 librpc/gen_ndr/cli_netlogon.c *return_credentials = *r.out.return_credentials;
out 304 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 351 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 354 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 403 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 404 librpc/gen_ndr/cli_netlogon.c *sequence_num = *r.out.sequence_num;
out 405 librpc/gen_ndr/cli_netlogon.c *delta_enum_array = *r.out.delta_enum_array;
out 408 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 457 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 458 librpc/gen_ndr/cli_netlogon.c *sync_context = *r.out.sync_context;
out 459 librpc/gen_ndr/cli_netlogon.c *delta_enum_array = *r.out.delta_enum_array;
out 462 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 516 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 517 librpc/gen_ndr/cli_netlogon.c *buffer = *r.out.buffer;
out 518 librpc/gen_ndr/cli_netlogon.c *count_returned = *r.out.count_returned;
out 519 librpc/gen_ndr/cli_netlogon.c *total_entries = *r.out.total_entries;
out 520 librpc/gen_ndr/cli_netlogon.c *recordid = *r.out.recordid;
out 523 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 577 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 578 librpc/gen_ndr/cli_netlogon.c *buffer = *r.out.buffer;
out 579 librpc/gen_ndr/cli_netlogon.c *count_returned = *r.out.count_returned;
out 580 librpc/gen_ndr/cli_netlogon.c *total_entries = *r.out.total_entries;
out 581 librpc/gen_ndr/cli_netlogon.c *next_reference = *r.out.next_reference;
out 582 librpc/gen_ndr/cli_netlogon.c *recordid = *r.out.recordid;
out 585 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 625 librpc/gen_ndr/cli_netlogon.c *dcname = *r.out.dcname;
out 629 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 632 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 674 librpc/gen_ndr/cli_netlogon.c *info = *r.out.info;
out 678 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 681 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 721 librpc/gen_ndr/cli_netlogon.c *dcname = *r.out.dcname;
out 725 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 728 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 772 librpc/gen_ndr/cli_netlogon.c *query = *r.out.query;
out 776 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 779 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 826 librpc/gen_ndr/cli_netlogon.c *return_credentials = *r.out.return_credentials;
out 827 librpc/gen_ndr/cli_netlogon.c *negotiate_flags = *r.out.negotiate_flags;
out 830 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 881 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 882 librpc/gen_ndr/cli_netlogon.c *sync_context = *r.out.sync_context;
out 883 librpc/gen_ndr/cli_netlogon.c *delta_enum_array = *r.out.delta_enum_array;
out 886 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 933 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 934 librpc/gen_ndr/cli_netlogon.c *delta_enum_array = *r.out.delta_enum_array;
out 937 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 981 librpc/gen_ndr/cli_netlogon.c *query = *r.out.query;
out 985 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 988 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1026 librpc/gen_ndr/cli_netlogon.c *trusted_domains_blob = *r.out.trusted_domains_blob;
out 1030 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1033 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1079 librpc/gen_ndr/cli_netlogon.c *info = *r.out.info;
out 1083 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1086 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1131 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 1132 librpc/gen_ndr/cli_netlogon.c *capabilities = *r.out.capabilities;
out 1135 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 1173 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1176 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1216 librpc/gen_ndr/cli_netlogon.c *rid = *r.out.rid;
out 1220 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1223 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1261 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1264 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1302 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1305 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1353 librpc/gen_ndr/cli_netlogon.c *return_credentials = *r.out.return_credentials;
out 1354 librpc/gen_ndr/cli_netlogon.c *negotiate_flags = *r.out.negotiate_flags;
out 1355 librpc/gen_ndr/cli_netlogon.c *rid = *r.out.rid;
out 1358 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 1404 librpc/gen_ndr/cli_netlogon.c *info = *r.out.info;
out 1408 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1411 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1449 librpc/gen_ndr/cli_netlogon.c *site = *r.out.site;
out 1453 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1456 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1503 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 1504 librpc/gen_ndr/cli_netlogon.c *info = *r.out.info;
out 1507 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 1554 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 1557 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 1604 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 1605 librpc/gen_ndr/cli_netlogon.c *password = *r.out.password;
out 1609 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1612 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1650 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1653 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1695 librpc/gen_ndr/cli_netlogon.c *ctr = *r.out.ctr;
out 1699 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1702 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1752 librpc/gen_ndr/cli_netlogon.c *info = *r.out.info;
out 1756 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1759 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1797 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1800 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1838 librpc/gen_ndr/cli_netlogon.c *dom_trust_list = *r.out.dom_trust_list;
out 1842 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1845 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1887 librpc/gen_ndr/cli_netlogon.c *ctr = *r.out.ctr;
out 1891 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1894 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1932 librpc/gen_ndr/cli_netlogon.c *ctr = *r.out.ctr;
out 1936 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 1939 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 1987 librpc/gen_ndr/cli_netlogon.c *validation = *r.out.validation;
out 1988 librpc/gen_ndr/cli_netlogon.c *authoritative = *r.out.authoritative;
out 1989 librpc/gen_ndr/cli_netlogon.c *flags = *r.out.flags;
out 1992 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 2032 librpc/gen_ndr/cli_netlogon.c *trusts = *r.out.trusts;
out 2036 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 2039 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 2087 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 2090 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 2137 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 2138 librpc/gen_ndr/cli_netlogon.c *password = *r.out.password;
out 2139 librpc/gen_ndr/cli_netlogon.c *password2 = *r.out.password2;
out 2142 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 2184 librpc/gen_ndr/cli_netlogon.c *forest_trust_info = *r.out.forest_trust_info;
out 2188 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 2191 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 2236 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 2237 librpc/gen_ndr/cli_netlogon.c *forest_trust_info = *r.out.forest_trust_info;
out 2241 librpc/gen_ndr/cli_netlogon.c *werror = r.out.result;
out 2244 librpc/gen_ndr/cli_netlogon.c return werror_to_ntstatus(r.out.result);
out 2296 librpc/gen_ndr/cli_netlogon.c if (return_authenticator && r.out.return_authenticator) {
out 2297 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 2299 librpc/gen_ndr/cli_netlogon.c *validation = *r.out.validation;
out 2300 librpc/gen_ndr/cli_netlogon.c *authoritative = *r.out.authoritative;
out 2301 librpc/gen_ndr/cli_netlogon.c *flags = *r.out.flags;
out 2304 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 2352 librpc/gen_ndr/cli_netlogon.c *return_authenticator = *r.out.return_authenticator;
out 2353 librpc/gen_ndr/cli_netlogon.c *new_owf_password = *r.out.new_owf_password;
out 2354 librpc/gen_ndr/cli_netlogon.c *old_owf_password = *r.out.old_owf_password;
out 2355 librpc/gen_ndr/cli_netlogon.c *trust_info = *r.out.trust_info;
out 2358 librpc/gen_ndr/cli_netlogon.c return r.out.result;
out 44 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 47 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 85 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 88 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 124 librpc/gen_ndr/cli_ntsvcs.c *version = *r.out.version;
out 128 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 131 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 169 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 172 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 210 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 213 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 251 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 254 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 296 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 299 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 337 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 340 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 378 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 381 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 419 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 422 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 464 librpc/gen_ndr/cli_ntsvcs.c memcpy(buffer, r.out.buffer, *r.in.length * sizeof(*buffer));
out 465 librpc/gen_ndr/cli_ntsvcs.c *length = *r.out.length;
out 469 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 472 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 512 librpc/gen_ndr/cli_ntsvcs.c *size = *r.out.size;
out 516 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 519 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 557 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 560 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 608 librpc/gen_ndr/cli_ntsvcs.c *reg_data_type = *r.out.reg_data_type;
out 609 librpc/gen_ndr/cli_ntsvcs.c memcpy(buffer, r.out.buffer, *r.in.buffer_size * sizeof(*buffer));
out 610 librpc/gen_ndr/cli_ntsvcs.c *buffer_size = *r.out.buffer_size;
out 611 librpc/gen_ndr/cli_ntsvcs.c *needed = *r.out.needed;
out 615 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 618 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 656 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 659 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 697 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 700 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 738 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 741 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 779 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 782 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 820 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 823 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 861 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 864 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 902 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 905 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 943 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 946 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 984 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 987 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1025 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1028 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1066 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1069 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1107 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1110 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1148 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1151 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1189 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1192 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1230 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1233 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1271 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1274 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1312 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1315 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1353 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1356 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1394 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1397 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1435 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1438 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1476 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1479 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1517 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1520 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1558 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1561 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1599 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1602 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1640 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1643 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1681 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1684 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1736 librpc/gen_ndr/cli_ntsvcs.c *profile_flags = *r.out.profile_flags;
out 1737 librpc/gen_ndr/cli_ntsvcs.c if (veto_type && r.out.veto_type) {
out 1738 librpc/gen_ndr/cli_ntsvcs.c *veto_type = *r.out.veto_type;
out 1740 librpc/gen_ndr/cli_ntsvcs.c if (unknown5a && r.out.unknown5a) {
out 1741 librpc/gen_ndr/cli_ntsvcs.c *unknown5a = *r.out.unknown5a;
out 1746 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1749 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1792 librpc/gen_ndr/cli_ntsvcs.c *info = *r.out.info;
out 1796 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1799 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1837 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1840 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1878 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1881 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1919 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1922 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 1960 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 1963 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2001 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2004 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2042 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2045 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2083 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2086 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2124 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2127 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2165 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2168 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2206 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2209 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2247 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2250 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2288 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2291 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2329 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2332 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2370 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2373 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2411 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2414 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2452 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2455 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2493 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2496 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2534 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2537 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2575 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2578 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2616 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2619 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2657 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2660 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2698 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2701 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 2739 librpc/gen_ndr/cli_ntsvcs.c *werror = r.out.result;
out 2742 librpc/gen_ndr/cli_ntsvcs.c return werror_to_ntstatus(r.out.result);
out 45 librpc/gen_ndr/cli_samr.c *connect_handle = *r.out.connect_handle;
out 48 librpc/gen_ndr/cli_samr.c return r.out.result;
out 84 librpc/gen_ndr/cli_samr.c *handle = *r.out.handle;
out 87 librpc/gen_ndr/cli_samr.c return r.out.result;
out 129 librpc/gen_ndr/cli_samr.c return r.out.result;
out 168 librpc/gen_ndr/cli_samr.c *sdbuf = *r.out.sdbuf;
out 171 librpc/gen_ndr/cli_samr.c return r.out.result;
out 209 librpc/gen_ndr/cli_samr.c return r.out.result;
out 248 librpc/gen_ndr/cli_samr.c *sid = *r.out.sid;
out 251 librpc/gen_ndr/cli_samr.c return r.out.result;
out 293 librpc/gen_ndr/cli_samr.c *resume_handle = *r.out.resume_handle;
out 294 librpc/gen_ndr/cli_samr.c *sam = *r.out.sam;
out 295 librpc/gen_ndr/cli_samr.c *num_entries = *r.out.num_entries;
out 298 librpc/gen_ndr/cli_samr.c return r.out.result;
out 339 librpc/gen_ndr/cli_samr.c *domain_handle = *r.out.domain_handle;
out 342 librpc/gen_ndr/cli_samr.c return r.out.result;
out 381 librpc/gen_ndr/cli_samr.c *info = *r.out.info;
out 384 librpc/gen_ndr/cli_samr.c return r.out.result;
out 426 librpc/gen_ndr/cli_samr.c return r.out.result;
out 468 librpc/gen_ndr/cli_samr.c *group_handle = *r.out.group_handle;
out 469 librpc/gen_ndr/cli_samr.c *rid = *r.out.rid;
out 472 librpc/gen_ndr/cli_samr.c return r.out.result;
out 514 librpc/gen_ndr/cli_samr.c *resume_handle = *r.out.resume_handle;
out 515 librpc/gen_ndr/cli_samr.c *sam = *r.out.sam;
out 516 librpc/gen_ndr/cli_samr.c *num_entries = *r.out.num_entries;
out 519 librpc/gen_ndr/cli_samr.c return r.out.result;
out 561 librpc/gen_ndr/cli_samr.c *user_handle = *r.out.user_handle;
out 562 librpc/gen_ndr/cli_samr.c *rid = *r.out.rid;
out 565 librpc/gen_ndr/cli_samr.c return r.out.result;
out 609 librpc/gen_ndr/cli_samr.c *resume_handle = *r.out.resume_handle;
out 610 librpc/gen_ndr/cli_samr.c *sam = *r.out.sam;
out 611 librpc/gen_ndr/cli_samr.c *num_entries = *r.out.num_entries;
out 614 librpc/gen_ndr/cli_samr.c return r.out.result;
out 656 librpc/gen_ndr/cli_samr.c *alias_handle = *r.out.alias_handle;
out 657 librpc/gen_ndr/cli_samr.c *rid = *r.out.rid;
out 660 librpc/gen_ndr/cli_samr.c return r.out.result;
out 702 librpc/gen_ndr/cli_samr.c *resume_handle = *r.out.resume_handle;
out 703 librpc/gen_ndr/cli_samr.c *sam = *r.out.sam;
out 704 librpc/gen_ndr/cli_samr.c *num_entries = *r.out.num_entries;
out 707 librpc/gen_ndr/cli_samr.c return r.out.result;
out 746 librpc/gen_ndr/cli_samr.c *rids = *r.out.rids;
out 749 librpc/gen_ndr/cli_samr.c return r.out.result;
out 791 librpc/gen_ndr/cli_samr.c *rids = *r.out.rids;
out 792 librpc/gen_ndr/cli_samr.c *types = *r.out.types;
out 795 librpc/gen_ndr/cli_samr.c return r.out.result;
out 837 librpc/gen_ndr/cli_samr.c *names = *r.out.names;
out 838 librpc/gen_ndr/cli_samr.c *types = *r.out.types;
out 841 librpc/gen_ndr/cli_samr.c return r.out.result;
out 882 librpc/gen_ndr/cli_samr.c *group_handle = *r.out.group_handle;
out 885 librpc/gen_ndr/cli_samr.c return r.out.result;
out 924 librpc/gen_ndr/cli_samr.c *info = *r.out.info;
out 927 librpc/gen_ndr/cli_samr.c return r.out.result;
out 969 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1011 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1047 librpc/gen_ndr/cli_samr.c *group_handle = *r.out.group_handle;
out 1050 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1090 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1127 librpc/gen_ndr/cli_samr.c *rids = *r.out.rids;
out 1130 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1172 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1213 librpc/gen_ndr/cli_samr.c *alias_handle = *r.out.alias_handle;
out 1216 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1255 librpc/gen_ndr/cli_samr.c *info = *r.out.info;
out 1258 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1300 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1336 librpc/gen_ndr/cli_samr.c *alias_handle = *r.out.alias_handle;
out 1339 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1379 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1419 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1456 librpc/gen_ndr/cli_samr.c *sids = *r.out.sids;
out 1459 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1500 librpc/gen_ndr/cli_samr.c *user_handle = *r.out.user_handle;
out 1503 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1539 librpc/gen_ndr/cli_samr.c *user_handle = *r.out.user_handle;
out 1542 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1581 librpc/gen_ndr/cli_samr.c *info = *r.out.info;
out 1584 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1626 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1684 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1721 librpc/gen_ndr/cli_samr.c *rids = *r.out.rids;
out 1724 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1771 librpc/gen_ndr/cli_samr.c *total_size = *r.out.total_size;
out 1772 librpc/gen_ndr/cli_samr.c *returned_size = *r.out.returned_size;
out 1773 librpc/gen_ndr/cli_samr.c *info = *r.out.info;
out 1776 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1817 librpc/gen_ndr/cli_samr.c *idx = *r.out.idx;
out 1820 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1858 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1896 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1933 librpc/gen_ndr/cli_samr.c *info = *r.out.info;
out 1936 librpc/gen_ndr/cli_samr.c return r.out.result;
out 1976 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2015 librpc/gen_ndr/cli_samr.c *info = *r.out.info;
out 2018 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2057 librpc/gen_ndr/cli_samr.c *info = *r.out.info;
out 2060 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2107 librpc/gen_ndr/cli_samr.c *total_size = *r.out.total_size;
out 2108 librpc/gen_ndr/cli_samr.c *returned_size = *r.out.returned_size;
out 2109 librpc/gen_ndr/cli_samr.c *info = *r.out.info;
out 2112 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2153 librpc/gen_ndr/cli_samr.c *idx = *r.out.idx;
out 2156 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2201 librpc/gen_ndr/cli_samr.c *user_handle = *r.out.user_handle;
out 2202 librpc/gen_ndr/cli_samr.c *access_granted = *r.out.access_granted;
out 2203 librpc/gen_ndr/cli_samr.c *rid = *r.out.rid;
out 2206 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2253 librpc/gen_ndr/cli_samr.c *total_size = *r.out.total_size;
out 2254 librpc/gen_ndr/cli_samr.c *returned_size = *r.out.returned_size;
out 2255 librpc/gen_ndr/cli_samr.c *info = *r.out.info;
out 2258 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2298 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2338 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2382 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2432 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2469 librpc/gen_ndr/cli_samr.c *info = *r.out.info;
out 2472 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2511 librpc/gen_ndr/cli_samr.c *connect_handle = *r.out.connect_handle;
out 2514 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2556 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2600 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2637 librpc/gen_ndr/cli_samr.c *unknown = *r.out.unknown;
out 2640 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2681 librpc/gen_ndr/cli_samr.c *connect_handle = *r.out.connect_handle;
out 2684 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2725 librpc/gen_ndr/cli_samr.c *connect_handle = *r.out.connect_handle;
out 2728 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2780 librpc/gen_ndr/cli_samr.c *dominfo = *r.out.dominfo;
out 2781 librpc/gen_ndr/cli_samr.c *reject = *r.out.reject;
out 2784 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2829 librpc/gen_ndr/cli_samr.c *level_out = *r.out.level_out;
out 2830 librpc/gen_ndr/cli_samr.c *info_out = *r.out.info_out;
out 2831 librpc/gen_ndr/cli_samr.c *connect_handle = *r.out.connect_handle;
out 2834 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2873 librpc/gen_ndr/cli_samr.c *sid = *r.out.sid;
out 2876 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2918 librpc/gen_ndr/cli_samr.c return r.out.result;
out 2957 librpc/gen_ndr/cli_samr.c *rep = *r.out.rep;
out 2960 librpc/gen_ndr/cli_samr.c return r.out.result;
out 54 librpc/gen_ndr/cli_spoolss.c *count = *r.out.count;
out 55 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 56 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 60 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 63 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 107 librpc/gen_ndr/cli_spoolss.c *handle = *r.out.handle;
out 111 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 114 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 160 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 163 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 210 librpc/gen_ndr/cli_spoolss.c if (info && r.out.info) {
out 211 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 213 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 217 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 220 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 270 librpc/gen_ndr/cli_spoolss.c *count = *r.out.count;
out 271 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 272 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 276 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 279 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 317 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 320 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 360 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 363 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 411 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 414 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 459 librpc/gen_ndr/cli_spoolss.c if (info && r.out.info) {
out 460 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 462 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 466 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 469 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 511 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 514 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 562 librpc/gen_ndr/cli_spoolss.c *count = *r.out.count;
out 563 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 564 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 568 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 571 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 609 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 612 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 659 librpc/gen_ndr/cli_spoolss.c if (info && r.out.info) {
out 660 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 662 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 666 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 669 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 713 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 716 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 762 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 765 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 813 librpc/gen_ndr/cli_spoolss.c *count = *r.out.count;
out 814 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 815 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 819 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 822 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 869 librpc/gen_ndr/cli_spoolss.c if (info && r.out.info) {
out 870 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 872 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 876 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 879 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 921 librpc/gen_ndr/cli_spoolss.c *job_id = *r.out.job_id;
out 925 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 928 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 968 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 971 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1013 librpc/gen_ndr/cli_spoolss.c *num_written = *r.out.num_written;
out 1017 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1020 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1060 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1063 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1103 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1106 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1147 librpc/gen_ndr/cli_spoolss.c memcpy(data, r.out.data, r.in.data_size * sizeof(*data));
out 1148 librpc/gen_ndr/cli_spoolss.c *_data_size = *r.out._data_size;
out 1152 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1155 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1195 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1198 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1242 librpc/gen_ndr/cli_spoolss.c if (buffer && r.out.buffer) {
out 1243 librpc/gen_ndr/cli_spoolss.c memcpy(buffer, r.out.buffer, r.in.offered * sizeof(*buffer));
out 1245 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 1249 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1252 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1294 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1297 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1341 librpc/gen_ndr/cli_spoolss.c *type = *r.out.type;
out 1342 librpc/gen_ndr/cli_spoolss.c *data = *r.out.data;
out 1343 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 1347 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1350 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1398 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1401 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1439 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1442 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1479 librpc/gen_ndr/cli_spoolss.c *handle = *r.out.handle;
out 1483 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1486 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1530 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1533 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1575 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1578 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1625 librpc/gen_ndr/cli_spoolss.c if (info && r.out.info) {
out 1626 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 1628 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 1632 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1635 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1681 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1684 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1730 librpc/gen_ndr/cli_spoolss.c *count = *r.out.count;
out 1731 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 1732 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 1736 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1739 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1785 librpc/gen_ndr/cli_spoolss.c *count = *r.out.count;
out 1786 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 1787 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 1791 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1794 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1840 librpc/gen_ndr/cli_spoolss.c *count = *r.out.count;
out 1841 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 1842 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 1846 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1849 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1893 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1896 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1934 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1937 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 1975 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 1978 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2016 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2019 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2057 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2060 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2098 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2101 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2139 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2142 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2180 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2183 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2221 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2224 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2262 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2265 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2303 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2306 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2344 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2347 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2385 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2388 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2426 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2429 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2477 librpc/gen_ndr/cli_spoolss.c *count = *r.out.count;
out 2478 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 2479 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 2483 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2486 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2530 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2533 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2586 librpc/gen_ndr/cli_spoolss.c if (info && r.out.info) {
out 2587 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 2589 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 2590 librpc/gen_ndr/cli_spoolss.c *server_major_version = *r.out.server_major_version;
out 2591 librpc/gen_ndr/cli_spoolss.c *server_minor_version = *r.out.server_minor_version;
out 2595 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2598 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2636 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2639 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2677 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2680 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2720 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2723 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2761 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2764 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2810 librpc/gen_ndr/cli_spoolss.c *handle = *r.out.handle;
out 2814 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2817 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2863 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2866 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2903 librpc/gen_ndr/cli_spoolss.c *handle = *r.out.handle;
out 2907 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2910 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2948 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2951 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 2989 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 2992 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3030 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3033 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3071 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3074 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3124 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3127 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3173 librpc/gen_ndr/cli_spoolss.c *reply_result = *r.out.reply_result;
out 3177 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3180 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3222 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 3226 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3229 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3267 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3270 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3318 librpc/gen_ndr/cli_spoolss.c *handle = *r.out.handle;
out 3322 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3325 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3371 librpc/gen_ndr/cli_spoolss.c *handle = *r.out.handle;
out 3375 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3378 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3416 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3419 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3467 librpc/gen_ndr/cli_spoolss.c memcpy(CONST_DISCARD(char *, value_name), r.out.value_name, r.in.value_offered / 2 * sizeof(*value_name));
out 3468 librpc/gen_ndr/cli_spoolss.c *value_needed = *r.out.value_needed;
out 3469 librpc/gen_ndr/cli_spoolss.c *type = *r.out.type;
out 3470 librpc/gen_ndr/cli_spoolss.c memcpy(data, r.out.data, r.in.data_offered * sizeof(*data));
out 3471 librpc/gen_ndr/cli_spoolss.c *data_needed = *r.out.data_needed;
out 3475 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3478 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3520 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3523 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3561 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3564 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3602 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3605 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3643 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3646 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3696 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3699 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3745 librpc/gen_ndr/cli_spoolss.c *type = *r.out.type;
out 3746 librpc/gen_ndr/cli_spoolss.c memcpy(buffer, r.out.buffer, r.in.offered * sizeof(*buffer));
out 3747 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 3751 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3754 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3798 librpc/gen_ndr/cli_spoolss.c *count = *r.out.count;
out 3799 librpc/gen_ndr/cli_spoolss.c *info = *r.out.info;
out 3800 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 3804 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3807 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3850 librpc/gen_ndr/cli_spoolss.c *key_buffer = *r.out.key_buffer;
out 3851 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 3855 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3858 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3902 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3905 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3947 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3950 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 3988 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 3991 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 4039 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 4042 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 4080 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 4083 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 4121 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 4124 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 4162 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 4165 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 4214 librpc/gen_ndr/cli_spoolss.c memcpy(out_data, r.out.out_data, r.in.out_data_size * sizeof(*out_data));
out 4215 librpc/gen_ndr/cli_spoolss.c *needed = *r.out.needed;
out 4216 librpc/gen_ndr/cli_spoolss.c *status_code = *r.out.status_code;
out 4220 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 4223 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 4267 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 4270 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 4308 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 4311 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 4349 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 4352 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 4390 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 4393 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 4431 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 4434 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 4472 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 4475 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 4513 librpc/gen_ndr/cli_spoolss.c *werror = r.out.result;
out 4516 librpc/gen_ndr/cli_spoolss.c return werror_to_ntstatus(r.out.result);
out 50 librpc/gen_ndr/cli_srvsvc.c *info_ctr = *r.out.info_ctr;
out 51 librpc/gen_ndr/cli_srvsvc.c *totalentries = *r.out.totalentries;
out 52 librpc/gen_ndr/cli_srvsvc.c if (resume_handle && r.out.resume_handle) {
out 53 librpc/gen_ndr/cli_srvsvc.c *resume_handle = *r.out.resume_handle;
out 58 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 61 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 103 librpc/gen_ndr/cli_srvsvc.c *info = *r.out.info;
out 107 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 110 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 154 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 157 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 203 librpc/gen_ndr/cli_srvsvc.c *info_ctr = *r.out.info_ctr;
out 204 librpc/gen_ndr/cli_srvsvc.c *totalentries = *r.out.totalentries;
out 205 librpc/gen_ndr/cli_srvsvc.c if (resume_handle && r.out.resume_handle) {
out 206 librpc/gen_ndr/cli_srvsvc.c *resume_handle = *r.out.resume_handle;
out 211 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 214 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 258 librpc/gen_ndr/cli_srvsvc.c *info = *r.out.info;
out 262 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 265 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 310 librpc/gen_ndr/cli_srvsvc.c if (parm_error && r.out.parm_error) {
out 311 librpc/gen_ndr/cli_srvsvc.c *parm_error = *r.out.parm_error;
out 316 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 319 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 361 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 364 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 408 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 411 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 457 librpc/gen_ndr/cli_srvsvc.c *info_ctr = *r.out.info_ctr;
out 458 librpc/gen_ndr/cli_srvsvc.c *totalentries = *r.out.totalentries;
out 459 librpc/gen_ndr/cli_srvsvc.c if (resume_handle && r.out.resume_handle) {
out 460 librpc/gen_ndr/cli_srvsvc.c *resume_handle = *r.out.resume_handle;
out 465 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 468 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 516 librpc/gen_ndr/cli_srvsvc.c *info_ctr = *r.out.info_ctr;
out 517 librpc/gen_ndr/cli_srvsvc.c *totalentries = *r.out.totalentries;
out 518 librpc/gen_ndr/cli_srvsvc.c if (resume_handle && r.out.resume_handle) {
out 519 librpc/gen_ndr/cli_srvsvc.c *resume_handle = *r.out.resume_handle;
out 524 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 527 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 569 librpc/gen_ndr/cli_srvsvc.c *info = *r.out.info;
out 573 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 576 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 618 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 621 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 669 librpc/gen_ndr/cli_srvsvc.c *info_ctr = *r.out.info_ctr;
out 670 librpc/gen_ndr/cli_srvsvc.c *totalentries = *r.out.totalentries;
out 671 librpc/gen_ndr/cli_srvsvc.c if (resume_handle && r.out.resume_handle) {
out 672 librpc/gen_ndr/cli_srvsvc.c *resume_handle = *r.out.resume_handle;
out 677 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 680 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 724 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 727 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 770 librpc/gen_ndr/cli_srvsvc.c if (parm_error && r.out.parm_error) {
out 771 librpc/gen_ndr/cli_srvsvc.c *parm_error = *r.out.parm_error;
out 776 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 779 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 823 librpc/gen_ndr/cli_srvsvc.c *info_ctr = *r.out.info_ctr;
out 824 librpc/gen_ndr/cli_srvsvc.c *totalentries = *r.out.totalentries;
out 825 librpc/gen_ndr/cli_srvsvc.c if (resume_handle && r.out.resume_handle) {
out 826 librpc/gen_ndr/cli_srvsvc.c *resume_handle = *r.out.resume_handle;
out 831 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 834 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 876 librpc/gen_ndr/cli_srvsvc.c *info = *r.out.info;
out 880 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 883 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 928 librpc/gen_ndr/cli_srvsvc.c if (parm_error && r.out.parm_error) {
out 929 librpc/gen_ndr/cli_srvsvc.c *parm_error = *r.out.parm_error;
out 934 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 937 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 981 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 984 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1028 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1031 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1071 librpc/gen_ndr/cli_srvsvc.c *type = *r.out.type;
out 1075 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1078 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1118 librpc/gen_ndr/cli_srvsvc.c *info = *r.out.info;
out 1122 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1125 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1168 librpc/gen_ndr/cli_srvsvc.c if (parm_error && r.out.parm_error) {
out 1169 librpc/gen_ndr/cli_srvsvc.c *parm_error = *r.out.parm_error;
out 1174 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1177 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1223 librpc/gen_ndr/cli_srvsvc.c *info = *r.out.info;
out 1224 librpc/gen_ndr/cli_srvsvc.c *totalentries = *r.out.totalentries;
out 1225 librpc/gen_ndr/cli_srvsvc.c if (resume_handle && r.out.resume_handle) {
out 1226 librpc/gen_ndr/cli_srvsvc.c *resume_handle = *r.out.resume_handle;
out 1231 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1234 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1278 librpc/gen_ndr/cli_srvsvc.c *stats = *r.out.stats;
out 1282 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1285 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1329 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1332 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1376 librpc/gen_ndr/cli_srvsvc.c *transports = *r.out.transports;
out 1377 librpc/gen_ndr/cli_srvsvc.c *totalentries = *r.out.totalentries;
out 1378 librpc/gen_ndr/cli_srvsvc.c if (resume_handle && r.out.resume_handle) {
out 1379 librpc/gen_ndr/cli_srvsvc.c *resume_handle = *r.out.resume_handle;
out 1384 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1387 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1431 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1434 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1472 librpc/gen_ndr/cli_srvsvc.c *info = *r.out.info;
out 1476 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1479 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1525 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1528 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1570 librpc/gen_ndr/cli_srvsvc.c *pathtype = *r.out.pathtype;
out 1574 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1577 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1625 librpc/gen_ndr/cli_srvsvc.c memcpy(can_path, r.out.can_path, r.in.maxbuf * sizeof(*can_path));
out 1626 librpc/gen_ndr/cli_srvsvc.c *pathtype = *r.out.pathtype;
out 1630 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1633 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1681 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1684 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1730 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1733 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1771 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1774 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1822 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1825 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1869 librpc/gen_ndr/cli_srvsvc.c *info_ctr = *r.out.info_ctr;
out 1870 librpc/gen_ndr/cli_srvsvc.c *totalentries = *r.out.totalentries;
out 1871 librpc/gen_ndr/cli_srvsvc.c if (resume_handle && r.out.resume_handle) {
out 1872 librpc/gen_ndr/cli_srvsvc.c *resume_handle = *r.out.resume_handle;
out 1877 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1880 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1922 librpc/gen_ndr/cli_srvsvc.c if (hnd && r.out.hnd) {
out 1923 librpc/gen_ndr/cli_srvsvc.c *hnd = *r.out.hnd;
out 1928 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1931 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 1968 librpc/gen_ndr/cli_srvsvc.c if (hnd && r.out.hnd) {
out 1969 librpc/gen_ndr/cli_srvsvc.c *hnd = *r.out.hnd;
out 1974 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 1977 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2021 librpc/gen_ndr/cli_srvsvc.c *sd_buf = *r.out.sd_buf;
out 2025 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2028 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2076 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2079 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2123 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2126 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2176 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2179 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2217 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2220 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2258 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2261 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2299 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2302 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2340 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2343 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2381 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2384 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2422 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2425 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2463 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2466 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2504 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2507 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2545 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2548 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2586 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2589 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 2627 librpc/gen_ndr/cli_srvsvc.c *werror = r.out.result;
out 2630 librpc/gen_ndr/cli_srvsvc.c return werror_to_ntstatus(r.out.result);
out 43 librpc/gen_ndr/cli_svcctl.c *handle = *r.out.handle;
out 47 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 50 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 90 librpc/gen_ndr/cli_svcctl.c *service_status = *r.out.service_status;
out 94 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 97 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 137 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 140 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 178 librpc/gen_ndr/cli_svcctl.c *lock = *r.out.lock;
out 182 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 185 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 228 librpc/gen_ndr/cli_svcctl.c memcpy(buffer, r.out.buffer, r.in.offered * sizeof(*buffer));
out 229 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 233 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 236 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 282 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 285 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 323 librpc/gen_ndr/cli_svcctl.c *service_status = *r.out.service_status;
out 327 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 330 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 368 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 371 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 408 librpc/gen_ndr/cli_svcctl.c *lock = *r.out.lock;
out 412 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 415 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 453 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 456 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 502 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 505 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 561 librpc/gen_ndr/cli_svcctl.c *tag_id = *r.out.tag_id;
out 565 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 568 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 634 librpc/gen_ndr/cli_svcctl.c if (TagId && r.out.TagId) {
out 635 librpc/gen_ndr/cli_svcctl.c *TagId = *r.out.TagId;
out 637 librpc/gen_ndr/cli_svcctl.c *handle = *r.out.handle;
out 641 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 644 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 688 librpc/gen_ndr/cli_svcctl.c memcpy(service_status, r.out.service_status, r.in.offered * sizeof(*service_status));
out 689 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 690 librpc/gen_ndr/cli_svcctl.c *services_returned = *r.out.services_returned;
out 694 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 697 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 745 librpc/gen_ndr/cli_svcctl.c memcpy(service, r.out.service, r.in.offered * sizeof(*service));
out 746 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 747 librpc/gen_ndr/cli_svcctl.c *services_returned = *r.out.services_returned;
out 748 librpc/gen_ndr/cli_svcctl.c if (resume_handle && r.out.resume_handle) {
out 749 librpc/gen_ndr/cli_svcctl.c *resume_handle = *r.out.resume_handle;
out 754 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 757 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 799 librpc/gen_ndr/cli_svcctl.c *handle = *r.out.handle;
out 803 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 806 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 848 librpc/gen_ndr/cli_svcctl.c *handle = *r.out.handle;
out 852 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 855 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 896 librpc/gen_ndr/cli_svcctl.c *query = *r.out.query;
out 897 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 901 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 904 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 945 librpc/gen_ndr/cli_svcctl.c *lock_status = *r.out.lock_status;
out 946 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 950 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 953 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 997 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1000 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1042 librpc/gen_ndr/cli_svcctl.c *display_name = *r.out.display_name;
out 1043 librpc/gen_ndr/cli_svcctl.c if (display_name_length && r.out.display_name_length) {
out 1044 librpc/gen_ndr/cli_svcctl.c *display_name_length = *r.out.display_name_length;
out 1049 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1052 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1094 librpc/gen_ndr/cli_svcctl.c *key_name = *r.out.key_name;
out 1095 librpc/gen_ndr/cli_svcctl.c if (display_name_length && r.out.display_name_length) {
out 1096 librpc/gen_ndr/cli_svcctl.c *display_name_length = *r.out.display_name_length;
out 1101 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1104 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1150 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1153 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1209 librpc/gen_ndr/cli_svcctl.c *tag_id = *r.out.tag_id;
out 1213 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1216 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1276 librpc/gen_ndr/cli_svcctl.c if (TagId && r.out.TagId) {
out 1277 librpc/gen_ndr/cli_svcctl.c *TagId = *r.out.TagId;
out 1282 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1285 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1329 librpc/gen_ndr/cli_svcctl.c if (service_status && r.out.service_status) {
out 1330 librpc/gen_ndr/cli_svcctl.c *service_status = *r.out.service_status;
out 1332 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 1333 librpc/gen_ndr/cli_svcctl.c *services_returned = *r.out.services_returned;
out 1337 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1340 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1388 librpc/gen_ndr/cli_svcctl.c memcpy(service, r.out.service, r.in.offered * sizeof(*service));
out 1389 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 1390 librpc/gen_ndr/cli_svcctl.c *services_returned = *r.out.services_returned;
out 1391 librpc/gen_ndr/cli_svcctl.c if (resume_handle && r.out.resume_handle) {
out 1392 librpc/gen_ndr/cli_svcctl.c *resume_handle = *r.out.resume_handle;
out 1397 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1400 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1442 librpc/gen_ndr/cli_svcctl.c *handle = *r.out.handle;
out 1446 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1449 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1493 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1496 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1537 librpc/gen_ndr/cli_svcctl.c memcpy(query, r.out.query, r.in.offered * sizeof(*query));
out 1538 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 1542 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1545 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1586 librpc/gen_ndr/cli_svcctl.c *lock_status = *r.out.lock_status;
out 1587 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 1591 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1594 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1638 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1641 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1683 librpc/gen_ndr/cli_svcctl.c *display_name = *r.out.display_name;
out 1684 librpc/gen_ndr/cli_svcctl.c if (display_name_length && r.out.display_name_length) {
out 1685 librpc/gen_ndr/cli_svcctl.c *display_name_length = *r.out.display_name_length;
out 1690 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1693 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1735 librpc/gen_ndr/cli_svcctl.c *key_name = *r.out.key_name;
out 1736 librpc/gen_ndr/cli_svcctl.c if (display_name_length && r.out.display_name_length) {
out 1737 librpc/gen_ndr/cli_svcctl.c *display_name_length = *r.out.display_name_length;
out 1742 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1745 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1783 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1786 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1824 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1827 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1871 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1874 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1918 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1921 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 1964 librpc/gen_ndr/cli_svcctl.c memcpy(buffer, r.out.buffer, r.in.offered * sizeof(*buffer));
out 1965 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 1969 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 1972 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 2015 librpc/gen_ndr/cli_svcctl.c memcpy(buffer, r.out.buffer, r.in.offered * sizeof(*buffer));
out 2016 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 2020 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 2023 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 2066 librpc/gen_ndr/cli_svcctl.c memcpy(buffer, r.out.buffer, r.in.offered * sizeof(*buffer));
out 2067 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 2071 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 2074 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 2125 librpc/gen_ndr/cli_svcctl.c memcpy(services, r.out.services, r.in.offered * sizeof(*services));
out 2126 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 2127 librpc/gen_ndr/cli_svcctl.c *service_returned = *r.out.service_returned;
out 2128 librpc/gen_ndr/cli_svcctl.c if (resume_handle && r.out.resume_handle) {
out 2129 librpc/gen_ndr/cli_svcctl.c *resume_handle = *r.out.resume_handle;
out 2131 librpc/gen_ndr/cli_svcctl.c *group_name = *r.out.group_name;
out 2135 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 2138 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 2190 librpc/gen_ndr/cli_svcctl.c memcpy(services, r.out.services, r.in.offered * sizeof(*services));
out 2191 librpc/gen_ndr/cli_svcctl.c *needed = *r.out.needed;
out 2192 librpc/gen_ndr/cli_svcctl.c *service_returned = *r.out.service_returned;
out 2193 librpc/gen_ndr/cli_svcctl.c if (resume_handle && r.out.resume_handle) {
out 2194 librpc/gen_ndr/cli_svcctl.c *resume_handle = *r.out.resume_handle;
out 2199 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 2202 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 2240 librpc/gen_ndr/cli_svcctl.c *werror = r.out.result;
out 2243 librpc/gen_ndr/cli_svcctl.c return werror_to_ntstatus(r.out.result);
out 46 librpc/gen_ndr/cli_winreg.c *handle = *r.out.handle;
out 50 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 53 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 93 librpc/gen_ndr/cli_winreg.c *handle = *r.out.handle;
out 97 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 100 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 140 librpc/gen_ndr/cli_winreg.c *handle = *r.out.handle;
out 144 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 147 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 187 librpc/gen_ndr/cli_winreg.c *handle = *r.out.handle;
out 191 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 194 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 234 librpc/gen_ndr/cli_winreg.c *handle = *r.out.handle;
out 238 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 241 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 278 librpc/gen_ndr/cli_winreg.c *handle = *r.out.handle;
out 282 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 285 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 335 librpc/gen_ndr/cli_winreg.c *new_handle = *r.out.new_handle;
out 336 librpc/gen_ndr/cli_winreg.c if (action_taken && r.out.action_taken) {
out 337 librpc/gen_ndr/cli_winreg.c *action_taken = *r.out.action_taken;
out 342 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 345 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 387 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 390 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 432 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 435 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 480 librpc/gen_ndr/cli_winreg.c *name = *r.out.name;
out 481 librpc/gen_ndr/cli_winreg.c if (keyclass && r.out.keyclass) {
out 482 librpc/gen_ndr/cli_winreg.c *keyclass = *r.out.keyclass;
out 484 librpc/gen_ndr/cli_winreg.c if (last_changed_time && r.out.last_changed_time) {
out 485 librpc/gen_ndr/cli_winreg.c *last_changed_time = *r.out.last_changed_time;
out 490 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 493 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 542 librpc/gen_ndr/cli_winreg.c *name = *r.out.name;
out 543 librpc/gen_ndr/cli_winreg.c if (type && r.out.type) {
out 544 librpc/gen_ndr/cli_winreg.c *type = *r.out.type;
out 546 librpc/gen_ndr/cli_winreg.c if (value && r.out.value) {
out 547 librpc/gen_ndr/cli_winreg.c memcpy(value, r.out.value, *r.in.size * sizeof(*value));
out 549 librpc/gen_ndr/cli_winreg.c if (size && r.out.size) {
out 550 librpc/gen_ndr/cli_winreg.c *size = *r.out.size;
out 552 librpc/gen_ndr/cli_winreg.c if (length && r.out.length) {
out 553 librpc/gen_ndr/cli_winreg.c *length = *r.out.length;
out 558 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 561 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 601 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 604 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 645 librpc/gen_ndr/cli_winreg.c *sd = *r.out.sd;
out 649 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 652 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 696 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 699 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 751 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 754 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 798 librpc/gen_ndr/cli_winreg.c *handle = *r.out.handle;
out 802 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 805 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 852 librpc/gen_ndr/cli_winreg.c *classname = *r.out.classname;
out 853 librpc/gen_ndr/cli_winreg.c *num_subkeys = *r.out.num_subkeys;
out 854 librpc/gen_ndr/cli_winreg.c *max_subkeylen = *r.out.max_subkeylen;
out 855 librpc/gen_ndr/cli_winreg.c *max_classlen = *r.out.max_classlen;
out 856 librpc/gen_ndr/cli_winreg.c *num_values = *r.out.num_values;
out 857 librpc/gen_ndr/cli_winreg.c *max_valnamelen = *r.out.max_valnamelen;
out 858 librpc/gen_ndr/cli_winreg.c *max_valbufsize = *r.out.max_valbufsize;
out 859 librpc/gen_ndr/cli_winreg.c *secdescsize = *r.out.secdescsize;
out 860 librpc/gen_ndr/cli_winreg.c *last_changed_time = *r.out.last_changed_time;
out 864 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 867 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 914 librpc/gen_ndr/cli_winreg.c if (type && r.out.type) {
out 915 librpc/gen_ndr/cli_winreg.c *type = *r.out.type;
out 917 librpc/gen_ndr/cli_winreg.c if (data && r.out.data) {
out 918 librpc/gen_ndr/cli_winreg.c memcpy(data, r.out.data, *r.in.data_size * sizeof(*data));
out 920 librpc/gen_ndr/cli_winreg.c if (data_size && r.out.data_size) {
out 921 librpc/gen_ndr/cli_winreg.c *data_size = *r.out.data_size;
out 923 librpc/gen_ndr/cli_winreg.c if (data_length && r.out.data_length) {
out 924 librpc/gen_ndr/cli_winreg.c *data_length = *r.out.data_length;
out 929 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 932 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 970 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 973 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1017 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1020 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1064 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1067 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1111 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1114 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1162 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1165 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1203 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1206 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1254 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1257 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1297 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1300 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1338 librpc/gen_ndr/cli_winreg.c *version = *r.out.version;
out 1342 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1345 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1385 librpc/gen_ndr/cli_winreg.c *handle = *r.out.handle;
out 1389 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1392 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1432 librpc/gen_ndr/cli_winreg.c *handle = *r.out.handle;
out 1436 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1439 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1484 librpc/gen_ndr/cli_winreg.c memcpy(values, r.out.values, r.in.num_values * sizeof(*values));
out 1485 librpc/gen_ndr/cli_winreg.c if (buffer && r.out.buffer) {
out 1486 librpc/gen_ndr/cli_winreg.c memcpy(buffer, r.out.buffer, *r.in.buffer_size * sizeof(*buffer));
out 1488 librpc/gen_ndr/cli_winreg.c *buffer_size = *r.out.buffer_size;
out 1492 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1495 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1545 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1548 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1586 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1589 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1629 librpc/gen_ndr/cli_winreg.c *handle = *r.out.handle;
out 1633 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1636 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1676 librpc/gen_ndr/cli_winreg.c *handle = *r.out.handle;
out 1680 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1683 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 1721 librpc/gen_ndr/cli_winreg.c *werror = r.out.result;
out 1724 librpc/gen_ndr/cli_winreg.c return werror_to_ntstatus(r.out.result);
out 46 librpc/gen_ndr/cli_wkssvc.c *info = *r.out.info;
out 50 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 53 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 96 librpc/gen_ndr/cli_wkssvc.c *parm_error = *r.out.parm_error;
out 100 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 103 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 147 librpc/gen_ndr/cli_wkssvc.c *info = *r.out.info;
out 148 librpc/gen_ndr/cli_wkssvc.c *entries_read = *r.out.entries_read;
out 149 librpc/gen_ndr/cli_wkssvc.c if (resume_handle && r.out.resume_handle) {
out 150 librpc/gen_ndr/cli_wkssvc.c *resume_handle = *r.out.resume_handle;
out 155 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 158 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 198 librpc/gen_ndr/cli_wkssvc.c *info = *r.out.info;
out 202 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 205 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 248 librpc/gen_ndr/cli_wkssvc.c if (parm_err && r.out.parm_err) {
out 249 librpc/gen_ndr/cli_wkssvc.c *parm_err = *r.out.parm_err;
out 254 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 257 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 301 librpc/gen_ndr/cli_wkssvc.c *info = *r.out.info;
out 302 librpc/gen_ndr/cli_wkssvc.c *total_entries = *r.out.total_entries;
out 303 librpc/gen_ndr/cli_wkssvc.c if (resume_handle && r.out.resume_handle) {
out 304 librpc/gen_ndr/cli_wkssvc.c *resume_handle = *r.out.resume_handle;
out 309 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 312 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 355 librpc/gen_ndr/cli_wkssvc.c if (parm_err && r.out.parm_err) {
out 356 librpc/gen_ndr/cli_wkssvc.c *parm_err = *r.out.parm_err;
out 361 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 364 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 408 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 411 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 454 librpc/gen_ndr/cli_wkssvc.c if (parm_err && r.out.parm_err) {
out 455 librpc/gen_ndr/cli_wkssvc.c *parm_err = *r.out.parm_err;
out 460 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 463 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 505 librpc/gen_ndr/cli_wkssvc.c *ctr = *r.out.ctr;
out 509 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 512 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 556 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 559 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 603 librpc/gen_ndr/cli_wkssvc.c *info = *r.out.info;
out 604 librpc/gen_ndr/cli_wkssvc.c *entries_read = *r.out.entries_read;
out 605 librpc/gen_ndr/cli_wkssvc.c if (resume_handle && r.out.resume_handle) {
out 606 librpc/gen_ndr/cli_wkssvc.c *resume_handle = *r.out.resume_handle;
out 611 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 614 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 662 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 665 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 709 librpc/gen_ndr/cli_wkssvc.c *info = *r.out.info;
out 713 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 716 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 756 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 759 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 799 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 802 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 852 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 855 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 901 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 904 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 952 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 955 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 1003 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 1006 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 1046 librpc/gen_ndr/cli_wkssvc.c *name_buffer = *r.out.name_buffer;
out 1047 librpc/gen_ndr/cli_wkssvc.c *name_type = *r.out.name_type;
out 1051 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 1054 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 1100 librpc/gen_ndr/cli_wkssvc.c *num_ous = *r.out.num_ous;
out 1101 librpc/gen_ndr/cli_wkssvc.c *ous = *r.out.ous;
out 1105 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 1108 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 1158 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 1161 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 1207 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 1210 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 1258 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 1261 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 1309 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 1312 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 1358 librpc/gen_ndr/cli_wkssvc.c *num_ous = *r.out.num_ous;
out 1359 librpc/gen_ndr/cli_wkssvc.c *ous = *r.out.ous;
out 1363 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 1366 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 1414 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 1417 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 1465 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 1468 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 1516 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 1519 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 1561 librpc/gen_ndr/cli_wkssvc.c *ctr = *r.out.ctr;
out 1565 librpc/gen_ndr/cli_wkssvc.c *werror = r.out.result;
out 1568 librpc/gen_ndr/cli_wkssvc.c return werror_to_ntstatus(r.out.result);
out 285 librpc/gen_ndr/dfs.h } out;
out 301 librpc/gen_ndr/dfs.h } out;
out 315 librpc/gen_ndr/dfs.h } out;
out 331 librpc/gen_ndr/dfs.h } out;
out 347 librpc/gen_ndr/dfs.h } out;
out 364 librpc/gen_ndr/dfs.h } out;
out 372 librpc/gen_ndr/dfs.h } out;
out 380 librpc/gen_ndr/dfs.h } out;
out 388 librpc/gen_ndr/dfs.h } out;
out 396 librpc/gen_ndr/dfs.h } out;
out 417 librpc/gen_ndr/dfs.h } out;
out 435 librpc/gen_ndr/dfs.h } out;
out 450 librpc/gen_ndr/dfs.h } out;
out 464 librpc/gen_ndr/dfs.h } out;
out 477 librpc/gen_ndr/dfs.h } out;
out 492 librpc/gen_ndr/dfs.h } out;
out 510 librpc/gen_ndr/dfs.h } out;
out 525 librpc/gen_ndr/dfs.h } out;
out 538 librpc/gen_ndr/dfs.h } out;
out 546 librpc/gen_ndr/dfs.h } out;
out 554 librpc/gen_ndr/dfs.h } out;
out 572 librpc/gen_ndr/dfs.h } out;
out 580 librpc/gen_ndr/dfs.h } out;
out 1471 librpc/gen_ndr/drsuapi.h } out;
out 1484 librpc/gen_ndr/drsuapi.h } out;
out 1498 librpc/gen_ndr/drsuapi.h } out;
out 1514 librpc/gen_ndr/drsuapi.h } out;
out 1528 librpc/gen_ndr/drsuapi.h } out;
out 1536 librpc/gen_ndr/drsuapi.h } out;
out 1544 librpc/gen_ndr/drsuapi.h } out;
out 1552 librpc/gen_ndr/drsuapi.h } out;
out 1560 librpc/gen_ndr/drsuapi.h } out;
out 1576 librpc/gen_ndr/drsuapi.h } out;
out 1584 librpc/gen_ndr/drsuapi.h } out;
out 1600 librpc/gen_ndr/drsuapi.h } out;
out 1616 librpc/gen_ndr/drsuapi.h } out;
out 1632 librpc/gen_ndr/drsuapi.h } out;
out 1648 librpc/gen_ndr/drsuapi.h } out;
out 1656 librpc/gen_ndr/drsuapi.h } out;
out 1672 librpc/gen_ndr/drsuapi.h } out;
out 1688 librpc/gen_ndr/drsuapi.h } out;
out 1696 librpc/gen_ndr/drsuapi.h } out;
out 1712 librpc/gen_ndr/drsuapi.h } out;
out 1720 librpc/gen_ndr/drsuapi.h } out;
out 1736 librpc/gen_ndr/drsuapi.h } out;
out 1744 librpc/gen_ndr/drsuapi.h } out;
out 1752 librpc/gen_ndr/drsuapi.h } out;
out 1768 librpc/gen_ndr/drsuapi.h } out;
out 129 librpc/gen_ndr/dssetup.h } out;
out 137 librpc/gen_ndr/dssetup.h } out;
out 145 librpc/gen_ndr/dssetup.h } out;
out 153 librpc/gen_ndr/dssetup.h } out;
out 161 librpc/gen_ndr/dssetup.h } out;
out 169 librpc/gen_ndr/dssetup.h } out;
out 177 librpc/gen_ndr/dssetup.h } out;
out 185 librpc/gen_ndr/dssetup.h } out;
out 193 librpc/gen_ndr/dssetup.h } out;
out 201 librpc/gen_ndr/dssetup.h } out;
out 209 librpc/gen_ndr/dssetup.h } out;
out 100 librpc/gen_ndr/echo.h } out;
out 113 librpc/gen_ndr/echo.h } out;
out 134 librpc/gen_ndr/echo.h } out;
out 146 librpc/gen_ndr/echo.h } out;
out 159 librpc/gen_ndr/echo.h } out;
out 171 librpc/gen_ndr/echo.h } out;
out 187 librpc/gen_ndr/echo.h } out;
out 199 librpc/gen_ndr/echo.h } out;
out 211 librpc/gen_ndr/echo.h } out;
out 257 librpc/gen_ndr/epmapper.h } out;
out 270 librpc/gen_ndr/epmapper.h } out;
out 290 librpc/gen_ndr/epmapper.h } out;
out 308 librpc/gen_ndr/epmapper.h } out;
out 321 librpc/gen_ndr/epmapper.h } out;
out 333 librpc/gen_ndr/epmapper.h } out;
out 347 librpc/gen_ndr/epmapper.h } out;
out 355 librpc/gen_ndr/epmapper.h } out;
out 163 librpc/gen_ndr/eventlog.h } out;
out 176 librpc/gen_ndr/eventlog.h } out;
out 189 librpc/gen_ndr/eventlog.h } out;
out 202 librpc/gen_ndr/eventlog.h } out;
out 215 librpc/gen_ndr/eventlog.h } out;
out 228 librpc/gen_ndr/eventlog.h } out;
out 236 librpc/gen_ndr/eventlog.h } out;
out 253 librpc/gen_ndr/eventlog.h } out;
out 270 librpc/gen_ndr/eventlog.h } out;
out 286 librpc/gen_ndr/eventlog.h } out;
out 304 librpc/gen_ndr/eventlog.h } out;
out 331 librpc/gen_ndr/eventlog.h } out;
out 339 librpc/gen_ndr/eventlog.h } out;
out 347 librpc/gen_ndr/eventlog.h } out;
out 355 librpc/gen_ndr/eventlog.h } out;
out 363 librpc/gen_ndr/eventlog.h } out;
out 371 librpc/gen_ndr/eventlog.h } out;
out 379 librpc/gen_ndr/eventlog.h } out;
out 387 librpc/gen_ndr/eventlog.h } out;
out 395 librpc/gen_ndr/eventlog.h } out;
out 403 librpc/gen_ndr/eventlog.h } out;
out 411 librpc/gen_ndr/eventlog.h } out;
out 427 librpc/gen_ndr/eventlog.h } out;
out 439 librpc/gen_ndr/eventlog.h } out;
out 467 librpc/gen_ndr/eventlog.h } out;
out 115 librpc/gen_ndr/initshutdown.h } out;
out 127 librpc/gen_ndr/initshutdown.h } out;
out 144 librpc/gen_ndr/initshutdown.h } out;
out 751 librpc/gen_ndr/lsa.h } out;
out 763 librpc/gen_ndr/lsa.h } out;
out 779 librpc/gen_ndr/lsa.h } out;
out 793 librpc/gen_ndr/lsa.h } out;
out 807 librpc/gen_ndr/lsa.h } out;
out 815 librpc/gen_ndr/lsa.h } out;
out 830 librpc/gen_ndr/lsa.h } out;
out 844 librpc/gen_ndr/lsa.h } out;
out 858 librpc/gen_ndr/lsa.h } out;
out 866 librpc/gen_ndr/lsa.h } out;
out 881 librpc/gen_ndr/lsa.h } out;
out 897 librpc/gen_ndr/lsa.h } out;
out 912 librpc/gen_ndr/lsa.h } out;
out 928 librpc/gen_ndr/lsa.h } out;
out 948 librpc/gen_ndr/lsa.h } out;
out 967 librpc/gen_ndr/lsa.h } out;
out 982 librpc/gen_ndr/lsa.h } out;
out 997 librpc/gen_ndr/lsa.h } out;
out 1010 librpc/gen_ndr/lsa.h } out;
out 1023 librpc/gen_ndr/lsa.h } out;
out 1037 librpc/gen_ndr/lsa.h } out;
out 1045 librpc/gen_ndr/lsa.h } out;
out 1053 librpc/gen_ndr/lsa.h } out;
out 1066 librpc/gen_ndr/lsa.h } out;
out 1079 librpc/gen_ndr/lsa.h } out;
out 1094 librpc/gen_ndr/lsa.h } out;
out 1108 librpc/gen_ndr/lsa.h } out;
out 1122 librpc/gen_ndr/lsa.h } out;
out 1137 librpc/gen_ndr/lsa.h } out;
out 1151 librpc/gen_ndr/lsa.h } out;
out 1171 librpc/gen_ndr/lsa.h } out;
out 1185 librpc/gen_ndr/lsa.h } out;
out 1199 librpc/gen_ndr/lsa.h } out;
out 1216 librpc/gen_ndr/lsa.h } out;
out 1229 librpc/gen_ndr/lsa.h } out;
out 1243 librpc/gen_ndr/lsa.h } out;
out 1257 librpc/gen_ndr/lsa.h } out;
out 1271 librpc/gen_ndr/lsa.h } out;
out 1286 librpc/gen_ndr/lsa.h } out;
out 1301 librpc/gen_ndr/lsa.h } out;
out 1316 librpc/gen_ndr/lsa.h } out;
out 1329 librpc/gen_ndr/lsa.h } out;
out 1337 librpc/gen_ndr/lsa.h } out;
out 1345 librpc/gen_ndr/lsa.h } out;
out 1360 librpc/gen_ndr/lsa.h } out;
out 1376 librpc/gen_ndr/lsa.h } out;
out 1390 librpc/gen_ndr/lsa.h } out;
out 1404 librpc/gen_ndr/lsa.h } out;
out 1419 librpc/gen_ndr/lsa.h } out;
out 1434 librpc/gen_ndr/lsa.h } out;
out 1450 librpc/gen_ndr/lsa.h } out;
out 1466 librpc/gen_ndr/lsa.h } out;
out 1479 librpc/gen_ndr/lsa.h } out;
out 1493 librpc/gen_ndr/lsa.h } out;
out 1507 librpc/gen_ndr/lsa.h } out;
out 1522 librpc/gen_ndr/lsa.h } out;
out 1530 librpc/gen_ndr/lsa.h } out;
out 1551 librpc/gen_ndr/lsa.h } out;
out 1573 librpc/gen_ndr/lsa.h } out;
out 1589 librpc/gen_ndr/lsa.h } out;
out 1597 librpc/gen_ndr/lsa.h } out;
out 1605 librpc/gen_ndr/lsa.h } out;
out 1613 librpc/gen_ndr/lsa.h } out;
out 1621 librpc/gen_ndr/lsa.h } out;
out 1629 librpc/gen_ndr/lsa.h } out;
out 1637 librpc/gen_ndr/lsa.h } out;
out 1645 librpc/gen_ndr/lsa.h } out;
out 1653 librpc/gen_ndr/lsa.h } out;
out 1675 librpc/gen_ndr/lsa.h } out;
out 1683 librpc/gen_ndr/lsa.h } out;
out 1691 librpc/gen_ndr/lsa.h } out;
out 1699 librpc/gen_ndr/lsa.h } out;
out 1707 librpc/gen_ndr/lsa.h } out;
out 1722 librpc/gen_ndr/lsa.h } out;
out 1730 librpc/gen_ndr/lsa.h } out;
out 1738 librpc/gen_ndr/lsa.h } out;
out 1758 librpc/gen_ndr/lsa.h } out;
out 1779 librpc/gen_ndr/lsa.h } out;
out 1787 librpc/gen_ndr/lsa.h } out;
out 1795 librpc/gen_ndr/lsa.h } out;
out 1803 librpc/gen_ndr/lsa.h } out;
out 1811 librpc/gen_ndr/lsa.h } out;
out 3351 librpc/gen_ndr/ndr_dfs.c if (r->out.version == NULL) {
out 3354 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_dfs_ManagerVersion(ndr, NDR_SCALARS, *r->out.version));
out 3363 librpc/gen_ndr/ndr_dfs.c ZERO_STRUCT(r->out);
out 3365 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.version);
out 3366 librpc/gen_ndr/ndr_dfs.c ZERO_STRUCTP(r->out.version);
out 3370 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.version);
out 3373 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.version, LIBNDR_FLAG_REF_ALLOC);
out 3374 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_dfs_ManagerVersion(ndr, NDR_SCALARS, r->out.version));
out 3395 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "version", r->out.version);
out 3397 librpc/gen_ndr/ndr_dfs.c ndr_print_dfs_ManagerVersion(ndr, "version", *r->out.version);
out 3438 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3503 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3544 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3576 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3633 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3669 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3704 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3771 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3810 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3840 librpc/gen_ndr/ndr_dfs.c if (r->out.info == NULL) {
out 3843 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 3844 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_dfs_Info(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 3845 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3858 librpc/gen_ndr/ndr_dfs.c ZERO_STRUCT(r->out);
out 3904 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.info);
out 3905 librpc/gen_ndr/ndr_dfs.c ZERO_STRUCTP(r->out.info);
out 3909 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.info);
out 3912 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 3913 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 3914 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_dfs_Info(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 3916 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3950 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "info", r->out.info);
out 3952 librpc/gen_ndr/ndr_dfs.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 3953 librpc/gen_ndr/ndr_dfs.c ndr_print_dfs_Info(ndr, "info", r->out.info);
out 3955 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3976 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 3977 librpc/gen_ndr/ndr_dfs.c if (r->out.info) {
out 3978 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_dfs_EnumStruct(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 3980 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.total));
out 3981 librpc/gen_ndr/ndr_dfs.c if (r->out.total) {
out 3982 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.total));
out 3984 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3996 librpc/gen_ndr/ndr_dfs.c ZERO_STRUCT(r->out);
out 4028 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.info);
out 4030 librpc/gen_ndr/ndr_dfs.c r->out.info = NULL;
out 4032 librpc/gen_ndr/ndr_dfs.c if (r->out.info) {
out 4034 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 4035 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_dfs_EnumStruct(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 4040 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.total);
out 4042 librpc/gen_ndr/ndr_dfs.c r->out.total = NULL;
out 4044 librpc/gen_ndr/ndr_dfs.c if (r->out.total) {
out 4046 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.total, 0);
out 4047 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.total));
out 4050 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4084 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "info", r->out.info);
out 4086 librpc/gen_ndr/ndr_dfs.c if (r->out.info) {
out 4087 librpc/gen_ndr/ndr_dfs.c ndr_print_dfs_EnumStruct(ndr, "info", r->out.info);
out 4090 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "total", r->out.total);
out 4092 librpc/gen_ndr/ndr_dfs.c if (r->out.total) {
out 4093 librpc/gen_ndr/ndr_dfs.c ndr_print_uint32(ndr, "total", *r->out.total);
out 4096 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4107 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4117 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4137 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4148 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4158 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4178 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4189 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4199 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4219 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4230 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4240 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4260 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4304 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.unknown2));
out 4305 librpc/gen_ndr/ndr_dfs.c if (r->out.unknown2) {
out 4306 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.unknown2));
out 4307 librpc/gen_ndr/ndr_dfs.c if (*r->out.unknown2) {
out 4308 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_dfs_UnknownStruct(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.unknown2));
out 4311 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4322 librpc/gen_ndr/ndr_dfs.c ZERO_STRUCT(r->out);
out 4395 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.unknown2);
out 4397 librpc/gen_ndr/ndr_dfs.c r->out.unknown2 = NULL;
out 4399 librpc/gen_ndr/ndr_dfs.c if (r->out.unknown2) {
out 4401 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.unknown2, 0);
out 4404 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, *r->out.unknown2);
out 4406 librpc/gen_ndr/ndr_dfs.c *r->out.unknown2 = NULL;
out 4408 librpc/gen_ndr/ndr_dfs.c if (*r->out.unknown2) {
out 4410 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.unknown2, 0);
out 4411 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_dfs_UnknownStruct(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.unknown2));
out 4416 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4455 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "unknown2", r->out.unknown2);
out 4457 librpc/gen_ndr/ndr_dfs.c if (r->out.unknown2) {
out 4458 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "unknown2", *r->out.unknown2);
out 4460 librpc/gen_ndr/ndr_dfs.c if (*r->out.unknown2) {
out 4461 librpc/gen_ndr/ndr_dfs.c ndr_print_dfs_UnknownStruct(ndr, "unknown2", *r->out.unknown2);
out 4466 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4501 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.unknown));
out 4502 librpc/gen_ndr/ndr_dfs.c if (r->out.unknown) {
out 4503 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.unknown));
out 4504 librpc/gen_ndr/ndr_dfs.c if (*r->out.unknown) {
out 4505 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_dfs_UnknownStruct(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.unknown));
out 4508 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4519 librpc/gen_ndr/ndr_dfs.c ZERO_STRUCT(r->out);
out 4577 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.unknown);
out 4579 librpc/gen_ndr/ndr_dfs.c r->out.unknown = NULL;
out 4581 librpc/gen_ndr/ndr_dfs.c if (r->out.unknown) {
out 4583 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.unknown, 0);
out 4586 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, *r->out.unknown);
out 4588 librpc/gen_ndr/ndr_dfs.c *r->out.unknown = NULL;
out 4590 librpc/gen_ndr/ndr_dfs.c if (*r->out.unknown) {
out 4592 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.unknown, 0);
out 4593 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_dfs_UnknownStruct(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.unknown));
out 4598 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4634 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "unknown", r->out.unknown);
out 4636 librpc/gen_ndr/ndr_dfs.c if (r->out.unknown) {
out 4637 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "unknown", *r->out.unknown);
out 4639 librpc/gen_ndr/ndr_dfs.c if (*r->out.unknown) {
out 4640 librpc/gen_ndr/ndr_dfs.c ndr_print_dfs_UnknownStruct(ndr, "unknown", *r->out.unknown);
out 4645 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4669 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4701 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4725 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4745 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4770 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4793 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4812 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4830 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4855 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4882 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4920 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4944 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4977 librpc/gen_ndr/ndr_dfs.c if (r->out.server_fullname == NULL) {
out 4980 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.server_fullname));
out 4981 librpc/gen_ndr/ndr_dfs.c if (*r->out.server_fullname) {
out 4982 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.server_fullname, CH_UTF16)));
out 4984 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.server_fullname, CH_UTF16)));
out 4985 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.server_fullname, ndr_charset_length(*r->out.server_fullname, CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 4987 librpc/gen_ndr/ndr_dfs.c if (r->out.is_root == NULL) {
out 4990 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_uint8(ndr, NDR_SCALARS, *r->out.is_root));
out 4991 librpc/gen_ndr/ndr_dfs.c if (r->out.ttl == NULL) {
out 4994 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.ttl));
out 4995 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5008 librpc/gen_ndr/ndr_dfs.c ZERO_STRUCT(r->out);
out 5055 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.server_fullname);
out 5056 librpc/gen_ndr/ndr_dfs.c *r->out.server_fullname = *r->in.server_fullname;
out 5057 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.is_root);
out 5058 librpc/gen_ndr/ndr_dfs.c *r->out.is_root = *r->in.is_root;
out 5059 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.ttl);
out 5060 librpc/gen_ndr/ndr_dfs.c *r->out.ttl = *r->in.ttl;
out 5064 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.server_fullname);
out 5067 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.server_fullname, LIBNDR_FLAG_REF_ALLOC);
out 5070 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, *r->out.server_fullname);
out 5072 librpc/gen_ndr/ndr_dfs.c *r->out.server_fullname = NULL;
out 5074 librpc/gen_ndr/ndr_dfs.c if (*r->out.server_fullname) {
out 5076 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.server_fullname, 0);
out 5077 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.server_fullname));
out 5078 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_array_length(ndr, r->out.server_fullname));
out 5079 librpc/gen_ndr/ndr_dfs.c if (ndr_get_array_length(ndr, r->out.server_fullname) > ndr_get_array_size(ndr, r->out.server_fullname)) {
out 5080 librpc/gen_ndr/ndr_dfs.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.server_fullname), ndr_get_array_length(ndr, r->out.server_fullname));
out 5082 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.server_fullname), sizeof(uint16_t)));
out 5083 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.server_fullname, ndr_get_array_length(ndr, r->out.server_fullname), sizeof(uint16_t), CH_UTF16));
out 5088 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.is_root);
out 5091 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.is_root, LIBNDR_FLAG_REF_ALLOC);
out 5092 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_uint8(ndr, NDR_SCALARS, r->out.is_root));
out 5095 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.ttl);
out 5098 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ttl, LIBNDR_FLAG_REF_ALLOC);
out 5099 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.ttl));
out 5101 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5139 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "server_fullname", r->out.server_fullname);
out 5141 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "server_fullname", *r->out.server_fullname);
out 5143 librpc/gen_ndr/ndr_dfs.c if (*r->out.server_fullname) {
out 5144 librpc/gen_ndr/ndr_dfs.c ndr_print_string(ndr, "server_fullname", *r->out.server_fullname);
out 5148 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "is_root", r->out.is_root);
out 5150 librpc/gen_ndr/ndr_dfs.c ndr_print_uint8(ndr, "is_root", *r->out.is_root);
out 5152 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "ttl", r->out.ttl);
out 5154 librpc/gen_ndr/ndr_dfs.c ndr_print_uint32(ndr, "ttl", *r->out.ttl);
out 5156 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5177 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5203 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5227 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5246 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5270 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5292 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5303 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5313 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5333 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5344 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5354 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5374 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5399 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 5400 librpc/gen_ndr/ndr_dfs.c if (r->out.info) {
out 5401 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_dfs_EnumStruct(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 5403 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.total));
out 5404 librpc/gen_ndr/ndr_dfs.c if (r->out.total) {
out 5405 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.total));
out 5407 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5419 librpc/gen_ndr/ndr_dfs.c ZERO_STRUCT(r->out);
out 5458 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.info);
out 5460 librpc/gen_ndr/ndr_dfs.c r->out.info = NULL;
out 5462 librpc/gen_ndr/ndr_dfs.c if (r->out.info) {
out 5464 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 5465 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_dfs_EnumStruct(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 5470 librpc/gen_ndr/ndr_dfs.c NDR_PULL_ALLOC(ndr, r->out.total);
out 5472 librpc/gen_ndr/ndr_dfs.c r->out.total = NULL;
out 5474 librpc/gen_ndr/ndr_dfs.c if (r->out.total) {
out 5476 librpc/gen_ndr/ndr_dfs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.total, 0);
out 5477 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.total));
out 5480 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5515 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "info", r->out.info);
out 5517 librpc/gen_ndr/ndr_dfs.c if (r->out.info) {
out 5518 librpc/gen_ndr/ndr_dfs.c ndr_print_dfs_EnumStruct(ndr, "info", r->out.info);
out 5521 librpc/gen_ndr/ndr_dfs.c ndr_print_ptr(ndr, "total", r->out.total);
out 5523 librpc/gen_ndr/ndr_dfs.c if (r->out.total) {
out 5524 librpc/gen_ndr/ndr_dfs.c ndr_print_uint32(ndr, "total", *r->out.total);
out 5527 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5538 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5548 librpc/gen_ndr/ndr_dfs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5568 librpc/gen_ndr/ndr_dfs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12238 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.bind_info));
out 12239 librpc/gen_ndr/ndr_drsuapi.c if (r->out.bind_info) {
out 12240 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_DsBindInfoCtr(ndr, NDR_SCALARS, r->out.bind_info));
out 12242 librpc/gen_ndr/ndr_drsuapi.c if (r->out.bind_handle == NULL) {
out 12245 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.bind_handle));
out 12246 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12259 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 12285 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.bind_handle);
out 12286 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.bind_handle);
out 12291 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.bind_info);
out 12293 librpc/gen_ndr/ndr_drsuapi.c r->out.bind_info = NULL;
out 12295 librpc/gen_ndr/ndr_drsuapi.c if (r->out.bind_info) {
out 12297 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.bind_info, 0);
out 12298 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_DsBindInfoCtr(ndr, NDR_SCALARS, r->out.bind_info));
out 12302 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.bind_handle);
out 12305 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.bind_handle, LIBNDR_FLAG_REF_ALLOC);
out 12306 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.bind_handle));
out 12308 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12340 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "bind_info", r->out.bind_info);
out 12342 librpc/gen_ndr/ndr_drsuapi.c if (r->out.bind_info) {
out 12343 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_DsBindInfoCtr(ndr, "bind_info", r->out.bind_info);
out 12346 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "bind_handle", r->out.bind_handle);
out 12348 librpc/gen_ndr/ndr_drsuapi.c ndr_print_policy_handle(ndr, "bind_handle", r->out.bind_handle);
out 12350 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12365 librpc/gen_ndr/ndr_drsuapi.c if (r->out.bind_handle == NULL) {
out 12368 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.bind_handle));
out 12369 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12378 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 12387 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.bind_handle);
out 12388 librpc/gen_ndr/ndr_drsuapi.c *r->out.bind_handle = *r->in.bind_handle;
out 12392 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.bind_handle);
out 12395 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.bind_handle, LIBNDR_FLAG_REF_ALLOC);
out 12396 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.bind_handle));
out 12398 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12422 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "bind_handle", r->out.bind_handle);
out 12424 librpc/gen_ndr/ndr_drsuapi.c ndr_print_policy_handle(ndr, "bind_handle", r->out.bind_handle);
out 12426 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12444 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12465 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12492 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12513 librpc/gen_ndr/ndr_drsuapi.c if (r->out.level_out == NULL) {
out 12516 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_int32(ndr, NDR_SCALARS, *r->out.level_out));
out 12517 librpc/gen_ndr/ndr_drsuapi.c if (r->out.ctr == NULL) {
out 12520 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 12521 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_DsGetNCChangesCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 12522 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12534 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 12552 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 12553 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.level_out);
out 12554 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 12555 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.ctr);
out 12559 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 12562 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.level_out, LIBNDR_FLAG_REF_ALLOC);
out 12563 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_int32(ndr, NDR_SCALARS, r->out.level_out));
out 12566 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 12569 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ctr, LIBNDR_FLAG_REF_ALLOC);
out 12570 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 12571 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_DsGetNCChangesCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 12573 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12603 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "level_out", r->out.level_out);
out 12605 librpc/gen_ndr/ndr_drsuapi.c ndr_print_int32(ndr, "level_out", *r->out.level_out);
out 12607 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "ctr", r->out.ctr);
out 12609 librpc/gen_ndr/ndr_drsuapi.c ndr_print_set_switch_value(ndr, r->out.ctr, *r->out.level_out);
out 12610 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_DsGetNCChangesCtr(ndr, "ctr", r->out.ctr);
out 12612 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12630 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12651 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12678 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12689 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12699 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12719 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12730 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12740 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12760 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12771 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12781 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12801 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12812 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12822 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12842 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12863 librpc/gen_ndr/ndr_drsuapi.c if (r->out.level_out == NULL) {
out 12866 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_int32(ndr, NDR_SCALARS, *r->out.level_out));
out 12867 librpc/gen_ndr/ndr_drsuapi.c if (r->out.ctr == NULL) {
out 12870 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 12871 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_DsGetMembershipsCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 12872 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12884 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 12902 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 12903 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.level_out);
out 12904 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 12905 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.ctr);
out 12909 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 12912 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.level_out, LIBNDR_FLAG_REF_ALLOC);
out 12913 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_int32(ndr, NDR_SCALARS, r->out.level_out));
out 12916 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 12919 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ctr, LIBNDR_FLAG_REF_ALLOC);
out 12920 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 12921 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_DsGetMembershipsCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 12923 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12953 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "level_out", r->out.level_out);
out 12955 librpc/gen_ndr/ndr_drsuapi.c ndr_print_int32(ndr, "level_out", *r->out.level_out);
out 12957 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "ctr", r->out.ctr);
out 12959 librpc/gen_ndr/ndr_drsuapi.c ndr_print_set_switch_value(ndr, r->out.ctr, *r->out.level_out);
out 12960 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_DsGetMembershipsCtr(ndr, "ctr", r->out.ctr);
out 12962 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12973 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12983 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13003 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13024 librpc/gen_ndr/ndr_drsuapi.c if (r->out.level_out == NULL) {
out 13027 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.level_out));
out 13028 librpc/gen_ndr/ndr_drsuapi.c if (r->out.info == NULL) {
out 13031 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, *r->out.level_out));
out 13032 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_DsGetNT4ChangeLogInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 13033 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13045 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 13063 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 13064 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.level_out);
out 13065 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.info);
out 13066 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.info);
out 13070 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 13073 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.level_out, LIBNDR_FLAG_REF_ALLOC);
out 13074 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.level_out));
out 13077 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.info);
out 13080 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 13081 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, *r->out.level_out));
out 13082 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_DsGetNT4ChangeLogInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 13084 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13114 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "level_out", r->out.level_out);
out 13116 librpc/gen_ndr/ndr_drsuapi.c ndr_print_uint32(ndr, "level_out", *r->out.level_out);
out 13118 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "info", r->out.info);
out 13120 librpc/gen_ndr/ndr_drsuapi.c ndr_print_set_switch_value(ndr, r->out.info, *r->out.level_out);
out 13121 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_DsGetNT4ChangeLogInfo(ndr, "info", r->out.info);
out 13123 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13144 librpc/gen_ndr/ndr_drsuapi.c if (r->out.level_out == NULL) {
out 13147 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_int32(ndr, NDR_SCALARS, *r->out.level_out));
out 13148 librpc/gen_ndr/ndr_drsuapi.c if (r->out.ctr == NULL) {
out 13151 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 13152 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_DsNameCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 13153 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13165 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 13183 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 13184 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.level_out);
out 13185 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 13186 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.ctr);
out 13190 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 13193 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.level_out, LIBNDR_FLAG_REF_ALLOC);
out 13194 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_int32(ndr, NDR_SCALARS, r->out.level_out));
out 13197 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 13200 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ctr, LIBNDR_FLAG_REF_ALLOC);
out 13201 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 13202 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_DsNameCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 13204 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13234 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "level_out", r->out.level_out);
out 13236 librpc/gen_ndr/ndr_drsuapi.c ndr_print_int32(ndr, "level_out", *r->out.level_out);
out 13238 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "ctr", r->out.ctr);
out 13240 librpc/gen_ndr/ndr_drsuapi.c ndr_print_set_switch_value(ndr, r->out.ctr, *r->out.level_out);
out 13241 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_DsNameCtr(ndr, "ctr", r->out.ctr);
out 13243 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13264 librpc/gen_ndr/ndr_drsuapi.c if (r->out.level_out == NULL) {
out 13267 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_int32(ndr, NDR_SCALARS, *r->out.level_out));
out 13268 librpc/gen_ndr/ndr_drsuapi.c if (r->out.res == NULL) {
out 13271 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.res, *r->out.level_out));
out 13272 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_DsWriteAccountSpnResult(ndr, NDR_SCALARS, r->out.res));
out 13273 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13285 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 13303 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 13304 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.level_out);
out 13305 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.res);
out 13306 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.res);
out 13310 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 13313 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.level_out, LIBNDR_FLAG_REF_ALLOC);
out 13314 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_int32(ndr, NDR_SCALARS, r->out.level_out));
out 13317 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.res);
out 13320 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.res, LIBNDR_FLAG_REF_ALLOC);
out 13321 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.res, *r->out.level_out));
out 13322 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_DsWriteAccountSpnResult(ndr, NDR_SCALARS, r->out.res));
out 13324 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13354 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "level_out", r->out.level_out);
out 13356 librpc/gen_ndr/ndr_drsuapi.c ndr_print_int32(ndr, "level_out", *r->out.level_out);
out 13358 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "res", r->out.res);
out 13360 librpc/gen_ndr/ndr_drsuapi.c ndr_print_set_switch_value(ndr, r->out.res, *r->out.level_out);
out 13361 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_DsWriteAccountSpnResult(ndr, "res", r->out.res);
out 13363 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13384 librpc/gen_ndr/ndr_drsuapi.c if (r->out.level_out == NULL) {
out 13387 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_int32(ndr, NDR_SCALARS, *r->out.level_out));
out 13388 librpc/gen_ndr/ndr_drsuapi.c if (r->out.res == NULL) {
out 13391 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.res, *r->out.level_out));
out 13392 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_DsRemoveDSServerResult(ndr, NDR_SCALARS, r->out.res));
out 13393 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13405 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 13423 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 13424 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.level_out);
out 13425 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.res);
out 13426 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.res);
out 13430 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 13433 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.level_out, LIBNDR_FLAG_REF_ALLOC);
out 13434 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_int32(ndr, NDR_SCALARS, r->out.level_out));
out 13437 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.res);
out 13440 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.res, LIBNDR_FLAG_REF_ALLOC);
out 13441 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.res, *r->out.level_out));
out 13442 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_DsRemoveDSServerResult(ndr, NDR_SCALARS, r->out.res));
out 13444 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13474 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "level_out", r->out.level_out);
out 13476 librpc/gen_ndr/ndr_drsuapi.c ndr_print_int32(ndr, "level_out", *r->out.level_out);
out 13478 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "res", r->out.res);
out 13480 librpc/gen_ndr/ndr_drsuapi.c ndr_print_set_switch_value(ndr, r->out.res, *r->out.level_out);
out 13481 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_DsRemoveDSServerResult(ndr, "res", r->out.res);
out 13483 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13494 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13504 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13524 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13545 librpc/gen_ndr/ndr_drsuapi.c if (r->out.level_out == NULL) {
out 13548 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_int32(ndr, NDR_SCALARS, *r->out.level_out));
out 13549 librpc/gen_ndr/ndr_drsuapi.c if (r->out.ctr == NULL) {
out 13552 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 13553 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_DsGetDCInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 13554 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13566 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 13584 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 13585 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.level_out);
out 13586 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 13587 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.ctr);
out 13591 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 13594 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.level_out, LIBNDR_FLAG_REF_ALLOC);
out 13595 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_int32(ndr, NDR_SCALARS, r->out.level_out));
out 13598 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 13601 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ctr, LIBNDR_FLAG_REF_ALLOC);
out 13602 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 13603 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_DsGetDCInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 13605 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13635 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "level_out", r->out.level_out);
out 13637 librpc/gen_ndr/ndr_drsuapi.c ndr_print_int32(ndr, "level_out", *r->out.level_out);
out 13639 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "ctr", r->out.ctr);
out 13641 librpc/gen_ndr/ndr_drsuapi.c ndr_print_set_switch_value(ndr, r->out.ctr, *r->out.level_out);
out 13642 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_DsGetDCInfoCtr(ndr, "ctr", r->out.ctr);
out 13644 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13665 librpc/gen_ndr/ndr_drsuapi.c if (r->out.level_out == NULL) {
out 13668 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_int32(ndr, NDR_SCALARS, *r->out.level_out));
out 13669 librpc/gen_ndr/ndr_drsuapi.c if (r->out.ctr == NULL) {
out 13672 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 13673 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_DsAddEntryCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 13674 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13686 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 13704 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 13705 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.level_out);
out 13706 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 13707 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.ctr);
out 13711 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 13714 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.level_out, LIBNDR_FLAG_REF_ALLOC);
out 13715 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_int32(ndr, NDR_SCALARS, r->out.level_out));
out 13718 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 13721 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ctr, LIBNDR_FLAG_REF_ALLOC);
out 13722 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 13723 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_DsAddEntryCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 13725 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13755 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "level_out", r->out.level_out);
out 13757 librpc/gen_ndr/ndr_drsuapi.c ndr_print_int32(ndr, "level_out", *r->out.level_out);
out 13759 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "ctr", r->out.ctr);
out 13761 librpc/gen_ndr/ndr_drsuapi.c ndr_print_set_switch_value(ndr, r->out.ctr, *r->out.level_out);
out 13762 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_DsAddEntryCtr(ndr, "ctr", r->out.ctr);
out 13764 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13775 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13785 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13805 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13826 librpc/gen_ndr/ndr_drsuapi.c if (r->out.info_type == NULL) {
out 13829 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_DsReplicaInfoType(ndr, NDR_SCALARS, *r->out.info_type));
out 13830 librpc/gen_ndr/ndr_drsuapi.c if (r->out.info == NULL) {
out 13833 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, *r->out.info_type));
out 13834 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_DsReplicaInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 13835 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13847 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 13865 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.info_type);
out 13866 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.info_type);
out 13867 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.info);
out 13868 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.info);
out 13872 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.info_type);
out 13875 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info_type, LIBNDR_FLAG_REF_ALLOC);
out 13876 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_DsReplicaInfoType(ndr, NDR_SCALARS, r->out.info_type));
out 13879 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.info);
out 13882 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 13883 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, *r->out.info_type));
out 13884 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_DsReplicaInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 13886 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13916 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "info_type", r->out.info_type);
out 13918 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_DsReplicaInfoType(ndr, "info_type", *r->out.info_type);
out 13920 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "info", r->out.info);
out 13922 librpc/gen_ndr/ndr_drsuapi.c ndr_print_set_switch_value(ndr, r->out.info, *r->out.info_type);
out 13923 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_DsReplicaInfo(ndr, "info", r->out.info);
out 13925 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13936 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13946 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13966 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13987 librpc/gen_ndr/ndr_drsuapi.c if (r->out.level_out == NULL) {
out 13990 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_int32(ndr, NDR_SCALARS, *r->out.level_out));
out 13991 librpc/gen_ndr/ndr_drsuapi.c if (r->out.ctr == NULL) {
out 13994 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 13995 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_DsGetMemberships2Ctr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 13996 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14008 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 14026 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 14027 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.level_out);
out 14028 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 14029 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.ctr);
out 14033 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 14036 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.level_out, LIBNDR_FLAG_REF_ALLOC);
out 14037 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_int32(ndr, NDR_SCALARS, r->out.level_out));
out 14040 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 14043 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ctr, LIBNDR_FLAG_REF_ALLOC);
out 14044 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 14045 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_DsGetMemberships2Ctr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 14047 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14077 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "level_out", r->out.level_out);
out 14079 librpc/gen_ndr/ndr_drsuapi.c ndr_print_int32(ndr, "level_out", *r->out.level_out);
out 14081 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "ctr", r->out.ctr);
out 14083 librpc/gen_ndr/ndr_drsuapi.c ndr_print_set_switch_value(ndr, r->out.ctr, *r->out.level_out);
out 14084 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_DsGetMemberships2Ctr(ndr, "ctr", r->out.ctr);
out 14086 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14097 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14107 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14127 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14138 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14148 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14168 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14189 librpc/gen_ndr/ndr_drsuapi.c if (r->out.level_out == NULL) {
out 14192 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_int32(ndr, NDR_SCALARS, *r->out.level_out));
out 14193 librpc/gen_ndr/ndr_drsuapi.c if (r->out.ctr == NULL) {
out 14196 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 14197 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_drsuapi_QuerySitesByCostCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 14198 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14210 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCT(r->out);
out 14228 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 14229 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.level_out);
out 14230 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 14231 librpc/gen_ndr/ndr_drsuapi.c ZERO_STRUCTP(r->out.ctr);
out 14235 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 14238 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.level_out, LIBNDR_FLAG_REF_ALLOC);
out 14239 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_int32(ndr, NDR_SCALARS, r->out.level_out));
out 14242 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 14245 librpc/gen_ndr/ndr_drsuapi.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ctr, LIBNDR_FLAG_REF_ALLOC);
out 14246 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.ctr, *r->out.level_out));
out 14247 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_drsuapi_QuerySitesByCostCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 14249 librpc/gen_ndr/ndr_drsuapi.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14279 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "level_out", r->out.level_out);
out 14281 librpc/gen_ndr/ndr_drsuapi.c ndr_print_int32(ndr, "level_out", *r->out.level_out);
out 14283 librpc/gen_ndr/ndr_drsuapi.c ndr_print_ptr(ndr, "ctr", r->out.ctr);
out 14285 librpc/gen_ndr/ndr_drsuapi.c ndr_print_set_switch_value(ndr, r->out.ctr, *r->out.level_out);
out 14286 librpc/gen_ndr/ndr_drsuapi.c ndr_print_drsuapi_QuerySitesByCostCtr(ndr, "ctr", r->out.ctr);
out 14288 librpc/gen_ndr/ndr_drsuapi.c ndr_print_WERROR(ndr, "result", r->out.result);
out 479 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 480 librpc/gen_ndr/ndr_dssetup.c if (r->out.info) {
out 481 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 482 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_dssetup_DsRoleInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 484 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 494 librpc/gen_ndr/ndr_dssetup.c ZERO_STRUCT(r->out);
out 501 librpc/gen_ndr/ndr_dssetup.c NDR_PULL_ALLOC(ndr, r->out.info);
out 503 librpc/gen_ndr/ndr_dssetup.c r->out.info = NULL;
out 505 librpc/gen_ndr/ndr_dssetup.c if (r->out.info) {
out 507 librpc/gen_ndr/ndr_dssetup.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 508 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 509 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_dssetup_DsRoleInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 512 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 533 librpc/gen_ndr/ndr_dssetup.c ndr_print_ptr(ndr, "info", r->out.info);
out 535 librpc/gen_ndr/ndr_dssetup.c if (r->out.info) {
out 536 librpc/gen_ndr/ndr_dssetup.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 537 librpc/gen_ndr/ndr_dssetup.c ndr_print_dssetup_DsRoleInfo(ndr, "info", r->out.info);
out 540 librpc/gen_ndr/ndr_dssetup.c ndr_print_WERROR(ndr, "result", r->out.result);
out 551 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 561 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 581 librpc/gen_ndr/ndr_dssetup.c ndr_print_WERROR(ndr, "result", r->out.result);
out 592 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 602 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 622 librpc/gen_ndr/ndr_dssetup.c ndr_print_WERROR(ndr, "result", r->out.result);
out 633 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 643 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 663 librpc/gen_ndr/ndr_dssetup.c ndr_print_WERROR(ndr, "result", r->out.result);
out 674 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 684 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 704 librpc/gen_ndr/ndr_dssetup.c ndr_print_WERROR(ndr, "result", r->out.result);
out 715 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 725 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 745 librpc/gen_ndr/ndr_dssetup.c ndr_print_WERROR(ndr, "result", r->out.result);
out 756 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 766 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 786 librpc/gen_ndr/ndr_dssetup.c ndr_print_WERROR(ndr, "result", r->out.result);
out 797 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 807 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 827 librpc/gen_ndr/ndr_dssetup.c ndr_print_WERROR(ndr, "result", r->out.result);
out 838 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 848 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 868 librpc/gen_ndr/ndr_dssetup.c ndr_print_WERROR(ndr, "result", r->out.result);
out 879 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 889 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 909 librpc/gen_ndr/ndr_dssetup.c ndr_print_WERROR(ndr, "result", r->out.result);
out 920 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 930 librpc/gen_ndr/ndr_dssetup.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 950 librpc/gen_ndr/ndr_dssetup.c ndr_print_WERROR(ndr, "result", r->out.result);
out 645 librpc/gen_ndr/ndr_echo.c if (r->out.out_data == NULL) {
out 648 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.out_data));
out 657 librpc/gen_ndr/ndr_echo.c ZERO_STRUCT(r->out);
out 660 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.out_data);
out 661 librpc/gen_ndr/ndr_echo.c ZERO_STRUCTP(r->out.out_data);
out 665 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.out_data);
out 668 librpc/gen_ndr/ndr_echo.c NDR_PULL_SET_MEM_CTX(ndr, r->out.out_data, LIBNDR_FLAG_REF_ALLOC);
out 669 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.out_data));
out 691 librpc/gen_ndr/ndr_echo.c ndr_print_ptr(ndr, "out_data", r->out.out_data);
out 693 librpc/gen_ndr/ndr_echo.c ndr_print_uint32(ndr, "out_data", *r->out.out_data);
out 709 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.out_data, r->in.len));
out 717 librpc/gen_ndr/ndr_echo.c ZERO_STRUCT(r->out);
out 728 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.out_data));
out 729 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC_N(ndr, r->out.out_data, ndr_get_array_size(ndr, &r->out.out_data));
out 730 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.out_data, ndr_get_array_size(ndr, &r->out.out_data)));
out 731 librpc/gen_ndr/ndr_echo.c if (r->out.out_data) {
out 732 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.out_data, r->in.len));
out 755 librpc/gen_ndr/ndr_echo.c ndr_print_array_uint8(ndr, "out_data", r->out.out_data, r->in.len);
out 818 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.data, r->in.len));
out 826 librpc/gen_ndr/ndr_echo.c ZERO_STRUCT(r->out);
out 831 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.data));
out 832 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC_N(ndr, r->out.data, ndr_get_array_size(ndr, &r->out.data));
out 833 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.data, ndr_get_array_size(ndr, &r->out.data)));
out 834 librpc/gen_ndr/ndr_echo.c if (r->out.data) {
out 835 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.data, r->in.len));
out 857 librpc/gen_ndr/ndr_echo.c ndr_print_array_uint8(ndr, "data", r->out.data, r->in.len);
out 875 librpc/gen_ndr/ndr_echo.c if (r->out.s2 == NULL) {
out 878 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.s2));
out 879 librpc/gen_ndr/ndr_echo.c if (*r->out.s2) {
out 880 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.s2, CH_UTF16)));
out 882 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.s2, CH_UTF16)));
out 883 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.s2, ndr_charset_length(*r->out.s2, CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 895 librpc/gen_ndr/ndr_echo.c ZERO_STRUCT(r->out);
out 904 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.s2);
out 905 librpc/gen_ndr/ndr_echo.c ZERO_STRUCTP(r->out.s2);
out 909 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.s2);
out 912 librpc/gen_ndr/ndr_echo.c NDR_PULL_SET_MEM_CTX(ndr, r->out.s2, LIBNDR_FLAG_REF_ALLOC);
out 915 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, *r->out.s2);
out 917 librpc/gen_ndr/ndr_echo.c *r->out.s2 = NULL;
out 919 librpc/gen_ndr/ndr_echo.c if (*r->out.s2) {
out 921 librpc/gen_ndr/ndr_echo.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.s2, 0);
out 922 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.s2));
out 923 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_array_length(ndr, r->out.s2));
out 924 librpc/gen_ndr/ndr_echo.c if (ndr_get_array_length(ndr, r->out.s2) > ndr_get_array_size(ndr, r->out.s2)) {
out 925 librpc/gen_ndr/ndr_echo.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.s2), ndr_get_array_length(ndr, r->out.s2));
out 927 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.s2), sizeof(uint16_t)));
out 928 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.s2, ndr_get_array_length(ndr, r->out.s2), sizeof(uint16_t), CH_UTF16));
out 955 librpc/gen_ndr/ndr_echo.c ndr_print_ptr(ndr, "s2", r->out.s2);
out 957 librpc/gen_ndr/ndr_echo.c ndr_print_ptr(ndr, "s2", *r->out.s2);
out 959 librpc/gen_ndr/ndr_echo.c if (*r->out.s2) {
out 960 librpc/gen_ndr/ndr_echo.c ndr_print_string(ndr, "s2", *r->out.s2);
out 975 librpc/gen_ndr/ndr_echo.c if (r->out.info == NULL) {
out 978 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 979 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_echo_Info(ndr, NDR_SCALARS, r->out.info));
out 980 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 989 librpc/gen_ndr/ndr_echo.c ZERO_STRUCT(r->out);
out 992 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.info);
out 993 librpc/gen_ndr/ndr_echo.c ZERO_STRUCTP(r->out.info);
out 997 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.info);
out 1000 librpc/gen_ndr/ndr_echo.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 1001 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 1002 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_echo_Info(ndr, NDR_SCALARS, r->out.info));
out 1004 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 1025 librpc/gen_ndr/ndr_echo.c ndr_print_ptr(ndr, "info", r->out.info);
out 1027 librpc/gen_ndr/ndr_echo.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 1028 librpc/gen_ndr/ndr_echo.c ndr_print_echo_Info(ndr, "info", r->out.info);
out 1030 librpc/gen_ndr/ndr_echo.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 1042 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->out.result));
out 1053 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->out.result));
out 1074 librpc/gen_ndr/ndr_echo.c ndr_print_uint32(ndr, "result", r->out.result);
out 1098 librpc/gen_ndr/ndr_echo.c if (r->out.foo1 == NULL) {
out 1101 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_echo_Enum1(ndr, NDR_SCALARS, *r->out.foo1));
out 1102 librpc/gen_ndr/ndr_echo.c if (r->out.foo2 == NULL) {
out 1105 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_echo_Enum2(ndr, NDR_SCALARS, r->out.foo2));
out 1106 librpc/gen_ndr/ndr_echo.c if (r->out.foo3 == NULL) {
out 1109 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.foo3, *r->out.foo1));
out 1110 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_echo_Enum3(ndr, NDR_SCALARS, r->out.foo3));
out 1121 librpc/gen_ndr/ndr_echo.c ZERO_STRUCT(r->out);
out 1145 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.foo1);
out 1146 librpc/gen_ndr/ndr_echo.c *r->out.foo1 = *r->in.foo1;
out 1147 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.foo2);
out 1148 librpc/gen_ndr/ndr_echo.c *r->out.foo2 = *r->in.foo2;
out 1149 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.foo3);
out 1150 librpc/gen_ndr/ndr_echo.c *r->out.foo3 = *r->in.foo3;
out 1154 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.foo1);
out 1157 librpc/gen_ndr/ndr_echo.c NDR_PULL_SET_MEM_CTX(ndr, r->out.foo1, LIBNDR_FLAG_REF_ALLOC);
out 1158 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_echo_Enum1(ndr, NDR_SCALARS, r->out.foo1));
out 1161 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.foo2);
out 1164 librpc/gen_ndr/ndr_echo.c NDR_PULL_SET_MEM_CTX(ndr, r->out.foo2, LIBNDR_FLAG_REF_ALLOC);
out 1165 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_echo_Enum2(ndr, NDR_SCALARS, r->out.foo2));
out 1168 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.foo3);
out 1171 librpc/gen_ndr/ndr_echo.c NDR_PULL_SET_MEM_CTX(ndr, r->out.foo3, LIBNDR_FLAG_REF_ALLOC);
out 1172 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.foo3, *r->out.foo1));
out 1173 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_echo_Enum3(ndr, NDR_SCALARS, r->out.foo3));
out 1207 librpc/gen_ndr/ndr_echo.c ndr_print_ptr(ndr, "foo1", r->out.foo1);
out 1209 librpc/gen_ndr/ndr_echo.c ndr_print_echo_Enum1(ndr, "foo1", *r->out.foo1);
out 1211 librpc/gen_ndr/ndr_echo.c ndr_print_ptr(ndr, "foo2", r->out.foo2);
out 1213 librpc/gen_ndr/ndr_echo.c ndr_print_echo_Enum2(ndr, "foo2", r->out.foo2);
out 1215 librpc/gen_ndr/ndr_echo.c ndr_print_ptr(ndr, "foo3", r->out.foo3);
out 1217 librpc/gen_ndr/ndr_echo.c ndr_print_set_switch_value(ndr, r->out.foo3, *r->out.foo1);
out 1218 librpc/gen_ndr/ndr_echo.c ndr_print_echo_Enum3(ndr, "foo3", r->out.foo3);
out 1234 librpc/gen_ndr/ndr_echo.c if (r->out.data == NULL) {
out 1237 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_echo_Surrounding(ndr, NDR_SCALARS, r->out.data));
out 1246 librpc/gen_ndr/ndr_echo.c ZERO_STRUCT(r->out);
out 1255 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.data);
out 1256 librpc/gen_ndr/ndr_echo.c *r->out.data = *r->in.data;
out 1260 librpc/gen_ndr/ndr_echo.c NDR_PULL_ALLOC(ndr, r->out.data);
out 1263 librpc/gen_ndr/ndr_echo.c NDR_PULL_SET_MEM_CTX(ndr, r->out.data, LIBNDR_FLAG_REF_ALLOC);
out 1264 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_echo_Surrounding(ndr, NDR_SCALARS, r->out.data));
out 1289 librpc/gen_ndr/ndr_echo.c ndr_print_ptr(ndr, "data", r->out.data);
out 1291 librpc/gen_ndr/ndr_echo.c ndr_print_echo_Surrounding(ndr, "data", r->out.data);
out 1313 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_push_uint16(ndr, NDR_SCALARS, r->out.result));
out 1356 librpc/gen_ndr/ndr_echo.c NDR_CHECK(ndr_pull_uint16(ndr, NDR_SCALARS, &r->out.result));
out 1390 librpc/gen_ndr/ndr_echo.c ndr_print_uint16(ndr, "result", r->out.result);
out 1795 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->out.result));
out 1823 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->out.result));
out 1856 librpc/gen_ndr/ndr_epmapper.c ndr_print_uint32(ndr, "result", r->out.result);
out 1876 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->out.result));
out 1903 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->out.result));
out 1935 librpc/gen_ndr/ndr_epmapper.c ndr_print_uint32(ndr, "result", r->out.result);
out 1962 librpc/gen_ndr/ndr_epmapper.c if (r->out.entry_handle == NULL) {
out 1965 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.entry_handle));
out 1966 librpc/gen_ndr/ndr_epmapper.c if (r->out.num_ents == NULL) {
out 1969 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_ents));
out 1972 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_ents));
out 1973 librpc/gen_ndr/ndr_epmapper.c for (cntr_entries_0 = 0; cntr_entries_0 < *r->out.num_ents; cntr_entries_0++) {
out 1974 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_epm_entry_t(ndr, NDR_SCALARS, &r->out.entries[cntr_entries_0]));
out 1976 librpc/gen_ndr/ndr_epmapper.c for (cntr_entries_0 = 0; cntr_entries_0 < *r->out.num_ents; cntr_entries_0++) {
out 1977 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_epm_entry_t(ndr, NDR_BUFFERS, &r->out.entries[cntr_entries_0]));
out 1979 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->out.result));
out 1995 librpc/gen_ndr/ndr_epmapper.c ZERO_STRUCT(r->out);
out 2031 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_ALLOC(ndr, r->out.entry_handle);
out 2032 librpc/gen_ndr/ndr_epmapper.c *r->out.entry_handle = *r->in.entry_handle;
out 2033 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_ALLOC(ndr, r->out.num_ents);
out 2034 librpc/gen_ndr/ndr_epmapper.c ZERO_STRUCTP(r->out.num_ents);
out 2038 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_ALLOC(ndr, r->out.entry_handle);
out 2041 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_SET_MEM_CTX(ndr, r->out.entry_handle, LIBNDR_FLAG_REF_ALLOC);
out 2042 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.entry_handle));
out 2045 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_ALLOC(ndr, r->out.num_ents);
out 2048 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_SET_MEM_CTX(ndr, r->out.num_ents, LIBNDR_FLAG_REF_ALLOC);
out 2049 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.num_ents));
out 2051 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.entries));
out 2052 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_array_length(ndr, &r->out.entries));
out 2053 librpc/gen_ndr/ndr_epmapper.c if (ndr_get_array_length(ndr, &r->out.entries) > ndr_get_array_size(ndr, &r->out.entries)) {
out 2054 librpc/gen_ndr/ndr_epmapper.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->out.entries), ndr_get_array_length(ndr, &r->out.entries));
out 2056 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_ALLOC_N(ndr, r->out.entries, ndr_get_array_size(ndr, &r->out.entries));
out 2058 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_SET_MEM_CTX(ndr, r->out.entries, 0);
out 2059 librpc/gen_ndr/ndr_epmapper.c for (cntr_entries_0 = 0; cntr_entries_0 < *r->out.num_ents; cntr_entries_0++) {
out 2060 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_epm_entry_t(ndr, NDR_SCALARS, &r->out.entries[cntr_entries_0]));
out 2062 librpc/gen_ndr/ndr_epmapper.c for (cntr_entries_0 = 0; cntr_entries_0 < *r->out.num_ents; cntr_entries_0++) {
out 2063 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_epm_entry_t(ndr, NDR_BUFFERS, &r->out.entries[cntr_entries_0]));
out 2066 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->out.result));
out 2067 librpc/gen_ndr/ndr_epmapper.c if (r->out.entries) {
out 2068 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.entries, r->in.max_ents));
out 2070 librpc/gen_ndr/ndr_epmapper.c if (r->out.entries) {
out 2071 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_check_array_length(ndr, (void*)&r->out.entries, *r->out.num_ents));
out 2112 librpc/gen_ndr/ndr_epmapper.c ndr_print_ptr(ndr, "entry_handle", r->out.entry_handle);
out 2114 librpc/gen_ndr/ndr_epmapper.c ndr_print_policy_handle(ndr, "entry_handle", r->out.entry_handle);
out 2116 librpc/gen_ndr/ndr_epmapper.c ndr_print_ptr(ndr, "num_ents", r->out.num_ents);
out 2118 librpc/gen_ndr/ndr_epmapper.c ndr_print_uint32(ndr, "num_ents", *r->out.num_ents);
out 2120 librpc/gen_ndr/ndr_epmapper.c ndr->print(ndr, "%s: ARRAY(%d)", "entries", (int)*r->out.num_ents);
out 2122 librpc/gen_ndr/ndr_epmapper.c for (cntr_entries_0=0;cntr_entries_0<*r->out.num_ents;cntr_entries_0++) {
out 2125 librpc/gen_ndr/ndr_epmapper.c ndr_print_epm_entry_t(ndr, "entries", &r->out.entries[cntr_entries_0]);
out 2130 librpc/gen_ndr/ndr_epmapper.c ndr_print_uint32(ndr, "result", r->out.result);
out 2155 librpc/gen_ndr/ndr_epmapper.c if (r->out.entry_handle == NULL) {
out 2158 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.entry_handle));
out 2159 librpc/gen_ndr/ndr_epmapper.c if (r->out.num_towers == NULL) {
out 2162 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_towers));
out 2165 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_towers));
out 2166 librpc/gen_ndr/ndr_epmapper.c for (cntr_towers_0 = 0; cntr_towers_0 < *r->out.num_towers; cntr_towers_0++) {
out 2167 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_epm_twr_p_t(ndr, NDR_SCALARS, &r->out.towers[cntr_towers_0]));
out 2169 librpc/gen_ndr/ndr_epmapper.c for (cntr_towers_0 = 0; cntr_towers_0 < *r->out.num_towers; cntr_towers_0++) {
out 2170 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_epm_twr_p_t(ndr, NDR_BUFFERS, &r->out.towers[cntr_towers_0]));
out 2172 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->out.result));
out 2188 librpc/gen_ndr/ndr_epmapper.c ZERO_STRUCT(r->out);
out 2222 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_ALLOC(ndr, r->out.entry_handle);
out 2223 librpc/gen_ndr/ndr_epmapper.c *r->out.entry_handle = *r->in.entry_handle;
out 2224 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_ALLOC(ndr, r->out.num_towers);
out 2225 librpc/gen_ndr/ndr_epmapper.c ZERO_STRUCTP(r->out.num_towers);
out 2229 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_ALLOC(ndr, r->out.entry_handle);
out 2232 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_SET_MEM_CTX(ndr, r->out.entry_handle, LIBNDR_FLAG_REF_ALLOC);
out 2233 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.entry_handle));
out 2236 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_ALLOC(ndr, r->out.num_towers);
out 2239 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_SET_MEM_CTX(ndr, r->out.num_towers, LIBNDR_FLAG_REF_ALLOC);
out 2240 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.num_towers));
out 2242 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.towers));
out 2243 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_array_length(ndr, &r->out.towers));
out 2244 librpc/gen_ndr/ndr_epmapper.c if (ndr_get_array_length(ndr, &r->out.towers) > ndr_get_array_size(ndr, &r->out.towers)) {
out 2245 librpc/gen_ndr/ndr_epmapper.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->out.towers), ndr_get_array_length(ndr, &r->out.towers));
out 2247 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_ALLOC_N(ndr, r->out.towers, ndr_get_array_size(ndr, &r->out.towers));
out 2249 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_SET_MEM_CTX(ndr, r->out.towers, 0);
out 2250 librpc/gen_ndr/ndr_epmapper.c for (cntr_towers_0 = 0; cntr_towers_0 < *r->out.num_towers; cntr_towers_0++) {
out 2251 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_epm_twr_p_t(ndr, NDR_SCALARS, &r->out.towers[cntr_towers_0]));
out 2253 librpc/gen_ndr/ndr_epmapper.c for (cntr_towers_0 = 0; cntr_towers_0 < *r->out.num_towers; cntr_towers_0++) {
out 2254 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_epm_twr_p_t(ndr, NDR_BUFFERS, &r->out.towers[cntr_towers_0]));
out 2257 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->out.result));
out 2258 librpc/gen_ndr/ndr_epmapper.c if (r->out.towers) {
out 2259 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.towers, r->in.max_towers));
out 2261 librpc/gen_ndr/ndr_epmapper.c if (r->out.towers) {
out 2262 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_check_array_length(ndr, (void*)&r->out.towers, *r->out.num_towers));
out 2301 librpc/gen_ndr/ndr_epmapper.c ndr_print_ptr(ndr, "entry_handle", r->out.entry_handle);
out 2303 librpc/gen_ndr/ndr_epmapper.c ndr_print_policy_handle(ndr, "entry_handle", r->out.entry_handle);
out 2305 librpc/gen_ndr/ndr_epmapper.c ndr_print_ptr(ndr, "num_towers", r->out.num_towers);
out 2307 librpc/gen_ndr/ndr_epmapper.c ndr_print_uint32(ndr, "num_towers", *r->out.num_towers);
out 2309 librpc/gen_ndr/ndr_epmapper.c ndr->print(ndr, "%s: ARRAY(%d)", "towers", (int)*r->out.num_towers);
out 2311 librpc/gen_ndr/ndr_epmapper.c for (cntr_towers_0=0;cntr_towers_0<*r->out.num_towers;cntr_towers_0++) {
out 2314 librpc/gen_ndr/ndr_epmapper.c ndr_print_epm_twr_p_t(ndr, "towers", &r->out.towers[cntr_towers_0]);
out 2319 librpc/gen_ndr/ndr_epmapper.c ndr_print_uint32(ndr, "result", r->out.result);
out 2334 librpc/gen_ndr/ndr_epmapper.c if (r->out.entry_handle == NULL) {
out 2337 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.entry_handle));
out 2338 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->out.result));
out 2347 librpc/gen_ndr/ndr_epmapper.c ZERO_STRUCT(r->out);
out 2356 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_ALLOC(ndr, r->out.entry_handle);
out 2357 librpc/gen_ndr/ndr_epmapper.c *r->out.entry_handle = *r->in.entry_handle;
out 2361 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_ALLOC(ndr, r->out.entry_handle);
out 2364 librpc/gen_ndr/ndr_epmapper.c NDR_PULL_SET_MEM_CTX(ndr, r->out.entry_handle, LIBNDR_FLAG_REF_ALLOC);
out 2365 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.entry_handle));
out 2367 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->out.result));
out 2391 librpc/gen_ndr/ndr_epmapper.c ndr_print_ptr(ndr, "entry_handle", r->out.entry_handle);
out 2393 librpc/gen_ndr/ndr_epmapper.c ndr_print_policy_handle(ndr, "entry_handle", r->out.entry_handle);
out 2395 librpc/gen_ndr/ndr_epmapper.c ndr_print_uint32(ndr, "result", r->out.result);
out 2410 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->out.result));
out 2428 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->out.result));
out 2452 librpc/gen_ndr/ndr_epmapper.c ndr_print_uint32(ndr, "result", r->out.result);
out 2472 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->out.result));
out 2511 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->out.result));
out 2544 librpc/gen_ndr/ndr_epmapper.c ndr_print_uint32(ndr, "result", r->out.result);
out 2555 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->out.result));
out 2565 librpc/gen_ndr/ndr_epmapper.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->out.result));
out 2585 librpc/gen_ndr/ndr_epmapper.c ndr_print_uint32(ndr, "result", r->out.result);
out 728 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 760 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 790 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 809 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 835 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 863 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 878 librpc/gen_ndr/ndr_eventlog.c if (r->out.handle == NULL) {
out 881 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 882 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 891 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCT(r->out);
out 900 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 901 librpc/gen_ndr/ndr_eventlog.c *r->out.handle = *r->in.handle;
out 905 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 908 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 909 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 911 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 935 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 937 librpc/gen_ndr/ndr_eventlog.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 939 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 954 librpc/gen_ndr/ndr_eventlog.c if (r->out.handle == NULL) {
out 957 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 958 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 967 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCT(r->out);
out 976 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 977 librpc/gen_ndr/ndr_eventlog.c *r->out.handle = *r->in.handle;
out 981 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 984 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 985 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 987 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 1011 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 1013 librpc/gen_ndr/ndr_eventlog.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 1015 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 1030 librpc/gen_ndr/ndr_eventlog.c if (r->out.number == NULL) {
out 1033 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.number));
out 1034 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 1044 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCT(r->out);
out 1053 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.number);
out 1054 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCTP(r->out.number);
out 1058 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.number);
out 1061 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.number, LIBNDR_FLAG_REF_ALLOC);
out 1062 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.number));
out 1064 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 1088 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "number", r->out.number);
out 1090 librpc/gen_ndr/ndr_eventlog.c ndr_print_uint32(ndr, "number", *r->out.number);
out 1092 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 1107 librpc/gen_ndr/ndr_eventlog.c if (r->out.oldest_entry == NULL) {
out 1110 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.oldest_entry));
out 1111 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 1121 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCT(r->out);
out 1130 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.oldest_entry);
out 1131 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCTP(r->out.oldest_entry);
out 1135 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.oldest_entry);
out 1138 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.oldest_entry, LIBNDR_FLAG_REF_ALLOC);
out 1139 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.oldest_entry));
out 1141 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 1165 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "oldest_entry", r->out.oldest_entry);
out 1167 librpc/gen_ndr/ndr_eventlog.c ndr_print_uint32(ndr, "oldest_entry", *r->out.oldest_entry);
out 1169 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 1180 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 1190 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 1210 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 1235 librpc/gen_ndr/ndr_eventlog.c if (r->out.handle == NULL) {
out 1238 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 1239 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 1252 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCT(r->out);
out 1282 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 1283 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCTP(r->out.handle);
out 1287 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 1290 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 1291 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 1293 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 1329 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 1331 librpc/gen_ndr/ndr_eventlog.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 1333 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 1358 librpc/gen_ndr/ndr_eventlog.c if (r->out.log_handle == NULL) {
out 1361 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.log_handle));
out 1362 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 1375 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCT(r->out);
out 1405 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.log_handle);
out 1406 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCTP(r->out.log_handle);
out 1410 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.log_handle);
out 1413 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.log_handle, LIBNDR_FLAG_REF_ALLOC);
out 1414 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.log_handle));
out 1416 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 1452 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "log_handle", r->out.log_handle);
out 1454 librpc/gen_ndr/ndr_eventlog.c ndr_print_policy_handle(ndr, "log_handle", r->out.log_handle);
out 1456 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 1477 librpc/gen_ndr/ndr_eventlog.c if (r->out.handle == NULL) {
out 1480 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 1481 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 1493 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCT(r->out);
out 1516 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 1517 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCTP(r->out.handle);
out 1521 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 1524 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 1525 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 1527 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 1559 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 1561 librpc/gen_ndr/ndr_eventlog.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 1563 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 1581 librpc/gen_ndr/ndr_eventlog.c if (r->out.data == NULL) {
out 1585 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.data, r->in.number_of_bytes));
out 1586 librpc/gen_ndr/ndr_eventlog.c if (r->out.sent_size == NULL) {
out 1589 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.sent_size));
out 1590 librpc/gen_ndr/ndr_eventlog.c if (r->out.real_size == NULL) {
out 1593 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.real_size));
out 1594 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 1605 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCT(r->out);
out 1620 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC_N(ndr, r->out.data, r->in.number_of_bytes);
out 1621 librpc/gen_ndr/ndr_eventlog.c memset(r->out.data, 0, (r->in.number_of_bytes) * sizeof(*r->out.data));
out 1622 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.sent_size);
out 1623 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCTP(r->out.sent_size);
out 1624 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.real_size);
out 1625 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCTP(r->out.real_size);
out 1628 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.data));
out 1630 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC_N(ndr, r->out.data, ndr_get_array_size(ndr, &r->out.data));
out 1632 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.data, ndr_get_array_size(ndr, &r->out.data)));
out 1634 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.sent_size);
out 1637 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sent_size, LIBNDR_FLAG_REF_ALLOC);
out 1638 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.sent_size));
out 1641 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.real_size);
out 1644 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.real_size, LIBNDR_FLAG_REF_ALLOC);
out 1645 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.real_size));
out 1647 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 1648 librpc/gen_ndr/ndr_eventlog.c if (r->out.data) {
out 1649 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.data, r->in.number_of_bytes));
out 1677 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "data", r->out.data);
out 1679 librpc/gen_ndr/ndr_eventlog.c ndr_print_array_uint8(ndr, "data", r->out.data, r->in.number_of_bytes);
out 1681 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "sent_size", r->out.sent_size);
out 1683 librpc/gen_ndr/ndr_eventlog.c ndr_print_uint32(ndr, "sent_size", *r->out.sent_size);
out 1685 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "real_size", r->out.real_size);
out 1687 librpc/gen_ndr/ndr_eventlog.c ndr_print_uint32(ndr, "real_size", *r->out.real_size);
out 1689 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 1745 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.record_number));
out 1746 librpc/gen_ndr/ndr_eventlog.c if (r->out.record_number) {
out 1747 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.record_number));
out 1749 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.time_written));
out 1750 librpc/gen_ndr/ndr_eventlog.c if (r->out.time_written) {
out 1751 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_time_t(ndr, NDR_SCALARS, *r->out.time_written));
out 1753 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 1776 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCT(r->out);
out 1897 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.record_number);
out 1899 librpc/gen_ndr/ndr_eventlog.c r->out.record_number = NULL;
out 1901 librpc/gen_ndr/ndr_eventlog.c if (r->out.record_number) {
out 1903 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.record_number, 0);
out 1904 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.record_number));
out 1909 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.time_written);
out 1911 librpc/gen_ndr/ndr_eventlog.c r->out.time_written = NULL;
out 1913 librpc/gen_ndr/ndr_eventlog.c if (r->out.time_written) {
out 1915 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.time_written, 0);
out 1916 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_time_t(ndr, NDR_SCALARS, r->out.time_written));
out 1919 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 1999 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "record_number", r->out.record_number);
out 2001 librpc/gen_ndr/ndr_eventlog.c if (r->out.record_number) {
out 2002 librpc/gen_ndr/ndr_eventlog.c ndr_print_uint32(ndr, "record_number", *r->out.record_number);
out 2005 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "time_written", r->out.time_written);
out 2007 librpc/gen_ndr/ndr_eventlog.c if (r->out.time_written) {
out 2008 librpc/gen_ndr/ndr_eventlog.c ndr_print_time_t(ndr, "time_written", *r->out.time_written);
out 2011 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2022 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2032 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2052 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2063 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2073 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2093 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2104 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2114 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2134 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2145 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2155 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2175 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2186 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2196 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2216 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2227 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2237 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2257 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2268 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2278 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2298 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2309 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2319 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2339 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2350 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2360 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2380 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2391 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2401 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2421 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2438 librpc/gen_ndr/ndr_eventlog.c if (r->out.buffer == NULL) {
out 2442 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.buffer, r->in.buf_size));
out 2443 librpc/gen_ndr/ndr_eventlog.c if (r->out.bytes_needed == NULL) {
out 2446 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.bytes_needed));
out 2447 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2457 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCT(r->out);
out 2471 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, r->in.buf_size);
out 2472 librpc/gen_ndr/ndr_eventlog.c memset(r->out.buffer, 0, (r->in.buf_size) * sizeof(*r->out.buffer));
out 2473 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.bytes_needed);
out 2474 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCTP(r->out.bytes_needed);
out 2477 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.buffer));
out 2479 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer));
out 2481 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer)));
out 2483 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.bytes_needed);
out 2486 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.bytes_needed, LIBNDR_FLAG_REF_ALLOC);
out 2487 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.bytes_needed));
out 2489 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2490 librpc/gen_ndr/ndr_eventlog.c if (r->out.buffer) {
out 2491 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.buffer, r->in.buf_size));
out 2518 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 2520 librpc/gen_ndr/ndr_eventlog.c ndr_print_array_uint8(ndr, "buffer", r->out.buffer, r->in.buf_size);
out 2522 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "bytes_needed", r->out.bytes_needed);
out 2524 librpc/gen_ndr/ndr_eventlog.c ndr_print_uint32(ndr, "bytes_needed", *r->out.bytes_needed);
out 2526 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2541 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2559 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2583 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 2643 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.record_number));
out 2644 librpc/gen_ndr/ndr_eventlog.c if (r->out.record_number) {
out 2645 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.record_number));
out 2647 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.time_written));
out 2648 librpc/gen_ndr/ndr_eventlog.c if (r->out.time_written) {
out 2649 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_time_t(ndr, NDR_SCALARS, *r->out.time_written));
out 2651 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 2675 librpc/gen_ndr/ndr_eventlog.c ZERO_STRUCT(r->out);
out 2803 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.record_number);
out 2805 librpc/gen_ndr/ndr_eventlog.c r->out.record_number = NULL;
out 2807 librpc/gen_ndr/ndr_eventlog.c if (r->out.record_number) {
out 2809 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.record_number, 0);
out 2810 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.record_number));
out 2815 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_ALLOC(ndr, r->out.time_written);
out 2817 librpc/gen_ndr/ndr_eventlog.c r->out.time_written = NULL;
out 2819 librpc/gen_ndr/ndr_eventlog.c if (r->out.time_written) {
out 2821 librpc/gen_ndr/ndr_eventlog.c NDR_PULL_SET_MEM_CTX(ndr, r->out.time_written, 0);
out 2822 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_time_t(ndr, NDR_SCALARS, r->out.time_written));
out 2825 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 2909 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "record_number", r->out.record_number);
out 2911 librpc/gen_ndr/ndr_eventlog.c if (r->out.record_number) {
out 2912 librpc/gen_ndr/ndr_eventlog.c ndr_print_uint32(ndr, "record_number", *r->out.record_number);
out 2915 librpc/gen_ndr/ndr_eventlog.c ndr_print_ptr(ndr, "time_written", r->out.time_written);
out 2917 librpc/gen_ndr/ndr_eventlog.c if (r->out.time_written) {
out 2918 librpc/gen_ndr/ndr_eventlog.c ndr_print_time_t(ndr, "time_written", *r->out.time_written);
out 2921 librpc/gen_ndr/ndr_eventlog.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 23 librpc/gen_ndr/ndr_initshutdown.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 64 librpc/gen_ndr/ndr_initshutdown.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 99 librpc/gen_ndr/ndr_initshutdown.c ndr_print_WERROR(ndr, "result", r->out.result);
out 114 librpc/gen_ndr/ndr_initshutdown.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 138 librpc/gen_ndr/ndr_initshutdown.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 164 librpc/gen_ndr/ndr_initshutdown.c ndr_print_WERROR(ndr, "result", r->out.result);
out 187 librpc/gen_ndr/ndr_initshutdown.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 229 librpc/gen_ndr/ndr_initshutdown.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 265 librpc/gen_ndr/ndr_initshutdown.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5183 librpc/gen_ndr/ndr_lsa.c if (r->out.handle == NULL) {
out 5186 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 5187 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5196 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 5205 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 5206 librpc/gen_ndr/ndr_lsa.c *r->out.handle = *r->in.handle;
out 5210 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 5213 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 5214 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 5216 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5240 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 5242 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 5244 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5259 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5277 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5301 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5321 librpc/gen_ndr/ndr_lsa.c if (r->out.resume_handle == NULL) {
out 5324 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 5325 librpc/gen_ndr/ndr_lsa.c if (r->out.privs == NULL) {
out 5328 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_PrivArray(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.privs));
out 5329 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5340 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 5357 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 5358 librpc/gen_ndr/ndr_lsa.c *r->out.resume_handle = *r->in.resume_handle;
out 5359 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.privs);
out 5360 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.privs);
out 5364 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 5367 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, LIBNDR_FLAG_REF_ALLOC);
out 5368 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 5371 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.privs);
out 5374 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.privs, LIBNDR_FLAG_REF_ALLOC);
out 5375 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_PrivArray(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.privs));
out 5377 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5406 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 5408 librpc/gen_ndr/ndr_lsa.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 5410 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "privs", r->out.privs);
out 5412 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_PrivArray(ndr, "privs", r->out.privs);
out 5414 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5430 librpc/gen_ndr/ndr_lsa.c if (r->out.sdbuf == NULL) {
out 5433 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.sdbuf));
out 5434 librpc/gen_ndr/ndr_lsa.c if (*r->out.sdbuf) {
out 5435 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_sec_desc_buf(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sdbuf));
out 5437 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5449 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 5459 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sdbuf);
out 5460 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.sdbuf);
out 5464 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sdbuf);
out 5467 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sdbuf, LIBNDR_FLAG_REF_ALLOC);
out 5470 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.sdbuf);
out 5472 librpc/gen_ndr/ndr_lsa.c *r->out.sdbuf = NULL;
out 5474 librpc/gen_ndr/ndr_lsa.c if (*r->out.sdbuf) {
out 5476 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.sdbuf, 0);
out 5477 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_sec_desc_buf(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sdbuf));
out 5481 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5506 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "sdbuf", r->out.sdbuf);
out 5508 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "sdbuf", *r->out.sdbuf);
out 5510 librpc/gen_ndr/ndr_lsa.c if (*r->out.sdbuf) {
out 5511 librpc/gen_ndr/ndr_lsa.c ndr_print_sec_desc_buf(ndr, "sdbuf", *r->out.sdbuf);
out 5515 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5535 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5562 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5591 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5602 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5612 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5632 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5652 librpc/gen_ndr/ndr_lsa.c if (r->out.handle == NULL) {
out 5655 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 5656 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5668 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 5690 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 5691 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.handle);
out 5695 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 5698 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 5699 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 5701 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5732 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 5734 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 5736 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5752 librpc/gen_ndr/ndr_lsa.c if (r->out.info == NULL) {
out 5755 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 5756 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 5757 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
out 5758 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 5760 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5772 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 5782 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.info);
out 5783 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.info);
out 5787 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.info);
out 5790 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 5793 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 5795 librpc/gen_ndr/ndr_lsa.c *r->out.info = NULL;
out 5797 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 5799 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 5800 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
out 5801 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 5805 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5830 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "info", r->out.info);
out 5832 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "info", *r->out.info);
out 5834 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 5835 librpc/gen_ndr/ndr_lsa.c ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
out 5836 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_PolicyInformation(ndr, "info", *r->out.info);
out 5840 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5861 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5889 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5919 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5930 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5940 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5960 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5980 librpc/gen_ndr/ndr_lsa.c if (r->out.acct_handle == NULL) {
out 5983 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.acct_handle));
out 5984 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5995 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 6012 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.acct_handle);
out 6013 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.acct_handle);
out 6017 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.acct_handle);
out 6020 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.acct_handle, LIBNDR_FLAG_REF_ALLOC);
out 6021 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.acct_handle));
out 6023 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6052 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "acct_handle", r->out.acct_handle);
out 6054 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "acct_handle", r->out.acct_handle);
out 6056 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6076 librpc/gen_ndr/ndr_lsa.c if (r->out.resume_handle == NULL) {
out 6079 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 6080 librpc/gen_ndr/ndr_lsa.c if (r->out.sids == NULL) {
out 6083 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_SidArray(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 6084 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6095 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 6115 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6116 librpc/gen_ndr/ndr_lsa.c *r->out.resume_handle = *r->in.resume_handle;
out 6117 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 6118 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.sids);
out 6122 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6125 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, LIBNDR_FLAG_REF_ALLOC);
out 6126 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 6129 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 6132 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sids, LIBNDR_FLAG_REF_ALLOC);
out 6133 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_SidArray(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 6135 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6164 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 6166 librpc/gen_ndr/ndr_lsa.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 6168 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "sids", r->out.sids);
out 6170 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_SidArray(ndr, "sids", r->out.sids);
out 6172 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6192 librpc/gen_ndr/ndr_lsa.c if (r->out.trustdom_handle == NULL) {
out 6195 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.trustdom_handle));
out 6196 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6207 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 6224 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.trustdom_handle);
out 6225 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.trustdom_handle);
out 6229 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.trustdom_handle);
out 6232 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.trustdom_handle, LIBNDR_FLAG_REF_ALLOC);
out 6233 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.trustdom_handle));
out 6235 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6264 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "trustdom_handle", r->out.trustdom_handle);
out 6266 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "trustdom_handle", r->out.trustdom_handle);
out 6268 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6288 librpc/gen_ndr/ndr_lsa.c if (r->out.resume_handle == NULL) {
out 6291 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 6292 librpc/gen_ndr/ndr_lsa.c if (r->out.domains == NULL) {
out 6295 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_DomainList(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.domains));
out 6296 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6307 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 6324 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6325 librpc/gen_ndr/ndr_lsa.c *r->out.resume_handle = *r->in.resume_handle;
out 6326 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 6327 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.domains);
out 6331 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6334 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, LIBNDR_FLAG_REF_ALLOC);
out 6335 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 6338 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 6341 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.domains, LIBNDR_FLAG_REF_ALLOC);
out 6342 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_DomainList(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.domains));
out 6344 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6373 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 6375 librpc/gen_ndr/ndr_lsa.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 6377 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", r->out.domains);
out 6379 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_DomainList(ndr, "domains", r->out.domains);
out 6381 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6414 librpc/gen_ndr/ndr_lsa.c if (r->out.domains == NULL) {
out 6417 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.domains));
out 6418 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 6419 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 6421 librpc/gen_ndr/ndr_lsa.c if (r->out.sids == NULL) {
out 6424 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_TransSidArray(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 6425 librpc/gen_ndr/ndr_lsa.c if (r->out.count == NULL) {
out 6428 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 6429 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6445 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 6484 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 6485 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.domains);
out 6486 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 6487 librpc/gen_ndr/ndr_lsa.c *r->out.sids = *r->in.sids;
out 6488 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 6489 librpc/gen_ndr/ndr_lsa.c *r->out.count = *r->in.count;
out 6496 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 6499 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.domains, LIBNDR_FLAG_REF_ALLOC);
out 6502 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.domains);
out 6504 librpc/gen_ndr/ndr_lsa.c *r->out.domains = NULL;
out 6506 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 6508 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.domains, 0);
out 6509 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 6514 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 6517 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sids, LIBNDR_FLAG_REF_ALLOC);
out 6518 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_TransSidArray(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 6521 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 6524 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 6525 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 6527 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6572 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", r->out.domains);
out 6574 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", *r->out.domains);
out 6576 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 6577 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_RefDomainList(ndr, "domains", *r->out.domains);
out 6581 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "sids", r->out.sids);
out 6583 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_TransSidArray(ndr, "sids", r->out.sids);
out 6585 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "count", r->out.count);
out 6587 librpc/gen_ndr/ndr_lsa.c ndr_print_uint32(ndr, "count", *r->out.count);
out 6589 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6617 librpc/gen_ndr/ndr_lsa.c if (r->out.domains == NULL) {
out 6620 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.domains));
out 6621 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 6622 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 6624 librpc/gen_ndr/ndr_lsa.c if (r->out.names == NULL) {
out 6627 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_TransNameArray(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.names));
out 6628 librpc/gen_ndr/ndr_lsa.c if (r->out.count == NULL) {
out 6631 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 6632 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6647 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 6678 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 6679 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.domains);
out 6680 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.names);
out 6681 librpc/gen_ndr/ndr_lsa.c *r->out.names = *r->in.names;
out 6682 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 6683 librpc/gen_ndr/ndr_lsa.c *r->out.count = *r->in.count;
out 6687 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 6690 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.domains, LIBNDR_FLAG_REF_ALLOC);
out 6693 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.domains);
out 6695 librpc/gen_ndr/ndr_lsa.c *r->out.domains = NULL;
out 6697 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 6699 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.domains, 0);
out 6700 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 6705 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.names);
out 6708 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.names, LIBNDR_FLAG_REF_ALLOC);
out 6709 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_TransNameArray(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.names));
out 6712 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 6715 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 6716 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 6718 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6755 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", r->out.domains);
out 6757 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", *r->out.domains);
out 6759 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 6760 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_RefDomainList(ndr, "domains", *r->out.domains);
out 6764 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "names", r->out.names);
out 6766 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_TransNameArray(ndr, "names", r->out.names);
out 6768 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "count", r->out.count);
out 6770 librpc/gen_ndr/ndr_lsa.c ndr_print_uint32(ndr, "count", *r->out.count);
out 6772 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6789 librpc/gen_ndr/ndr_lsa.c if (r->out.sec_handle == NULL) {
out 6792 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.sec_handle));
out 6793 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6803 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 6814 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sec_handle);
out 6815 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.sec_handle);
out 6819 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sec_handle);
out 6822 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sec_handle, LIBNDR_FLAG_REF_ALLOC);
out 6823 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.sec_handle));
out 6825 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6851 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "sec_handle", r->out.sec_handle);
out 6853 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "sec_handle", r->out.sec_handle);
out 6855 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6875 librpc/gen_ndr/ndr_lsa.c if (r->out.acct_handle == NULL) {
out 6878 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.acct_handle));
out 6879 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6890 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 6907 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.acct_handle);
out 6908 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.acct_handle);
out 6912 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.acct_handle);
out 6915 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.acct_handle, LIBNDR_FLAG_REF_ALLOC);
out 6916 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.acct_handle));
out 6918 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6947 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "acct_handle", r->out.acct_handle);
out 6949 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "acct_handle", r->out.acct_handle);
out 6951 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6966 librpc/gen_ndr/ndr_lsa.c if (r->out.privs == NULL) {
out 6969 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.privs));
out 6970 librpc/gen_ndr/ndr_lsa.c if (*r->out.privs) {
out 6971 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_PrivilegeSet(ndr, NDR_SCALARS, *r->out.privs));
out 6973 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6985 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 6994 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.privs);
out 6995 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.privs);
out 6999 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.privs);
out 7002 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.privs, LIBNDR_FLAG_REF_ALLOC);
out 7005 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.privs);
out 7007 librpc/gen_ndr/ndr_lsa.c *r->out.privs = NULL;
out 7009 librpc/gen_ndr/ndr_lsa.c if (*r->out.privs) {
out 7011 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.privs, 0);
out 7012 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_PrivilegeSet(ndr, NDR_SCALARS, *r->out.privs));
out 7016 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7040 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "privs", r->out.privs);
out 7042 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "privs", *r->out.privs);
out 7044 librpc/gen_ndr/ndr_lsa.c if (*r->out.privs) {
out 7045 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_PrivilegeSet(ndr, "privs", *r->out.privs);
out 7049 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7068 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7094 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7122 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7142 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7175 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7206 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7217 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7227 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7247 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7258 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7268 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7288 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7303 librpc/gen_ndr/ndr_lsa.c if (r->out.access_mask == NULL) {
out 7306 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.access_mask));
out 7307 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7317 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 7326 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.access_mask);
out 7327 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.access_mask);
out 7331 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.access_mask);
out 7334 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.access_mask, LIBNDR_FLAG_REF_ALLOC);
out 7335 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.access_mask));
out 7337 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7361 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "access_mask", r->out.access_mask);
out 7363 librpc/gen_ndr/ndr_lsa.c ndr_print_uint32(ndr, "access_mask", *r->out.access_mask);
out 7365 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7381 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7400 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7425 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7445 librpc/gen_ndr/ndr_lsa.c if (r->out.trustdom_handle == NULL) {
out 7448 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.trustdom_handle));
out 7449 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7460 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 7477 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.trustdom_handle);
out 7478 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.trustdom_handle);
out 7482 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.trustdom_handle);
out 7485 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.trustdom_handle, LIBNDR_FLAG_REF_ALLOC);
out 7486 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.trustdom_handle));
out 7488 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7517 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "trustdom_handle", r->out.trustdom_handle);
out 7519 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "trustdom_handle", r->out.trustdom_handle);
out 7521 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7537 librpc/gen_ndr/ndr_lsa.c if (r->out.info == NULL) {
out 7540 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 7541 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 7542 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
out 7543 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_TrustedDomainInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 7545 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7557 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 7567 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.info);
out 7568 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.info);
out 7572 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.info);
out 7575 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 7578 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 7580 librpc/gen_ndr/ndr_lsa.c *r->out.info = NULL;
out 7582 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 7584 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 7585 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
out 7586 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_TrustedDomainInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 7590 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7615 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "info", r->out.info);
out 7617 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "info", *r->out.info);
out 7619 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 7620 librpc/gen_ndr/ndr_lsa.c ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
out 7621 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_TrustedDomainInfo(ndr, "info", *r->out.info);
out 7625 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7646 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7674 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7704 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7721 librpc/gen_ndr/ndr_lsa.c if (r->out.sec_handle == NULL) {
out 7724 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.sec_handle));
out 7725 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7735 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 7746 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sec_handle);
out 7747 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.sec_handle);
out 7751 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sec_handle);
out 7754 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sec_handle, LIBNDR_FLAG_REF_ALLOC);
out 7755 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.sec_handle));
out 7757 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7783 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "sec_handle", r->out.sec_handle);
out 7785 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "sec_handle", r->out.sec_handle);
out 7787 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7810 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7856 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7892 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7923 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.new_val));
out 7924 librpc/gen_ndr/ndr_lsa.c if (r->out.new_val) {
out 7925 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_DATA_BUF_PTR(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.new_val));
out 7927 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.new_mtime));
out 7928 librpc/gen_ndr/ndr_lsa.c if (r->out.new_mtime) {
out 7929 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTTIME_hyper(ndr, NDR_SCALARS, *r->out.new_mtime));
out 7931 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.old_val));
out 7932 librpc/gen_ndr/ndr_lsa.c if (r->out.old_val) {
out 7933 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_DATA_BUF_PTR(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.old_val));
out 7935 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.old_mtime));
out 7936 librpc/gen_ndr/ndr_lsa.c if (r->out.old_mtime) {
out 7937 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTTIME_hyper(ndr, NDR_SCALARS, *r->out.old_mtime));
out 7939 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7956 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 8017 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.new_val);
out 8019 librpc/gen_ndr/ndr_lsa.c r->out.new_val = NULL;
out 8021 librpc/gen_ndr/ndr_lsa.c if (r->out.new_val) {
out 8023 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.new_val, 0);
out 8024 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_DATA_BUF_PTR(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.new_val));
out 8029 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.new_mtime);
out 8031 librpc/gen_ndr/ndr_lsa.c r->out.new_mtime = NULL;
out 8033 librpc/gen_ndr/ndr_lsa.c if (r->out.new_mtime) {
out 8035 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.new_mtime, 0);
out 8036 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTTIME_hyper(ndr, NDR_SCALARS, r->out.new_mtime));
out 8041 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.old_val);
out 8043 librpc/gen_ndr/ndr_lsa.c r->out.old_val = NULL;
out 8045 librpc/gen_ndr/ndr_lsa.c if (r->out.old_val) {
out 8047 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.old_val, 0);
out 8048 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_DATA_BUF_PTR(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.old_val));
out 8053 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.old_mtime);
out 8055 librpc/gen_ndr/ndr_lsa.c r->out.old_mtime = NULL;
out 8057 librpc/gen_ndr/ndr_lsa.c if (r->out.old_mtime) {
out 8059 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.old_mtime, 0);
out 8060 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTTIME_hyper(ndr, NDR_SCALARS, r->out.old_mtime));
out 8063 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8111 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "new_val", r->out.new_val);
out 8113 librpc/gen_ndr/ndr_lsa.c if (r->out.new_val) {
out 8114 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_DATA_BUF_PTR(ndr, "new_val", r->out.new_val);
out 8117 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "new_mtime", r->out.new_mtime);
out 8119 librpc/gen_ndr/ndr_lsa.c if (r->out.new_mtime) {
out 8120 librpc/gen_ndr/ndr_lsa.c ndr_print_NTTIME_hyper(ndr, "new_mtime", *r->out.new_mtime);
out 8123 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "old_val", r->out.old_val);
out 8125 librpc/gen_ndr/ndr_lsa.c if (r->out.old_val) {
out 8126 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_DATA_BUF_PTR(ndr, "old_val", r->out.old_val);
out 8129 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "old_mtime", r->out.old_mtime);
out 8131 librpc/gen_ndr/ndr_lsa.c if (r->out.old_mtime) {
out 8132 librpc/gen_ndr/ndr_lsa.c ndr_print_NTTIME_hyper(ndr, "old_mtime", *r->out.old_mtime);
out 8135 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8154 librpc/gen_ndr/ndr_lsa.c if (r->out.luid == NULL) {
out 8157 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_LUID(ndr, NDR_SCALARS, r->out.luid));
out 8158 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8169 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 8185 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.luid);
out 8186 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.luid);
out 8190 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.luid);
out 8193 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.luid, LIBNDR_FLAG_REF_ALLOC);
out 8194 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_LUID(ndr, NDR_SCALARS, r->out.luid));
out 8196 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8224 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "luid", r->out.luid);
out 8226 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_LUID(ndr, "luid", r->out.luid);
out 8228 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8247 librpc/gen_ndr/ndr_lsa.c if (r->out.name == NULL) {
out 8250 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.name));
out 8251 librpc/gen_ndr/ndr_lsa.c if (*r->out.name) {
out 8252 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_StringLarge(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.name));
out 8254 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8267 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 8283 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.name);
out 8284 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.name);
out 8288 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.name);
out 8291 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.name, LIBNDR_FLAG_REF_ALLOC);
out 8294 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.name);
out 8296 librpc/gen_ndr/ndr_lsa.c *r->out.name = NULL;
out 8298 librpc/gen_ndr/ndr_lsa.c if (*r->out.name) {
out 8300 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.name, 0);
out 8301 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_StringLarge(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.name));
out 8305 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8333 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "name", r->out.name);
out 8335 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "name", *r->out.name);
out 8337 librpc/gen_ndr/ndr_lsa.c if (*r->out.name) {
out 8338 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_StringLarge(ndr, "name", *r->out.name);
out 8342 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8363 librpc/gen_ndr/ndr_lsa.c if (r->out.disp_name == NULL) {
out 8366 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.disp_name));
out 8367 librpc/gen_ndr/ndr_lsa.c if (*r->out.disp_name) {
out 8368 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_StringLarge(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.disp_name));
out 8370 librpc/gen_ndr/ndr_lsa.c if (r->out.returned_language_id == NULL) {
out 8373 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint16(ndr, NDR_SCALARS, *r->out.returned_language_id));
out 8374 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8388 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 8406 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.disp_name);
out 8407 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.disp_name);
out 8408 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.returned_language_id);
out 8409 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.returned_language_id);
out 8413 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.disp_name);
out 8416 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.disp_name, LIBNDR_FLAG_REF_ALLOC);
out 8419 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.disp_name);
out 8421 librpc/gen_ndr/ndr_lsa.c *r->out.disp_name = NULL;
out 8423 librpc/gen_ndr/ndr_lsa.c if (*r->out.disp_name) {
out 8425 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.disp_name, 0);
out 8426 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_StringLarge(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.disp_name));
out 8431 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.returned_language_id);
out 8434 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.returned_language_id, LIBNDR_FLAG_REF_ALLOC);
out 8435 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint16(ndr, NDR_SCALARS, r->out.returned_language_id));
out 8437 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8467 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "disp_name", r->out.disp_name);
out 8469 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "disp_name", *r->out.disp_name);
out 8471 librpc/gen_ndr/ndr_lsa.c if (*r->out.disp_name) {
out 8472 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_StringLarge(ndr, "disp_name", *r->out.disp_name);
out 8476 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "returned_language_id", r->out.returned_language_id);
out 8478 librpc/gen_ndr/ndr_lsa.c ndr_print_uint16(ndr, "returned_language_id", *r->out.returned_language_id);
out 8480 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8495 librpc/gen_ndr/ndr_lsa.c if (r->out.handle == NULL) {
out 8498 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 8499 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8508 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 8517 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 8518 librpc/gen_ndr/ndr_lsa.c *r->out.handle = *r->in.handle;
out 8522 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 8525 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 8526 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 8528 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8552 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 8554 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 8556 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8575 librpc/gen_ndr/ndr_lsa.c if (r->out.sids == NULL) {
out 8578 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_SidArray(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 8579 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8591 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 8612 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 8613 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.sids);
out 8617 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 8620 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sids, LIBNDR_FLAG_REF_ALLOC);
out 8621 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_SidArray(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 8623 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8653 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "sids", r->out.sids);
out 8655 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_SidArray(ndr, "sids", r->out.sids);
out 8657 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8676 librpc/gen_ndr/ndr_lsa.c if (r->out.rights == NULL) {
out 8679 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_RightSet(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.rights));
out 8680 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8691 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 8707 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.rights);
out 8708 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.rights);
out 8712 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.rights);
out 8715 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.rights, LIBNDR_FLAG_REF_ALLOC);
out 8716 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_RightSet(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.rights));
out 8718 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8746 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "rights", r->out.rights);
out 8748 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_RightSet(ndr, "rights", r->out.rights);
out 8750 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8773 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8807 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8839 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8863 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8898 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8931 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8951 librpc/gen_ndr/ndr_lsa.c if (r->out.info == NULL) {
out 8954 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 8955 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 8956 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
out 8957 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_TrustedDomainInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 8959 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8972 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 8989 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.info);
out 8990 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.info);
out 8994 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.info);
out 8997 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 9000 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 9002 librpc/gen_ndr/ndr_lsa.c *r->out.info = NULL;
out 9004 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 9006 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 9007 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
out 9008 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_TrustedDomainInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 9012 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9041 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "info", r->out.info);
out 9043 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "info", *r->out.info);
out 9045 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 9046 librpc/gen_ndr/ndr_lsa.c ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
out 9047 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_TrustedDomainInfo(ndr, "info", *r->out.info);
out 9051 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9076 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9112 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9146 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9165 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9191 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9219 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9230 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9240 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9260 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9271 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9281 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9301 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9324 librpc/gen_ndr/ndr_lsa.c if (r->out.handle == NULL) {
out 9327 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 9328 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9340 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 9368 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 9369 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.handle);
out 9373 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 9376 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 9377 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 9379 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9410 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 9412 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 9414 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9446 librpc/gen_ndr/ndr_lsa.c if (r->out.account_name == NULL) {
out 9449 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.account_name));
out 9450 librpc/gen_ndr/ndr_lsa.c if (*r->out.account_name) {
out 9451 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_String(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.account_name));
out 9453 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.authority_name));
out 9454 librpc/gen_ndr/ndr_lsa.c if (r->out.authority_name) {
out 9455 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.authority_name));
out 9456 librpc/gen_ndr/ndr_lsa.c if (*r->out.authority_name) {
out 9457 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_String(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.authority_name));
out 9460 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9476 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 9537 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.account_name);
out 9538 librpc/gen_ndr/ndr_lsa.c *r->out.account_name = *r->in.account_name;
out 9542 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.account_name);
out 9545 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.account_name, LIBNDR_FLAG_REF_ALLOC);
out 9548 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.account_name);
out 9550 librpc/gen_ndr/ndr_lsa.c *r->out.account_name = NULL;
out 9552 librpc/gen_ndr/ndr_lsa.c if (*r->out.account_name) {
out 9554 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.account_name, 0);
out 9555 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_String(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.account_name));
out 9561 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.authority_name);
out 9563 librpc/gen_ndr/ndr_lsa.c r->out.authority_name = NULL;
out 9565 librpc/gen_ndr/ndr_lsa.c if (r->out.authority_name) {
out 9567 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.authority_name, 0);
out 9570 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.authority_name);
out 9572 librpc/gen_ndr/ndr_lsa.c *r->out.authority_name = NULL;
out 9574 librpc/gen_ndr/ndr_lsa.c if (*r->out.authority_name) {
out 9576 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.authority_name, 0);
out 9577 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_String(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.authority_name));
out 9582 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9628 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "account_name", r->out.account_name);
out 9630 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "account_name", *r->out.account_name);
out 9632 librpc/gen_ndr/ndr_lsa.c if (*r->out.account_name) {
out 9633 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_String(ndr, "account_name", *r->out.account_name);
out 9637 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "authority_name", r->out.authority_name);
out 9639 librpc/gen_ndr/ndr_lsa.c if (r->out.authority_name) {
out 9640 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "authority_name", *r->out.authority_name);
out 9642 librpc/gen_ndr/ndr_lsa.c if (*r->out.authority_name) {
out 9643 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_String(ndr, "authority_name", *r->out.authority_name);
out 9648 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9664 librpc/gen_ndr/ndr_lsa.c if (r->out.info == NULL) {
out 9667 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 9668 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 9669 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
out 9670 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 9672 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9684 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 9694 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9695 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.info);
out 9699 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9702 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 9705 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 9707 librpc/gen_ndr/ndr_lsa.c *r->out.info = NULL;
out 9709 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 9711 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 9712 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
out 9713 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 9717 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9742 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "info", r->out.info);
out 9744 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "info", *r->out.info);
out 9746 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 9747 librpc/gen_ndr/ndr_lsa.c ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
out 9748 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_PolicyInformation(ndr, "info", *r->out.info);
out 9752 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9773 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9801 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9831 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9851 librpc/gen_ndr/ndr_lsa.c if (r->out.info == NULL) {
out 9854 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 9855 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 9856 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
out 9857 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_TrustedDomainInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 9859 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9872 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 9889 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9890 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.info);
out 9894 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9897 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 9900 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 9902 librpc/gen_ndr/ndr_lsa.c *r->out.info = NULL;
out 9904 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 9906 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 9907 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
out 9908 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_TrustedDomainInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 9912 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9941 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "info", r->out.info);
out 9943 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "info", *r->out.info);
out 9945 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 9946 librpc/gen_ndr/ndr_lsa.c ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
out 9947 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_TrustedDomainInfo(ndr, "info", *r->out.info);
out 9951 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9973 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10008 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10041 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10061 librpc/gen_ndr/ndr_lsa.c if (r->out.resume_handle == NULL) {
out 10064 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 10065 librpc/gen_ndr/ndr_lsa.c if (r->out.domains == NULL) {
out 10068 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_DomainListEx(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.domains));
out 10069 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10080 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 10097 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 10098 librpc/gen_ndr/ndr_lsa.c *r->out.resume_handle = *r->in.resume_handle;
out 10099 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 10100 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.domains);
out 10104 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 10107 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, LIBNDR_FLAG_REF_ALLOC);
out 10108 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 10111 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 10114 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.domains, LIBNDR_FLAG_REF_ALLOC);
out 10115 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_DomainListEx(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.domains));
out 10117 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10146 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 10148 librpc/gen_ndr/ndr_lsa.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 10150 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", r->out.domains);
out 10152 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_DomainListEx(ndr, "domains", r->out.domains);
out 10154 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10178 librpc/gen_ndr/ndr_lsa.c if (r->out.trustdom_handle == NULL) {
out 10181 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.trustdom_handle));
out 10182 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10194 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 10218 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.trustdom_handle);
out 10219 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.trustdom_handle);
out 10223 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.trustdom_handle);
out 10226 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.trustdom_handle, LIBNDR_FLAG_REF_ALLOC);
out 10227 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.trustdom_handle));
out 10229 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10262 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "trustdom_handle", r->out.trustdom_handle);
out 10264 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "trustdom_handle", r->out.trustdom_handle);
out 10266 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10281 librpc/gen_ndr/ndr_lsa.c if (r->out.handle == NULL) {
out 10284 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 10285 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10294 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 10303 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 10304 librpc/gen_ndr/ndr_lsa.c *r->out.handle = *r->in.handle;
out 10308 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 10311 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 10312 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 10314 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10338 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 10340 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 10342 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10358 librpc/gen_ndr/ndr_lsa.c if (r->out.info == NULL) {
out 10361 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 10362 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 10363 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
out 10364 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_DomainInformationPolicy(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 10366 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10378 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 10388 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.info);
out 10389 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.info);
out 10393 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.info);
out 10396 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 10399 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 10401 librpc/gen_ndr/ndr_lsa.c *r->out.info = NULL;
out 10403 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 10405 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 10406 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
out 10407 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_DomainInformationPolicy(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 10411 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10436 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "info", r->out.info);
out 10438 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "info", *r->out.info);
out 10440 librpc/gen_ndr/ndr_lsa.c if (*r->out.info) {
out 10441 librpc/gen_ndr/ndr_lsa.c ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
out 10442 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_DomainInformationPolicy(ndr, "info", *r->out.info);
out 10446 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10467 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10501 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10533 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10550 librpc/gen_ndr/ndr_lsa.c if (r->out.trustdom_handle == NULL) {
out 10553 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.trustdom_handle));
out 10554 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10564 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 10575 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.trustdom_handle);
out 10576 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.trustdom_handle);
out 10580 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.trustdom_handle);
out 10583 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.trustdom_handle, LIBNDR_FLAG_REF_ALLOC);
out 10584 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.trustdom_handle));
out 10586 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10612 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "trustdom_handle", r->out.trustdom_handle);
out 10614 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "trustdom_handle", r->out.trustdom_handle);
out 10616 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10627 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10637 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10657 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10687 librpc/gen_ndr/ndr_lsa.c if (r->out.domains == NULL) {
out 10690 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.domains));
out 10691 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 10692 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 10694 librpc/gen_ndr/ndr_lsa.c if (r->out.names == NULL) {
out 10697 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_TransNameArray2(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.names));
out 10698 librpc/gen_ndr/ndr_lsa.c if (r->out.count == NULL) {
out 10701 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 10702 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10717 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 10750 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 10751 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.domains);
out 10752 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.names);
out 10753 librpc/gen_ndr/ndr_lsa.c *r->out.names = *r->in.names;
out 10754 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 10755 librpc/gen_ndr/ndr_lsa.c *r->out.count = *r->in.count;
out 10759 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 10762 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.domains, LIBNDR_FLAG_REF_ALLOC);
out 10765 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.domains);
out 10767 librpc/gen_ndr/ndr_lsa.c *r->out.domains = NULL;
out 10769 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 10771 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.domains, 0);
out 10772 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 10777 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.names);
out 10780 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.names, LIBNDR_FLAG_REF_ALLOC);
out 10781 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_TransNameArray2(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.names));
out 10784 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 10787 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 10788 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 10790 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10829 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", r->out.domains);
out 10831 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", *r->out.domains);
out 10833 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 10834 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_RefDomainList(ndr, "domains", *r->out.domains);
out 10838 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "names", r->out.names);
out 10840 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_TransNameArray2(ndr, "names", r->out.names);
out 10842 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "count", r->out.count);
out 10844 librpc/gen_ndr/ndr_lsa.c ndr_print_uint32(ndr, "count", *r->out.count);
out 10846 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10881 librpc/gen_ndr/ndr_lsa.c if (r->out.domains == NULL) {
out 10884 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.domains));
out 10885 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 10886 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 10888 librpc/gen_ndr/ndr_lsa.c if (r->out.sids == NULL) {
out 10891 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_TransSidArray2(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 10892 librpc/gen_ndr/ndr_lsa.c if (r->out.count == NULL) {
out 10895 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 10896 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10912 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 10953 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 10954 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.domains);
out 10955 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 10956 librpc/gen_ndr/ndr_lsa.c *r->out.sids = *r->in.sids;
out 10957 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 10958 librpc/gen_ndr/ndr_lsa.c *r->out.count = *r->in.count;
out 10965 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 10968 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.domains, LIBNDR_FLAG_REF_ALLOC);
out 10971 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.domains);
out 10973 librpc/gen_ndr/ndr_lsa.c *r->out.domains = NULL;
out 10975 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 10977 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.domains, 0);
out 10978 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 10983 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 10986 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sids, LIBNDR_FLAG_REF_ALLOC);
out 10987 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_TransSidArray2(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 10990 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 10993 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 10994 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 10996 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11043 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", r->out.domains);
out 11045 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", *r->out.domains);
out 11047 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 11048 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_RefDomainList(ndr, "domains", *r->out.domains);
out 11052 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "sids", r->out.sids);
out 11054 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_TransSidArray2(ndr, "sids", r->out.sids);
out 11056 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "count", r->out.count);
out 11058 librpc/gen_ndr/ndr_lsa.c ndr_print_uint32(ndr, "count", *r->out.count);
out 11060 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11084 librpc/gen_ndr/ndr_lsa.c if (r->out.trustdom_handle == NULL) {
out 11087 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.trustdom_handle));
out 11088 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11100 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 11124 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.trustdom_handle);
out 11125 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.trustdom_handle);
out 11129 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.trustdom_handle);
out 11132 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.trustdom_handle, LIBNDR_FLAG_REF_ALLOC);
out 11133 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.trustdom_handle));
out 11135 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11168 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "trustdom_handle", r->out.trustdom_handle);
out 11170 librpc/gen_ndr/ndr_lsa.c ndr_print_policy_handle(ndr, "trustdom_handle", r->out.trustdom_handle);
out 11172 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11183 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11193 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11213 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11224 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11234 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11254 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11265 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11275 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11295 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11306 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11316 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11336 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11347 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11357 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11377 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11388 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11398 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11418 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11429 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11439 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11459 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11470 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11480 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11500 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11535 librpc/gen_ndr/ndr_lsa.c if (r->out.domains == NULL) {
out 11538 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.domains));
out 11539 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 11540 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 11542 librpc/gen_ndr/ndr_lsa.c if (r->out.sids == NULL) {
out 11545 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_TransSidArray3(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 11546 librpc/gen_ndr/ndr_lsa.c if (r->out.count == NULL) {
out 11549 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 11550 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11566 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 11607 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 11608 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.domains);
out 11609 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 11610 librpc/gen_ndr/ndr_lsa.c *r->out.sids = *r->in.sids;
out 11611 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 11612 librpc/gen_ndr/ndr_lsa.c *r->out.count = *r->in.count;
out 11619 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 11622 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.domains, LIBNDR_FLAG_REF_ALLOC);
out 11625 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.domains);
out 11627 librpc/gen_ndr/ndr_lsa.c *r->out.domains = NULL;
out 11629 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 11631 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.domains, 0);
out 11632 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 11637 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 11640 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sids, LIBNDR_FLAG_REF_ALLOC);
out 11641 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_TransSidArray3(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 11644 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 11647 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 11648 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 11650 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11697 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", r->out.domains);
out 11699 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", *r->out.domains);
out 11701 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 11702 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_RefDomainList(ndr, "domains", *r->out.domains);
out 11706 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "sids", r->out.sids);
out 11708 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_TransSidArray3(ndr, "sids", r->out.sids);
out 11710 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "count", r->out.count);
out 11712 librpc/gen_ndr/ndr_lsa.c ndr_print_uint32(ndr, "count", *r->out.count);
out 11714 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11725 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11735 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11755 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11766 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11776 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11796 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11807 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11817 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11837 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11848 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11858 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11878 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11898 librpc/gen_ndr/ndr_lsa.c if (r->out.forest_trust_info == NULL) {
out 11901 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.forest_trust_info));
out 11902 librpc/gen_ndr/ndr_lsa.c if (*r->out.forest_trust_info) {
out 11903 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_ForestTrustInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.forest_trust_info));
out 11905 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11918 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 11935 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.forest_trust_info);
out 11936 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.forest_trust_info);
out 11940 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.forest_trust_info);
out 11943 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.forest_trust_info, LIBNDR_FLAG_REF_ALLOC);
out 11946 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.forest_trust_info);
out 11948 librpc/gen_ndr/ndr_lsa.c *r->out.forest_trust_info = NULL;
out 11950 librpc/gen_ndr/ndr_lsa.c if (*r->out.forest_trust_info) {
out 11952 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.forest_trust_info, 0);
out 11953 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_ForestTrustInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.forest_trust_info));
out 11957 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11986 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "forest_trust_info", r->out.forest_trust_info);
out 11988 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "forest_trust_info", *r->out.forest_trust_info);
out 11990 librpc/gen_ndr/ndr_lsa.c if (*r->out.forest_trust_info) {
out 11991 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_ForestTrustInformation(ndr, "forest_trust_info", *r->out.forest_trust_info);
out 11995 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 12006 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12016 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12036 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 12047 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12057 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12077 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 12103 librpc/gen_ndr/ndr_lsa.c if (r->out.domains == NULL) {
out 12106 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.domains));
out 12107 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 12108 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 12110 librpc/gen_ndr/ndr_lsa.c if (r->out.names == NULL) {
out 12113 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_TransNameArray2(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.names));
out 12114 librpc/gen_ndr/ndr_lsa.c if (r->out.count == NULL) {
out 12117 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 12118 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12132 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 12158 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 12159 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.domains);
out 12160 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.names);
out 12161 librpc/gen_ndr/ndr_lsa.c *r->out.names = *r->in.names;
out 12162 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 12163 librpc/gen_ndr/ndr_lsa.c *r->out.count = *r->in.count;
out 12167 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 12170 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.domains, LIBNDR_FLAG_REF_ALLOC);
out 12173 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.domains);
out 12175 librpc/gen_ndr/ndr_lsa.c *r->out.domains = NULL;
out 12177 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 12179 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.domains, 0);
out 12180 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 12185 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.names);
out 12188 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.names, LIBNDR_FLAG_REF_ALLOC);
out 12189 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_TransNameArray2(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.names));
out 12192 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 12195 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 12196 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 12198 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12233 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", r->out.domains);
out 12235 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", *r->out.domains);
out 12237 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 12238 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_RefDomainList(ndr, "domains", *r->out.domains);
out 12242 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "names", r->out.names);
out 12244 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_TransNameArray2(ndr, "names", r->out.names);
out 12246 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "count", r->out.count);
out 12248 librpc/gen_ndr/ndr_lsa.c ndr_print_uint32(ndr, "count", *r->out.count);
out 12250 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 12281 librpc/gen_ndr/ndr_lsa.c if (r->out.domains == NULL) {
out 12284 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.domains));
out 12285 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 12286 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 12288 librpc/gen_ndr/ndr_lsa.c if (r->out.sids == NULL) {
out 12291 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_lsa_TransSidArray3(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 12292 librpc/gen_ndr/ndr_lsa.c if (r->out.count == NULL) {
out 12295 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 12296 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12311 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCT(r->out);
out 12345 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 12346 librpc/gen_ndr/ndr_lsa.c ZERO_STRUCTP(r->out.domains);
out 12347 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 12348 librpc/gen_ndr/ndr_lsa.c *r->out.sids = *r->in.sids;
out 12349 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 12350 librpc/gen_ndr/ndr_lsa.c *r->out.count = *r->in.count;
out 12357 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.domains);
out 12360 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.domains, LIBNDR_FLAG_REF_ALLOC);
out 12363 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, *r->out.domains);
out 12365 librpc/gen_ndr/ndr_lsa.c *r->out.domains = NULL;
out 12367 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 12369 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.domains, 0);
out 12370 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_RefDomainList(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.domains));
out 12375 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 12378 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sids, LIBNDR_FLAG_REF_ALLOC);
out 12379 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_lsa_TransSidArray3(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 12382 librpc/gen_ndr/ndr_lsa.c NDR_PULL_ALLOC(ndr, r->out.count);
out 12385 librpc/gen_ndr/ndr_lsa.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 12386 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 12388 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12431 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", r->out.domains);
out 12433 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "domains", *r->out.domains);
out 12435 librpc/gen_ndr/ndr_lsa.c if (*r->out.domains) {
out 12436 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_RefDomainList(ndr, "domains", *r->out.domains);
out 12440 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "sids", r->out.sids);
out 12442 librpc/gen_ndr/ndr_lsa.c ndr_print_lsa_TransSidArray3(ndr, "sids", r->out.sids);
out 12444 librpc/gen_ndr/ndr_lsa.c ndr_print_ptr(ndr, "count", r->out.count);
out 12446 librpc/gen_ndr/ndr_lsa.c ndr_print_uint32(ndr, "count", *r->out.count);
out 12448 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 12459 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12469 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12489 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 12500 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12510 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12530 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 12541 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12551 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12571 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 12582 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12592 librpc/gen_ndr/ndr_lsa.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12612 librpc/gen_ndr/ndr_lsa.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9029 librpc/gen_ndr/ndr_netlogon.c if (r->out.info == NULL) {
out 9032 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 9033 librpc/gen_ndr/ndr_netlogon.c if (*r->out.info) {
out 9034 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_UasInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 9036 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 9049 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 9083 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9084 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.info);
out 9088 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9091 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 9094 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 9096 librpc/gen_ndr/ndr_netlogon.c *r->out.info = NULL;
out 9098 librpc/gen_ndr/ndr_netlogon.c if (*r->out.info) {
out 9100 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 9101 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_UasInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 9105 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 9133 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "info", r->out.info);
out 9135 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "info", *r->out.info);
out 9137 librpc/gen_ndr/ndr_netlogon.c if (*r->out.info) {
out 9138 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_UasInfo(ndr, "info", *r->out.info);
out 9142 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 9168 librpc/gen_ndr/ndr_netlogon.c if (r->out.info == NULL) {
out 9171 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_UasLogoffInfo(ndr, NDR_SCALARS, r->out.info));
out 9172 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 9183 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 9217 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9218 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.info);
out 9222 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9225 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 9226 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_UasLogoffInfo(ndr, NDR_SCALARS, r->out.info));
out 9228 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 9256 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "info", r->out.info);
out 9258 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_UasLogoffInfo(ndr, "info", r->out.info);
out 9260 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 9300 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.return_authenticator));
out 9301 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator) {
out 9302 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 9304 librpc/gen_ndr/ndr_netlogon.c if (r->out.validation == NULL) {
out 9307 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.validation, r->in.validation_level));
out 9308 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Validation(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.validation));
out 9309 librpc/gen_ndr/ndr_netlogon.c if (r->out.authoritative == NULL) {
out 9312 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint8(ndr, NDR_SCALARS, *r->out.authoritative));
out 9313 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9332 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 9404 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.validation);
out 9405 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.validation);
out 9406 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.authoritative);
out 9407 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.authoritative);
out 9412 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 9414 librpc/gen_ndr/ndr_netlogon.c r->out.return_authenticator = NULL;
out 9416 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator) {
out 9418 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, 0);
out 9419 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 9423 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.validation);
out 9426 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.validation, LIBNDR_FLAG_REF_ALLOC);
out 9427 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.validation, r->in.validation_level));
out 9428 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Validation(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.validation));
out 9431 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.authoritative);
out 9434 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.authoritative, LIBNDR_FLAG_REF_ALLOC);
out 9435 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint8(ndr, NDR_SCALARS, r->out.authoritative));
out 9437 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9488 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 9490 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator) {
out 9491 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 9494 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "validation", r->out.validation);
out 9496 librpc/gen_ndr/ndr_netlogon.c ndr_print_set_switch_value(ndr, r->out.validation, r->in.validation_level);
out 9497 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Validation(ndr, "validation", r->out.validation);
out 9499 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "authoritative", r->out.authoritative);
out 9501 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint8(ndr, "authoritative", *r->out.authoritative);
out 9503 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9539 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.return_authenticator));
out 9540 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator) {
out 9541 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 9543 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9559 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 9628 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 9630 librpc/gen_ndr/ndr_netlogon.c r->out.return_authenticator = NULL;
out 9632 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator) {
out 9634 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, 0);
out 9635 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 9638 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9685 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 9687 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator) {
out 9688 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 9691 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9717 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_credentials == NULL) {
out 9720 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Credential(ndr, NDR_SCALARS, r->out.return_credentials));
out 9721 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9733 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 9767 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_credentials);
out 9768 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.return_credentials);
out 9772 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_credentials);
out 9775 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_credentials, LIBNDR_FLAG_REF_ALLOC);
out 9776 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Credential(ndr, NDR_SCALARS, r->out.return_credentials));
out 9778 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9809 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_credentials", r->out.return_credentials);
out 9811 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Credential(ndr, "return_credentials", r->out.return_credentials);
out 9813 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9844 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_credentials == NULL) {
out 9847 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Credential(ndr, NDR_SCALARS, r->out.return_credentials));
out 9848 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9860 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 9902 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_credentials);
out 9903 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.return_credentials);
out 9907 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_credentials);
out 9910 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_credentials, LIBNDR_FLAG_REF_ALLOC);
out 9911 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Credential(ndr, NDR_SCALARS, r->out.return_credentials));
out 9913 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9946 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_credentials", r->out.return_credentials);
out 9948 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Credential(ndr, "return_credentials", r->out.return_credentials);
out 9950 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9985 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 9988 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 9989 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10002 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 10051 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 10052 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.return_authenticator);
out 10056 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 10059 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 10060 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 10062 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10099 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 10101 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 10103 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10136 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 10139 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 10140 librpc/gen_ndr/ndr_netlogon.c if (r->out.sequence_num == NULL) {
out 10143 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_udlong(ndr, NDR_SCALARS, *r->out.sequence_num));
out 10144 librpc/gen_ndr/ndr_netlogon.c if (r->out.delta_enum_array == NULL) {
out 10147 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.delta_enum_array));
out 10148 librpc/gen_ndr/ndr_netlogon.c if (*r->out.delta_enum_array) {
out 10149 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_DELTA_ENUM_ARRAY(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.delta_enum_array));
out 10151 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10165 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 10204 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 10205 librpc/gen_ndr/ndr_netlogon.c *r->out.return_authenticator = *r->in.return_authenticator;
out 10206 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.sequence_num);
out 10207 librpc/gen_ndr/ndr_netlogon.c *r->out.sequence_num = *r->in.sequence_num;
out 10208 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.delta_enum_array);
out 10209 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.delta_enum_array);
out 10213 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 10216 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 10217 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 10220 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.sequence_num);
out 10223 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sequence_num, LIBNDR_FLAG_REF_ALLOC);
out 10224 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_udlong(ndr, NDR_SCALARS, r->out.sequence_num));
out 10227 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.delta_enum_array);
out 10230 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.delta_enum_array, LIBNDR_FLAG_REF_ALLOC);
out 10233 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.delta_enum_array);
out 10235 librpc/gen_ndr/ndr_netlogon.c *r->out.delta_enum_array = NULL;
out 10237 librpc/gen_ndr/ndr_netlogon.c if (*r->out.delta_enum_array) {
out 10239 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.delta_enum_array, 0);
out 10240 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_DELTA_ENUM_ARRAY(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.delta_enum_array));
out 10244 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10280 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 10282 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 10284 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "sequence_num", r->out.sequence_num);
out 10286 librpc/gen_ndr/ndr_netlogon.c ndr_print_udlong(ndr, "sequence_num", *r->out.sequence_num);
out 10288 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "delta_enum_array", r->out.delta_enum_array);
out 10290 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "delta_enum_array", *r->out.delta_enum_array);
out 10292 librpc/gen_ndr/ndr_netlogon.c if (*r->out.delta_enum_array) {
out 10293 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_DELTA_ENUM_ARRAY(ndr, "delta_enum_array", *r->out.delta_enum_array);
out 10297 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10330 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 10333 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 10334 librpc/gen_ndr/ndr_netlogon.c if (r->out.sync_context == NULL) {
out 10337 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.sync_context));
out 10338 librpc/gen_ndr/ndr_netlogon.c if (r->out.delta_enum_array == NULL) {
out 10341 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.delta_enum_array));
out 10342 librpc/gen_ndr/ndr_netlogon.c if (*r->out.delta_enum_array) {
out 10343 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_DELTA_ENUM_ARRAY(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.delta_enum_array));
out 10345 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10359 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 10398 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 10399 librpc/gen_ndr/ndr_netlogon.c *r->out.return_authenticator = *r->in.return_authenticator;
out 10400 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.sync_context);
out 10401 librpc/gen_ndr/ndr_netlogon.c *r->out.sync_context = *r->in.sync_context;
out 10402 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.delta_enum_array);
out 10403 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.delta_enum_array);
out 10407 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 10410 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 10411 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 10414 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.sync_context);
out 10417 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sync_context, LIBNDR_FLAG_REF_ALLOC);
out 10418 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.sync_context));
out 10421 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.delta_enum_array);
out 10424 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.delta_enum_array, LIBNDR_FLAG_REF_ALLOC);
out 10427 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.delta_enum_array);
out 10429 librpc/gen_ndr/ndr_netlogon.c *r->out.delta_enum_array = NULL;
out 10431 librpc/gen_ndr/ndr_netlogon.c if (*r->out.delta_enum_array) {
out 10433 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.delta_enum_array, 0);
out 10434 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_DELTA_ENUM_ARRAY(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.delta_enum_array));
out 10438 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10474 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 10476 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 10478 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "sync_context", r->out.sync_context);
out 10480 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint32(ndr, "sync_context", *r->out.sync_context);
out 10482 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "delta_enum_array", r->out.delta_enum_array);
out 10484 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "delta_enum_array", *r->out.delta_enum_array);
out 10486 librpc/gen_ndr/ndr_netlogon.c if (*r->out.delta_enum_array) {
out 10487 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_DELTA_ENUM_ARRAY(ndr, "delta_enum_array", *r->out.delta_enum_array);
out 10491 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10522 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 10525 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 10526 librpc/gen_ndr/ndr_netlogon.c if (r->out.buffer == NULL) {
out 10532 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_AccountBuffer(_ndr_buffer, NDR_SCALARS, r->out.buffer));
out 10535 librpc/gen_ndr/ndr_netlogon.c if (r->out.count_returned == NULL) {
out 10538 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count_returned));
out 10539 librpc/gen_ndr/ndr_netlogon.c if (r->out.total_entries == NULL) {
out 10542 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.total_entries));
out 10543 librpc/gen_ndr/ndr_netlogon.c if (r->out.recordid == NULL) {
out 10546 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_UAS_INFO_0(ndr, NDR_SCALARS, r->out.recordid));
out 10547 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10562 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 10601 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 10602 librpc/gen_ndr/ndr_netlogon.c *r->out.return_authenticator = *r->in.return_authenticator;
out 10603 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.buffer);
out 10604 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.buffer);
out 10605 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.count_returned);
out 10606 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.count_returned);
out 10607 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.total_entries);
out 10608 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.total_entries);
out 10609 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.recordid);
out 10610 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.recordid);
out 10614 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 10617 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 10618 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 10621 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.buffer);
out 10624 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.buffer, LIBNDR_FLAG_REF_ALLOC);
out 10628 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_AccountBuffer(_ndr_buffer, NDR_SCALARS, r->out.buffer));
out 10633 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.count_returned);
out 10636 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count_returned, LIBNDR_FLAG_REF_ALLOC);
out 10637 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count_returned));
out 10640 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.total_entries);
out 10643 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.total_entries, LIBNDR_FLAG_REF_ALLOC);
out 10644 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.total_entries));
out 10647 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.recordid);
out 10650 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.recordid, LIBNDR_FLAG_REF_ALLOC);
out 10651 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_UAS_INFO_0(ndr, NDR_SCALARS, r->out.recordid));
out 10653 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10689 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 10691 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 10693 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 10695 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_AccountBuffer(ndr, "buffer", r->out.buffer);
out 10697 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "count_returned", r->out.count_returned);
out 10699 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint32(ndr, "count_returned", *r->out.count_returned);
out 10701 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
out 10703 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
out 10705 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "recordid", r->out.recordid);
out 10707 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_UAS_INFO_0(ndr, "recordid", r->out.recordid);
out 10709 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10743 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 10746 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 10747 librpc/gen_ndr/ndr_netlogon.c if (r->out.buffer == NULL) {
out 10753 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_AccountBuffer(_ndr_buffer, NDR_SCALARS, r->out.buffer));
out 10756 librpc/gen_ndr/ndr_netlogon.c if (r->out.count_returned == NULL) {
out 10759 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count_returned));
out 10760 librpc/gen_ndr/ndr_netlogon.c if (r->out.total_entries == NULL) {
out 10763 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.total_entries));
out 10764 librpc/gen_ndr/ndr_netlogon.c if (r->out.next_reference == NULL) {
out 10767 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.next_reference));
out 10768 librpc/gen_ndr/ndr_netlogon.c if (r->out.recordid == NULL) {
out 10771 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_UAS_INFO_0(ndr, NDR_SCALARS, r->out.recordid));
out 10772 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10788 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 10833 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 10834 librpc/gen_ndr/ndr_netlogon.c *r->out.return_authenticator = *r->in.return_authenticator;
out 10835 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.buffer);
out 10836 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.buffer);
out 10837 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.count_returned);
out 10838 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.count_returned);
out 10839 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.total_entries);
out 10840 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.total_entries);
out 10841 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.next_reference);
out 10842 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.next_reference);
out 10843 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.recordid);
out 10844 librpc/gen_ndr/ndr_netlogon.c *r->out.recordid = *r->in.recordid;
out 10848 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 10851 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 10852 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 10855 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.buffer);
out 10858 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.buffer, LIBNDR_FLAG_REF_ALLOC);
out 10862 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_AccountBuffer(_ndr_buffer, NDR_SCALARS, r->out.buffer));
out 10867 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.count_returned);
out 10870 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count_returned, LIBNDR_FLAG_REF_ALLOC);
out 10871 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count_returned));
out 10874 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.total_entries);
out 10877 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.total_entries, LIBNDR_FLAG_REF_ALLOC);
out 10878 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.total_entries));
out 10881 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.next_reference);
out 10884 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.next_reference, LIBNDR_FLAG_REF_ALLOC);
out 10885 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.next_reference));
out 10888 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.recordid);
out 10891 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.recordid, LIBNDR_FLAG_REF_ALLOC);
out 10892 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_UAS_INFO_0(ndr, NDR_SCALARS, r->out.recordid));
out 10894 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10933 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 10935 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 10937 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 10939 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_AccountBuffer(ndr, "buffer", r->out.buffer);
out 10941 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "count_returned", r->out.count_returned);
out 10943 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint32(ndr, "count_returned", *r->out.count_returned);
out 10945 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
out 10947 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
out 10949 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "next_reference", r->out.next_reference);
out 10951 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint32(ndr, "next_reference", *r->out.next_reference);
out 10953 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "recordid", r->out.recordid);
out 10955 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_UAS_INFO_0(ndr, "recordid", r->out.recordid);
out 10957 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10979 librpc/gen_ndr/ndr_netlogon.c if (r->out.dcname == NULL) {
out 10982 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.dcname));
out 10983 librpc/gen_ndr/ndr_netlogon.c if (*r->out.dcname) {
out 10984 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.dcname, CH_UTF16)));
out 10986 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.dcname, CH_UTF16)));
out 10987 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.dcname, ndr_charset_length(*r->out.dcname, CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 10989 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 11002 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 11029 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.dcname);
out 11030 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.dcname);
out 11034 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.dcname);
out 11037 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.dcname, LIBNDR_FLAG_REF_ALLOC);
out 11040 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.dcname);
out 11042 librpc/gen_ndr/ndr_netlogon.c *r->out.dcname = NULL;
out 11044 librpc/gen_ndr/ndr_netlogon.c if (*r->out.dcname) {
out 11046 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.dcname, 0);
out 11047 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.dcname));
out 11048 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_array_length(ndr, r->out.dcname));
out 11049 librpc/gen_ndr/ndr_netlogon.c if (ndr_get_array_length(ndr, r->out.dcname) > ndr_get_array_size(ndr, r->out.dcname)) {
out 11050 librpc/gen_ndr/ndr_netlogon.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.dcname), ndr_get_array_length(ndr, r->out.dcname));
out 11052 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.dcname), sizeof(uint16_t)));
out 11053 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.dcname, ndr_get_array_length(ndr, r->out.dcname), sizeof(uint16_t), CH_UTF16));
out 11057 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 11084 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "dcname", r->out.dcname);
out 11086 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "dcname", *r->out.dcname);
out 11088 librpc/gen_ndr/ndr_netlogon.c if (*r->out.dcname) {
out 11089 librpc/gen_ndr/ndr_netlogon.c ndr_print_string(ndr, "dcname", *r->out.dcname);
out 11093 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 11113 librpc/gen_ndr/ndr_netlogon.c if (r->out.info == NULL) {
out 11116 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 11117 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_CONTROL_QUERY_INFORMATION(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 11118 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 11129 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 11151 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 11152 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.info);
out 11156 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 11159 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 11160 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 11161 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_CONTROL_QUERY_INFORMATION(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 11163 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 11191 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "info", r->out.info);
out 11193 librpc/gen_ndr/ndr_netlogon.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 11194 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_CONTROL_QUERY_INFORMATION(ndr, "info", r->out.info);
out 11196 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 11221 librpc/gen_ndr/ndr_netlogon.c if (r->out.dcname == NULL) {
out 11224 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.dcname));
out 11225 librpc/gen_ndr/ndr_netlogon.c if (*r->out.dcname) {
out 11226 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.dcname, CH_UTF16)));
out 11228 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.dcname, CH_UTF16)));
out 11229 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.dcname, ndr_charset_length(*r->out.dcname, CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 11231 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 11246 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 11284 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.dcname);
out 11285 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.dcname);
out 11289 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.dcname);
out 11292 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.dcname, LIBNDR_FLAG_REF_ALLOC);
out 11295 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.dcname);
out 11297 librpc/gen_ndr/ndr_netlogon.c *r->out.dcname = NULL;
out 11299 librpc/gen_ndr/ndr_netlogon.c if (*r->out.dcname) {
out 11301 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.dcname, 0);
out 11302 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.dcname));
out 11303 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_array_length(ndr, r->out.dcname));
out 11304 librpc/gen_ndr/ndr_netlogon.c if (ndr_get_array_length(ndr, r->out.dcname) > ndr_get_array_size(ndr, r->out.dcname)) {
out 11305 librpc/gen_ndr/ndr_netlogon.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.dcname), ndr_get_array_length(ndr, r->out.dcname));
out 11307 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.dcname), sizeof(uint16_t)));
out 11308 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.dcname, ndr_get_array_length(ndr, r->out.dcname), sizeof(uint16_t), CH_UTF16));
out 11312 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 11344 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "dcname", r->out.dcname);
out 11346 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "dcname", *r->out.dcname);
out 11348 librpc/gen_ndr/ndr_netlogon.c if (*r->out.dcname) {
out 11349 librpc/gen_ndr/ndr_netlogon.c ndr_print_string(ndr, "dcname", *r->out.dcname);
out 11353 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 11378 librpc/gen_ndr/ndr_netlogon.c if (r->out.query == NULL) {
out 11381 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.query, r->in.level));
out 11382 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_CONTROL_QUERY_INFORMATION(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.query));
out 11383 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 11395 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 11425 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.query);
out 11426 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.query);
out 11430 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.query);
out 11433 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.query, LIBNDR_FLAG_REF_ALLOC);
out 11434 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.query, r->in.level));
out 11435 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_CONTROL_QUERY_INFORMATION(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.query));
out 11437 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 11470 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "query", r->out.query);
out 11472 librpc/gen_ndr/ndr_netlogon.c ndr_print_set_switch_value(ndr, r->out.query, r->in.level);
out 11473 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_CONTROL_QUERY_INFORMATION(ndr, "query", r->out.query);
out 11475 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 11510 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_credentials == NULL) {
out 11513 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Credential(ndr, NDR_SCALARS, r->out.return_credentials));
out 11514 librpc/gen_ndr/ndr_netlogon.c if (r->out.negotiate_flags == NULL) {
out 11517 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_NegotiateFlags(ndr, NDR_SCALARS, *r->out.negotiate_flags));
out 11518 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11531 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 11580 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_credentials);
out 11581 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.return_credentials);
out 11582 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.negotiate_flags);
out 11583 librpc/gen_ndr/ndr_netlogon.c *r->out.negotiate_flags = *r->in.negotiate_flags;
out 11587 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_credentials);
out 11590 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_credentials, LIBNDR_FLAG_REF_ALLOC);
out 11591 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Credential(ndr, NDR_SCALARS, r->out.return_credentials));
out 11594 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.negotiate_flags);
out 11597 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.negotiate_flags, LIBNDR_FLAG_REF_ALLOC);
out 11598 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_NegotiateFlags(ndr, NDR_SCALARS, r->out.negotiate_flags));
out 11600 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11637 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_credentials", r->out.return_credentials);
out 11639 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Credential(ndr, "return_credentials", r->out.return_credentials);
out 11641 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "negotiate_flags", r->out.negotiate_flags);
out 11643 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_NegotiateFlags(ndr, "negotiate_flags", *r->out.negotiate_flags);
out 11645 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11679 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 11682 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 11683 librpc/gen_ndr/ndr_netlogon.c if (r->out.sync_context == NULL) {
out 11686 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.sync_context));
out 11687 librpc/gen_ndr/ndr_netlogon.c if (r->out.delta_enum_array == NULL) {
out 11690 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.delta_enum_array));
out 11691 librpc/gen_ndr/ndr_netlogon.c if (*r->out.delta_enum_array) {
out 11692 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_DELTA_ENUM_ARRAY(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.delta_enum_array));
out 11694 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11708 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 11748 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 11749 librpc/gen_ndr/ndr_netlogon.c *r->out.return_authenticator = *r->in.return_authenticator;
out 11750 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.sync_context);
out 11751 librpc/gen_ndr/ndr_netlogon.c *r->out.sync_context = *r->in.sync_context;
out 11752 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.delta_enum_array);
out 11753 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.delta_enum_array);
out 11757 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 11760 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 11761 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 11764 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.sync_context);
out 11767 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sync_context, LIBNDR_FLAG_REF_ALLOC);
out 11768 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.sync_context));
out 11771 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.delta_enum_array);
out 11774 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.delta_enum_array, LIBNDR_FLAG_REF_ALLOC);
out 11777 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.delta_enum_array);
out 11779 librpc/gen_ndr/ndr_netlogon.c *r->out.delta_enum_array = NULL;
out 11781 librpc/gen_ndr/ndr_netlogon.c if (*r->out.delta_enum_array) {
out 11783 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.delta_enum_array, 0);
out 11784 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_DELTA_ENUM_ARRAY(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.delta_enum_array));
out 11788 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11825 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 11827 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 11829 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "sync_context", r->out.sync_context);
out 11831 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint32(ndr, "sync_context", *r->out.sync_context);
out 11833 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "delta_enum_array", r->out.delta_enum_array);
out 11835 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "delta_enum_array", *r->out.delta_enum_array);
out 11837 librpc/gen_ndr/ndr_netlogon.c if (*r->out.delta_enum_array) {
out 11838 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_DELTA_ENUM_ARRAY(ndr, "delta_enum_array", *r->out.delta_enum_array);
out 11842 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11876 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 11879 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 11880 librpc/gen_ndr/ndr_netlogon.c if (r->out.delta_enum_array == NULL) {
out 11883 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.delta_enum_array));
out 11884 librpc/gen_ndr/ndr_netlogon.c if (*r->out.delta_enum_array) {
out 11885 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_DELTA_ENUM_ARRAY(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.delta_enum_array));
out 11887 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11900 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 11937 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 11938 librpc/gen_ndr/ndr_netlogon.c *r->out.return_authenticator = *r->in.return_authenticator;
out 11939 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.delta_enum_array);
out 11940 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.delta_enum_array);
out 11944 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 11947 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 11948 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 11951 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.delta_enum_array);
out 11954 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.delta_enum_array, LIBNDR_FLAG_REF_ALLOC);
out 11957 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.delta_enum_array);
out 11959 librpc/gen_ndr/ndr_netlogon.c *r->out.delta_enum_array = NULL;
out 11961 librpc/gen_ndr/ndr_netlogon.c if (*r->out.delta_enum_array) {
out 11963 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.delta_enum_array, 0);
out 11964 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_DELTA_ENUM_ARRAY(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.delta_enum_array));
out 11968 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12000 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 12002 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 12004 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "delta_enum_array", r->out.delta_enum_array);
out 12006 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "delta_enum_array", *r->out.delta_enum_array);
out 12008 librpc/gen_ndr/ndr_netlogon.c if (*r->out.delta_enum_array) {
out 12009 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_DELTA_ENUM_ARRAY(ndr, "delta_enum_array", *r->out.delta_enum_array);
out 12013 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 12038 librpc/gen_ndr/ndr_netlogon.c if (r->out.query == NULL) {
out 12041 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.query, r->in.level));
out 12042 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_CONTROL_QUERY_INFORMATION(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.query));
out 12043 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12055 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 12085 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.query);
out 12086 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.query);
out 12090 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.query);
out 12093 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.query, LIBNDR_FLAG_REF_ALLOC);
out 12094 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.query, r->in.level));
out 12095 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_CONTROL_QUERY_INFORMATION(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.query));
out 12097 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12130 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "query", r->out.query);
out 12132 librpc/gen_ndr/ndr_netlogon.c ndr_print_set_switch_value(ndr, r->out.query, r->in.level);
out 12133 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_CONTROL_QUERY_INFORMATION(ndr, "query", r->out.query);
out 12135 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12153 librpc/gen_ndr/ndr_netlogon.c if (r->out.trusted_domains_blob == NULL) {
out 12156 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Blob(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.trusted_domains_blob));
out 12157 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12168 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 12188 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.trusted_domains_blob);
out 12189 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.trusted_domains_blob);
out 12193 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.trusted_domains_blob);
out 12196 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.trusted_domains_blob, LIBNDR_FLAG_REF_ALLOC);
out 12197 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Blob(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.trusted_domains_blob));
out 12199 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12225 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "trusted_domains_blob", r->out.trusted_domains_blob);
out 12227 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Blob(ndr, "trusted_domains_blob", r->out.trusted_domains_blob);
out 12229 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12263 librpc/gen_ndr/ndr_netlogon.c if (r->out.info == NULL) {
out 12266 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 12267 librpc/gen_ndr/ndr_netlogon.c if (*r->out.info) {
out 12268 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_DsRGetDCNameInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 12270 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12289 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 12352 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 12353 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.info);
out 12357 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 12360 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 12363 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 12365 librpc/gen_ndr/ndr_netlogon.c *r->out.info = NULL;
out 12367 librpc/gen_ndr/ndr_netlogon.c if (*r->out.info) {
out 12369 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 12370 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_DsRGetDCNameInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 12374 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12419 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "info", r->out.info);
out 12421 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "info", *r->out.info);
out 12423 librpc/gen_ndr/ndr_netlogon.c if (*r->out.info) {
out 12424 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_DsRGetDCNameInfo(ndr, "info", *r->out.info);
out 12428 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12459 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 12462 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 12463 librpc/gen_ndr/ndr_netlogon.c if (r->out.capabilities == NULL) {
out 12466 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.capabilities, r->in.query_level));
out 12467 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Capabilities(ndr, NDR_SCALARS, r->out.capabilities));
out 12468 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12481 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 12523 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 12524 librpc/gen_ndr/ndr_netlogon.c *r->out.return_authenticator = *r->in.return_authenticator;
out 12525 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.capabilities);
out 12526 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.capabilities);
out 12530 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 12533 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 12534 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 12537 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.capabilities);
out 12540 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.capabilities, LIBNDR_FLAG_REF_ALLOC);
out 12541 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.capabilities, r->in.query_level));
out 12542 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Capabilities(ndr, NDR_SCALARS, r->out.capabilities));
out 12544 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12580 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 12582 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 12584 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "capabilities", r->out.capabilities);
out 12586 librpc/gen_ndr/ndr_netlogon.c ndr_print_set_switch_value(ndr, r->out.capabilities, r->in.query_level);
out 12587 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Capabilities(ndr, "capabilities", r->out.capabilities);
out 12589 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 12600 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12610 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12630 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12655 librpc/gen_ndr/ndr_netlogon.c if (r->out.rid == NULL) {
out 12658 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.rid));
out 12659 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12672 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 12710 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.rid);
out 12711 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.rid);
out 12715 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.rid);
out 12718 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.rid, LIBNDR_FLAG_REF_ALLOC);
out 12719 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.rid));
out 12721 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12753 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "rid", r->out.rid);
out 12755 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint32(ndr, "rid", *r->out.rid);
out 12757 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12768 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12778 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12798 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12809 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 12819 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 12839 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 12874 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_credentials == NULL) {
out 12877 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Credential(ndr, NDR_SCALARS, r->out.return_credentials));
out 12878 librpc/gen_ndr/ndr_netlogon.c if (r->out.negotiate_flags == NULL) {
out 12881 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_NegotiateFlags(ndr, NDR_SCALARS, *r->out.negotiate_flags));
out 12882 librpc/gen_ndr/ndr_netlogon.c if (r->out.rid == NULL) {
out 12885 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.rid));
out 12886 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12900 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 12949 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_credentials);
out 12950 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.return_credentials);
out 12951 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.negotiate_flags);
out 12952 librpc/gen_ndr/ndr_netlogon.c *r->out.negotiate_flags = *r->in.negotiate_flags;
out 12953 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.rid);
out 12954 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.rid);
out 12958 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_credentials);
out 12961 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_credentials, LIBNDR_FLAG_REF_ALLOC);
out 12962 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Credential(ndr, NDR_SCALARS, r->out.return_credentials));
out 12965 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.negotiate_flags);
out 12968 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.negotiate_flags, LIBNDR_FLAG_REF_ALLOC);
out 12969 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_NegotiateFlags(ndr, NDR_SCALARS, r->out.negotiate_flags));
out 12972 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.rid);
out 12975 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.rid, LIBNDR_FLAG_REF_ALLOC);
out 12976 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.rid));
out 12978 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 13015 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_credentials", r->out.return_credentials);
out 13017 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Credential(ndr, "return_credentials", r->out.return_credentials);
out 13019 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "negotiate_flags", r->out.negotiate_flags);
out 13021 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_NegotiateFlags(ndr, "negotiate_flags", *r->out.negotiate_flags);
out 13023 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "rid", r->out.rid);
out 13025 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint32(ndr, "rid", *r->out.rid);
out 13027 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 13064 librpc/gen_ndr/ndr_netlogon.c if (r->out.info == NULL) {
out 13067 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 13068 librpc/gen_ndr/ndr_netlogon.c if (*r->out.info) {
out 13069 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_DsRGetDCNameInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 13071 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13090 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 13159 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 13160 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.info);
out 13164 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 13167 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 13170 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 13172 librpc/gen_ndr/ndr_netlogon.c *r->out.info = NULL;
out 13174 librpc/gen_ndr/ndr_netlogon.c if (*r->out.info) {
out 13176 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 13177 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_DsRGetDCNameInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 13181 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13226 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "info", r->out.info);
out 13228 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "info", *r->out.info);
out 13230 librpc/gen_ndr/ndr_netlogon.c if (*r->out.info) {
out 13231 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_DsRGetDCNameInfo(ndr, "info", *r->out.info);
out 13235 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13253 librpc/gen_ndr/ndr_netlogon.c if (r->out.site == NULL) {
out 13256 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.site));
out 13257 librpc/gen_ndr/ndr_netlogon.c if (*r->out.site) {
out 13258 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.site, CH_UTF16)));
out 13260 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.site, CH_UTF16)));
out 13261 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.site, ndr_charset_length(*r->out.site, CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 13263 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13276 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 13296 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.site);
out 13297 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.site);
out 13301 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.site);
out 13304 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.site, LIBNDR_FLAG_REF_ALLOC);
out 13307 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.site);
out 13309 librpc/gen_ndr/ndr_netlogon.c *r->out.site = NULL;
out 13311 librpc/gen_ndr/ndr_netlogon.c if (*r->out.site) {
out 13313 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.site, 0);
out 13314 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.site));
out 13315 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_array_length(ndr, r->out.site));
out 13316 librpc/gen_ndr/ndr_netlogon.c if (ndr_get_array_length(ndr, r->out.site) > ndr_get_array_size(ndr, r->out.site)) {
out 13317 librpc/gen_ndr/ndr_netlogon.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.site), ndr_get_array_length(ndr, r->out.site));
out 13319 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.site), sizeof(uint16_t)));
out 13320 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.site, ndr_get_array_length(ndr, r->out.site), sizeof(uint16_t), CH_UTF16));
out 13324 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13350 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "site", r->out.site);
out 13352 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "site", *r->out.site);
out 13354 librpc/gen_ndr/ndr_netlogon.c if (*r->out.site) {
out 13355 librpc/gen_ndr/ndr_netlogon.c ndr_print_string(ndr, "site", *r->out.site);
out 13359 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13392 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 13395 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 13396 librpc/gen_ndr/ndr_netlogon.c if (r->out.info == NULL) {
out 13399 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 13400 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_DomainInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 13401 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 13414 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 13458 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 13459 librpc/gen_ndr/ndr_netlogon.c *r->out.return_authenticator = *r->in.return_authenticator;
out 13460 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 13461 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.info);
out 13465 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 13468 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 13469 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 13472 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 13475 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 13476 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 13477 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_DomainInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 13479 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 13517 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 13519 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 13521 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "info", r->out.info);
out 13523 librpc/gen_ndr/ndr_netlogon.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 13524 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_DomainInfo(ndr, "info", r->out.info);
out 13526 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 13561 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 13564 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 13565 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 13578 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 13627 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 13628 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.return_authenticator);
out 13632 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 13635 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 13636 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 13638 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 13675 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 13677 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 13679 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 13710 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 13713 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 13714 librpc/gen_ndr/ndr_netlogon.c if (r->out.password == NULL) {
out 13717 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_samr_Password(ndr, NDR_SCALARS, r->out.password));
out 13718 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13731 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 13773 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 13774 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.return_authenticator);
out 13775 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.password);
out 13776 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.password);
out 13780 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 13783 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 13784 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 13787 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.password);
out 13790 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.password, LIBNDR_FLAG_REF_ALLOC);
out 13791 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_samr_Password(ndr, NDR_SCALARS, r->out.password));
out 13793 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13826 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 13828 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 13830 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "password", r->out.password);
out 13832 librpc/gen_ndr/ndr_netlogon.c ndr_print_samr_Password(ndr, "password", r->out.password);
out 13834 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13845 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13855 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13875 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13905 librpc/gen_ndr/ndr_netlogon.c if (r->out.ctr == NULL) {
out 13908 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.ctr));
out 13909 librpc/gen_ndr/ndr_netlogon.c if (*r->out.ctr) {
out 13910 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_DsRAddressToSitenamesWCtr(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.ctr));
out 13912 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13927 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 13964 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 13965 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.ctr);
out 13972 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 13975 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ctr, LIBNDR_FLAG_REF_ALLOC);
out 13978 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.ctr);
out 13980 librpc/gen_ndr/ndr_netlogon.c *r->out.ctr = NULL;
out 13982 librpc/gen_ndr/ndr_netlogon.c if (*r->out.ctr) {
out 13984 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.ctr, 0);
out 13985 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_DsRAddressToSitenamesWCtr(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.ctr));
out 13989 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14030 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "ctr", r->out.ctr);
out 14032 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "ctr", *r->out.ctr);
out 14034 librpc/gen_ndr/ndr_netlogon.c if (*r->out.ctr) {
out 14035 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_DsRAddressToSitenamesWCtr(ndr, "ctr", *r->out.ctr);
out 14039 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14084 librpc/gen_ndr/ndr_netlogon.c if (r->out.info == NULL) {
out 14087 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 14088 librpc/gen_ndr/ndr_netlogon.c if (*r->out.info) {
out 14089 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_DsRGetDCNameInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 14091 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14112 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 14200 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 14201 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.info);
out 14205 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.info);
out 14208 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 14211 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 14213 librpc/gen_ndr/ndr_netlogon.c *r->out.info = NULL;
out 14215 librpc/gen_ndr/ndr_netlogon.c if (*r->out.info) {
out 14217 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 14218 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_DsRGetDCNameInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 14222 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14274 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "info", r->out.info);
out 14276 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "info", *r->out.info);
out 14278 librpc/gen_ndr/ndr_netlogon.c if (*r->out.info) {
out 14279 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_DsRGetDCNameInfo(ndr, "info", *r->out.info);
out 14283 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14294 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14304 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14324 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14342 librpc/gen_ndr/ndr_netlogon.c if (r->out.dom_trust_list == NULL) {
out 14345 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_DomainTrustList(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.dom_trust_list));
out 14346 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14357 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 14377 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.dom_trust_list);
out 14378 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.dom_trust_list);
out 14382 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.dom_trust_list);
out 14385 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.dom_trust_list, LIBNDR_FLAG_REF_ALLOC);
out 14386 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_DomainTrustList(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.dom_trust_list));
out 14388 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14414 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "dom_trust_list", r->out.dom_trust_list);
out 14416 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_DomainTrustList(ndr, "dom_trust_list", r->out.dom_trust_list);
out 14418 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14448 librpc/gen_ndr/ndr_netlogon.c if (r->out.ctr == NULL) {
out 14451 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.ctr));
out 14452 librpc/gen_ndr/ndr_netlogon.c if (*r->out.ctr) {
out 14453 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_DsRAddressToSitenamesExWCtr(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.ctr));
out 14455 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14470 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 14507 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 14508 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.ctr);
out 14515 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 14518 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ctr, LIBNDR_FLAG_REF_ALLOC);
out 14521 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.ctr);
out 14523 librpc/gen_ndr/ndr_netlogon.c *r->out.ctr = NULL;
out 14525 librpc/gen_ndr/ndr_netlogon.c if (*r->out.ctr) {
out 14527 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.ctr, 0);
out 14528 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_DsRAddressToSitenamesExWCtr(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.ctr));
out 14532 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14573 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "ctr", r->out.ctr);
out 14575 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "ctr", *r->out.ctr);
out 14577 librpc/gen_ndr/ndr_netlogon.c if (*r->out.ctr) {
out 14578 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_DsRAddressToSitenamesExWCtr(ndr, "ctr", *r->out.ctr);
out 14582 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14600 librpc/gen_ndr/ndr_netlogon.c if (r->out.ctr == NULL) {
out 14603 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.ctr));
out 14604 librpc/gen_ndr/ndr_netlogon.c if (*r->out.ctr) {
out 14605 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_DcSitesCtr(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.ctr));
out 14607 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14620 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 14640 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 14641 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.ctr);
out 14645 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 14648 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ctr, LIBNDR_FLAG_REF_ALLOC);
out 14651 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.ctr);
out 14653 librpc/gen_ndr/ndr_netlogon.c *r->out.ctr = NULL;
out 14655 librpc/gen_ndr/ndr_netlogon.c if (*r->out.ctr) {
out 14657 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.ctr, 0);
out 14658 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_DcSitesCtr(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.ctr));
out 14662 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14688 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "ctr", r->out.ctr);
out 14690 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "ctr", *r->out.ctr);
out 14692 librpc/gen_ndr/ndr_netlogon.c if (*r->out.ctr) {
out 14693 librpc/gen_ndr/ndr_netlogon.c ndr_print_DcSitesCtr(ndr, "ctr", *r->out.ctr);
out 14697 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14733 librpc/gen_ndr/ndr_netlogon.c if (r->out.validation == NULL) {
out 14736 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.validation, r->in.validation_level));
out 14737 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Validation(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.validation));
out 14738 librpc/gen_ndr/ndr_netlogon.c if (r->out.authoritative == NULL) {
out 14741 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint8(ndr, NDR_SCALARS, *r->out.authoritative));
out 14742 librpc/gen_ndr/ndr_netlogon.c if (r->out.flags == NULL) {
out 14745 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.flags));
out 14746 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 14762 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 14817 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.validation);
out 14818 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.validation);
out 14819 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.authoritative);
out 14820 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.authoritative);
out 14821 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.flags);
out 14822 librpc/gen_ndr/ndr_netlogon.c *r->out.flags = *r->in.flags;
out 14826 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.validation);
out 14829 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.validation, LIBNDR_FLAG_REF_ALLOC);
out 14830 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.validation, r->in.validation_level));
out 14831 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Validation(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.validation));
out 14834 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.authoritative);
out 14837 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.authoritative, LIBNDR_FLAG_REF_ALLOC);
out 14838 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint8(ndr, NDR_SCALARS, r->out.authoritative));
out 14841 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.flags);
out 14844 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.flags, LIBNDR_FLAG_REF_ALLOC);
out 14845 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.flags));
out 14847 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 14890 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "validation", r->out.validation);
out 14892 librpc/gen_ndr/ndr_netlogon.c ndr_print_set_switch_value(ndr, r->out.validation, r->in.validation_level);
out 14893 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Validation(ndr, "validation", r->out.validation);
out 14895 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "authoritative", r->out.authoritative);
out 14897 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint8(ndr, "authoritative", *r->out.authoritative);
out 14899 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "flags", r->out.flags);
out 14901 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint32(ndr, "flags", *r->out.flags);
out 14903 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 14922 librpc/gen_ndr/ndr_netlogon.c if (r->out.trusts == NULL) {
out 14925 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_DomainTrustList(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.trusts));
out 14926 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14937 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 14958 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.trusts);
out 14959 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.trusts);
out 14963 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.trusts);
out 14966 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.trusts, LIBNDR_FLAG_REF_ALLOC);
out 14967 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_DomainTrustList(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.trusts));
out 14969 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14996 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "trusts", r->out.trusts);
out 14998 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_DomainTrustList(ndr, "trusts", r->out.trusts);
out 15000 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 15040 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 15125 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 15173 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 15204 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 15207 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 15208 librpc/gen_ndr/ndr_netlogon.c if (r->out.password == NULL) {
out 15211 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_samr_Password(ndr, NDR_SCALARS, r->out.password));
out 15212 librpc/gen_ndr/ndr_netlogon.c if (r->out.password2 == NULL) {
out 15215 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_samr_Password(ndr, NDR_SCALARS, r->out.password2));
out 15216 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 15230 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 15272 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 15273 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.return_authenticator);
out 15274 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.password);
out 15275 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.password);
out 15276 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.password2);
out 15277 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.password2);
out 15281 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 15284 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 15285 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 15288 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.password);
out 15291 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.password, LIBNDR_FLAG_REF_ALLOC);
out 15292 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_samr_Password(ndr, NDR_SCALARS, r->out.password));
out 15295 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.password2);
out 15298 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.password2, LIBNDR_FLAG_REF_ALLOC);
out 15299 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_samr_Password(ndr, NDR_SCALARS, r->out.password2));
out 15301 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 15334 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 15336 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 15338 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "password", r->out.password);
out 15340 librpc/gen_ndr/ndr_netlogon.c ndr_print_samr_Password(ndr, "password", r->out.password);
out 15342 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "password2", r->out.password2);
out 15344 librpc/gen_ndr/ndr_netlogon.c ndr_print_samr_Password(ndr, "password2", r->out.password2);
out 15346 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 15372 librpc/gen_ndr/ndr_netlogon.c if (r->out.forest_trust_info == NULL) {
out 15375 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.forest_trust_info));
out 15376 librpc/gen_ndr/ndr_netlogon.c if (*r->out.forest_trust_info) {
out 15377 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_lsa_ForestTrustInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.forest_trust_info));
out 15379 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 15394 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 15433 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.forest_trust_info);
out 15434 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.forest_trust_info);
out 15438 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.forest_trust_info);
out 15441 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.forest_trust_info, LIBNDR_FLAG_REF_ALLOC);
out 15444 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.forest_trust_info);
out 15446 librpc/gen_ndr/ndr_netlogon.c *r->out.forest_trust_info = NULL;
out 15448 librpc/gen_ndr/ndr_netlogon.c if (*r->out.forest_trust_info) {
out 15450 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.forest_trust_info, 0);
out 15451 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_lsa_ForestTrustInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.forest_trust_info));
out 15455 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 15488 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "forest_trust_info", r->out.forest_trust_info);
out 15490 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "forest_trust_info", *r->out.forest_trust_info);
out 15492 librpc/gen_ndr/ndr_netlogon.c if (*r->out.forest_trust_info) {
out 15493 librpc/gen_ndr/ndr_netlogon.c ndr_print_lsa_ForestTrustInformation(ndr, "forest_trust_info", *r->out.forest_trust_info);
out 15497 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 15527 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 15530 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 15531 librpc/gen_ndr/ndr_netlogon.c if (r->out.forest_trust_info == NULL) {
out 15534 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.forest_trust_info));
out 15535 librpc/gen_ndr/ndr_netlogon.c if (*r->out.forest_trust_info) {
out 15536 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_lsa_ForestTrustInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.forest_trust_info));
out 15538 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 15553 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 15588 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 15589 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.return_authenticator);
out 15590 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.forest_trust_info);
out 15591 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.forest_trust_info);
out 15595 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 15598 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 15599 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 15602 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.forest_trust_info);
out 15605 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.forest_trust_info, LIBNDR_FLAG_REF_ALLOC);
out 15608 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.forest_trust_info);
out 15610 librpc/gen_ndr/ndr_netlogon.c *r->out.forest_trust_info = NULL;
out 15612 librpc/gen_ndr/ndr_netlogon.c if (*r->out.forest_trust_info) {
out 15614 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.forest_trust_info, 0);
out 15615 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_lsa_ForestTrustInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.forest_trust_info));
out 15619 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 15654 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 15656 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 15658 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "forest_trust_info", r->out.forest_trust_info);
out 15660 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "forest_trust_info", *r->out.forest_trust_info);
out 15662 librpc/gen_ndr/ndr_netlogon.c if (*r->out.forest_trust_info) {
out 15663 librpc/gen_ndr/ndr_netlogon.c ndr_print_lsa_ForestTrustInformation(ndr, "forest_trust_info", *r->out.forest_trust_info);
out 15667 librpc/gen_ndr/ndr_netlogon.c ndr_print_WERROR(ndr, "result", r->out.result);
out 15711 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.return_authenticator));
out 15712 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator) {
out 15713 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 15715 librpc/gen_ndr/ndr_netlogon.c if (r->out.validation == NULL) {
out 15718 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.validation, r->in.validation_level));
out 15719 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Validation(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.validation));
out 15720 librpc/gen_ndr/ndr_netlogon.c if (r->out.authoritative == NULL) {
out 15723 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint8(ndr, NDR_SCALARS, *r->out.authoritative));
out 15724 librpc/gen_ndr/ndr_netlogon.c if (r->out.flags == NULL) {
out 15727 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.flags));
out 15728 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 15748 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 15827 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.validation);
out 15828 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.validation);
out 15829 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.authoritative);
out 15830 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.authoritative);
out 15831 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.flags);
out 15832 librpc/gen_ndr/ndr_netlogon.c *r->out.flags = *r->in.flags;
out 15837 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 15839 librpc/gen_ndr/ndr_netlogon.c r->out.return_authenticator = NULL;
out 15841 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator) {
out 15843 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, 0);
out 15844 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 15848 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.validation);
out 15851 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.validation, LIBNDR_FLAG_REF_ALLOC);
out 15852 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.validation, r->in.validation_level));
out 15853 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Validation(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.validation));
out 15856 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.authoritative);
out 15859 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.authoritative, LIBNDR_FLAG_REF_ALLOC);
out 15860 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint8(ndr, NDR_SCALARS, r->out.authoritative));
out 15863 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.flags);
out 15866 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.flags, LIBNDR_FLAG_REF_ALLOC);
out 15867 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.flags));
out 15869 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 15924 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 15926 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator) {
out 15927 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 15930 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "validation", r->out.validation);
out 15932 librpc/gen_ndr/ndr_netlogon.c ndr_print_set_switch_value(ndr, r->out.validation, r->in.validation_level);
out 15933 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Validation(ndr, "validation", r->out.validation);
out 15935 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "authoritative", r->out.authoritative);
out 15937 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint8(ndr, "authoritative", *r->out.authoritative);
out 15939 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "flags", r->out.flags);
out 15941 librpc/gen_ndr/ndr_netlogon.c ndr_print_uint32(ndr, "flags", *r->out.flags);
out 15943 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 15980 librpc/gen_ndr/ndr_netlogon.c if (r->out.return_authenticator == NULL) {
out 15983 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 15984 librpc/gen_ndr/ndr_netlogon.c if (r->out.new_owf_password == NULL) {
out 15987 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_samr_Password(ndr, NDR_SCALARS, r->out.new_owf_password));
out 15988 librpc/gen_ndr/ndr_netlogon.c if (r->out.old_owf_password == NULL) {
out 15991 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_samr_Password(ndr, NDR_SCALARS, r->out.old_owf_password));
out 15992 librpc/gen_ndr/ndr_netlogon.c if (r->out.trust_info == NULL) {
out 15995 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.trust_info));
out 15996 librpc/gen_ndr/ndr_netlogon.c if (*r->out.trust_info) {
out 15997 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_TrustInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.trust_info));
out 15999 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 16016 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCT(r->out);
out 16058 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 16059 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.return_authenticator);
out 16060 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.new_owf_password);
out 16061 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.new_owf_password);
out 16062 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.old_owf_password);
out 16063 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.old_owf_password);
out 16064 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.trust_info);
out 16065 librpc/gen_ndr/ndr_netlogon.c ZERO_STRUCTP(r->out.trust_info);
out 16069 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.return_authenticator);
out 16072 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.return_authenticator, LIBNDR_FLAG_REF_ALLOC);
out 16073 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_Authenticator(ndr, NDR_SCALARS, r->out.return_authenticator));
out 16076 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.new_owf_password);
out 16079 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.new_owf_password, LIBNDR_FLAG_REF_ALLOC);
out 16080 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_samr_Password(ndr, NDR_SCALARS, r->out.new_owf_password));
out 16083 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.old_owf_password);
out 16086 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.old_owf_password, LIBNDR_FLAG_REF_ALLOC);
out 16087 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_samr_Password(ndr, NDR_SCALARS, r->out.old_owf_password));
out 16090 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, r->out.trust_info);
out 16093 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, r->out.trust_info, LIBNDR_FLAG_REF_ALLOC);
out 16096 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_ALLOC(ndr, *r->out.trust_info);
out 16098 librpc/gen_ndr/ndr_netlogon.c *r->out.trust_info = NULL;
out 16100 librpc/gen_ndr/ndr_netlogon.c if (*r->out.trust_info) {
out 16102 librpc/gen_ndr/ndr_netlogon.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.trust_info, 0);
out 16103 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_TrustInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.trust_info));
out 16107 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 16146 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "return_authenticator", r->out.return_authenticator);
out 16148 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_Authenticator(ndr, "return_authenticator", r->out.return_authenticator);
out 16150 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "new_owf_password", r->out.new_owf_password);
out 16152 librpc/gen_ndr/ndr_netlogon.c ndr_print_samr_Password(ndr, "new_owf_password", r->out.new_owf_password);
out 16154 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "old_owf_password", r->out.old_owf_password);
out 16156 librpc/gen_ndr/ndr_netlogon.c ndr_print_samr_Password(ndr, "old_owf_password", r->out.old_owf_password);
out 16158 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "trust_info", r->out.trust_info);
out 16160 librpc/gen_ndr/ndr_netlogon.c ndr_print_ptr(ndr, "trust_info", *r->out.trust_info);
out 16162 librpc/gen_ndr/ndr_netlogon.c if (*r->out.trust_info) {
out 16163 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_TrustInfo(ndr, "trust_info", *r->out.trust_info);
out 16167 librpc/gen_ndr/ndr_netlogon.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 95 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 105 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 125 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 136 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 146 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 166 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 177 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.version == NULL) {
out 180 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint16(ndr, NDR_SCALARS, *r->out.version));
out 181 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 190 librpc/gen_ndr/ndr_ntsvcs.c ZERO_STRUCT(r->out);
out 192 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.version);
out 193 librpc/gen_ndr/ndr_ntsvcs.c ZERO_STRUCTP(r->out.version);
out 197 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.version);
out 200 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.version, LIBNDR_FLAG_REF_ALLOC);
out 201 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_uint16(ndr, NDR_SCALARS, r->out.version));
out 203 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 223 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "version", r->out.version);
out 225 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_uint16(ndr, "version", *r->out.version);
out 227 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 238 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 248 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 268 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 279 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 289 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 309 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 320 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 330 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 350 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 369 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 387 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 412 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 423 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 433 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 453 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 464 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 474 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 494 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 505 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 515 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 535 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 559 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.buffer == NULL) {
out 562 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.length));
out 564 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.length));
out 565 librpc/gen_ndr/ndr_ntsvcs.c for (cntr_buffer_1 = 0; cntr_buffer_1 < *r->out.length; cntr_buffer_1++) {
out 566 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint16(ndr, NDR_SCALARS, r->out.buffer[cntr_buffer_1]));
out 568 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.length == NULL) {
out 571 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.length));
out 572 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 585 librpc/gen_ndr/ndr_ntsvcs.c ZERO_STRUCT(r->out);
out 613 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, *r->in.length);
out 614 librpc/gen_ndr/ndr_ntsvcs.c memset(r->out.buffer, 0, (*r->in.length) * sizeof(*r->out.buffer));
out 615 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.length);
out 616 librpc/gen_ndr/ndr_ntsvcs.c *r->out.length = *r->in.length;
out 619 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.buffer));
out 620 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_array_length(ndr, &r->out.buffer));
out 621 librpc/gen_ndr/ndr_ntsvcs.c if (ndr_get_array_length(ndr, &r->out.buffer) > ndr_get_array_size(ndr, &r->out.buffer)) {
out 622 librpc/gen_ndr/ndr_ntsvcs.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->out.buffer), ndr_get_array_length(ndr, &r->out.buffer));
out 625 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer));
out 628 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.buffer, 0);
out 629 librpc/gen_ndr/ndr_ntsvcs.c for (cntr_buffer_1 = 0; cntr_buffer_1 < *r->out.length; cntr_buffer_1++) {
out 630 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_uint16(ndr, NDR_SCALARS, &r->out.buffer[cntr_buffer_1]));
out 634 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.length);
out 637 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.length, LIBNDR_FLAG_REF_ALLOC);
out 638 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.length));
out 640 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 641 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.buffer) {
out 642 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.buffer, *r->out.length));
out 644 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.buffer) {
out 645 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_check_array_length(ndr, (void*)&r->out.buffer, *r->out.length));
out 678 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 680 librpc/gen_ndr/ndr_ntsvcs.c ndr->print(ndr, "%s: ARRAY(%d)", "buffer", (int)*r->out.length);
out 682 librpc/gen_ndr/ndr_ntsvcs.c for (cntr_buffer_1=0;cntr_buffer_1<*r->out.length;cntr_buffer_1++) {
out 685 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_uint16(ndr, "buffer", r->out.buffer[cntr_buffer_1]);
out 691 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "length", r->out.length);
out 693 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_uint32(ndr, "length", *r->out.length);
out 695 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 714 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.size == NULL) {
out 717 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.size));
out 718 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 729 librpc/gen_ndr/ndr_ntsvcs.c ZERO_STRUCT(r->out);
out 750 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.size);
out 751 librpc/gen_ndr/ndr_ntsvcs.c ZERO_STRUCTP(r->out.size);
out 755 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.size);
out 758 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.size, LIBNDR_FLAG_REF_ALLOC);
out 759 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.size));
out 761 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 788 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "size", r->out.size);
out 790 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_uint32(ndr, "size", *r->out.size);
out 792 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 803 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 813 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 833 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 865 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.reg_data_type == NULL) {
out 868 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_winreg_Type(ndr, NDR_SCALARS, *r->out.reg_data_type));
out 869 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.buffer == NULL) {
out 872 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.buffer_size));
out 874 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.buffer_size));
out 875 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.buffer, *r->out.buffer_size));
out 876 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.buffer_size == NULL) {
out 879 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.buffer_size));
out 880 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.needed == NULL) {
out 883 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 884 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 895 librpc/gen_ndr/ndr_ntsvcs.c ZERO_STRUCT(r->out);
out 927 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.reg_data_type);
out 928 librpc/gen_ndr/ndr_ntsvcs.c *r->out.reg_data_type = *r->in.reg_data_type;
out 929 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, *r->in.buffer_size);
out 930 librpc/gen_ndr/ndr_ntsvcs.c memset(r->out.buffer, 0, (*r->in.buffer_size) * sizeof(*r->out.buffer));
out 931 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.buffer_size);
out 932 librpc/gen_ndr/ndr_ntsvcs.c *r->out.buffer_size = *r->in.buffer_size;
out 933 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 934 librpc/gen_ndr/ndr_ntsvcs.c *r->out.needed = *r->in.needed;
out 938 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.reg_data_type);
out 941 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.reg_data_type, LIBNDR_FLAG_REF_ALLOC);
out 942 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_winreg_Type(ndr, NDR_SCALARS, r->out.reg_data_type));
out 944 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.buffer));
out 945 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_array_length(ndr, &r->out.buffer));
out 946 librpc/gen_ndr/ndr_ntsvcs.c if (ndr_get_array_length(ndr, &r->out.buffer) > ndr_get_array_size(ndr, &r->out.buffer)) {
out 947 librpc/gen_ndr/ndr_ntsvcs.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->out.buffer), ndr_get_array_length(ndr, &r->out.buffer));
out 950 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer));
out 952 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.buffer, ndr_get_array_length(ndr, &r->out.buffer)));
out 954 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.buffer_size);
out 957 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.buffer_size, LIBNDR_FLAG_REF_ALLOC);
out 958 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.buffer_size));
out 961 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 964 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 965 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 967 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 968 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.buffer) {
out 969 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.buffer, *r->out.buffer_size));
out 971 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.buffer) {
out 972 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_check_array_length(ndr, (void*)&r->out.buffer, *r->out.buffer_size));
out 1011 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "reg_data_type", r->out.reg_data_type);
out 1013 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_winreg_Type(ndr, "reg_data_type", *r->out.reg_data_type);
out 1015 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 1017 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_array_uint8(ndr, "buffer", r->out.buffer, *r->out.buffer_size);
out 1019 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "buffer_size", r->out.buffer_size);
out 1021 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_uint32(ndr, "buffer_size", *r->out.buffer_size);
out 1023 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 1025 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 1027 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1038 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1048 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1068 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1079 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1089 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1109 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1120 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1130 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1150 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1161 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1171 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1191 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1202 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1212 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1232 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1243 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1253 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1273 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1284 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1294 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1314 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1325 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1335 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1355 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1366 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1376 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1396 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1407 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1417 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1437 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1448 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1458 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1478 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1489 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1499 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1519 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1530 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1540 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1560 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1571 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1581 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1601 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1612 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1622 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1642 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1653 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1663 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1683 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1694 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1704 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1724 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1735 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1745 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1765 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1776 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1786 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1806 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1817 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1827 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1847 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1858 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1868 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1888 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1899 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1909 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1929 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1940 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1950 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1970 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1981 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1991 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2011 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2022 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2032 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2052 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2063 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2073 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2093 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2130 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.profile_flags == NULL) {
out 2133 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.profile_flags));
out 2134 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.veto_type));
out 2135 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.veto_type) {
out 2136 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint16(ndr, NDR_SCALARS, *r->out.veto_type));
out 2138 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.unknown5a));
out 2139 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.unknown5a) {
out 2140 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.unknown5a));
out 2141 librpc/gen_ndr/ndr_ntsvcs.c if (*r->out.unknown5a) {
out 2142 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.unknown5a, CH_UTF16)));
out 2144 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.unknown5a, CH_UTF16)));
out 2145 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.unknown5a, ndr_charset_length(*r->out.unknown5a, CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 2148 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2164 librpc/gen_ndr/ndr_ntsvcs.c ZERO_STRUCT(r->out);
out 2214 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.profile_flags);
out 2215 librpc/gen_ndr/ndr_ntsvcs.c *r->out.profile_flags = *r->in.profile_flags;
out 2219 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.profile_flags);
out 2222 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.profile_flags, LIBNDR_FLAG_REF_ALLOC);
out 2223 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.profile_flags));
out 2227 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.veto_type);
out 2229 librpc/gen_ndr/ndr_ntsvcs.c r->out.veto_type = NULL;
out 2231 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.veto_type) {
out 2233 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.veto_type, 0);
out 2234 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_uint16(ndr, NDR_SCALARS, r->out.veto_type));
out 2239 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.unknown5a);
out 2241 librpc/gen_ndr/ndr_ntsvcs.c r->out.unknown5a = NULL;
out 2243 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.unknown5a) {
out 2245 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.unknown5a, 0);
out 2248 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, *r->out.unknown5a);
out 2250 librpc/gen_ndr/ndr_ntsvcs.c *r->out.unknown5a = NULL;
out 2252 librpc/gen_ndr/ndr_ntsvcs.c if (*r->out.unknown5a) {
out 2254 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.unknown5a, 0);
out 2255 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.unknown5a));
out 2256 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_array_length(ndr, r->out.unknown5a));
out 2257 librpc/gen_ndr/ndr_ntsvcs.c if (ndr_get_array_length(ndr, r->out.unknown5a) > ndr_get_array_size(ndr, r->out.unknown5a)) {
out 2258 librpc/gen_ndr/ndr_ntsvcs.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.unknown5a), ndr_get_array_length(ndr, r->out.unknown5a));
out 2260 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.unknown5a), sizeof(uint16_t)));
out 2261 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.unknown5a, ndr_get_array_length(ndr, r->out.unknown5a), sizeof(uint16_t), CH_UTF16));
out 2266 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2310 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "profile_flags", r->out.profile_flags);
out 2312 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_uint32(ndr, "profile_flags", *r->out.profile_flags);
out 2314 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "veto_type", r->out.veto_type);
out 2316 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.veto_type) {
out 2317 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_uint16(ndr, "veto_type", *r->out.veto_type);
out 2320 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "unknown5a", r->out.unknown5a);
out 2322 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.unknown5a) {
out 2323 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "unknown5a", *r->out.unknown5a);
out 2325 librpc/gen_ndr/ndr_ntsvcs.c if (*r->out.unknown5a) {
out 2326 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_string(ndr, "unknown5a", *r->out.unknown5a);
out 2331 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2349 librpc/gen_ndr/ndr_ntsvcs.c if (r->out.info == NULL) {
out 2352 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_PNP_HwProfInfo(ndr, NDR_SCALARS, r->out.info));
out 2353 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2362 librpc/gen_ndr/ndr_ntsvcs.c ZERO_STRUCT(r->out);
out 2374 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.info);
out 2375 librpc/gen_ndr/ndr_ntsvcs.c *r->out.info = *r->in.info;
out 2379 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_ALLOC(ndr, r->out.info);
out 2382 librpc/gen_ndr/ndr_ntsvcs.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 2383 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_PNP_HwProfInfo(ndr, NDR_SCALARS, r->out.info));
out 2385 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2412 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_ptr(ndr, "info", r->out.info);
out 2414 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_PNP_HwProfInfo(ndr, "info", r->out.info);
out 2416 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2427 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2437 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2457 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2468 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2478 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2498 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2509 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2519 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2539 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2550 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2560 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2580 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2591 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2601 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2621 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2632 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2642 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2662 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2673 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2683 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2703 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2714 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2724 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2744 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2755 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2765 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2785 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2796 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2806 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2826 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2837 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2847 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2867 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2878 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2888 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2908 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2919 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2929 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2949 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2960 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2970 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2990 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3001 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3011 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3031 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3042 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3052 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3072 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3083 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3093 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3113 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3124 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3134 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3154 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3165 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3175 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3195 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3206 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3216 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3236 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3247 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3257 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3277 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3288 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3298 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3318 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3329 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3339 librpc/gen_ndr/ndr_ntsvcs.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3359 librpc/gen_ndr/ndr_ntsvcs.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5336 librpc/gen_ndr/ndr_samr.c if (r->out.connect_handle == NULL) {
out 5339 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.connect_handle));
out 5340 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5351 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 5366 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.connect_handle);
out 5367 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.connect_handle);
out 5371 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.connect_handle);
out 5374 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.connect_handle, LIBNDR_FLAG_REF_ALLOC);
out 5375 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.connect_handle));
out 5377 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5404 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "connect_handle", r->out.connect_handle);
out 5406 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "connect_handle", r->out.connect_handle);
out 5408 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5423 librpc/gen_ndr/ndr_samr.c if (r->out.handle == NULL) {
out 5426 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 5427 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5436 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 5445 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 5446 librpc/gen_ndr/ndr_samr.c *r->out.handle = *r->in.handle;
out 5450 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 5453 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 5454 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 5456 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5480 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 5482 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 5484 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5504 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5531 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5560 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5576 librpc/gen_ndr/ndr_samr.c if (r->out.sdbuf == NULL) {
out 5579 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.sdbuf));
out 5580 librpc/gen_ndr/ndr_samr.c if (*r->out.sdbuf) {
out 5581 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_sec_desc_buf(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sdbuf));
out 5583 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5595 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 5605 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sdbuf);
out 5606 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.sdbuf);
out 5610 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sdbuf);
out 5613 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sdbuf, LIBNDR_FLAG_REF_ALLOC);
out 5616 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.sdbuf);
out 5618 librpc/gen_ndr/ndr_samr.c *r->out.sdbuf = NULL;
out 5620 librpc/gen_ndr/ndr_samr.c if (*r->out.sdbuf) {
out 5622 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.sdbuf, 0);
out 5623 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_sec_desc_buf(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sdbuf));
out 5627 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5652 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sdbuf", r->out.sdbuf);
out 5654 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sdbuf", *r->out.sdbuf);
out 5656 librpc/gen_ndr/ndr_samr.c if (*r->out.sdbuf) {
out 5657 librpc/gen_ndr/ndr_samr.c ndr_print_sec_desc_buf(ndr, "sdbuf", *r->out.sdbuf);
out 5661 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5676 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5694 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5718 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5737 librpc/gen_ndr/ndr_samr.c if (r->out.sid == NULL) {
out 5740 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.sid));
out 5741 librpc/gen_ndr/ndr_samr.c if (*r->out.sid) {
out 5742 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_dom_sid2(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sid));
out 5744 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5757 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 5773 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sid);
out 5774 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.sid);
out 5778 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sid);
out 5781 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sid, LIBNDR_FLAG_REF_ALLOC);
out 5784 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.sid);
out 5786 librpc/gen_ndr/ndr_samr.c *r->out.sid = NULL;
out 5788 librpc/gen_ndr/ndr_samr.c if (*r->out.sid) {
out 5790 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.sid, 0);
out 5791 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_dom_sid2(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sid));
out 5795 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5823 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sid", r->out.sid);
out 5825 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sid", *r->out.sid);
out 5827 librpc/gen_ndr/ndr_samr.c if (*r->out.sid) {
out 5828 librpc/gen_ndr/ndr_samr.c ndr_print_dom_sid2(ndr, "sid", *r->out.sid);
out 5832 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 5852 librpc/gen_ndr/ndr_samr.c if (r->out.resume_handle == NULL) {
out 5855 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 5856 librpc/gen_ndr/ndr_samr.c if (r->out.sam == NULL) {
out 5859 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.sam));
out 5860 librpc/gen_ndr/ndr_samr.c if (*r->out.sam) {
out 5861 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_SamArray(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sam));
out 5863 librpc/gen_ndr/ndr_samr.c if (r->out.num_entries == NULL) {
out 5866 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_entries));
out 5867 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 5881 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 5898 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 5899 librpc/gen_ndr/ndr_samr.c *r->out.resume_handle = *r->in.resume_handle;
out 5900 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sam);
out 5901 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.sam);
out 5902 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.num_entries);
out 5903 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.num_entries);
out 5907 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 5910 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, LIBNDR_FLAG_REF_ALLOC);
out 5911 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 5914 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sam);
out 5917 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sam, LIBNDR_FLAG_REF_ALLOC);
out 5920 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.sam);
out 5922 librpc/gen_ndr/ndr_samr.c *r->out.sam = NULL;
out 5924 librpc/gen_ndr/ndr_samr.c if (*r->out.sam) {
out 5926 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.sam, 0);
out 5927 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_SamArray(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sam));
out 5932 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.num_entries);
out 5935 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.num_entries, LIBNDR_FLAG_REF_ALLOC);
out 5936 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.num_entries));
out 5938 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 5967 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 5969 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 5971 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sam", r->out.sam);
out 5973 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sam", *r->out.sam);
out 5975 librpc/gen_ndr/ndr_samr.c if (*r->out.sam) {
out 5976 librpc/gen_ndr/ndr_samr.c ndr_print_samr_SamArray(ndr, "sam", *r->out.sam);
out 5980 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "num_entries", r->out.num_entries);
out 5982 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "num_entries", *r->out.num_entries);
out 5984 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6004 librpc/gen_ndr/ndr_samr.c if (r->out.domain_handle == NULL) {
out 6007 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.domain_handle));
out 6008 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6019 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 6036 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.domain_handle);
out 6037 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.domain_handle);
out 6041 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.domain_handle);
out 6044 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.domain_handle, LIBNDR_FLAG_REF_ALLOC);
out 6045 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.domain_handle));
out 6047 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6076 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "domain_handle", r->out.domain_handle);
out 6078 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "domain_handle", r->out.domain_handle);
out 6080 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6096 librpc/gen_ndr/ndr_samr.c if (r->out.info == NULL) {
out 6099 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 6100 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 6101 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
out 6102 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_DomainInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 6104 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6116 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 6126 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 6127 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.info);
out 6131 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 6134 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 6137 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 6139 librpc/gen_ndr/ndr_samr.c *r->out.info = NULL;
out 6141 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 6143 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 6144 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
out 6145 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_DomainInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 6149 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6174 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", r->out.info);
out 6176 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", *r->out.info);
out 6178 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 6179 librpc/gen_ndr/ndr_samr.c ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
out 6180 librpc/gen_ndr/ndr_samr.c ndr_print_samr_DomainInfo(ndr, "info", *r->out.info);
out 6184 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6205 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6233 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6263 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6283 librpc/gen_ndr/ndr_samr.c if (r->out.group_handle == NULL) {
out 6286 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.group_handle));
out 6287 librpc/gen_ndr/ndr_samr.c if (r->out.rid == NULL) {
out 6290 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.rid));
out 6291 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6303 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 6320 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.group_handle);
out 6321 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.group_handle);
out 6322 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rid);
out 6323 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.rid);
out 6327 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.group_handle);
out 6330 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.group_handle, LIBNDR_FLAG_REF_ALLOC);
out 6331 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.group_handle));
out 6334 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rid);
out 6337 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.rid, LIBNDR_FLAG_REF_ALLOC);
out 6338 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.rid));
out 6340 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6369 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "group_handle", r->out.group_handle);
out 6371 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "group_handle", r->out.group_handle);
out 6373 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "rid", r->out.rid);
out 6375 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "rid", *r->out.rid);
out 6377 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6397 librpc/gen_ndr/ndr_samr.c if (r->out.resume_handle == NULL) {
out 6400 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 6401 librpc/gen_ndr/ndr_samr.c if (r->out.sam == NULL) {
out 6404 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.sam));
out 6405 librpc/gen_ndr/ndr_samr.c if (*r->out.sam) {
out 6406 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_SamArray(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sam));
out 6408 librpc/gen_ndr/ndr_samr.c if (r->out.num_entries == NULL) {
out 6411 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_entries));
out 6412 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6426 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 6443 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6444 librpc/gen_ndr/ndr_samr.c *r->out.resume_handle = *r->in.resume_handle;
out 6445 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sam);
out 6446 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.sam);
out 6447 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.num_entries);
out 6448 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.num_entries);
out 6452 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6455 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, LIBNDR_FLAG_REF_ALLOC);
out 6456 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 6459 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sam);
out 6462 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sam, LIBNDR_FLAG_REF_ALLOC);
out 6465 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.sam);
out 6467 librpc/gen_ndr/ndr_samr.c *r->out.sam = NULL;
out 6469 librpc/gen_ndr/ndr_samr.c if (*r->out.sam) {
out 6471 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.sam, 0);
out 6472 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_SamArray(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sam));
out 6477 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.num_entries);
out 6480 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.num_entries, LIBNDR_FLAG_REF_ALLOC);
out 6481 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.num_entries));
out 6483 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6512 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 6514 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 6516 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sam", r->out.sam);
out 6518 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sam", *r->out.sam);
out 6520 librpc/gen_ndr/ndr_samr.c if (*r->out.sam) {
out 6521 librpc/gen_ndr/ndr_samr.c ndr_print_samr_SamArray(ndr, "sam", *r->out.sam);
out 6525 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "num_entries", r->out.num_entries);
out 6527 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "num_entries", *r->out.num_entries);
out 6529 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6549 librpc/gen_ndr/ndr_samr.c if (r->out.user_handle == NULL) {
out 6552 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.user_handle));
out 6553 librpc/gen_ndr/ndr_samr.c if (r->out.rid == NULL) {
out 6556 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.rid));
out 6557 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6569 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 6586 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.user_handle);
out 6587 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.user_handle);
out 6588 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rid);
out 6589 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.rid);
out 6593 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.user_handle);
out 6596 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.user_handle, LIBNDR_FLAG_REF_ALLOC);
out 6597 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.user_handle));
out 6600 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rid);
out 6603 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.rid, LIBNDR_FLAG_REF_ALLOC);
out 6604 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.rid));
out 6606 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6635 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "user_handle", r->out.user_handle);
out 6637 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "user_handle", r->out.user_handle);
out 6639 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "rid", r->out.rid);
out 6641 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "rid", *r->out.rid);
out 6643 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6664 librpc/gen_ndr/ndr_samr.c if (r->out.resume_handle == NULL) {
out 6667 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 6668 librpc/gen_ndr/ndr_samr.c if (r->out.sam == NULL) {
out 6671 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.sam));
out 6672 librpc/gen_ndr/ndr_samr.c if (*r->out.sam) {
out 6673 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_SamArray(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sam));
out 6675 librpc/gen_ndr/ndr_samr.c if (r->out.num_entries == NULL) {
out 6678 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_entries));
out 6679 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6693 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 6711 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6712 librpc/gen_ndr/ndr_samr.c *r->out.resume_handle = *r->in.resume_handle;
out 6713 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sam);
out 6714 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.sam);
out 6715 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.num_entries);
out 6716 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.num_entries);
out 6720 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6723 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, LIBNDR_FLAG_REF_ALLOC);
out 6724 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 6727 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sam);
out 6730 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sam, LIBNDR_FLAG_REF_ALLOC);
out 6733 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.sam);
out 6735 librpc/gen_ndr/ndr_samr.c *r->out.sam = NULL;
out 6737 librpc/gen_ndr/ndr_samr.c if (*r->out.sam) {
out 6739 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.sam, 0);
out 6740 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_SamArray(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sam));
out 6745 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.num_entries);
out 6748 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.num_entries, LIBNDR_FLAG_REF_ALLOC);
out 6749 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.num_entries));
out 6751 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6781 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 6783 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 6785 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sam", r->out.sam);
out 6787 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sam", *r->out.sam);
out 6789 librpc/gen_ndr/ndr_samr.c if (*r->out.sam) {
out 6790 librpc/gen_ndr/ndr_samr.c ndr_print_samr_SamArray(ndr, "sam", *r->out.sam);
out 6794 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "num_entries", r->out.num_entries);
out 6796 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "num_entries", *r->out.num_entries);
out 6798 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6818 librpc/gen_ndr/ndr_samr.c if (r->out.alias_handle == NULL) {
out 6821 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.alias_handle));
out 6822 librpc/gen_ndr/ndr_samr.c if (r->out.rid == NULL) {
out 6825 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.rid));
out 6826 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6838 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 6855 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.alias_handle);
out 6856 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.alias_handle);
out 6857 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rid);
out 6858 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.rid);
out 6862 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.alias_handle);
out 6865 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.alias_handle, LIBNDR_FLAG_REF_ALLOC);
out 6866 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.alias_handle));
out 6869 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rid);
out 6872 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.rid, LIBNDR_FLAG_REF_ALLOC);
out 6873 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.rid));
out 6875 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 6904 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "alias_handle", r->out.alias_handle);
out 6906 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "alias_handle", r->out.alias_handle);
out 6908 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "rid", r->out.rid);
out 6910 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "rid", *r->out.rid);
out 6912 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 6932 librpc/gen_ndr/ndr_samr.c if (r->out.resume_handle == NULL) {
out 6935 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 6936 librpc/gen_ndr/ndr_samr.c if (r->out.sam == NULL) {
out 6939 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.sam));
out 6940 librpc/gen_ndr/ndr_samr.c if (*r->out.sam) {
out 6941 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_SamArray(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sam));
out 6943 librpc/gen_ndr/ndr_samr.c if (r->out.num_entries == NULL) {
out 6946 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_entries));
out 6947 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 6961 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 6978 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6979 librpc/gen_ndr/ndr_samr.c *r->out.resume_handle = *r->in.resume_handle;
out 6980 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sam);
out 6981 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.sam);
out 6982 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.num_entries);
out 6983 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.num_entries);
out 6987 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6990 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, LIBNDR_FLAG_REF_ALLOC);
out 6991 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 6994 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sam);
out 6997 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sam, LIBNDR_FLAG_REF_ALLOC);
out 7000 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.sam);
out 7002 librpc/gen_ndr/ndr_samr.c *r->out.sam = NULL;
out 7004 librpc/gen_ndr/ndr_samr.c if (*r->out.sam) {
out 7006 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.sam, 0);
out 7007 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_SamArray(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sam));
out 7012 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.num_entries);
out 7015 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.num_entries, LIBNDR_FLAG_REF_ALLOC);
out 7016 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.num_entries));
out 7018 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7047 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 7049 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 7051 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sam", r->out.sam);
out 7053 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sam", *r->out.sam);
out 7055 librpc/gen_ndr/ndr_samr.c if (*r->out.sam) {
out 7056 librpc/gen_ndr/ndr_samr.c ndr_print_samr_SamArray(ndr, "sam", *r->out.sam);
out 7060 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "num_entries", r->out.num_entries);
out 7062 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "num_entries", *r->out.num_entries);
out 7064 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7083 librpc/gen_ndr/ndr_samr.c if (r->out.rids == NULL) {
out 7086 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_Ids(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.rids));
out 7087 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7098 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 7114 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rids);
out 7115 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.rids);
out 7119 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rids);
out 7122 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.rids, LIBNDR_FLAG_REF_ALLOC);
out 7123 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_Ids(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.rids));
out 7125 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7153 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "rids", r->out.rids);
out 7155 librpc/gen_ndr/ndr_samr.c ndr_print_samr_Ids(ndr, "rids", r->out.rids);
out 7157 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7183 librpc/gen_ndr/ndr_samr.c if (r->out.rids == NULL) {
out 7186 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_Ids(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.rids));
out 7187 librpc/gen_ndr/ndr_samr.c if (r->out.types == NULL) {
out 7190 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_Ids(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.types));
out 7191 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7204 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 7232 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rids);
out 7233 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.rids);
out 7234 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.types);
out 7235 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.types);
out 7245 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rids);
out 7248 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.rids, LIBNDR_FLAG_REF_ALLOC);
out 7249 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_Ids(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.rids));
out 7252 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.types);
out 7255 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.types, LIBNDR_FLAG_REF_ALLOC);
out 7256 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_Ids(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.types));
out 7258 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7294 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "rids", r->out.rids);
out 7296 librpc/gen_ndr/ndr_samr.c ndr_print_samr_Ids(ndr, "rids", r->out.rids);
out 7298 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "types", r->out.types);
out 7300 librpc/gen_ndr/ndr_samr.c ndr_print_samr_Ids(ndr, "types", r->out.types);
out 7302 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7325 librpc/gen_ndr/ndr_samr.c if (r->out.names == NULL) {
out 7328 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_lsa_Strings(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.names));
out 7329 librpc/gen_ndr/ndr_samr.c if (r->out.types == NULL) {
out 7332 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_Ids(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.types));
out 7333 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7346 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 7371 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.names);
out 7372 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.names);
out 7373 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.types);
out 7374 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.types);
out 7384 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.names);
out 7387 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.names, LIBNDR_FLAG_REF_ALLOC);
out 7388 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_lsa_Strings(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.names));
out 7391 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.types);
out 7394 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.types, LIBNDR_FLAG_REF_ALLOC);
out 7395 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_Ids(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.types));
out 7397 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7433 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "names", r->out.names);
out 7435 librpc/gen_ndr/ndr_samr.c ndr_print_lsa_Strings(ndr, "names", r->out.names);
out 7437 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "types", r->out.types);
out 7439 librpc/gen_ndr/ndr_samr.c ndr_print_samr_Ids(ndr, "types", r->out.types);
out 7441 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7458 librpc/gen_ndr/ndr_samr.c if (r->out.group_handle == NULL) {
out 7461 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.group_handle));
out 7462 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7472 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 7483 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.group_handle);
out 7484 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.group_handle);
out 7488 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.group_handle);
out 7491 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.group_handle, LIBNDR_FLAG_REF_ALLOC);
out 7492 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.group_handle));
out 7494 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7520 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "group_handle", r->out.group_handle);
out 7522 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "group_handle", r->out.group_handle);
out 7524 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7540 librpc/gen_ndr/ndr_samr.c if (r->out.info == NULL) {
out 7543 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 7544 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 7545 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
out 7546 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_GroupInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 7548 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7560 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 7570 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 7571 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.info);
out 7575 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 7578 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 7581 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 7583 librpc/gen_ndr/ndr_samr.c *r->out.info = NULL;
out 7585 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 7587 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 7588 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
out 7589 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_GroupInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 7593 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7618 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", r->out.info);
out 7620 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", *r->out.info);
out 7622 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 7623 librpc/gen_ndr/ndr_samr.c ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
out 7624 librpc/gen_ndr/ndr_samr.c ndr_print_samr_GroupInfo(ndr, "info", *r->out.info);
out 7628 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7649 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7677 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7707 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7724 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7744 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7770 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7785 librpc/gen_ndr/ndr_samr.c if (r->out.group_handle == NULL) {
out 7788 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.group_handle));
out 7789 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7798 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 7807 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.group_handle);
out 7808 librpc/gen_ndr/ndr_samr.c *r->out.group_handle = *r->in.group_handle;
out 7812 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.group_handle);
out 7815 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.group_handle, LIBNDR_FLAG_REF_ALLOC);
out 7816 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.group_handle));
out 7818 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7842 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "group_handle", r->out.group_handle);
out 7844 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "group_handle", r->out.group_handle);
out 7846 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7862 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7881 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7906 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 7921 librpc/gen_ndr/ndr_samr.c if (r->out.rids == NULL) {
out 7924 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.rids));
out 7925 librpc/gen_ndr/ndr_samr.c if (*r->out.rids) {
out 7926 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_RidTypeArray(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.rids));
out 7928 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 7940 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 7949 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rids);
out 7950 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.rids);
out 7954 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rids);
out 7957 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.rids, LIBNDR_FLAG_REF_ALLOC);
out 7960 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.rids);
out 7962 librpc/gen_ndr/ndr_samr.c *r->out.rids = NULL;
out 7964 librpc/gen_ndr/ndr_samr.c if (*r->out.rids) {
out 7966 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.rids, 0);
out 7967 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_RidTypeArray(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.rids));
out 7971 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 7995 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "rids", r->out.rids);
out 7997 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "rids", *r->out.rids);
out 7999 librpc/gen_ndr/ndr_samr.c if (*r->out.rids) {
out 8000 librpc/gen_ndr/ndr_samr.c ndr_print_samr_RidTypeArray(ndr, "rids", *r->out.rids);
out 8004 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8021 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8041 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8067 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8084 librpc/gen_ndr/ndr_samr.c if (r->out.alias_handle == NULL) {
out 8087 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.alias_handle));
out 8088 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8098 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 8109 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.alias_handle);
out 8110 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.alias_handle);
out 8114 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.alias_handle);
out 8117 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.alias_handle, LIBNDR_FLAG_REF_ALLOC);
out 8118 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.alias_handle));
out 8120 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8146 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "alias_handle", r->out.alias_handle);
out 8148 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "alias_handle", r->out.alias_handle);
out 8150 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8166 librpc/gen_ndr/ndr_samr.c if (r->out.info == NULL) {
out 8169 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 8170 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 8171 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
out 8172 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_AliasInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 8174 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8186 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 8196 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 8197 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.info);
out 8201 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 8204 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 8207 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 8209 librpc/gen_ndr/ndr_samr.c *r->out.info = NULL;
out 8211 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 8213 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 8214 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
out 8215 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_AliasInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 8219 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8244 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", r->out.info);
out 8246 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", *r->out.info);
out 8248 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 8249 librpc/gen_ndr/ndr_samr.c ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
out 8250 librpc/gen_ndr/ndr_samr.c ndr_print_samr_AliasInfo(ndr, "info", *r->out.info);
out 8254 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8275 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8303 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8333 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8348 librpc/gen_ndr/ndr_samr.c if (r->out.alias_handle == NULL) {
out 8351 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.alias_handle));
out 8352 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8361 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 8370 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.alias_handle);
out 8371 librpc/gen_ndr/ndr_samr.c *r->out.alias_handle = *r->in.alias_handle;
out 8375 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.alias_handle);
out 8378 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.alias_handle, LIBNDR_FLAG_REF_ALLOC);
out 8379 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.alias_handle));
out 8381 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8405 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "alias_handle", r->out.alias_handle);
out 8407 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "alias_handle", r->out.alias_handle);
out 8409 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8428 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8454 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8482 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8501 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8527 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8555 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8570 librpc/gen_ndr/ndr_samr.c if (r->out.sids == NULL) {
out 8573 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_lsa_SidArray(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 8574 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8584 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 8593 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 8594 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.sids);
out 8598 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sids);
out 8601 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sids, LIBNDR_FLAG_REF_ALLOC);
out 8602 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_lsa_SidArray(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sids));
out 8604 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8628 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sids", r->out.sids);
out 8630 librpc/gen_ndr/ndr_samr.c ndr_print_lsa_SidArray(ndr, "sids", r->out.sids);
out 8632 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8649 librpc/gen_ndr/ndr_samr.c if (r->out.user_handle == NULL) {
out 8652 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.user_handle));
out 8653 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8663 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 8674 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.user_handle);
out 8675 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.user_handle);
out 8679 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.user_handle);
out 8682 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.user_handle, LIBNDR_FLAG_REF_ALLOC);
out 8683 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.user_handle));
out 8685 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8711 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "user_handle", r->out.user_handle);
out 8713 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "user_handle", r->out.user_handle);
out 8715 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8730 librpc/gen_ndr/ndr_samr.c if (r->out.user_handle == NULL) {
out 8733 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.user_handle));
out 8734 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8743 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 8752 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.user_handle);
out 8753 librpc/gen_ndr/ndr_samr.c *r->out.user_handle = *r->in.user_handle;
out 8757 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.user_handle);
out 8760 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.user_handle, LIBNDR_FLAG_REF_ALLOC);
out 8761 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.user_handle));
out 8763 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8787 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "user_handle", r->out.user_handle);
out 8789 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "user_handle", r->out.user_handle);
out 8791 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8807 librpc/gen_ndr/ndr_samr.c if (r->out.info == NULL) {
out 8810 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 8811 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 8812 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
out 8813 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_UserInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 8815 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8827 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 8837 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 8838 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.info);
out 8842 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 8845 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 8848 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 8850 librpc/gen_ndr/ndr_samr.c *r->out.info = NULL;
out 8852 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 8854 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 8855 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
out 8856 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_UserInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 8860 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8885 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", r->out.info);
out 8887 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", *r->out.info);
out 8889 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 8890 librpc/gen_ndr/ndr_samr.c ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
out 8891 librpc/gen_ndr/ndr_samr.c ndr_print_samr_UserInfo(ndr, "info", *r->out.info);
out 8895 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 8916 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 8944 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 8974 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9017 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9123 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9187 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9202 librpc/gen_ndr/ndr_samr.c if (r->out.rids == NULL) {
out 9205 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.rids));
out 9206 librpc/gen_ndr/ndr_samr.c if (*r->out.rids) {
out 9207 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_RidWithAttributeArray(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.rids));
out 9209 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9221 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 9230 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rids);
out 9231 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.rids);
out 9235 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rids);
out 9238 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.rids, LIBNDR_FLAG_REF_ALLOC);
out 9241 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.rids);
out 9243 librpc/gen_ndr/ndr_samr.c *r->out.rids = NULL;
out 9245 librpc/gen_ndr/ndr_samr.c if (*r->out.rids) {
out 9247 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.rids, 0);
out 9248 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_RidWithAttributeArray(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.rids));
out 9252 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9276 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "rids", r->out.rids);
out 9278 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "rids", *r->out.rids);
out 9280 librpc/gen_ndr/ndr_samr.c if (*r->out.rids) {
out 9281 librpc/gen_ndr/ndr_samr.c ndr_print_samr_RidWithAttributeArray(ndr, "rids", *r->out.rids);
out 9285 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9304 librpc/gen_ndr/ndr_samr.c if (r->out.total_size == NULL) {
out 9307 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.total_size));
out 9308 librpc/gen_ndr/ndr_samr.c if (r->out.returned_size == NULL) {
out 9311 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.returned_size));
out 9312 librpc/gen_ndr/ndr_samr.c if (r->out.info == NULL) {
out 9315 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 9316 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_DispInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 9317 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9329 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 9342 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.total_size);
out 9343 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.total_size);
out 9344 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.returned_size);
out 9345 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.returned_size);
out 9346 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9347 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.info);
out 9351 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.total_size);
out 9354 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.total_size, LIBNDR_FLAG_REF_ALLOC);
out 9355 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.total_size));
out 9358 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.returned_size);
out 9361 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.returned_size, LIBNDR_FLAG_REF_ALLOC);
out 9362 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.returned_size));
out 9365 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9368 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 9369 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 9370 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_DispInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 9372 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9400 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "total_size", r->out.total_size);
out 9402 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "total_size", *r->out.total_size);
out 9404 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "returned_size", r->out.returned_size);
out 9406 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "returned_size", *r->out.returned_size);
out 9408 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", r->out.info);
out 9410 librpc/gen_ndr/ndr_samr.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 9411 librpc/gen_ndr/ndr_samr.c ndr_print_samr_DispInfo(ndr, "info", r->out.info);
out 9413 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9433 librpc/gen_ndr/ndr_samr.c if (r->out.idx == NULL) {
out 9436 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.idx));
out 9437 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9448 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 9465 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.idx);
out 9466 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.idx);
out 9470 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.idx);
out 9473 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.idx, LIBNDR_FLAG_REF_ALLOC);
out 9474 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.idx));
out 9476 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9505 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "idx", r->out.idx);
out 9507 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "idx", *r->out.idx);
out 9509 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9524 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9542 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9566 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9581 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9599 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9623 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9638 librpc/gen_ndr/ndr_samr.c if (r->out.info == NULL) {
out 9641 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_PwInfo(ndr, NDR_SCALARS, r->out.info));
out 9642 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9652 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 9661 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9662 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.info);
out 9666 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9669 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 9670 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_PwInfo(ndr, NDR_SCALARS, r->out.info));
out 9672 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9696 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", r->out.info);
out 9698 librpc/gen_ndr/ndr_samr.c ndr_print_samr_PwInfo(ndr, "info", r->out.info);
out 9700 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9719 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9745 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9773 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9789 librpc/gen_ndr/ndr_samr.c if (r->out.info == NULL) {
out 9792 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 9793 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 9794 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
out 9795 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_DomainInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 9797 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9809 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 9819 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9820 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.info);
out 9824 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9827 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 9830 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 9832 librpc/gen_ndr/ndr_samr.c *r->out.info = NULL;
out 9834 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 9836 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 9837 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
out 9838 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_DomainInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 9842 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9867 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", r->out.info);
out 9869 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", *r->out.info);
out 9871 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 9872 librpc/gen_ndr/ndr_samr.c ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
out 9873 librpc/gen_ndr/ndr_samr.c ndr_print_samr_DomainInfo(ndr, "info", *r->out.info);
out 9877 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 9893 librpc/gen_ndr/ndr_samr.c if (r->out.info == NULL) {
out 9896 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 9897 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 9898 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
out 9899 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_UserInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 9901 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 9913 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 9923 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9924 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.info);
out 9928 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 9931 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 9934 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 9936 librpc/gen_ndr/ndr_samr.c *r->out.info = NULL;
out 9938 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 9940 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 9941 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
out 9942 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_UserInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 9946 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 9971 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", r->out.info);
out 9973 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", *r->out.info);
out 9975 librpc/gen_ndr/ndr_samr.c if (*r->out.info) {
out 9976 librpc/gen_ndr/ndr_samr.c ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
out 9977 librpc/gen_ndr/ndr_samr.c ndr_print_samr_UserInfo(ndr, "info", *r->out.info);
out 9981 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10000 librpc/gen_ndr/ndr_samr.c if (r->out.total_size == NULL) {
out 10003 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.total_size));
out 10004 librpc/gen_ndr/ndr_samr.c if (r->out.returned_size == NULL) {
out 10007 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.returned_size));
out 10008 librpc/gen_ndr/ndr_samr.c if (r->out.info == NULL) {
out 10011 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 10012 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_DispInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 10013 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10025 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 10038 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.total_size);
out 10039 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.total_size);
out 10040 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.returned_size);
out 10041 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.returned_size);
out 10042 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 10043 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.info);
out 10047 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.total_size);
out 10050 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.total_size, LIBNDR_FLAG_REF_ALLOC);
out 10051 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.total_size));
out 10054 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.returned_size);
out 10057 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.returned_size, LIBNDR_FLAG_REF_ALLOC);
out 10058 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.returned_size));
out 10061 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 10064 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 10065 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 10066 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_DispInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 10068 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10096 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "total_size", r->out.total_size);
out 10098 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "total_size", *r->out.total_size);
out 10100 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "returned_size", r->out.returned_size);
out 10102 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "returned_size", *r->out.returned_size);
out 10104 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", r->out.info);
out 10106 librpc/gen_ndr/ndr_samr.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 10107 librpc/gen_ndr/ndr_samr.c ndr_print_samr_DispInfo(ndr, "info", r->out.info);
out 10109 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10129 librpc/gen_ndr/ndr_samr.c if (r->out.idx == NULL) {
out 10132 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.idx));
out 10133 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10144 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 10161 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.idx);
out 10162 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.idx);
out 10166 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.idx);
out 10169 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.idx, LIBNDR_FLAG_REF_ALLOC);
out 10170 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.idx));
out 10172 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10201 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "idx", r->out.idx);
out 10203 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "idx", *r->out.idx);
out 10205 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10226 librpc/gen_ndr/ndr_samr.c if (r->out.user_handle == NULL) {
out 10229 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.user_handle));
out 10230 librpc/gen_ndr/ndr_samr.c if (r->out.access_granted == NULL) {
out 10233 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.access_granted));
out 10234 librpc/gen_ndr/ndr_samr.c if (r->out.rid == NULL) {
out 10237 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.rid));
out 10238 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10251 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 10269 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.user_handle);
out 10270 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.user_handle);
out 10271 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.access_granted);
out 10272 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.access_granted);
out 10273 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rid);
out 10274 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.rid);
out 10278 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.user_handle);
out 10281 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.user_handle, LIBNDR_FLAG_REF_ALLOC);
out 10282 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.user_handle));
out 10285 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.access_granted);
out 10288 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.access_granted, LIBNDR_FLAG_REF_ALLOC);
out 10289 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.access_granted));
out 10292 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rid);
out 10295 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.rid, LIBNDR_FLAG_REF_ALLOC);
out 10296 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.rid));
out 10298 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10328 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "user_handle", r->out.user_handle);
out 10330 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "user_handle", r->out.user_handle);
out 10332 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "access_granted", r->out.access_granted);
out 10334 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "access_granted", *r->out.access_granted);
out 10336 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "rid", r->out.rid);
out 10338 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "rid", *r->out.rid);
out 10340 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10359 librpc/gen_ndr/ndr_samr.c if (r->out.total_size == NULL) {
out 10362 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.total_size));
out 10363 librpc/gen_ndr/ndr_samr.c if (r->out.returned_size == NULL) {
out 10366 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.returned_size));
out 10367 librpc/gen_ndr/ndr_samr.c if (r->out.info == NULL) {
out 10370 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 10371 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_DispInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 10372 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10384 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 10397 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.total_size);
out 10398 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.total_size);
out 10399 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.returned_size);
out 10400 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.returned_size);
out 10401 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 10402 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.info);
out 10406 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.total_size);
out 10409 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.total_size, LIBNDR_FLAG_REF_ALLOC);
out 10410 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.total_size));
out 10413 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.returned_size);
out 10416 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.returned_size, LIBNDR_FLAG_REF_ALLOC);
out 10417 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.returned_size));
out 10420 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 10423 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 10424 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 10425 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_DispInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 10427 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10455 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "total_size", r->out.total_size);
out 10457 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "total_size", *r->out.total_size);
out 10459 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "returned_size", r->out.returned_size);
out 10461 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "returned_size", *r->out.returned_size);
out 10463 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", r->out.info);
out 10465 librpc/gen_ndr/ndr_samr.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 10466 librpc/gen_ndr/ndr_samr.c ndr_print_samr_DispInfo(ndr, "info", r->out.info);
out 10468 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10487 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10513 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10541 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10560 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10586 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10614 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10641 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10701 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10743 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10779 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10868 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 10923 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 10938 librpc/gen_ndr/ndr_samr.c if (r->out.info == NULL) {
out 10941 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_PwInfo(ndr, NDR_SCALARS, r->out.info));
out 10942 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 10953 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 10967 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 10968 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.info);
out 10972 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info);
out 10975 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 10976 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_PwInfo(ndr, NDR_SCALARS, r->out.info));
out 10978 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11004 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info", r->out.info);
out 11006 librpc/gen_ndr/ndr_samr.c ndr_print_samr_PwInfo(ndr, "info", r->out.info);
out 11008 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11027 librpc/gen_ndr/ndr_samr.c if (r->out.connect_handle == NULL) {
out 11030 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.connect_handle));
out 11031 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11042 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 11063 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.connect_handle);
out 11064 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.connect_handle);
out 11068 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.connect_handle);
out 11071 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.connect_handle, LIBNDR_FLAG_REF_ALLOC);
out 11072 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.connect_handle));
out 11074 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11101 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "connect_handle", r->out.connect_handle);
out 11103 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "connect_handle", r->out.connect_handle);
out 11105 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11126 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11154 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11184 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11202 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11223 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11250 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11265 librpc/gen_ndr/ndr_samr.c if (r->out.unknown == NULL) {
out 11268 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.unknown));
out 11269 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11279 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 11288 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.unknown);
out 11289 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.unknown);
out 11293 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.unknown);
out 11296 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.unknown, LIBNDR_FLAG_REF_ALLOC);
out 11297 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.unknown));
out 11299 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11323 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "unknown", r->out.unknown);
out 11325 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "unknown", *r->out.unknown);
out 11327 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11347 librpc/gen_ndr/ndr_samr.c if (r->out.connect_handle == NULL) {
out 11350 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.connect_handle));
out 11351 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11362 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 11384 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.connect_handle);
out 11385 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.connect_handle);
out 11389 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.connect_handle);
out 11392 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.connect_handle, LIBNDR_FLAG_REF_ALLOC);
out 11393 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.connect_handle));
out 11395 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11423 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "connect_handle", r->out.connect_handle);
out 11425 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "connect_handle", r->out.connect_handle);
out 11427 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11447 librpc/gen_ndr/ndr_samr.c if (r->out.connect_handle == NULL) {
out 11450 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.connect_handle));
out 11451 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11462 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 11484 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.connect_handle);
out 11485 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.connect_handle);
out 11489 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.connect_handle);
out 11492 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.connect_handle, LIBNDR_FLAG_REF_ALLOC);
out 11493 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.connect_handle));
out 11495 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11523 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "connect_handle", r->out.connect_handle);
out 11525 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "connect_handle", r->out.connect_handle);
out 11527 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11567 librpc/gen_ndr/ndr_samr.c if (r->out.dominfo == NULL) {
out 11570 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.dominfo));
out 11571 librpc/gen_ndr/ndr_samr.c if (*r->out.dominfo) {
out 11572 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_DomInfo1(ndr, NDR_SCALARS, *r->out.dominfo));
out 11574 librpc/gen_ndr/ndr_samr.c if (r->out.reject == NULL) {
out 11577 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.reject));
out 11578 librpc/gen_ndr/ndr_samr.c if (*r->out.reject) {
out 11579 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_ChangeReject(ndr, NDR_SCALARS, *r->out.reject));
out 11581 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11608 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 11690 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.dominfo);
out 11691 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.dominfo);
out 11692 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.reject);
out 11693 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.reject);
out 11697 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.dominfo);
out 11700 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.dominfo, LIBNDR_FLAG_REF_ALLOC);
out 11703 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.dominfo);
out 11705 librpc/gen_ndr/ndr_samr.c *r->out.dominfo = NULL;
out 11707 librpc/gen_ndr/ndr_samr.c if (*r->out.dominfo) {
out 11709 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.dominfo, 0);
out 11710 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_DomInfo1(ndr, NDR_SCALARS, *r->out.dominfo));
out 11715 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.reject);
out 11718 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.reject, LIBNDR_FLAG_REF_ALLOC);
out 11721 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.reject);
out 11723 librpc/gen_ndr/ndr_samr.c *r->out.reject = NULL;
out 11725 librpc/gen_ndr/ndr_samr.c if (*r->out.reject) {
out 11727 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.reject, 0);
out 11728 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_ChangeReject(ndr, NDR_SCALARS, *r->out.reject));
out 11732 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11793 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "dominfo", r->out.dominfo);
out 11795 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "dominfo", *r->out.dominfo);
out 11797 librpc/gen_ndr/ndr_samr.c if (*r->out.dominfo) {
out 11798 librpc/gen_ndr/ndr_samr.c ndr_print_samr_DomInfo1(ndr, "dominfo", *r->out.dominfo);
out 11802 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "reject", r->out.reject);
out 11804 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "reject", *r->out.reject);
out 11806 librpc/gen_ndr/ndr_samr.c if (*r->out.reject) {
out 11807 librpc/gen_ndr/ndr_samr.c ndr_print_samr_ChangeReject(ndr, "reject", *r->out.reject);
out 11811 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11836 librpc/gen_ndr/ndr_samr.c if (r->out.level_out == NULL) {
out 11839 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.level_out));
out 11840 librpc/gen_ndr/ndr_samr.c if (r->out.info_out == NULL) {
out 11843 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info_out, *r->out.level_out));
out 11844 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_ConnectInfo(ndr, NDR_SCALARS, r->out.info_out));
out 11845 librpc/gen_ndr/ndr_samr.c if (r->out.connect_handle == NULL) {
out 11848 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.connect_handle));
out 11849 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 11863 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 11893 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 11894 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.level_out);
out 11895 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info_out);
out 11896 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.info_out);
out 11897 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.connect_handle);
out 11898 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.connect_handle);
out 11902 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.level_out);
out 11905 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.level_out, LIBNDR_FLAG_REF_ALLOC);
out 11906 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.level_out));
out 11909 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.info_out);
out 11912 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info_out, LIBNDR_FLAG_REF_ALLOC);
out 11913 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info_out, *r->out.level_out));
out 11914 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_ConnectInfo(ndr, NDR_SCALARS, r->out.info_out));
out 11917 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.connect_handle);
out 11920 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.connect_handle, LIBNDR_FLAG_REF_ALLOC);
out 11921 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.connect_handle));
out 11923 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 11956 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "level_out", r->out.level_out);
out 11958 librpc/gen_ndr/ndr_samr.c ndr_print_uint32(ndr, "level_out", *r->out.level_out);
out 11960 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "info_out", r->out.info_out);
out 11962 librpc/gen_ndr/ndr_samr.c ndr_print_set_switch_value(ndr, r->out.info_out, *r->out.level_out);
out 11963 librpc/gen_ndr/ndr_samr.c ndr_print_samr_ConnectInfo(ndr, "info_out", r->out.info_out);
out 11965 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "connect_handle", r->out.connect_handle);
out 11967 librpc/gen_ndr/ndr_samr.c ndr_print_policy_handle(ndr, "connect_handle", r->out.connect_handle);
out 11969 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 11985 librpc/gen_ndr/ndr_samr.c if (r->out.sid == NULL) {
out 11988 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.sid));
out 11989 librpc/gen_ndr/ndr_samr.c if (*r->out.sid) {
out 11990 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_dom_sid2(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sid));
out 11992 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12004 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 12014 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sid);
out 12015 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.sid);
out 12019 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.sid);
out 12022 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sid, LIBNDR_FLAG_REF_ALLOC);
out 12025 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.sid);
out 12027 librpc/gen_ndr/ndr_samr.c *r->out.sid = NULL;
out 12029 librpc/gen_ndr/ndr_samr.c if (*r->out.sid) {
out 12031 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.sid, 0);
out 12032 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_dom_sid2(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sid));
out 12036 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12061 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sid", r->out.sid);
out 12063 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "sid", *r->out.sid);
out 12065 librpc/gen_ndr/ndr_samr.c if (*r->out.sid) {
out 12066 librpc/gen_ndr/ndr_samr.c ndr_print_dom_sid2(ndr, "sid", *r->out.sid);
out 12070 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 12090 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12129 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12162 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 12179 librpc/gen_ndr/ndr_samr.c if (r->out.rep == NULL) {
out 12182 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.rep));
out 12183 librpc/gen_ndr/ndr_samr.c if (*r->out.rep) {
out 12184 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.rep, r->in.level));
out 12185 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_samr_ValidatePasswordRep(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.rep));
out 12187 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
out 12199 librpc/gen_ndr/ndr_samr.c ZERO_STRUCT(r->out);
out 12210 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rep);
out 12211 librpc/gen_ndr/ndr_samr.c ZERO_STRUCTP(r->out.rep);
out 12215 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, r->out.rep);
out 12218 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, r->out.rep, LIBNDR_FLAG_REF_ALLOC);
out 12221 librpc/gen_ndr/ndr_samr.c NDR_PULL_ALLOC(ndr, *r->out.rep);
out 12223 librpc/gen_ndr/ndr_samr.c *r->out.rep = NULL;
out 12225 librpc/gen_ndr/ndr_samr.c if (*r->out.rep) {
out 12227 librpc/gen_ndr/ndr_samr.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.rep, 0);
out 12228 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.rep, r->in.level));
out 12229 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_samr_ValidatePasswordRep(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.rep));
out 12233 librpc/gen_ndr/ndr_samr.c NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
out 12259 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "rep", r->out.rep);
out 12261 librpc/gen_ndr/ndr_samr.c ndr_print_ptr(ndr, "rep", *r->out.rep);
out 12263 librpc/gen_ndr/ndr_samr.c if (*r->out.rep) {
out 12264 librpc/gen_ndr/ndr_samr.c ndr_print_set_switch_value(ndr, *r->out.rep, r->in.level);
out 12265 librpc/gen_ndr/ndr_samr.c ndr_print_samr_ValidatePasswordRep(ndr, "rep", *r->out.rep);
out 12269 librpc/gen_ndr/ndr_samr.c ndr_print_NTSTATUS(ndr, "result", r->out.result);
out 18803 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 18804 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 18805 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_DATA_BLOB(ndr, NDR_SCALARS, *r->out.info));
out 18807 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 18810 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 18811 librpc/gen_ndr/ndr_spoolss.c if (r->out.count == NULL) {
out 18814 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 18815 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18831 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 18866 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 18867 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 18868 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 18869 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.count);
out 18874 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 18876 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 18878 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 18880 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 18881 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_DATA_BLOB(ndr, NDR_SCALARS, r->out.info));
out 18885 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 18888 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 18889 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 18892 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 18895 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 18896 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 18898 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18912 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 18913 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrinterInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 18916 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrinterInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 18927 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 18933 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
out 18935 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 18937 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 18938 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PrinterInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 18941 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PrinterInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 18979 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "count", r->out.count);
out 18981 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "count", *r->out.count);
out 18983 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 18985 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", *r->out.info);
out 18987 librpc/gen_ndr/ndr_spoolss.c if (*r->out.info) {
out 18988 librpc/gen_ndr/ndr_spoolss.c ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
out 18990 librpc/gen_ndr/ndr_spoolss.c for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
out 18993 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, &(*r->out.info)[cntr_info_2], r->in.level);
out 18994 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_PrinterInfo(ndr, "info", &(*r->out.info)[cntr_info_2]);
out 19002 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 19004 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 19006 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19033 librpc/gen_ndr/ndr_spoolss.c if (r->out.handle == NULL) {
out 19036 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 19037 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19050 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 19090 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 19091 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.handle);
out 19095 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 19098 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 19099 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 19101 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19135 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 19137 librpc/gen_ndr/ndr_spoolss.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 19139 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19160 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19194 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19226 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19248 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 19249 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 19253 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(_ndr_info, r->out.info, r->in.level));
out 19254 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_JobInfo(_ndr_info, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 19258 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 19261 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 19262 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19276 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 19300 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 19301 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 19306 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 19308 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 19310 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 19312 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 19316 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(_ndr_info, r->out.info, r->in.level));
out 19317 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_JobInfo(_ndr_info, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 19323 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 19326 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 19327 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 19329 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19362 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 19364 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 19365 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 19366 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_JobInfo(ndr, "info", r->out.info);
out 19369 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 19371 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 19373 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19396 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 19397 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 19398 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_DATA_BLOB(ndr, NDR_SCALARS, *r->out.info));
out 19400 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 19403 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 19404 librpc/gen_ndr/ndr_spoolss.c if (r->out.count == NULL) {
out 19407 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 19408 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19423 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 19448 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 19449 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 19450 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 19451 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.count);
out 19456 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 19458 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 19460 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 19462 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 19463 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_DATA_BLOB(ndr, NDR_SCALARS, r->out.info));
out 19467 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 19470 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 19471 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 19474 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 19477 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 19478 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 19480 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19494 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 19495 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_JobInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 19498 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_JobInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 19509 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 19515 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
out 19517 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 19519 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 19520 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_JobInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 19523 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_JobInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 19560 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "count", r->out.count);
out 19562 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "count", *r->out.count);
out 19564 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 19566 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", *r->out.info);
out 19568 librpc/gen_ndr/ndr_spoolss.c if (*r->out.info) {
out 19569 librpc/gen_ndr/ndr_spoolss.c ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
out 19571 librpc/gen_ndr/ndr_spoolss.c for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
out 19574 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, &(*r->out.info)[cntr_info_2], r->in.level);
out 19575 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_JobInfo(ndr, "info", &(*r->out.info)[cntr_info_2]);
out 19583 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 19585 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 19587 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19598 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19608 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19628 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19643 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19661 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19685 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19713 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19756 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19793 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19814 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 19815 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 19819 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(_ndr_info, r->out.info, r->in.level));
out 19820 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrinterInfo(_ndr_info, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 19824 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 19827 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 19828 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19842 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 19865 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 19866 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 19871 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 19873 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 19875 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 19877 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 19881 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(_ndr_info, r->out.info, r->in.level));
out 19882 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PrinterInfo(_ndr_info, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 19888 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 19891 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 19892 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 19894 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19926 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 19928 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 19929 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 19930 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_PrinterInfo(ndr, "info", r->out.info);
out 19933 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 19935 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 19937 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19959 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19997 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 20027 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 20058 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 20059 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 20060 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_DATA_BLOB(ndr, NDR_SCALARS, *r->out.info));
out 20062 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 20065 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 20066 librpc/gen_ndr/ndr_spoolss.c if (r->out.count == NULL) {
out 20069 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 20070 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 20088 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 20140 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 20141 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 20142 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 20143 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.count);
out 20148 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 20150 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 20152 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 20154 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 20155 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_DATA_BLOB(ndr, NDR_SCALARS, r->out.info));
out 20159 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 20162 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 20163 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 20166 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 20169 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 20170 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 20172 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 20186 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 20187 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_DriverInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 20190 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_DriverInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 20201 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 20207 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
out 20209 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 20211 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 20212 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_DriverInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 20215 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_DriverInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 20258 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "count", r->out.count);
out 20260 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "count", *r->out.count);
out 20262 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 20264 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", *r->out.info);
out 20266 librpc/gen_ndr/ndr_spoolss.c if (*r->out.info) {
out 20267 librpc/gen_ndr/ndr_spoolss.c ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
out 20269 librpc/gen_ndr/ndr_spoolss.c for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
out 20272 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, &(*r->out.info)[cntr_info_2], r->in.level);
out 20273 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_DriverInfo(ndr, "info", &(*r->out.info)[cntr_info_2]);
out 20281 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 20283 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 20285 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 20296 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 20306 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 20326 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 20357 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 20358 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 20362 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(_ndr_info, r->out.info, r->in.level));
out 20363 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_DriverDirectoryInfo(_ndr_info, NDR_SCALARS, r->out.info));
out 20367 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 20370 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 20371 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 20388 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 20440 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 20441 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 20446 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 20448 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 20450 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 20452 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 20456 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(_ndr_info, r->out.info, r->in.level));
out 20457 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_DriverDirectoryInfo(_ndr_info, NDR_SCALARS, r->out.info));
out 20463 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 20466 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 20467 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 20469 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 20509 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 20511 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 20512 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 20513 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_DriverDirectoryInfo(ndr, "info", r->out.info);
out 20516 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 20518 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 20520 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 20546 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 20590 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 20618 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 20648 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 20699 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 20728 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 20759 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 20760 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 20761 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_DATA_BLOB(ndr, NDR_SCALARS, *r->out.info));
out 20763 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 20766 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 20767 librpc/gen_ndr/ndr_spoolss.c if (r->out.count == NULL) {
out 20770 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 20771 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 20789 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 20841 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 20842 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 20843 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 20844 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.count);
out 20849 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 20851 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 20853 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 20855 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 20856 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_DATA_BLOB(ndr, NDR_SCALARS, r->out.info));
out 20860 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 20863 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 20864 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 20867 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 20870 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 20871 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 20873 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 20887 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 20888 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrintProcessorInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 20891 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrintProcessorInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 20902 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 20908 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
out 20910 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 20912 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 20913 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PrintProcessorInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 20916 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PrintProcessorInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 20959 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "count", r->out.count);
out 20961 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "count", *r->out.count);
out 20963 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 20965 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", *r->out.info);
out 20967 librpc/gen_ndr/ndr_spoolss.c if (*r->out.info) {
out 20968 librpc/gen_ndr/ndr_spoolss.c ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
out 20970 librpc/gen_ndr/ndr_spoolss.c for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
out 20973 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, &(*r->out.info)[cntr_info_2], r->in.level);
out 20974 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_PrintProcessorInfo(ndr, "info", &(*r->out.info)[cntr_info_2]);
out 20982 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 20984 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 20986 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 21017 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 21018 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 21022 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(_ndr_info, r->out.info, r->in.level));
out 21023 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrintProcessorDirectoryInfo(_ndr_info, NDR_SCALARS, r->out.info));
out 21027 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 21030 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 21031 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 21048 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 21100 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 21101 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 21106 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 21108 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 21110 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 21112 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 21116 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(_ndr_info, r->out.info, r->in.level));
out 21117 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PrintProcessorDirectoryInfo(_ndr_info, NDR_SCALARS, r->out.info));
out 21123 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 21126 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 21127 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 21129 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 21169 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 21171 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 21172 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 21173 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_PrintProcessorDirectoryInfo(ndr, "info", r->out.info);
out 21176 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 21178 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 21180 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 21198 librpc/gen_ndr/ndr_spoolss.c if (r->out.job_id == NULL) {
out 21201 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.job_id));
out 21202 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 21212 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 21224 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.job_id);
out 21225 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.job_id);
out 21229 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.job_id);
out 21232 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.job_id, LIBNDR_FLAG_REF_ALLOC);
out 21233 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.job_id));
out 21235 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 21262 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "job_id", r->out.job_id);
out 21264 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "job_id", *r->out.job_id);
out 21266 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 21281 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 21299 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 21323 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 21340 librpc/gen_ndr/ndr_spoolss.c if (r->out.num_written == NULL) {
out 21343 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_written));
out 21344 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 21354 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 21365 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.num_written);
out 21366 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.num_written);
out 21370 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.num_written);
out 21373 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.num_written, LIBNDR_FLAG_REF_ALLOC);
out 21374 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.num_written));
out 21376 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 21402 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "num_written", r->out.num_written);
out 21404 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "num_written", *r->out.num_written);
out 21406 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 21421 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 21439 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 21463 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 21478 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 21496 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 21520 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 21536 librpc/gen_ndr/ndr_spoolss.c if (r->out.data == NULL) {
out 21540 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.data, r->in.data_size));
out 21541 librpc/gen_ndr/ndr_spoolss.c if (r->out._data_size == NULL) {
out 21544 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out._data_size));
out 21545 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 21555 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 21565 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.data, r->in.data_size);
out 21566 librpc/gen_ndr/ndr_spoolss.c memset(r->out.data, 0, (r->in.data_size) * sizeof(*r->out.data));
out 21567 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out._data_size);
out 21568 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out._data_size);
out 21571 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.data));
out 21573 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.data, ndr_get_array_size(ndr, &r->out.data));
out 21575 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.data, ndr_get_array_size(ndr, &r->out.data)));
out 21577 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out._data_size);
out 21580 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out._data_size, LIBNDR_FLAG_REF_ALLOC);
out 21581 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out._data_size));
out 21583 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 21584 librpc/gen_ndr/ndr_spoolss.c if (r->out.data) {
out 21585 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.data, r->in.data_size));
out 21611 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "data", r->out.data);
out 21613 librpc/gen_ndr/ndr_spoolss.c ndr_print_array_uint8(ndr, "data", r->out.data, r->in.data_size);
out 21615 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "_data_size", r->out._data_size);
out 21617 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "_data_size", *r->out._data_size);
out 21619 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 21634 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 21652 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 21676 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 21698 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.buffer));
out 21699 librpc/gen_ndr/ndr_spoolss.c if (r->out.buffer) {
out 21701 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.buffer, r->in.offered));
out 21703 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 21706 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 21707 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 21719 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 21744 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 21745 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 21753 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.buffer);
out 21755 librpc/gen_ndr/ndr_spoolss.c r->out.buffer = NULL;
out 21757 librpc/gen_ndr/ndr_spoolss.c if (r->out.buffer) {
out 21759 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.buffer, 0);
out 21760 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.buffer));
out 21761 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer));
out 21762 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer)));
out 21766 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 21769 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 21770 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 21772 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 21773 librpc/gen_ndr/ndr_spoolss.c if (r->out.buffer) {
out 21774 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.buffer, r->in.offered));
out 21807 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 21809 librpc/gen_ndr/ndr_spoolss.c if (r->out.buffer) {
out 21810 librpc/gen_ndr/ndr_spoolss.c ndr_print_array_uint8(ndr, "buffer", r->out.buffer, r->in.offered);
out 21813 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 21815 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 21817 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 21833 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 21852 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 21877 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 21897 librpc/gen_ndr/ndr_spoolss.c if (r->out.type == NULL) {
out 21900 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_winreg_Type(ndr, NDR_SCALARS, *r->out.type));
out 21901 librpc/gen_ndr/ndr_spoolss.c if (r->out.data == NULL) {
out 21904 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_DATA_BLOB(ndr, NDR_SCALARS, *r->out.data));
out 21905 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 21908 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 21909 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 21921 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 21938 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.type);
out 21939 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.type);
out 21940 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.data);
out 21941 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.data);
out 21942 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 21943 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 21947 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.type);
out 21950 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.type, LIBNDR_FLAG_REF_ALLOC);
out 21951 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_winreg_Type(ndr, NDR_SCALARS, r->out.type));
out 21954 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.data);
out 21957 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.data, LIBNDR_FLAG_REF_ALLOC);
out 21958 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_DATA_BLOB(ndr, NDR_SCALARS, r->out.data));
out 21961 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 21964 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 21965 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 21967 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 21978 librpc/gen_ndr/ndr_spoolss.c if (r->out.data == NULL) {
out 21981 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.data, r->in.type));
out 21982 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrinterData(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.data));
out 21991 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 21994 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.data);
out 21995 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.data);
out 21999 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.data);
out 22002 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.data, LIBNDR_FLAG_REF_ALLOC);
out 22003 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.data, r->in.type));
out 22004 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PrinterData(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.data));
out 22031 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "type", r->out.type);
out 22033 librpc/gen_ndr/ndr_spoolss.c ndr_print_winreg_Type(ndr, "type", *r->out.type);
out 22035 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "data", r->out.data);
out 22037 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, r->out.data, *r->out.type);
out 22038 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_PrinterData(ndr, "data", r->out.data);
out 22040 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 22042 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 22044 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 22066 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 22077 librpc/gen_ndr/ndr_spoolss.c if (r->out.data == NULL) {
out 22080 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.data, r->in.type));
out 22081 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrinterData(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.data));
out 22115 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 22144 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 22155 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 22165 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 22185 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 22200 librpc/gen_ndr/ndr_spoolss.c if (r->out.handle == NULL) {
out 22203 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 22204 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 22213 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 22222 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 22223 librpc/gen_ndr/ndr_spoolss.c *r->out.handle = *r->in.handle;
out 22227 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 22230 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 22231 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 22233 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 22257 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 22259 librpc/gen_ndr/ndr_spoolss.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 22261 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 22279 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 22300 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 22327 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 22346 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 22371 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 22396 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 22421 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 22422 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 22426 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(_ndr_info, r->out.info, r->in.level));
out 22427 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_FormInfo(_ndr_info, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 22431 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 22434 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 22435 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 22449 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 22479 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 22480 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 22485 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 22487 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 22489 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 22491 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 22495 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(_ndr_info, r->out.info, r->in.level));
out 22496 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_FormInfo(_ndr_info, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 22502 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 22505 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 22506 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 22508 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 22541 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 22543 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 22544 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 22545 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_FormInfo(ndr, "info", r->out.info);
out 22548 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 22550 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 22552 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 22574 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 22602 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 22630 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 22651 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 22652 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 22653 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_DATA_BLOB(ndr, NDR_SCALARS, *r->out.info));
out 22655 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 22658 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 22659 librpc/gen_ndr/ndr_spoolss.c if (r->out.count == NULL) {
out 22662 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 22663 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 22678 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 22701 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 22702 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 22703 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 22704 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.count);
out 22709 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 22711 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 22713 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 22715 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 22716 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_DATA_BLOB(ndr, NDR_SCALARS, r->out.info));
out 22720 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 22723 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 22724 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 22727 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 22730 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 22731 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 22733 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 22747 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 22748 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_FormInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 22751 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_FormInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 22762 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 22768 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
out 22770 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 22772 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 22773 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_FormInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 22776 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_FormInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 22811 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "count", r->out.count);
out 22813 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "count", *r->out.count);
out 22815 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 22817 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", *r->out.info);
out 22819 librpc/gen_ndr/ndr_spoolss.c if (*r->out.info) {
out 22820 librpc/gen_ndr/ndr_spoolss.c ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
out 22822 librpc/gen_ndr/ndr_spoolss.c for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
out 22825 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, &(*r->out.info)[cntr_info_2], r->in.level);
out 22826 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_FormInfo(ndr, "info", &(*r->out.info)[cntr_info_2]);
out 22834 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 22836 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 22838 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 22862 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 22863 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 22864 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_DATA_BLOB(ndr, NDR_SCALARS, *r->out.info));
out 22866 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 22869 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 22870 librpc/gen_ndr/ndr_spoolss.c if (r->out.count == NULL) {
out 22873 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 22874 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 22890 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 22924 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 22925 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 22926 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 22927 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.count);
out 22932 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 22934 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 22936 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 22938 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 22939 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_DATA_BLOB(ndr, NDR_SCALARS, r->out.info));
out 22943 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 22946 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 22947 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 22950 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 22953 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 22954 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 22956 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 22970 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 22971 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PortInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 22974 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PortInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 22985 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 22991 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
out 22993 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 22995 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 22996 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PortInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 22999 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PortInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 23036 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "count", r->out.count);
out 23038 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "count", *r->out.count);
out 23040 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 23042 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", *r->out.info);
out 23044 librpc/gen_ndr/ndr_spoolss.c if (*r->out.info) {
out 23045 librpc/gen_ndr/ndr_spoolss.c ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
out 23047 librpc/gen_ndr/ndr_spoolss.c for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
out 23050 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, &(*r->out.info)[cntr_info_2], r->in.level);
out 23051 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_PortInfo(ndr, "info", &(*r->out.info)[cntr_info_2]);
out 23059 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 23061 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 23063 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23087 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 23088 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 23089 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_DATA_BLOB(ndr, NDR_SCALARS, *r->out.info));
out 23091 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 23094 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 23095 librpc/gen_ndr/ndr_spoolss.c if (r->out.count == NULL) {
out 23098 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 23099 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23115 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 23149 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 23150 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 23151 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 23152 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.count);
out 23157 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 23159 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 23161 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 23163 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 23164 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_DATA_BLOB(ndr, NDR_SCALARS, r->out.info));
out 23168 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 23171 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 23172 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 23175 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 23178 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 23179 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 23181 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23195 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 23196 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_MonitorInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 23199 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_MonitorInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 23210 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 23216 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
out 23218 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 23220 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 23221 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_MonitorInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 23224 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_MonitorInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 23261 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "count", r->out.count);
out 23263 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "count", *r->out.count);
out 23265 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 23267 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", *r->out.info);
out 23269 librpc/gen_ndr/ndr_spoolss.c if (*r->out.info) {
out 23270 librpc/gen_ndr/ndr_spoolss.c ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
out 23272 librpc/gen_ndr/ndr_spoolss.c for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
out 23275 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, &(*r->out.info)[cntr_info_2], r->in.level);
out 23276 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_MonitorInfo(ndr, "info", &(*r->out.info)[cntr_info_2]);
out 23284 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 23286 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 23288 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23311 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23349 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23377 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23388 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23398 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23418 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23429 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23439 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23459 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23470 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23480 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23500 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23511 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23521 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23541 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23552 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23562 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23582 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23593 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23603 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23623 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23634 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23644 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23664 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23675 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23685 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23705 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23716 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23726 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23746 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23757 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23767 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23787 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23798 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23808 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23828 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23839 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23849 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23869 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23880 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23890 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 23910 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 23941 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 23942 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 23943 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_DATA_BLOB(ndr, NDR_SCALARS, *r->out.info));
out 23945 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 23948 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 23949 librpc/gen_ndr/ndr_spoolss.c if (r->out.count == NULL) {
out 23952 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 23953 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 23971 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 24023 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 24024 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 24025 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 24026 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.count);
out 24031 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 24033 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 24035 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 24037 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 24038 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_DATA_BLOB(ndr, NDR_SCALARS, r->out.info));
out 24042 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 24045 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 24046 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 24049 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 24052 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 24053 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 24055 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 24069 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 24070 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrintProcDataTypesInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 24073 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrintProcDataTypesInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 24084 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 24090 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
out 24092 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 24094 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(ndr, &r->out.info[cntr_info_0], r->in.level));
out 24095 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PrintProcDataTypesInfo(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 24098 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PrintProcDataTypesInfo(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 24141 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "count", r->out.count);
out 24143 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "count", *r->out.count);
out 24145 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 24147 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", *r->out.info);
out 24149 librpc/gen_ndr/ndr_spoolss.c if (*r->out.info) {
out 24150 librpc/gen_ndr/ndr_spoolss.c ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
out 24152 librpc/gen_ndr/ndr_spoolss.c for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
out 24155 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, &(*r->out.info)[cntr_info_2], r->in.level);
out 24156 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_PrintProcDataTypesInfo(ndr, "info", &(*r->out.info)[cntr_info_2]);
out 24164 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 24166 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 24168 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 24194 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 24240 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 24274 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 24304 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
out 24305 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 24309 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_set_switch_value(_ndr_info, r->out.info, r->in.level));
out 24310 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_DriverInfo(_ndr_info, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 24314 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 24317 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 24318 librpc/gen_ndr/ndr_spoolss.c if (r->out.server_major_version == NULL) {
out 24321 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.server_major_version));
out 24322 librpc/gen_ndr/ndr_spoolss.c if (r->out.server_minor_version == NULL) {
out 24325 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.server_minor_version));
out 24326 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 24344 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 24387 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 24388 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 24389 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.server_major_version);
out 24390 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.server_major_version);
out 24391 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.server_minor_version);
out 24392 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.server_minor_version);
out 24397 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 24399 librpc/gen_ndr/ndr_spoolss.c r->out.info = NULL;
out 24401 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 24403 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 24407 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_set_switch_value(_ndr_info, r->out.info, r->in.level));
out 24408 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_DriverInfo(_ndr_info, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 24414 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 24417 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 24418 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 24421 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.server_major_version);
out 24424 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.server_major_version, LIBNDR_FLAG_REF_ALLOC);
out 24425 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.server_major_version));
out 24428 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.server_minor_version);
out 24431 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.server_minor_version, LIBNDR_FLAG_REF_ALLOC);
out 24432 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.server_minor_version));
out 24434 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 24474 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 24476 librpc/gen_ndr/ndr_spoolss.c if (r->out.info) {
out 24477 librpc/gen_ndr/ndr_spoolss.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 24478 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_DriverInfo(ndr, "info", r->out.info);
out 24481 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 24483 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 24485 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "server_major_version", r->out.server_major_version);
out 24487 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "server_major_version", *r->out.server_major_version);
out 24489 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "server_minor_version", r->out.server_minor_version);
out 24491 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "server_minor_version", *r->out.server_minor_version);
out 24493 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 24504 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 24514 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 24534 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 24545 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 24555 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 24575 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 24590 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 24608 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 24632 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 24643 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 24653 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 24673 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 24696 librpc/gen_ndr/ndr_spoolss.c if (r->out.handle == NULL) {
out 24699 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 24700 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 24711 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 24740 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 24741 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.handle);
out 24748 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 24751 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 24752 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 24754 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 24784 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 24786 librpc/gen_ndr/ndr_spoolss.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 24788 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 24810 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 24852 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 24884 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 24899 librpc/gen_ndr/ndr_spoolss.c if (r->out.handle == NULL) {
out 24902 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 24903 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 24912 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 24921 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 24922 librpc/gen_ndr/ndr_spoolss.c *r->out.handle = *r->in.handle;
out 24926 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 24929 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 24930 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 24932 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 24956 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 24958 librpc/gen_ndr/ndr_spoolss.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 24960 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 24971 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 24981 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 25001 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 25012 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 25022 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 25042 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 25053 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 25063 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 25083 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 25094 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 25104 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 25124 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 25153 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 25208 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 25247 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 25267 librpc/gen_ndr/ndr_spoolss.c if (r->out.reply_result == NULL) {
out 25270 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrinterNotifyFlags(ndr, NDR_SCALARS, *r->out.reply_result));
out 25271 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 25281 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 25295 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.reply_result);
out 25296 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.reply_result);
out 25300 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.reply_result);
out 25303 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.reply_result, LIBNDR_FLAG_REF_ALLOC);
out 25304 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PrinterNotifyFlags(ndr, NDR_SCALARS, r->out.reply_result));
out 25306 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 25335 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "reply_result", r->out.reply_result);
out 25337 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_PrinterNotifyFlags(ndr, "reply_result", *r->out.reply_result);
out 25339 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 25359 librpc/gen_ndr/ndr_spoolss.c if (r->out.info == NULL) {
out 25362 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 25363 librpc/gen_ndr/ndr_spoolss.c if (*r->out.info) {
out 25364 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_NotifyInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 25366 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 25380 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 25402 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 25403 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.info);
out 25407 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.info);
out 25410 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 25413 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 25415 librpc/gen_ndr/ndr_spoolss.c *r->out.info = NULL;
out 25417 librpc/gen_ndr/ndr_spoolss.c if (*r->out.info) {
out 25419 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 25420 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_NotifyInfo(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
out 25424 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 25455 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 25457 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", *r->out.info);
out 25459 librpc/gen_ndr/ndr_spoolss.c if (*r->out.info) {
out 25460 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_NotifyInfo(ndr, "info", *r->out.info);
out 25464 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 25475 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 25485 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 25505 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 25535 librpc/gen_ndr/ndr_spoolss.c if (r->out.handle == NULL) {
out 25538 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 25539 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 25552 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 25595 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 25596 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.handle);
out 25600 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 25603 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 25604 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 25606 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 25643 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 25645 librpc/gen_ndr/ndr_spoolss.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 25647 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 25681 librpc/gen_ndr/ndr_spoolss.c if (r->out.handle == NULL) {
out 25684 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 25685 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 25700 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 25748 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 25749 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.handle);
out 25753 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 25756 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 25757 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 25759 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 25801 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 25803 librpc/gen_ndr/ndr_spoolss.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 25805 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 25816 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 25826 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 25846 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 25865 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, r->out.value_name, r->in.value_offered / 2, sizeof(uint16_t), CH_UTF16));
out 25866 librpc/gen_ndr/ndr_spoolss.c if (r->out.value_needed == NULL) {
out 25869 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.value_needed));
out 25870 librpc/gen_ndr/ndr_spoolss.c if (r->out.type == NULL) {
out 25873 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_winreg_Type(ndr, NDR_SCALARS, *r->out.type));
out 25877 librpc/gen_ndr/ndr_spoolss.c if (r->out.data == NULL) {
out 25881 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.data, r->in.data_offered));
out 25884 librpc/gen_ndr/ndr_spoolss.c if (r->out.data_needed == NULL) {
out 25887 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.data_needed));
out 25888 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 25900 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 25912 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.value_needed);
out 25913 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.value_needed);
out 25914 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.type);
out 25915 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.type);
out 25916 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.data, r->in.data_offered);
out 25917 librpc/gen_ndr/ndr_spoolss.c memset(r->out.data, 0, (r->in.data_offered) * sizeof(*r->out.data));
out 25918 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.data_needed);
out 25919 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.data_needed);
out 25922 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.value_name));
out 25923 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &r->out.value_name, ndr_get_array_size(ndr, &r->out.value_name), sizeof(uint16_t), CH_UTF16));
out 25925 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.value_needed);
out 25928 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.value_needed, LIBNDR_FLAG_REF_ALLOC);
out 25929 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.value_needed));
out 25932 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.type);
out 25935 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.type, LIBNDR_FLAG_REF_ALLOC);
out 25936 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_winreg_Type(ndr, NDR_SCALARS, r->out.type));
out 25941 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.data));
out 25943 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.data, ndr_get_array_size(ndr, &r->out.data));
out 25945 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.data, ndr_get_array_size(ndr, &r->out.data)));
out 25949 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.data_needed);
out 25952 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.data_needed, LIBNDR_FLAG_REF_ALLOC);
out 25953 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.data_needed));
out 25955 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 25956 librpc/gen_ndr/ndr_spoolss.c if (r->out.value_name) {
out 25957 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.value_name, r->in.value_offered / 2));
out 25959 librpc/gen_ndr/ndr_spoolss.c if (r->out.data) {
out 25960 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.data, r->in.data_offered));
out 25988 librpc/gen_ndr/ndr_spoolss.c ndr_print_string(ndr, "value_name", r->out.value_name);
out 25989 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "value_needed", r->out.value_needed);
out 25991 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "value_needed", *r->out.value_needed);
out 25993 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "type", r->out.type);
out 25995 librpc/gen_ndr/ndr_spoolss.c ndr_print_winreg_Type(ndr, "type", *r->out.type);
out 25997 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "data", r->out.data);
out 25999 librpc/gen_ndr/ndr_spoolss.c ndr_print_array_uint8(ndr, "data", r->out.data, r->in.data_offered);
out 26001 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "data_needed", r->out.data_needed);
out 26003 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "data_needed", *r->out.data_needed);
out 26005 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 26024 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 26049 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 26074 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 26085 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 26095 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 26115 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 26126 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 26136 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 26156 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 26167 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 26177 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 26197 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 26227 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 26269 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 26301 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 26325 librpc/gen_ndr/ndr_spoolss.c if (r->out.type == NULL) {
out 26328 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_winreg_Type(ndr, NDR_SCALARS, *r->out.type));
out 26329 librpc/gen_ndr/ndr_spoolss.c if (r->out.buffer == NULL) {
out 26333 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.buffer, r->in.offered));
out 26334 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 26337 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 26338 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 26349 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 26373 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.type);
out 26374 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.type);
out 26375 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, r->in.offered);
out 26376 librpc/gen_ndr/ndr_spoolss.c memset(r->out.buffer, 0, (r->in.offered) * sizeof(*r->out.buffer));
out 26377 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 26378 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 26382 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.type);
out 26385 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.type, LIBNDR_FLAG_REF_ALLOC);
out 26386 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_winreg_Type(ndr, NDR_SCALARS, r->out.type));
out 26388 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.buffer));
out 26390 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer));
out 26392 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer)));
out 26394 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 26397 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 26398 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 26400 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 26401 librpc/gen_ndr/ndr_spoolss.c if (r->out.buffer) {
out 26402 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.buffer, r->in.offered));
out 26430 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "type", r->out.type);
out 26432 librpc/gen_ndr/ndr_spoolss.c ndr_print_winreg_Type(ndr, "type", *r->out.type);
out 26434 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 26436 librpc/gen_ndr/ndr_spoolss.c ndr_print_array_uint8(ndr, "buffer", r->out.buffer, r->in.offered);
out 26438 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 26440 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 26442 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 26462 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_DATA_BLOB(ndr, NDR_SCALARS, r->out.info));
out 26463 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 26466 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 26467 librpc/gen_ndr/ndr_spoolss.c if (r->out.count == NULL) {
out 26470 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.count));
out 26471 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 26482 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 26499 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 26500 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 26501 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 26502 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.count);
out 26505 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_DATA_BLOB(ndr, NDR_SCALARS, &r->out.info));
out 26507 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 26510 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 26511 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 26514 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.count);
out 26517 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.count, LIBNDR_FLAG_REF_ALLOC);
out 26518 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.count));
out 26520 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 26533 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrinterEnumValues(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 26536 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_spoolss_PrinterEnumValues(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 26547 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 26552 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.info, r->in.count);
out 26554 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
out 26556 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PrinterEnumValues(ndr, NDR_SCALARS, &r->out.info[cntr_info_0]));
out 26559 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_spoolss_PrinterEnumValues(ndr, NDR_BUFFERS, &r->out.info[cntr_info_0]));
out 26588 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "count", r->out.count);
out 26590 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "count", *r->out.count);
out 26592 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", r->out.info);
out 26594 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "info", *r->out.info);
out 26596 librpc/gen_ndr/ndr_spoolss.c if (*r->out.info) {
out 26597 librpc/gen_ndr/ndr_spoolss.c ndr->print(ndr, "%s: ARRAY(%d)", "info", (int)*r->out.count);
out 26599 librpc/gen_ndr/ndr_spoolss.c for (cntr_info_2=0;cntr_info_2<*r->out.count;cntr_info_2++) {
out 26602 librpc/gen_ndr/ndr_spoolss.c ndr_print_spoolss_PrinterEnumValues(ndr, "info", &(*r->out.info)[cntr_info_2]);
out 26610 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 26612 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 26614 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 26637 librpc/gen_ndr/ndr_spoolss.c if (r->out.key_buffer == NULL) {
out 26640 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.key_buffer));
out 26641 librpc/gen_ndr/ndr_spoolss.c if (*r->out.key_buffer) {
out 26645 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_string_array(_ndr_key_buffer, NDR_SCALARS, *r->out.key_buffer));
out 26651 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 26654 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 26655 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 26668 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 26685 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.key_buffer);
out 26686 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.key_buffer);
out 26687 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 26688 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 26695 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.key_buffer);
out 26698 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.key_buffer, LIBNDR_FLAG_REF_ALLOC);
out 26701 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, *r->out.key_buffer);
out 26703 librpc/gen_ndr/ndr_spoolss.c *r->out.key_buffer = NULL;
out 26705 librpc/gen_ndr/ndr_spoolss.c if (*r->out.key_buffer) {
out 26707 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.key_buffer, 0);
out 26711 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_string_array(_ndr_key_buffer, NDR_SCALARS, r->out.key_buffer));
out 26720 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 26723 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 26724 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 26726 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 26752 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "key_buffer", r->out.key_buffer);
out 26754 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "key_buffer", *r->out.key_buffer);
out 26756 librpc/gen_ndr/ndr_spoolss.c if (*r->out.key_buffer) {
out 26757 librpc/gen_ndr/ndr_spoolss.c ndr_print_string_array(ndr, "key_buffer", *r->out.key_buffer);
out 26761 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 26763 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 26765 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 26788 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 26820 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 26846 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 26865 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 26890 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 26915 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 26926 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 26936 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 26956 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 26984 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 27030 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 27060 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 27071 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 27081 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 27101 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 27112 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 27122 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 27142 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 27153 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 27163 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 27183 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 27209 librpc/gen_ndr/ndr_spoolss.c if (r->out.out_data == NULL) {
out 27213 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.out_data, r->in.out_data_size));
out 27214 librpc/gen_ndr/ndr_spoolss.c if (r->out.needed == NULL) {
out 27217 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 27218 librpc/gen_ndr/ndr_spoolss.c if (r->out.status_code == NULL) {
out 27221 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.status_code));
out 27222 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 27233 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCT(r->out);
out 27259 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.out_data, r->in.out_data_size);
out 27260 librpc/gen_ndr/ndr_spoolss.c memset(r->out.out_data, 0, (r->in.out_data_size) * sizeof(*r->out.out_data));
out 27261 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 27262 librpc/gen_ndr/ndr_spoolss.c ZERO_STRUCTP(r->out.needed);
out 27263 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.status_code);
out 27264 librpc/gen_ndr/ndr_spoolss.c *r->out.status_code = *r->in.status_code;
out 27267 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.out_data));
out 27269 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC_N(ndr, r->out.out_data, ndr_get_array_size(ndr, &r->out.out_data));
out 27271 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.out_data, ndr_get_array_size(ndr, &r->out.out_data)));
out 27273 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 27276 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 27277 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 27280 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_ALLOC(ndr, r->out.status_code);
out 27283 librpc/gen_ndr/ndr_spoolss.c NDR_PULL_SET_MEM_CTX(ndr, r->out.status_code, LIBNDR_FLAG_REF_ALLOC);
out 27284 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.status_code));
out 27286 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 27287 librpc/gen_ndr/ndr_spoolss.c if (r->out.out_data) {
out 27288 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.out_data, r->in.out_data_size));
out 27321 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "out_data", r->out.out_data);
out 27323 librpc/gen_ndr/ndr_spoolss.c ndr_print_array_uint8(ndr, "out_data", r->out.out_data, r->in.out_data_size);
out 27325 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 27327 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 27329 librpc/gen_ndr/ndr_spoolss.c ndr_print_ptr(ndr, "status_code", r->out.status_code);
out 27331 librpc/gen_ndr/ndr_spoolss.c ndr_print_uint32(ndr, "status_code", *r->out.status_code);
out 27333 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 27356 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 27395 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 27426 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 27437 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 27447 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 27467 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 27478 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 27488 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 27508 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 27519 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 27529 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 27549 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 27560 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 27570 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 27590 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 27601 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 27611 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 27631 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 27642 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 27652 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 27672 librpc/gen_ndr/ndr_spoolss.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13198 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info_ctr == NULL) {
out 13201 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetCharDevInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 13202 librpc/gen_ndr/ndr_srvsvc.c if (r->out.totalentries == NULL) {
out 13205 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.totalentries));
out 13206 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 13207 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 13208 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 13210 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13224 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 13264 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 13265 librpc/gen_ndr/ndr_srvsvc.c *r->out.info_ctr = *r->in.info_ctr;
out 13266 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 13267 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.totalentries);
out 13271 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 13274 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info_ctr, LIBNDR_FLAG_REF_ALLOC);
out 13275 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetCharDevInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 13278 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 13281 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.totalentries, LIBNDR_FLAG_REF_ALLOC);
out 13282 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.totalentries));
out 13286 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 13288 librpc/gen_ndr/ndr_srvsvc.c r->out.resume_handle = NULL;
out 13290 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 13292 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 13293 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 13296 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13333 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info_ctr", r->out.info_ctr);
out 13335 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetCharDevInfoCtr(ndr, "info_ctr", r->out.info_ctr);
out 13337 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "totalentries", r->out.totalentries);
out 13339 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "totalentries", *r->out.totalentries);
out 13341 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 13343 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 13344 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 13347 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13370 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info == NULL) {
out 13373 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 13374 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetCharDevInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 13375 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13386 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 13414 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 13415 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.info);
out 13419 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 13422 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 13423 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 13424 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetCharDevInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 13426 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13454 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 13456 librpc/gen_ndr/ndr_srvsvc.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 13457 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetCharDevInfo(ndr, "info", r->out.info);
out 13459 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13482 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13520 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13548 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13582 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info_ctr == NULL) {
out 13585 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetCharDevQInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 13586 librpc/gen_ndr/ndr_srvsvc.c if (r->out.totalentries == NULL) {
out 13589 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.totalentries));
out 13590 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 13591 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 13592 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 13594 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13610 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 13668 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 13669 librpc/gen_ndr/ndr_srvsvc.c *r->out.info_ctr = *r->in.info_ctr;
out 13670 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 13671 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.totalentries);
out 13675 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 13678 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info_ctr, LIBNDR_FLAG_REF_ALLOC);
out 13679 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetCharDevQInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 13682 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 13685 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.totalentries, LIBNDR_FLAG_REF_ALLOC);
out 13686 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.totalentries));
out 13690 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 13692 librpc/gen_ndr/ndr_srvsvc.c r->out.resume_handle = NULL;
out 13694 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 13696 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 13697 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 13700 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13743 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info_ctr", r->out.info_ctr);
out 13745 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetCharDevQInfoCtr(ndr, "info_ctr", r->out.info_ctr);
out 13747 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "totalentries", r->out.totalentries);
out 13749 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "totalentries", *r->out.totalentries);
out 13751 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 13753 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 13754 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 13757 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13784 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info == NULL) {
out 13787 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 13788 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetCharDevQInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 13789 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13800 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 13835 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 13836 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.info);
out 13840 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 13843 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 13844 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 13845 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetCharDevQInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 13847 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 13876 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 13878 librpc/gen_ndr/ndr_srvsvc.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 13879 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetCharDevQInfo(ndr, "info", r->out.info);
out 13881 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 13910 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.parm_error));
out 13911 librpc/gen_ndr/ndr_srvsvc.c if (r->out.parm_error) {
out 13912 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.parm_error));
out 13914 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 13926 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 13972 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.parm_error);
out 13974 librpc/gen_ndr/ndr_srvsvc.c r->out.parm_error = NULL;
out 13976 librpc/gen_ndr/ndr_srvsvc.c if (r->out.parm_error) {
out 13978 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.parm_error, 0);
out 13979 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.parm_error));
out 13982 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14018 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "parm_error", r->out.parm_error);
out 14020 librpc/gen_ndr/ndr_srvsvc.c if (r->out.parm_error) {
out 14021 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "parm_error", *r->out.parm_error);
out 14024 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14046 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14083 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14110 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14136 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14180 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14208 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14242 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info_ctr == NULL) {
out 14245 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetConnInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 14246 librpc/gen_ndr/ndr_srvsvc.c if (r->out.totalentries == NULL) {
out 14249 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.totalentries));
out 14250 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 14251 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 14252 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 14254 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14270 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 14328 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 14329 librpc/gen_ndr/ndr_srvsvc.c *r->out.info_ctr = *r->in.info_ctr;
out 14330 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 14331 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.totalentries);
out 14335 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 14338 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info_ctr, LIBNDR_FLAG_REF_ALLOC);
out 14339 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetConnInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 14342 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 14345 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.totalentries, LIBNDR_FLAG_REF_ALLOC);
out 14346 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.totalentries));
out 14350 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 14352 librpc/gen_ndr/ndr_srvsvc.c r->out.resume_handle = NULL;
out 14354 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 14356 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 14357 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 14360 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14403 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info_ctr", r->out.info_ctr);
out 14405 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetConnInfoCtr(ndr, "info_ctr", r->out.info_ctr);
out 14407 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "totalentries", r->out.totalentries);
out 14409 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "totalentries", *r->out.totalentries);
out 14411 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 14413 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 14414 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 14417 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14458 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info_ctr == NULL) {
out 14461 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetFileInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 14462 librpc/gen_ndr/ndr_srvsvc.c if (r->out.totalentries == NULL) {
out 14465 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.totalentries));
out 14466 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 14467 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 14468 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 14470 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14488 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 14564 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 14565 librpc/gen_ndr/ndr_srvsvc.c *r->out.info_ctr = *r->in.info_ctr;
out 14566 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 14567 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.totalentries);
out 14571 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 14574 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info_ctr, LIBNDR_FLAG_REF_ALLOC);
out 14575 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetFileInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 14578 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 14581 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.totalentries, LIBNDR_FLAG_REF_ALLOC);
out 14582 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.totalentries));
out 14586 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 14588 librpc/gen_ndr/ndr_srvsvc.c r->out.resume_handle = NULL;
out 14590 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 14592 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 14593 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 14596 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14645 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info_ctr", r->out.info_ctr);
out 14647 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetFileInfoCtr(ndr, "info_ctr", r->out.info_ctr);
out 14649 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "totalentries", r->out.totalentries);
out 14651 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "totalentries", *r->out.totalentries);
out 14653 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 14655 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 14656 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 14659 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14679 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info == NULL) {
out 14682 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 14683 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetFileInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 14684 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14695 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 14717 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 14718 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.info);
out 14722 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 14725 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 14726 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 14727 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetFileInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 14729 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14757 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 14759 librpc/gen_ndr/ndr_srvsvc.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 14760 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetFileInfo(ndr, "info", r->out.info);
out 14762 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14781 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14812 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 14839 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 14880 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info_ctr == NULL) {
out 14883 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetSessInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 14884 librpc/gen_ndr/ndr_srvsvc.c if (r->out.totalentries == NULL) {
out 14887 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.totalentries));
out 14888 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 14889 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 14890 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 14892 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 14910 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 14986 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 14987 librpc/gen_ndr/ndr_srvsvc.c *r->out.info_ctr = *r->in.info_ctr;
out 14988 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 14989 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.totalentries);
out 14993 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 14996 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info_ctr, LIBNDR_FLAG_REF_ALLOC);
out 14997 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetSessInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 15000 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 15003 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.totalentries, LIBNDR_FLAG_REF_ALLOC);
out 15004 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.totalentries));
out 15008 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 15010 librpc/gen_ndr/ndr_srvsvc.c r->out.resume_handle = NULL;
out 15012 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 15014 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 15015 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 15018 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 15067 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info_ctr", r->out.info_ctr);
out 15069 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetSessInfoCtr(ndr, "info_ctr", r->out.info_ctr);
out 15071 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "totalentries", r->out.totalentries);
out 15073 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "totalentries", *r->out.totalentries);
out 15075 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 15077 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 15078 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 15081 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 15113 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 15183 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 15221 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 15249 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.parm_error));
out 15250 librpc/gen_ndr/ndr_srvsvc.c if (r->out.parm_error) {
out 15251 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.parm_error));
out 15253 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 15266 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 15311 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.parm_error);
out 15313 librpc/gen_ndr/ndr_srvsvc.c r->out.parm_error = NULL;
out 15315 librpc/gen_ndr/ndr_srvsvc.c if (r->out.parm_error) {
out 15317 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.parm_error, 0);
out 15318 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.parm_error));
out 15321 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 15359 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "parm_error", r->out.parm_error);
out 15361 librpc/gen_ndr/ndr_srvsvc.c if (r->out.parm_error) {
out 15362 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "parm_error", *r->out.parm_error);
out 15365 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 15392 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info_ctr == NULL) {
out 15395 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetShareInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 15396 librpc/gen_ndr/ndr_srvsvc.c if (r->out.totalentries == NULL) {
out 15399 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.totalentries));
out 15400 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 15401 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 15402 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 15404 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 15418 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 15458 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 15459 librpc/gen_ndr/ndr_srvsvc.c *r->out.info_ctr = *r->in.info_ctr;
out 15460 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 15461 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.totalentries);
out 15465 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 15468 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info_ctr, LIBNDR_FLAG_REF_ALLOC);
out 15469 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetShareInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 15472 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 15475 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.totalentries, LIBNDR_FLAG_REF_ALLOC);
out 15476 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.totalentries));
out 15480 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 15482 librpc/gen_ndr/ndr_srvsvc.c r->out.resume_handle = NULL;
out 15484 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 15486 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 15487 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 15490 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 15527 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info_ctr", r->out.info_ctr);
out 15529 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetShareInfoCtr(ndr, "info_ctr", r->out.info_ctr);
out 15531 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "totalentries", r->out.totalentries);
out 15533 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "totalentries", *r->out.totalentries);
out 15535 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 15537 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 15538 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 15541 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 15564 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info == NULL) {
out 15567 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 15568 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetShareInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 15569 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 15580 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 15608 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 15609 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.info);
out 15613 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 15616 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 15617 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 15618 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetShareInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 15620 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 15648 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 15650 librpc/gen_ndr/ndr_srvsvc.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 15651 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetShareInfo(ndr, "info", r->out.info);
out 15653 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 15685 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.parm_error));
out 15686 librpc/gen_ndr/ndr_srvsvc.c if (r->out.parm_error) {
out 15687 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.parm_error));
out 15689 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 15702 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 15754 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.parm_error);
out 15756 librpc/gen_ndr/ndr_srvsvc.c r->out.parm_error = NULL;
out 15758 librpc/gen_ndr/ndr_srvsvc.c if (r->out.parm_error) {
out 15760 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.parm_error, 0);
out 15761 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.parm_error));
out 15764 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 15803 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "parm_error", r->out.parm_error);
out 15805 librpc/gen_ndr/ndr_srvsvc.c if (r->out.parm_error) {
out 15806 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "parm_error", *r->out.parm_error);
out 15809 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 15832 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 15870 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 15898 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 15921 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 15959 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 15987 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 16009 librpc/gen_ndr/ndr_srvsvc.c if (r->out.type == NULL) {
out 16012 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_ShareType(ndr, NDR_SCALARS, *r->out.type));
out 16013 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 16024 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 16051 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.type);
out 16052 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.type);
out 16056 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.type);
out 16059 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.type, LIBNDR_FLAG_REF_ALLOC);
out 16060 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_ShareType(ndr, NDR_SCALARS, r->out.type));
out 16062 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 16089 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "type", r->out.type);
out 16091 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_ShareType(ndr, "type", *r->out.type);
out 16093 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 16112 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info == NULL) {
out 16115 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 16116 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetSrvInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 16117 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 16128 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 16149 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 16150 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.info);
out 16154 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 16157 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 16158 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 16159 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetSrvInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 16161 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 16188 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 16190 librpc/gen_ndr/ndr_srvsvc.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 16191 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetSrvInfo(ndr, "info", r->out.info);
out 16193 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 16221 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.parm_error));
out 16222 librpc/gen_ndr/ndr_srvsvc.c if (r->out.parm_error) {
out 16223 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.parm_error));
out 16225 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 16238 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 16283 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.parm_error);
out 16285 librpc/gen_ndr/ndr_srvsvc.c r->out.parm_error = NULL;
out 16287 librpc/gen_ndr/ndr_srvsvc.c if (r->out.parm_error) {
out 16289 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.parm_error, 0);
out 16290 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.parm_error));
out 16293 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 16331 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "parm_error", r->out.parm_error);
out 16333 librpc/gen_ndr/ndr_srvsvc.c if (r->out.parm_error) {
out 16334 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "parm_error", *r->out.parm_error);
out 16337 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 16365 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info == NULL) {
out 16368 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetDiskInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 16369 librpc/gen_ndr/ndr_srvsvc.c if (r->out.totalentries == NULL) {
out 16372 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.totalentries));
out 16373 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 16374 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 16375 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 16377 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 16391 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 16432 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 16433 librpc/gen_ndr/ndr_srvsvc.c *r->out.info = *r->in.info;
out 16434 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 16435 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.totalentries);
out 16439 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 16442 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 16443 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetDiskInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 16446 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 16449 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.totalentries, LIBNDR_FLAG_REF_ALLOC);
out 16450 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.totalentries));
out 16454 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 16456 librpc/gen_ndr/ndr_srvsvc.c r->out.resume_handle = NULL;
out 16458 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 16460 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 16461 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 16464 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 16502 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 16504 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetDiskInfo(ndr, "info", r->out.info);
out 16506 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "totalentries", r->out.totalentries);
out 16508 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "totalentries", *r->out.totalentries);
out 16510 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 16512 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 16513 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 16516 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 16543 librpc/gen_ndr/ndr_srvsvc.c if (r->out.stats == NULL) {
out 16546 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.stats));
out 16547 librpc/gen_ndr/ndr_srvsvc.c if (*r->out.stats) {
out 16548 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_Statistics(ndr, NDR_SCALARS, *r->out.stats));
out 16550 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 16565 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 16605 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.stats);
out 16606 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.stats);
out 16610 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.stats);
out 16613 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.stats, LIBNDR_FLAG_REF_ALLOC);
out 16616 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, *r->out.stats);
out 16618 librpc/gen_ndr/ndr_srvsvc.c *r->out.stats = NULL;
out 16620 librpc/gen_ndr/ndr_srvsvc.c if (*r->out.stats) {
out 16622 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.stats, 0);
out 16623 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_Statistics(ndr, NDR_SCALARS, *r->out.stats));
out 16627 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 16661 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "stats", r->out.stats);
out 16663 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "stats", *r->out.stats);
out 16665 librpc/gen_ndr/ndr_srvsvc.c if (*r->out.stats) {
out 16666 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_Statistics(ndr, "stats", *r->out.stats);
out 16670 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 16691 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 16724 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 16753 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 16780 librpc/gen_ndr/ndr_srvsvc.c if (r->out.transports == NULL) {
out 16783 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetTransportInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.transports));
out 16784 librpc/gen_ndr/ndr_srvsvc.c if (r->out.totalentries == NULL) {
out 16787 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.totalentries));
out 16788 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 16789 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 16790 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 16792 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 16806 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 16846 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.transports);
out 16847 librpc/gen_ndr/ndr_srvsvc.c *r->out.transports = *r->in.transports;
out 16848 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 16849 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.totalentries);
out 16853 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.transports);
out 16856 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.transports, LIBNDR_FLAG_REF_ALLOC);
out 16857 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetTransportInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.transports));
out 16860 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 16863 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.totalentries, LIBNDR_FLAG_REF_ALLOC);
out 16864 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.totalentries));
out 16868 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 16870 librpc/gen_ndr/ndr_srvsvc.c r->out.resume_handle = NULL;
out 16872 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 16874 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 16875 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 16878 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 16915 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "transports", r->out.transports);
out 16917 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetTransportInfoCtr(ndr, "transports", r->out.transports);
out 16919 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "totalentries", r->out.totalentries);
out 16921 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "totalentries", *r->out.totalentries);
out 16923 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 16925 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 16926 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 16929 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 16952 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 16991 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 17022 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 17040 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info == NULL) {
out 17043 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 17044 librpc/gen_ndr/ndr_srvsvc.c if (*r->out.info) {
out 17045 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetRemoteTODInfo(ndr, NDR_SCALARS, *r->out.info));
out 17047 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 17060 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 17080 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 17081 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.info);
out 17085 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 17088 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 17091 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 17093 librpc/gen_ndr/ndr_srvsvc.c *r->out.info = NULL;
out 17095 librpc/gen_ndr/ndr_srvsvc.c if (*r->out.info) {
out 17097 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 17098 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetRemoteTODInfo(ndr, NDR_SCALARS, *r->out.info));
out 17102 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 17128 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 17130 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info", *r->out.info);
out 17132 librpc/gen_ndr/ndr_srvsvc.c if (*r->out.info) {
out 17133 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetRemoteTODInfo(ndr, "info", *r->out.info);
out 17137 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 17164 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 17216 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 17250 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 17273 librpc/gen_ndr/ndr_srvsvc.c if (r->out.pathtype == NULL) {
out 17276 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.pathtype));
out 17277 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 17288 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 17316 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.pathtype);
out 17317 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.pathtype);
out 17321 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.pathtype);
out 17324 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.pathtype, LIBNDR_FLAG_REF_ALLOC);
out 17325 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.pathtype));
out 17327 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 17355 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "pathtype", r->out.pathtype);
out 17357 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "pathtype", *r->out.pathtype);
out 17359 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 17392 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.can_path, r->in.maxbuf));
out 17393 librpc/gen_ndr/ndr_srvsvc.c if (r->out.pathtype == NULL) {
out 17396 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.pathtype));
out 17397 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 17408 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 17451 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.pathtype);
out 17452 librpc/gen_ndr/ndr_srvsvc.c *r->out.pathtype = *r->in.pathtype;
out 17455 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.can_path));
out 17456 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC_N(ndr, r->out.can_path, ndr_get_array_size(ndr, &r->out.can_path));
out 17457 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.can_path, ndr_get_array_size(ndr, &r->out.can_path)));
out 17459 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.pathtype);
out 17462 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.pathtype, LIBNDR_FLAG_REF_ALLOC);
out 17463 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.pathtype));
out 17465 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 17466 librpc/gen_ndr/ndr_srvsvc.c if (r->out.can_path) {
out 17467 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.can_path, r->in.maxbuf));
out 17502 librpc/gen_ndr/ndr_srvsvc.c ndr_print_array_uint8(ndr, "can_path", r->out.can_path, r->in.maxbuf);
out 17503 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "pathtype", r->out.pathtype);
out 17505 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "pathtype", *r->out.pathtype);
out 17507 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 17535 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 17581 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 17611 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 17635 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 17674 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 17703 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 17714 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 17724 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 17744 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 17772 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 17818 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 17848 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 17875 librpc/gen_ndr/ndr_srvsvc.c if (r->out.info_ctr == NULL) {
out 17878 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_srvsvc_NetShareInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 17879 librpc/gen_ndr/ndr_srvsvc.c if (r->out.totalentries == NULL) {
out 17882 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.totalentries));
out 17883 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 17884 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 17885 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 17887 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 17901 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 17941 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 17942 librpc/gen_ndr/ndr_srvsvc.c *r->out.info_ctr = *r->in.info_ctr;
out 17943 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 17944 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.totalentries);
out 17948 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.info_ctr);
out 17951 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info_ctr, LIBNDR_FLAG_REF_ALLOC);
out 17952 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_srvsvc_NetShareInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info_ctr));
out 17955 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.totalentries);
out 17958 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.totalentries, LIBNDR_FLAG_REF_ALLOC);
out 17959 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.totalentries));
out 17963 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 17965 librpc/gen_ndr/ndr_srvsvc.c r->out.resume_handle = NULL;
out 17967 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 17969 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 17970 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 17973 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18010 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "info_ctr", r->out.info_ctr);
out 18012 librpc/gen_ndr/ndr_srvsvc.c ndr_print_srvsvc_NetShareInfoCtr(ndr, "info_ctr", r->out.info_ctr);
out 18014 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "totalentries", r->out.totalentries);
out 18016 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "totalentries", *r->out.totalentries);
out 18018 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 18020 librpc/gen_ndr/ndr_srvsvc.c if (r->out.resume_handle) {
out 18021 librpc/gen_ndr/ndr_srvsvc.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 18024 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 18047 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.hnd));
out 18048 librpc/gen_ndr/ndr_srvsvc.c if (r->out.hnd) {
out 18049 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.hnd));
out 18051 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18063 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 18095 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.hnd);
out 18097 librpc/gen_ndr/ndr_srvsvc.c r->out.hnd = NULL;
out 18099 librpc/gen_ndr/ndr_srvsvc.c if (r->out.hnd) {
out 18101 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.hnd, 0);
out 18102 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.hnd));
out 18105 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18133 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "hnd", r->out.hnd);
out 18135 librpc/gen_ndr/ndr_srvsvc.c if (r->out.hnd) {
out 18136 librpc/gen_ndr/ndr_srvsvc.c ndr_print_policy_handle(ndr, "hnd", r->out.hnd);
out 18139 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 18154 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.hnd));
out 18155 librpc/gen_ndr/ndr_srvsvc.c if (r->out.hnd) {
out 18156 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.hnd));
out 18158 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18168 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 18186 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.hnd);
out 18188 librpc/gen_ndr/ndr_srvsvc.c r->out.hnd = NULL;
out 18190 librpc/gen_ndr/ndr_srvsvc.c if (r->out.hnd) {
out 18192 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.hnd, 0);
out 18193 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.hnd));
out 18196 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18222 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "hnd", r->out.hnd);
out 18224 librpc/gen_ndr/ndr_srvsvc.c if (r->out.hnd) {
out 18225 librpc/gen_ndr/ndr_srvsvc.c ndr_print_policy_handle(ndr, "hnd", r->out.hnd);
out 18228 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 18258 librpc/gen_ndr/ndr_srvsvc.c if (r->out.sd_buf == NULL) {
out 18261 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.sd_buf));
out 18262 librpc/gen_ndr/ndr_srvsvc.c if (*r->out.sd_buf) {
out 18263 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_sec_desc_buf(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sd_buf));
out 18265 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18280 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCT(r->out);
out 18326 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.sd_buf);
out 18327 librpc/gen_ndr/ndr_srvsvc.c ZERO_STRUCTP(r->out.sd_buf);
out 18331 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, r->out.sd_buf);
out 18334 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sd_buf, LIBNDR_FLAG_REF_ALLOC);
out 18337 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_ALLOC(ndr, *r->out.sd_buf);
out 18339 librpc/gen_ndr/ndr_srvsvc.c *r->out.sd_buf = NULL;
out 18341 librpc/gen_ndr/ndr_srvsvc.c if (*r->out.sd_buf) {
out 18343 librpc/gen_ndr/ndr_srvsvc.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.sd_buf, 0);
out 18344 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_sec_desc_buf(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.sd_buf));
out 18348 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18382 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "sd_buf", r->out.sd_buf);
out 18384 librpc/gen_ndr/ndr_srvsvc.c ndr_print_ptr(ndr, "sd_buf", *r->out.sd_buf);
out 18386 librpc/gen_ndr/ndr_srvsvc.c if (*r->out.sd_buf) {
out 18387 librpc/gen_ndr/ndr_srvsvc.c ndr_print_sec_desc_buf(ndr, "sd_buf", *r->out.sd_buf);
out 18391 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 18425 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18491 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18529 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 18550 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18583 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18612 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 18647 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18720 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18761 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 18772 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18782 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18802 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 18813 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18823 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18843 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 18854 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18864 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18884 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 18895 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18905 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18925 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 18936 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18946 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 18966 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 18977 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 18987 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19007 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19018 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19028 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19048 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19059 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19069 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19089 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19100 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19110 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19130 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19141 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19151 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19171 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 19182 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 19192 librpc/gen_ndr/ndr_srvsvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 19212 librpc/gen_ndr/ndr_srvsvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1367 librpc/gen_ndr/ndr_svcctl.c if (r->out.handle == NULL) {
out 1370 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 1371 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1380 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 1389 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 1390 librpc/gen_ndr/ndr_svcctl.c *r->out.handle = *r->in.handle;
out 1394 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 1397 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 1398 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 1400 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1424 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 1426 librpc/gen_ndr/ndr_svcctl.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 1428 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1444 librpc/gen_ndr/ndr_svcctl.c if (r->out.service_status == NULL) {
out 1447 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_SERVICE_STATUS(ndr, NDR_SCALARS, r->out.service_status));
out 1448 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1458 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 1468 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.service_status);
out 1469 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.service_status);
out 1473 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.service_status);
out 1476 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.service_status, LIBNDR_FLAG_REF_ALLOC);
out 1477 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_SERVICE_STATUS(ndr, NDR_SCALARS, r->out.service_status));
out 1479 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1504 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "service_status", r->out.service_status);
out 1506 librpc/gen_ndr/ndr_svcctl.c ndr_print_SERVICE_STATUS(ndr, "service_status", r->out.service_status);
out 1508 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1523 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1541 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1565 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1580 librpc/gen_ndr/ndr_svcctl.c if (r->out.lock == NULL) {
out 1583 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.lock));
out 1584 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1594 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 1603 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.lock);
out 1604 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.lock);
out 1608 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.lock);
out 1611 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.lock, LIBNDR_FLAG_REF_ALLOC);
out 1612 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.lock));
out 1614 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1638 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "lock", r->out.lock);
out 1640 librpc/gen_ndr/ndr_svcctl.c ndr_print_policy_handle(ndr, "lock", r->out.lock);
out 1642 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1659 librpc/gen_ndr/ndr_svcctl.c if (r->out.buffer == NULL) {
out 1663 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.buffer, r->in.offered));
out 1664 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 1667 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 1668 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1678 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 1692 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, r->in.offered);
out 1693 librpc/gen_ndr/ndr_svcctl.c memset(r->out.buffer, 0, (r->in.offered) * sizeof(*r->out.buffer));
out 1694 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 1695 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 1698 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.buffer));
out 1700 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer));
out 1702 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer)));
out 1704 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 1707 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 1708 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 1709 librpc/gen_ndr/ndr_svcctl.c if (*r->out.needed > 0x40000) {
out 1713 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1714 librpc/gen_ndr/ndr_svcctl.c if (r->out.buffer) {
out 1715 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.buffer, r->in.offered));
out 1742 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 1744 librpc/gen_ndr/ndr_svcctl.c ndr_print_array_uint8(ndr, "buffer", r->out.buffer, r->in.offered);
out 1746 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 1748 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 1750 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1772 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1800 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1830 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1845 librpc/gen_ndr/ndr_svcctl.c if (r->out.service_status == NULL) {
out 1848 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_SERVICE_STATUS(ndr, NDR_SCALARS, r->out.service_status));
out 1849 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1859 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 1868 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.service_status);
out 1869 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.service_status);
out 1873 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.service_status);
out 1876 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.service_status, LIBNDR_FLAG_REF_ALLOC);
out 1877 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_SERVICE_STATUS(ndr, NDR_SCALARS, r->out.service_status));
out 1879 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1903 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "service_status", r->out.service_status);
out 1905 librpc/gen_ndr/ndr_svcctl.c ndr_print_SERVICE_STATUS(ndr, "service_status", r->out.service_status);
out 1907 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1918 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1928 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1948 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1963 librpc/gen_ndr/ndr_svcctl.c if (r->out.lock == NULL) {
out 1966 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.lock));
out 1967 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1976 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 1985 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.lock);
out 1986 librpc/gen_ndr/ndr_svcctl.c *r->out.lock = *r->in.lock;
out 1990 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.lock);
out 1993 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.lock, LIBNDR_FLAG_REF_ALLOC);
out 1994 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.lock));
out 1996 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2020 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "lock", r->out.lock);
out 2022 librpc/gen_ndr/ndr_svcctl.c ndr_print_policy_handle(ndr, "lock", r->out.lock);
out 2024 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2035 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2045 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2065 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2083 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2104 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2131 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2191 librpc/gen_ndr/ndr_svcctl.c if (r->out.tag_id == NULL) {
out 2194 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.tag_id));
out 2195 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2217 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 2337 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.tag_id);
out 2338 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.tag_id);
out 2342 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.tag_id);
out 2345 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.tag_id, LIBNDR_FLAG_REF_ALLOC);
out 2346 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.tag_id));
out 2348 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2411 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "tag_id", r->out.tag_id);
out 2413 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "tag_id", *r->out.tag_id);
out 2415 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2479 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.TagId));
out 2480 librpc/gen_ndr/ndr_svcctl.c if (r->out.TagId) {
out 2481 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.TagId));
out 2483 librpc/gen_ndr/ndr_svcctl.c if (r->out.handle == NULL) {
out 2486 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 2487 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2509 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 2632 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 2633 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.handle);
out 2644 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.TagId);
out 2646 librpc/gen_ndr/ndr_svcctl.c r->out.TagId = NULL;
out 2648 librpc/gen_ndr/ndr_svcctl.c if (r->out.TagId) {
out 2650 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.TagId, 0);
out 2651 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.TagId));
out 2655 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 2658 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 2659 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 2661 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2729 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "TagId", r->out.TagId);
out 2731 librpc/gen_ndr/ndr_svcctl.c if (r->out.TagId) {
out 2732 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "TagId", *r->out.TagId);
out 2735 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 2737 librpc/gen_ndr/ndr_svcctl.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 2739 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2756 librpc/gen_ndr/ndr_svcctl.c if (r->out.service_status == NULL) {
out 2760 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.service_status, r->in.offered));
out 2761 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 2764 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 2765 librpc/gen_ndr/ndr_svcctl.c if (r->out.services_returned == NULL) {
out 2768 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.services_returned));
out 2769 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2780 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 2794 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.service_status, r->in.offered);
out 2795 librpc/gen_ndr/ndr_svcctl.c memset(r->out.service_status, 0, (r->in.offered) * sizeof(*r->out.service_status));
out 2796 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 2797 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 2798 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.services_returned);
out 2799 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.services_returned);
out 2802 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.service_status));
out 2804 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.service_status, ndr_get_array_size(ndr, &r->out.service_status));
out 2806 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.service_status, ndr_get_array_size(ndr, &r->out.service_status)));
out 2808 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 2811 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 2812 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 2813 librpc/gen_ndr/ndr_svcctl.c if (*r->out.needed > 0x40000) {
out 2818 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.services_returned);
out 2821 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.services_returned, LIBNDR_FLAG_REF_ALLOC);
out 2822 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.services_returned));
out 2823 librpc/gen_ndr/ndr_svcctl.c if (*r->out.services_returned > 0x40000) {
out 2827 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2828 librpc/gen_ndr/ndr_svcctl.c if (r->out.service_status) {
out 2829 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.service_status, r->in.offered));
out 2856 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "service_status", r->out.service_status);
out 2858 librpc/gen_ndr/ndr_svcctl.c ndr_print_array_uint8(ndr, "service_status", r->out.service_status, r->in.offered);
out 2860 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 2862 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 2864 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "services_returned", r->out.services_returned);
out 2866 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "services_returned", *r->out.services_returned);
out 2868 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2890 librpc/gen_ndr/ndr_svcctl.c if (r->out.service == NULL) {
out 2894 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.service, r->in.offered));
out 2895 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 2898 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 2899 librpc/gen_ndr/ndr_svcctl.c if (r->out.services_returned == NULL) {
out 2902 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.services_returned));
out 2903 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 2904 librpc/gen_ndr/ndr_svcctl.c if (r->out.resume_handle) {
out 2905 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 2907 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2920 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 2947 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.service, r->in.offered);
out 2948 librpc/gen_ndr/ndr_svcctl.c memset(r->out.service, 0, (r->in.offered) * sizeof(*r->out.service));
out 2949 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 2950 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 2951 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.services_returned);
out 2952 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.services_returned);
out 2955 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.service));
out 2957 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.service, ndr_get_array_size(ndr, &r->out.service));
out 2959 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.service, ndr_get_array_size(ndr, &r->out.service)));
out 2961 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 2964 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 2965 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 2966 librpc/gen_ndr/ndr_svcctl.c if (*r->out.needed > 0x40000) {
out 2971 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.services_returned);
out 2974 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.services_returned, LIBNDR_FLAG_REF_ALLOC);
out 2975 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.services_returned));
out 2976 librpc/gen_ndr/ndr_svcctl.c if (*r->out.services_returned > 0x40000) {
out 2982 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 2984 librpc/gen_ndr/ndr_svcctl.c r->out.resume_handle = NULL;
out 2986 librpc/gen_ndr/ndr_svcctl.c if (r->out.resume_handle) {
out 2988 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 2989 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 2992 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2993 librpc/gen_ndr/ndr_svcctl.c if (r->out.service) {
out 2994 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.service, r->in.offered));
out 3028 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "service", r->out.service);
out 3030 librpc/gen_ndr/ndr_svcctl.c ndr_print_array_uint8(ndr, "service", r->out.service, r->in.offered);
out 3032 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 3034 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 3036 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "services_returned", r->out.services_returned);
out 3038 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "services_returned", *r->out.services_returned);
out 3040 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 3042 librpc/gen_ndr/ndr_svcctl.c if (r->out.resume_handle) {
out 3043 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 3046 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3072 librpc/gen_ndr/ndr_svcctl.c if (r->out.handle == NULL) {
out 3075 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 3076 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3089 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 3128 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 3129 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.handle);
out 3133 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 3136 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 3137 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 3139 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3172 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 3174 librpc/gen_ndr/ndr_svcctl.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 3176 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3196 librpc/gen_ndr/ndr_svcctl.c if (r->out.handle == NULL) {
out 3199 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 3200 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3210 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 3227 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 3228 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.handle);
out 3232 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 3235 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 3236 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 3238 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3264 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 3266 librpc/gen_ndr/ndr_svcctl.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 3268 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3284 librpc/gen_ndr/ndr_svcctl.c if (r->out.query == NULL) {
out 3287 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_QUERY_SERVICE_CONFIG(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.query));
out 3288 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 3291 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 3292 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3303 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 3316 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.query);
out 3317 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.query);
out 3318 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 3319 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 3323 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.query);
out 3326 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.query, LIBNDR_FLAG_REF_ALLOC);
out 3327 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_QUERY_SERVICE_CONFIG(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.query));
out 3330 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 3333 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 3334 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 3335 librpc/gen_ndr/ndr_svcctl.c if (*r->out.needed > 8192) {
out 3339 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3364 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "query", r->out.query);
out 3366 librpc/gen_ndr/ndr_svcctl.c ndr_print_QUERY_SERVICE_CONFIG(ndr, "query", r->out.query);
out 3368 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 3370 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 3372 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3388 librpc/gen_ndr/ndr_svcctl.c if (r->out.lock_status == NULL) {
out 3391 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_SERVICE_LOCK_STATUS(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.lock_status));
out 3392 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 3395 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 3396 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3407 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 3417 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.lock_status);
out 3418 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.lock_status);
out 3419 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 3420 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 3424 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.lock_status);
out 3427 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.lock_status, LIBNDR_FLAG_REF_ALLOC);
out 3428 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_SERVICE_LOCK_STATUS(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.lock_status));
out 3431 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 3434 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 3435 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 3437 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3462 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "lock_status", r->out.lock_status);
out 3464 librpc/gen_ndr/ndr_svcctl.c ndr_print_SERVICE_LOCK_STATUS(ndr, "lock_status", r->out.lock_status);
out 3466 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 3468 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 3470 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3497 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3548 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3589 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3615 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name == NULL) {
out 3618 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.display_name));
out 3619 librpc/gen_ndr/ndr_svcctl.c if (*r->out.display_name) {
out 3620 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.display_name, CH_UTF16)));
out 3622 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.display_name, CH_UTF16)));
out 3623 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.display_name, ndr_charset_length(*r->out.display_name, CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 3625 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.display_name_length));
out 3626 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name_length) {
out 3627 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.display_name_length));
out 3629 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3645 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 3684 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.display_name);
out 3685 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.display_name);
out 3689 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.display_name);
out 3692 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.display_name, LIBNDR_FLAG_REF_ALLOC);
out 3695 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, *r->out.display_name);
out 3697 librpc/gen_ndr/ndr_svcctl.c *r->out.display_name = NULL;
out 3699 librpc/gen_ndr/ndr_svcctl.c if (*r->out.display_name) {
out 3701 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.display_name, 0);
out 3702 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.display_name));
out 3703 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_length(ndr, r->out.display_name));
out 3704 librpc/gen_ndr/ndr_svcctl.c if (ndr_get_array_length(ndr, r->out.display_name) > ndr_get_array_size(ndr, r->out.display_name)) {
out 3705 librpc/gen_ndr/ndr_svcctl.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.display_name), ndr_get_array_length(ndr, r->out.display_name));
out 3707 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.display_name), sizeof(uint16_t)));
out 3708 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.display_name, ndr_get_array_length(ndr, r->out.display_name), sizeof(uint16_t), CH_UTF16));
out 3714 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.display_name_length);
out 3716 librpc/gen_ndr/ndr_svcctl.c r->out.display_name_length = NULL;
out 3718 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name_length) {
out 3720 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.display_name_length, 0);
out 3721 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.display_name_length));
out 3724 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3760 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "display_name", r->out.display_name);
out 3762 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "display_name", *r->out.display_name);
out 3764 librpc/gen_ndr/ndr_svcctl.c if (*r->out.display_name) {
out 3765 librpc/gen_ndr/ndr_svcctl.c ndr_print_string(ndr, "display_name", *r->out.display_name);
out 3769 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "display_name_length", r->out.display_name_length);
out 3771 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name_length) {
out 3772 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "display_name_length", *r->out.display_name_length);
out 3775 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3801 librpc/gen_ndr/ndr_svcctl.c if (r->out.key_name == NULL) {
out 3804 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.key_name));
out 3805 librpc/gen_ndr/ndr_svcctl.c if (*r->out.key_name) {
out 3806 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.key_name, CH_UTF16)));
out 3808 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.key_name, CH_UTF16)));
out 3809 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.key_name, ndr_charset_length(*r->out.key_name, CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 3811 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.display_name_length));
out 3812 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name_length) {
out 3813 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.display_name_length));
out 3815 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3831 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 3870 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.key_name);
out 3871 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.key_name);
out 3875 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.key_name);
out 3878 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.key_name, LIBNDR_FLAG_REF_ALLOC);
out 3881 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, *r->out.key_name);
out 3883 librpc/gen_ndr/ndr_svcctl.c *r->out.key_name = NULL;
out 3885 librpc/gen_ndr/ndr_svcctl.c if (*r->out.key_name) {
out 3887 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.key_name, 0);
out 3888 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.key_name));
out 3889 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_length(ndr, r->out.key_name));
out 3890 librpc/gen_ndr/ndr_svcctl.c if (ndr_get_array_length(ndr, r->out.key_name) > ndr_get_array_size(ndr, r->out.key_name)) {
out 3891 librpc/gen_ndr/ndr_svcctl.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.key_name), ndr_get_array_length(ndr, r->out.key_name));
out 3893 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.key_name), sizeof(uint16_t)));
out 3894 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.key_name, ndr_get_array_length(ndr, r->out.key_name), sizeof(uint16_t), CH_UTF16));
out 3900 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.display_name_length);
out 3902 librpc/gen_ndr/ndr_svcctl.c r->out.display_name_length = NULL;
out 3904 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name_length) {
out 3906 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.display_name_length, 0);
out 3907 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.display_name_length));
out 3910 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3946 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "key_name", r->out.key_name);
out 3948 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "key_name", *r->out.key_name);
out 3950 librpc/gen_ndr/ndr_svcctl.c if (*r->out.key_name) {
out 3951 librpc/gen_ndr/ndr_svcctl.c ndr_print_string(ndr, "key_name", *r->out.key_name);
out 3955 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "display_name_length", r->out.display_name_length);
out 3957 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name_length) {
out 3958 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "display_name_length", *r->out.display_name_length);
out 3961 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3979 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4000 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4027 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4087 librpc/gen_ndr/ndr_svcctl.c if (r->out.tag_id == NULL) {
out 4090 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.tag_id));
out 4091 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4113 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 4233 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.tag_id);
out 4234 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.tag_id);
out 4238 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.tag_id);
out 4241 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.tag_id, LIBNDR_FLAG_REF_ALLOC);
out 4242 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.tag_id));
out 4244 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4307 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "tag_id", r->out.tag_id);
out 4309 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "tag_id", *r->out.tag_id);
out 4311 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4379 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.TagId));
out 4380 librpc/gen_ndr/ndr_svcctl.c if (r->out.TagId) {
out 4381 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.TagId));
out 4383 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4408 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 4551 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.TagId);
out 4553 librpc/gen_ndr/ndr_svcctl.c r->out.TagId = NULL;
out 4555 librpc/gen_ndr/ndr_svcctl.c if (r->out.TagId) {
out 4557 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.TagId, 0);
out 4558 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.TagId));
out 4561 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4631 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "TagId", r->out.TagId);
out 4633 librpc/gen_ndr/ndr_svcctl.c if (r->out.TagId) {
out 4634 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "TagId", *r->out.TagId);
out 4637 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4654 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.service_status));
out 4655 librpc/gen_ndr/ndr_svcctl.c if (r->out.service_status) {
out 4656 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_ENUM_SERVICE_STATUSA(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.service_status));
out 4658 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 4661 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 4662 librpc/gen_ndr/ndr_svcctl.c if (r->out.services_returned == NULL) {
out 4665 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.services_returned));
out 4666 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4679 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 4690 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 4691 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 4692 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.services_returned);
out 4693 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.services_returned);
out 4698 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.service_status);
out 4700 librpc/gen_ndr/ndr_svcctl.c r->out.service_status = NULL;
out 4702 librpc/gen_ndr/ndr_svcctl.c if (r->out.service_status) {
out 4704 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.service_status, 0);
out 4705 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_ENUM_SERVICE_STATUSA(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.service_status));
out 4709 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 4712 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 4713 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 4716 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.services_returned);
out 4719 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.services_returned, LIBNDR_FLAG_REF_ALLOC);
out 4720 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.services_returned));
out 4722 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4748 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "service_status", r->out.service_status);
out 4750 librpc/gen_ndr/ndr_svcctl.c if (r->out.service_status) {
out 4751 librpc/gen_ndr/ndr_svcctl.c ndr_print_ENUM_SERVICE_STATUSA(ndr, "service_status", r->out.service_status);
out 4754 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 4756 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 4758 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "services_returned", r->out.services_returned);
out 4760 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "services_returned", *r->out.services_returned);
out 4762 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4785 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.service, r->in.offered));
out 4786 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 4789 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 4790 librpc/gen_ndr/ndr_svcctl.c if (r->out.services_returned == NULL) {
out 4793 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.services_returned));
out 4794 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 4795 librpc/gen_ndr/ndr_svcctl.c if (r->out.resume_handle) {
out 4796 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 4798 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4811 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 4835 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 4836 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 4837 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.services_returned);
out 4838 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.services_returned);
out 4841 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.service));
out 4842 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.service, ndr_get_array_size(ndr, &r->out.service));
out 4843 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.service, ndr_get_array_size(ndr, &r->out.service)));
out 4845 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 4848 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 4849 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 4852 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.services_returned);
out 4855 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.services_returned, LIBNDR_FLAG_REF_ALLOC);
out 4856 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.services_returned));
out 4860 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 4862 librpc/gen_ndr/ndr_svcctl.c r->out.resume_handle = NULL;
out 4864 librpc/gen_ndr/ndr_svcctl.c if (r->out.resume_handle) {
out 4866 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 4867 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 4870 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4871 librpc/gen_ndr/ndr_svcctl.c if (r->out.service) {
out 4872 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.service, r->in.offered));
out 4906 librpc/gen_ndr/ndr_svcctl.c ndr_print_array_uint8(ndr, "service", r->out.service, r->in.offered);
out 4907 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 4909 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 4911 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "services_returned", r->out.services_returned);
out 4913 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "services_returned", *r->out.services_returned);
out 4915 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 4917 librpc/gen_ndr/ndr_svcctl.c if (r->out.resume_handle) {
out 4918 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 4921 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4947 librpc/gen_ndr/ndr_svcctl.c if (r->out.handle == NULL) {
out 4950 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 4951 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4964 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 5003 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 5004 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.handle);
out 5008 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 5011 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 5012 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 5014 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5047 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 5049 librpc/gen_ndr/ndr_svcctl.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 5051 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5074 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5113 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5144 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5160 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.query, r->in.offered));
out 5161 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 5164 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 5165 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5175 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 5185 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 5186 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 5189 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.query, r->in.offered);
out 5190 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.query, r->in.offered));
out 5192 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 5195 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 5196 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 5198 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5223 librpc/gen_ndr/ndr_svcctl.c ndr_print_array_uint8(ndr, "query", r->out.query, r->in.offered);
out 5224 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 5226 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 5228 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5244 librpc/gen_ndr/ndr_svcctl.c if (r->out.lock_status == NULL) {
out 5247 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_SERVICE_LOCK_STATUS(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.lock_status));
out 5248 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 5251 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 5252 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5263 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 5273 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.lock_status);
out 5274 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.lock_status);
out 5275 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 5276 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 5280 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.lock_status);
out 5283 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.lock_status, LIBNDR_FLAG_REF_ALLOC);
out 5284 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_SERVICE_LOCK_STATUS(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.lock_status));
out 5287 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 5290 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 5291 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 5293 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5318 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "lock_status", r->out.lock_status);
out 5320 librpc/gen_ndr/ndr_svcctl.c ndr_print_SERVICE_LOCK_STATUS(ndr, "lock_status", r->out.lock_status);
out 5322 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 5324 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 5326 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5349 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5388 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5419 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5445 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name == NULL) {
out 5448 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.display_name));
out 5449 librpc/gen_ndr/ndr_svcctl.c if (*r->out.display_name) {
out 5450 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.display_name, CH_UTF16)));
out 5452 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.display_name, CH_UTF16)));
out 5453 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.display_name, ndr_charset_length(*r->out.display_name, CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 5455 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.display_name_length));
out 5456 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name_length) {
out 5457 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.display_name_length));
out 5459 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5475 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 5514 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.display_name);
out 5515 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.display_name);
out 5519 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.display_name);
out 5522 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.display_name, LIBNDR_FLAG_REF_ALLOC);
out 5525 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, *r->out.display_name);
out 5527 librpc/gen_ndr/ndr_svcctl.c *r->out.display_name = NULL;
out 5529 librpc/gen_ndr/ndr_svcctl.c if (*r->out.display_name) {
out 5531 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.display_name, 0);
out 5532 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.display_name));
out 5533 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_length(ndr, r->out.display_name));
out 5534 librpc/gen_ndr/ndr_svcctl.c if (ndr_get_array_length(ndr, r->out.display_name) > ndr_get_array_size(ndr, r->out.display_name)) {
out 5535 librpc/gen_ndr/ndr_svcctl.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.display_name), ndr_get_array_length(ndr, r->out.display_name));
out 5537 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.display_name), sizeof(uint16_t)));
out 5538 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.display_name, ndr_get_array_length(ndr, r->out.display_name), sizeof(uint16_t), CH_UTF16));
out 5544 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.display_name_length);
out 5546 librpc/gen_ndr/ndr_svcctl.c r->out.display_name_length = NULL;
out 5548 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name_length) {
out 5550 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.display_name_length, 0);
out 5551 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.display_name_length));
out 5554 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5590 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "display_name", r->out.display_name);
out 5592 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "display_name", *r->out.display_name);
out 5594 librpc/gen_ndr/ndr_svcctl.c if (*r->out.display_name) {
out 5595 librpc/gen_ndr/ndr_svcctl.c ndr_print_string(ndr, "display_name", *r->out.display_name);
out 5599 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "display_name_length", r->out.display_name_length);
out 5601 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name_length) {
out 5602 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "display_name_length", *r->out.display_name_length);
out 5605 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5631 librpc/gen_ndr/ndr_svcctl.c if (r->out.key_name == NULL) {
out 5634 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.key_name));
out 5635 librpc/gen_ndr/ndr_svcctl.c if (*r->out.key_name) {
out 5636 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.key_name, CH_UTF16)));
out 5638 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.key_name, CH_UTF16)));
out 5639 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.key_name, ndr_charset_length(*r->out.key_name, CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 5641 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.display_name_length));
out 5642 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name_length) {
out 5643 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.display_name_length));
out 5645 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5661 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 5700 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.key_name);
out 5701 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.key_name);
out 5705 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.key_name);
out 5708 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.key_name, LIBNDR_FLAG_REF_ALLOC);
out 5711 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, *r->out.key_name);
out 5713 librpc/gen_ndr/ndr_svcctl.c *r->out.key_name = NULL;
out 5715 librpc/gen_ndr/ndr_svcctl.c if (*r->out.key_name) {
out 5717 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.key_name, 0);
out 5718 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.key_name));
out 5719 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_length(ndr, r->out.key_name));
out 5720 librpc/gen_ndr/ndr_svcctl.c if (ndr_get_array_length(ndr, r->out.key_name) > ndr_get_array_size(ndr, r->out.key_name)) {
out 5721 librpc/gen_ndr/ndr_svcctl.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.key_name), ndr_get_array_length(ndr, r->out.key_name));
out 5723 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.key_name), sizeof(uint16_t)));
out 5724 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.key_name, ndr_get_array_length(ndr, r->out.key_name), sizeof(uint16_t), CH_UTF16));
out 5730 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.display_name_length);
out 5732 librpc/gen_ndr/ndr_svcctl.c r->out.display_name_length = NULL;
out 5734 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name_length) {
out 5736 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.display_name_length, 0);
out 5737 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.display_name_length));
out 5740 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5776 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "key_name", r->out.key_name);
out 5778 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "key_name", *r->out.key_name);
out 5780 librpc/gen_ndr/ndr_svcctl.c if (*r->out.key_name) {
out 5781 librpc/gen_ndr/ndr_svcctl.c ndr_print_string(ndr, "key_name", *r->out.key_name);
out 5785 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "display_name_length", r->out.display_name_length);
out 5787 librpc/gen_ndr/ndr_svcctl.c if (r->out.display_name_length) {
out 5788 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "display_name_length", *r->out.display_name_length);
out 5791 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5802 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5812 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5832 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5843 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5853 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5873 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5893 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5926 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5957 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5977 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6010 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6041 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6058 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.buffer, r->in.offered));
out 6059 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 6062 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 6063 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6073 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 6084 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 6085 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 6088 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, r->in.offered);
out 6089 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.buffer, r->in.offered));
out 6091 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 6094 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 6095 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 6097 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6123 librpc/gen_ndr/ndr_svcctl.c ndr_print_array_uint8(ndr, "buffer", r->out.buffer, r->in.offered);
out 6124 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 6126 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 6128 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6145 librpc/gen_ndr/ndr_svcctl.c if (r->out.buffer == NULL) {
out 6149 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.buffer, r->in.offered));
out 6150 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 6153 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 6154 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6164 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 6178 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, r->in.offered);
out 6179 librpc/gen_ndr/ndr_svcctl.c memset(r->out.buffer, 0, (r->in.offered) * sizeof(*r->out.buffer));
out 6180 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 6181 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 6184 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.buffer));
out 6186 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer));
out 6188 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer)));
out 6190 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 6193 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 6194 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 6195 librpc/gen_ndr/ndr_svcctl.c if (*r->out.needed > 8192) {
out 6199 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6200 librpc/gen_ndr/ndr_svcctl.c if (r->out.buffer) {
out 6201 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.buffer, r->in.offered));
out 6228 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6230 librpc/gen_ndr/ndr_svcctl.c ndr_print_array_uint8(ndr, "buffer", r->out.buffer, r->in.offered);
out 6232 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 6234 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 6236 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6253 librpc/gen_ndr/ndr_svcctl.c if (r->out.buffer == NULL) {
out 6257 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.buffer, r->in.offered));
out 6258 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 6261 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 6262 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6272 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 6286 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, r->in.offered);
out 6287 librpc/gen_ndr/ndr_svcctl.c memset(r->out.buffer, 0, (r->in.offered) * sizeof(*r->out.buffer));
out 6288 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 6289 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 6292 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.buffer));
out 6294 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer));
out 6296 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer)));
out 6298 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 6301 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 6302 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 6303 librpc/gen_ndr/ndr_svcctl.c if (*r->out.needed > 8192) {
out 6307 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6308 librpc/gen_ndr/ndr_svcctl.c if (r->out.buffer) {
out 6309 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.buffer, r->in.offered));
out 6336 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6338 librpc/gen_ndr/ndr_svcctl.c ndr_print_array_uint8(ndr, "buffer", r->out.buffer, r->in.offered);
out 6340 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 6342 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 6344 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6367 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.services, r->in.offered));
out 6368 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 6371 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 6372 librpc/gen_ndr/ndr_svcctl.c if (r->out.service_returned == NULL) {
out 6375 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.service_returned));
out 6376 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 6377 librpc/gen_ndr/ndr_svcctl.c if (r->out.resume_handle) {
out 6378 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 6380 librpc/gen_ndr/ndr_svcctl.c if (r->out.group_name == NULL) {
out 6383 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.group_name));
out 6384 librpc/gen_ndr/ndr_svcctl.c if (*r->out.group_name) {
out 6385 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.group_name, CH_UTF16)));
out 6387 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.group_name, CH_UTF16)));
out 6388 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.group_name, ndr_charset_length(*r->out.group_name, CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 6390 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6406 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 6431 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 6432 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 6433 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.service_returned);
out 6434 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.service_returned);
out 6435 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.group_name);
out 6436 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.group_name);
out 6439 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.services, r->in.offered);
out 6440 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.services, r->in.offered));
out 6442 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 6445 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 6446 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 6449 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.service_returned);
out 6452 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.service_returned, LIBNDR_FLAG_REF_ALLOC);
out 6453 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.service_returned));
out 6457 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6459 librpc/gen_ndr/ndr_svcctl.c r->out.resume_handle = NULL;
out 6461 librpc/gen_ndr/ndr_svcctl.c if (r->out.resume_handle) {
out 6463 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 6464 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 6468 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.group_name);
out 6471 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.group_name, LIBNDR_FLAG_REF_ALLOC);
out 6474 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, *r->out.group_name);
out 6476 librpc/gen_ndr/ndr_svcctl.c *r->out.group_name = NULL;
out 6478 librpc/gen_ndr/ndr_svcctl.c if (*r->out.group_name) {
out 6480 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.group_name, 0);
out 6481 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.group_name));
out 6482 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_length(ndr, r->out.group_name));
out 6483 librpc/gen_ndr/ndr_svcctl.c if (ndr_get_array_length(ndr, r->out.group_name) > ndr_get_array_size(ndr, r->out.group_name)) {
out 6484 librpc/gen_ndr/ndr_svcctl.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.group_name), ndr_get_array_length(ndr, r->out.group_name));
out 6486 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.group_name), sizeof(uint16_t)));
out 6487 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.group_name, ndr_get_array_length(ndr, r->out.group_name), sizeof(uint16_t), CH_UTF16));
out 6491 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6525 librpc/gen_ndr/ndr_svcctl.c ndr_print_array_uint8(ndr, "services", r->out.services, r->in.offered);
out 6526 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 6528 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 6530 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "service_returned", r->out.service_returned);
out 6532 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "service_returned", *r->out.service_returned);
out 6534 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 6536 librpc/gen_ndr/ndr_svcctl.c if (r->out.resume_handle) {
out 6537 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 6540 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "group_name", r->out.group_name);
out 6542 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "group_name", *r->out.group_name);
out 6544 librpc/gen_ndr/ndr_svcctl.c if (*r->out.group_name) {
out 6545 librpc/gen_ndr/ndr_svcctl.c ndr_print_string(ndr, "group_name", *r->out.group_name);
out 6549 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6579 librpc/gen_ndr/ndr_svcctl.c if (r->out.services == NULL) {
out 6583 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.services, r->in.offered));
out 6584 librpc/gen_ndr/ndr_svcctl.c if (r->out.needed == NULL) {
out 6587 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.needed));
out 6588 librpc/gen_ndr/ndr_svcctl.c if (r->out.service_returned == NULL) {
out 6591 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.service_returned));
out 6592 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 6593 librpc/gen_ndr/ndr_svcctl.c if (r->out.resume_handle) {
out 6594 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 6596 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6611 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCT(r->out);
out 6660 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.services, r->in.offered);
out 6661 librpc/gen_ndr/ndr_svcctl.c memset(r->out.services, 0, (r->in.offered) * sizeof(*r->out.services));
out 6662 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 6663 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.needed);
out 6664 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.service_returned);
out 6665 librpc/gen_ndr/ndr_svcctl.c ZERO_STRUCTP(r->out.service_returned);
out 6668 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.services));
out 6670 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC_N(ndr, r->out.services, ndr_get_array_size(ndr, &r->out.services));
out 6672 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.services, ndr_get_array_size(ndr, &r->out.services)));
out 6674 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.needed);
out 6677 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.needed, LIBNDR_FLAG_REF_ALLOC);
out 6678 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.needed));
out 6679 librpc/gen_ndr/ndr_svcctl.c if (*r->out.needed > 0x40000) {
out 6684 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.service_returned);
out 6687 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.service_returned, LIBNDR_FLAG_REF_ALLOC);
out 6688 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.service_returned));
out 6689 librpc/gen_ndr/ndr_svcctl.c if (*r->out.service_returned > 0x40000) {
out 6695 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6697 librpc/gen_ndr/ndr_svcctl.c r->out.resume_handle = NULL;
out 6699 librpc/gen_ndr/ndr_svcctl.c if (r->out.resume_handle) {
out 6701 librpc/gen_ndr/ndr_svcctl.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 6702 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 6703 librpc/gen_ndr/ndr_svcctl.c if (*r->out.resume_handle > 0x40000) {
out 6708 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6709 librpc/gen_ndr/ndr_svcctl.c if (r->out.services) {
out 6710 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.services, r->in.offered));
out 6751 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "services", r->out.services);
out 6753 librpc/gen_ndr/ndr_svcctl.c ndr_print_array_uint8(ndr, "services", r->out.services, r->in.offered);
out 6755 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "needed", r->out.needed);
out 6757 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "needed", *r->out.needed);
out 6759 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "service_returned", r->out.service_returned);
out 6761 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "service_returned", *r->out.service_returned);
out 6763 librpc/gen_ndr/ndr_svcctl.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 6765 librpc/gen_ndr/ndr_svcctl.c if (r->out.resume_handle) {
out 6766 librpc/gen_ndr/ndr_svcctl.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 6769 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6780 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6790 librpc/gen_ndr/ndr_svcctl.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6810 librpc/gen_ndr/ndr_svcctl.c ndr_print_WERROR(ndr, "result", r->out.result);
out 549 librpc/gen_ndr/ndr_winreg.c if (r->out.handle == NULL) {
out 552 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 553 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 564 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 579 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 580 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.handle);
out 584 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 587 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 588 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 590 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 617 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 619 librpc/gen_ndr/ndr_winreg.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 621 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 637 librpc/gen_ndr/ndr_winreg.c if (r->out.handle == NULL) {
out 640 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 641 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 652 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 667 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 668 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.handle);
out 672 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 675 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 676 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 678 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 705 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 707 librpc/gen_ndr/ndr_winreg.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 709 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 725 librpc/gen_ndr/ndr_winreg.c if (r->out.handle == NULL) {
out 728 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 729 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 740 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 755 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 756 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.handle);
out 760 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 763 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 764 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 766 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 793 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 795 librpc/gen_ndr/ndr_winreg.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 797 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 813 librpc/gen_ndr/ndr_winreg.c if (r->out.handle == NULL) {
out 816 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 817 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 828 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 843 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 844 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.handle);
out 848 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 851 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 852 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 854 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 881 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 883 librpc/gen_ndr/ndr_winreg.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 885 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 901 librpc/gen_ndr/ndr_winreg.c if (r->out.handle == NULL) {
out 904 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 905 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 916 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 931 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 932 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.handle);
out 936 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 939 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 940 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 942 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 969 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 971 librpc/gen_ndr/ndr_winreg.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 973 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 988 librpc/gen_ndr/ndr_winreg.c if (r->out.handle == NULL) {
out 991 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 992 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1001 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 1010 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 1011 librpc/gen_ndr/ndr_winreg.c *r->out.handle = *r->in.handle;
out 1015 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 1018 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 1019 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 1021 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1045 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 1047 librpc/gen_ndr/ndr_winreg.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 1049 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1076 librpc/gen_ndr/ndr_winreg.c if (r->out.new_handle == NULL) {
out 1079 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.new_handle));
out 1080 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.action_taken));
out 1081 librpc/gen_ndr/ndr_winreg.c if (r->out.action_taken) {
out 1082 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_winreg_CreateAction(ndr, NDR_SCALARS, *r->out.action_taken));
out 1084 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1098 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 1135 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.new_handle);
out 1136 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.new_handle);
out 1140 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.new_handle);
out 1143 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.new_handle, LIBNDR_FLAG_REF_ALLOC);
out 1144 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.new_handle));
out 1148 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.action_taken);
out 1150 librpc/gen_ndr/ndr_winreg.c r->out.action_taken = NULL;
out 1152 librpc/gen_ndr/ndr_winreg.c if (r->out.action_taken) {
out 1154 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.action_taken, 0);
out 1155 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_winreg_CreateAction(ndr, NDR_SCALARS, r->out.action_taken));
out 1158 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1198 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "new_handle", r->out.new_handle);
out 1200 librpc/gen_ndr/ndr_winreg.c ndr_print_policy_handle(ndr, "new_handle", r->out.new_handle);
out 1202 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "action_taken", r->out.action_taken);
out 1204 librpc/gen_ndr/ndr_winreg.c if (r->out.action_taken) {
out 1205 librpc/gen_ndr/ndr_winreg.c ndr_print_winreg_CreateAction(ndr, "action_taken", *r->out.action_taken);
out 1208 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1224 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1243 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1268 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1284 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1303 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1328 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1356 librpc/gen_ndr/ndr_winreg.c if (r->out.name == NULL) {
out 1359 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_winreg_StringBuf(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.name));
out 1360 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.keyclass));
out 1361 librpc/gen_ndr/ndr_winreg.c if (r->out.keyclass) {
out 1362 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_winreg_StringBuf(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.keyclass));
out 1364 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.last_changed_time));
out 1365 librpc/gen_ndr/ndr_winreg.c if (r->out.last_changed_time) {
out 1366 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_NTTIME(ndr, NDR_SCALARS, *r->out.last_changed_time));
out 1368 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1382 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 1423 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.name);
out 1424 librpc/gen_ndr/ndr_winreg.c *r->out.name = *r->in.name;
out 1428 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.name);
out 1431 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.name, LIBNDR_FLAG_REF_ALLOC);
out 1432 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_winreg_StringBuf(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.name));
out 1436 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.keyclass);
out 1438 librpc/gen_ndr/ndr_winreg.c r->out.keyclass = NULL;
out 1440 librpc/gen_ndr/ndr_winreg.c if (r->out.keyclass) {
out 1442 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.keyclass, 0);
out 1443 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_winreg_StringBuf(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.keyclass));
out 1448 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.last_changed_time);
out 1450 librpc/gen_ndr/ndr_winreg.c r->out.last_changed_time = NULL;
out 1452 librpc/gen_ndr/ndr_winreg.c if (r->out.last_changed_time) {
out 1454 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.last_changed_time, 0);
out 1455 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_NTTIME(ndr, NDR_SCALARS, r->out.last_changed_time));
out 1458 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1499 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "name", r->out.name);
out 1501 librpc/gen_ndr/ndr_winreg.c ndr_print_winreg_StringBuf(ndr, "name", r->out.name);
out 1503 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "keyclass", r->out.keyclass);
out 1505 librpc/gen_ndr/ndr_winreg.c if (r->out.keyclass) {
out 1506 librpc/gen_ndr/ndr_winreg.c ndr_print_winreg_StringBuf(ndr, "keyclass", r->out.keyclass);
out 1509 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "last_changed_time", r->out.last_changed_time);
out 1511 librpc/gen_ndr/ndr_winreg.c if (r->out.last_changed_time) {
out 1512 librpc/gen_ndr/ndr_winreg.c ndr_print_NTTIME(ndr, "last_changed_time", *r->out.last_changed_time);
out 1515 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1554 librpc/gen_ndr/ndr_winreg.c if (r->out.name == NULL) {
out 1557 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_winreg_ValNameBuf(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.name));
out 1558 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.type));
out 1559 librpc/gen_ndr/ndr_winreg.c if (r->out.type) {
out 1560 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_winreg_Type(ndr, NDR_SCALARS, *r->out.type));
out 1562 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.value));
out 1563 librpc/gen_ndr/ndr_winreg.c if (r->out.value) {
out 1564 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.size));
out 1566 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.length));
out 1567 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.value, *r->out.length));
out 1569 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.size));
out 1570 librpc/gen_ndr/ndr_winreg.c if (r->out.size) {
out 1571 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.size));
out 1573 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.length));
out 1574 librpc/gen_ndr/ndr_winreg.c if (r->out.length) {
out 1575 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.length));
out 1577 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1595 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 1666 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.name);
out 1667 librpc/gen_ndr/ndr_winreg.c *r->out.name = *r->in.name;
out 1679 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.name);
out 1682 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.name, LIBNDR_FLAG_REF_ALLOC);
out 1683 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_winreg_ValNameBuf(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.name));
out 1687 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.type);
out 1689 librpc/gen_ndr/ndr_winreg.c r->out.type = NULL;
out 1691 librpc/gen_ndr/ndr_winreg.c if (r->out.type) {
out 1693 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.type, 0);
out 1694 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_winreg_Type(ndr, NDR_SCALARS, r->out.type));
out 1699 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.value);
out 1701 librpc/gen_ndr/ndr_winreg.c r->out.value = NULL;
out 1703 librpc/gen_ndr/ndr_winreg.c if (r->out.value) {
out 1705 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.value, 0);
out 1706 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.value));
out 1707 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_array_length(ndr, &r->out.value));
out 1708 librpc/gen_ndr/ndr_winreg.c if (ndr_get_array_length(ndr, &r->out.value) > ndr_get_array_size(ndr, &r->out.value)) {
out 1709 librpc/gen_ndr/ndr_winreg.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->out.value), ndr_get_array_length(ndr, &r->out.value));
out 1711 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC_N(ndr, r->out.value, ndr_get_array_size(ndr, &r->out.value));
out 1712 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.value, ndr_get_array_length(ndr, &r->out.value)));
out 1717 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.size);
out 1719 librpc/gen_ndr/ndr_winreg.c r->out.size = NULL;
out 1721 librpc/gen_ndr/ndr_winreg.c if (r->out.size) {
out 1723 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.size, 0);
out 1724 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.size));
out 1729 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.length);
out 1731 librpc/gen_ndr/ndr_winreg.c r->out.length = NULL;
out 1733 librpc/gen_ndr/ndr_winreg.c if (r->out.length) {
out 1735 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.length, 0);
out 1736 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.length));
out 1739 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1740 librpc/gen_ndr/ndr_winreg.c if (r->out.value) {
out 1741 librpc/gen_ndr/ndr_winreg.c if (r->out.size == NULL) return ndr_pull_error(ndr, NDR_ERR_INVALID_POINTER, "NULL Pointer for size_is()");
out 1742 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.value, *r->out.size));
out 1744 librpc/gen_ndr/ndr_winreg.c if (r->out.value) {
out 1745 librpc/gen_ndr/ndr_winreg.c if (r->out.length == NULL) return ndr_pull_error(ndr, NDR_ERR_INVALID_POINTER, "NULL Pointer for length_is()");
out 1746 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_check_array_length(ndr, (void*)&r->out.value, *r->out.length));
out 1801 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "name", r->out.name);
out 1803 librpc/gen_ndr/ndr_winreg.c ndr_print_winreg_ValNameBuf(ndr, "name", r->out.name);
out 1805 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "type", r->out.type);
out 1807 librpc/gen_ndr/ndr_winreg.c if (r->out.type) {
out 1808 librpc/gen_ndr/ndr_winreg.c ndr_print_winreg_Type(ndr, "type", *r->out.type);
out 1811 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "value", r->out.value);
out 1813 librpc/gen_ndr/ndr_winreg.c if (r->out.value) {
out 1814 librpc/gen_ndr/ndr_winreg.c if (r->out.length == NULL) return;
out 1815 librpc/gen_ndr/ndr_winreg.c ndr_print_array_uint8(ndr, "value", r->out.value, *r->out.length);
out 1818 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "size", r->out.size);
out 1820 librpc/gen_ndr/ndr_winreg.c if (r->out.size) {
out 1821 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "size", *r->out.size);
out 1824 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "length", r->out.length);
out 1826 librpc/gen_ndr/ndr_winreg.c if (r->out.length) {
out 1827 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "length", *r->out.length);
out 1830 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1845 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1863 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1887 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1907 librpc/gen_ndr/ndr_winreg.c if (r->out.sd == NULL) {
out 1910 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_KeySecurityData(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sd));
out 1911 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 1921 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 1938 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.sd);
out 1939 librpc/gen_ndr/ndr_winreg.c *r->out.sd = *r->in.sd;
out 1943 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.sd);
out 1946 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.sd, LIBNDR_FLAG_REF_ALLOC);
out 1947 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_KeySecurityData(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.sd));
out 1949 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 1978 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "sd", r->out.sd);
out 1980 librpc/gen_ndr/ndr_winreg.c ndr_print_KeySecurityData(ndr, "sd", r->out.sd);
out 1982 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2005 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2051 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2087 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2108 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2132 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2162 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2180 librpc/gen_ndr/ndr_winreg.c if (r->out.handle == NULL) {
out 2183 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 2184 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2194 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 2206 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 2207 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.handle);
out 2211 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 2214 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 2215 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 2217 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2244 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 2246 librpc/gen_ndr/ndr_winreg.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 2248 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2267 librpc/gen_ndr/ndr_winreg.c if (r->out.classname == NULL) {
out 2270 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_winreg_String(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.classname));
out 2271 librpc/gen_ndr/ndr_winreg.c if (r->out.num_subkeys == NULL) {
out 2274 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_subkeys));
out 2275 librpc/gen_ndr/ndr_winreg.c if (r->out.max_subkeylen == NULL) {
out 2278 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.max_subkeylen));
out 2279 librpc/gen_ndr/ndr_winreg.c if (r->out.max_classlen == NULL) {
out 2282 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.max_classlen));
out 2283 librpc/gen_ndr/ndr_winreg.c if (r->out.num_values == NULL) {
out 2286 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_values));
out 2287 librpc/gen_ndr/ndr_winreg.c if (r->out.max_valnamelen == NULL) {
out 2290 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.max_valnamelen));
out 2291 librpc/gen_ndr/ndr_winreg.c if (r->out.max_valbufsize == NULL) {
out 2294 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.max_valbufsize));
out 2295 librpc/gen_ndr/ndr_winreg.c if (r->out.secdescsize == NULL) {
out 2298 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.secdescsize));
out 2299 librpc/gen_ndr/ndr_winreg.c if (r->out.last_changed_time == NULL) {
out 2302 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_NTTIME(ndr, NDR_SCALARS, *r->out.last_changed_time));
out 2303 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2321 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 2337 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.classname);
out 2338 librpc/gen_ndr/ndr_winreg.c *r->out.classname = *r->in.classname;
out 2339 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.num_subkeys);
out 2340 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.num_subkeys);
out 2341 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.max_subkeylen);
out 2342 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.max_subkeylen);
out 2343 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.max_classlen);
out 2344 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.max_classlen);
out 2345 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.num_values);
out 2346 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.num_values);
out 2347 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.max_valnamelen);
out 2348 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.max_valnamelen);
out 2349 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.max_valbufsize);
out 2350 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.max_valbufsize);
out 2351 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.secdescsize);
out 2352 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.secdescsize);
out 2353 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.last_changed_time);
out 2354 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.last_changed_time);
out 2358 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.classname);
out 2361 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.classname, LIBNDR_FLAG_REF_ALLOC);
out 2362 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_winreg_String(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.classname));
out 2365 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.num_subkeys);
out 2368 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.num_subkeys, LIBNDR_FLAG_REF_ALLOC);
out 2369 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.num_subkeys));
out 2372 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.max_subkeylen);
out 2375 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.max_subkeylen, LIBNDR_FLAG_REF_ALLOC);
out 2376 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.max_subkeylen));
out 2379 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.max_classlen);
out 2382 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.max_classlen, LIBNDR_FLAG_REF_ALLOC);
out 2383 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.max_classlen));
out 2386 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.num_values);
out 2389 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.num_values, LIBNDR_FLAG_REF_ALLOC);
out 2390 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.num_values));
out 2393 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.max_valnamelen);
out 2396 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.max_valnamelen, LIBNDR_FLAG_REF_ALLOC);
out 2397 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.max_valnamelen));
out 2400 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.max_valbufsize);
out 2403 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.max_valbufsize, LIBNDR_FLAG_REF_ALLOC);
out 2404 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.max_valbufsize));
out 2407 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.secdescsize);
out 2410 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.secdescsize, LIBNDR_FLAG_REF_ALLOC);
out 2411 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.secdescsize));
out 2414 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.last_changed_time);
out 2417 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.last_changed_time, LIBNDR_FLAG_REF_ALLOC);
out 2418 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_NTTIME(ndr, NDR_SCALARS, r->out.last_changed_time));
out 2420 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2448 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "classname", r->out.classname);
out 2450 librpc/gen_ndr/ndr_winreg.c ndr_print_winreg_String(ndr, "classname", r->out.classname);
out 2452 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "num_subkeys", r->out.num_subkeys);
out 2454 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "num_subkeys", *r->out.num_subkeys);
out 2456 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "max_subkeylen", r->out.max_subkeylen);
out 2458 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "max_subkeylen", *r->out.max_subkeylen);
out 2460 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "max_classlen", r->out.max_classlen);
out 2462 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "max_classlen", *r->out.max_classlen);
out 2464 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "num_values", r->out.num_values);
out 2466 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "num_values", *r->out.num_values);
out 2468 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "max_valnamelen", r->out.max_valnamelen);
out 2470 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "max_valnamelen", *r->out.max_valnamelen);
out 2472 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "max_valbufsize", r->out.max_valbufsize);
out 2474 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "max_valbufsize", *r->out.max_valbufsize);
out 2476 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "secdescsize", r->out.secdescsize);
out 2478 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "secdescsize", *r->out.secdescsize);
out 2480 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "last_changed_time", r->out.last_changed_time);
out 2482 librpc/gen_ndr/ndr_winreg.c ndr_print_NTTIME(ndr, "last_changed_time", *r->out.last_changed_time);
out 2484 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2522 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.type));
out 2523 librpc/gen_ndr/ndr_winreg.c if (r->out.type) {
out 2524 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_winreg_Type(ndr, NDR_SCALARS, *r->out.type));
out 2526 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.data));
out 2527 librpc/gen_ndr/ndr_winreg.c if (r->out.data) {
out 2528 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.data_size));
out 2530 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.data_length));
out 2531 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.data, *r->out.data_length));
out 2533 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.data_size));
out 2534 librpc/gen_ndr/ndr_winreg.c if (r->out.data_size) {
out 2535 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.data_size));
out 2537 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.data_length));
out 2538 librpc/gen_ndr/ndr_winreg.c if (r->out.data_length) {
out 2539 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.data_length));
out 2541 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2559 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 2641 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.type);
out 2643 librpc/gen_ndr/ndr_winreg.c r->out.type = NULL;
out 2645 librpc/gen_ndr/ndr_winreg.c if (r->out.type) {
out 2647 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.type, 0);
out 2648 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_winreg_Type(ndr, NDR_SCALARS, r->out.type));
out 2653 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.data);
out 2655 librpc/gen_ndr/ndr_winreg.c r->out.data = NULL;
out 2657 librpc/gen_ndr/ndr_winreg.c if (r->out.data) {
out 2659 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.data, 0);
out 2660 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.data));
out 2661 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_array_length(ndr, &r->out.data));
out 2662 librpc/gen_ndr/ndr_winreg.c if (ndr_get_array_length(ndr, &r->out.data) > ndr_get_array_size(ndr, &r->out.data)) {
out 2663 librpc/gen_ndr/ndr_winreg.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->out.data), ndr_get_array_length(ndr, &r->out.data));
out 2665 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC_N(ndr, r->out.data, ndr_get_array_size(ndr, &r->out.data));
out 2666 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.data, ndr_get_array_length(ndr, &r->out.data)));
out 2671 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.data_size);
out 2673 librpc/gen_ndr/ndr_winreg.c r->out.data_size = NULL;
out 2675 librpc/gen_ndr/ndr_winreg.c if (r->out.data_size) {
out 2677 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.data_size, 0);
out 2678 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.data_size));
out 2683 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.data_length);
out 2685 librpc/gen_ndr/ndr_winreg.c r->out.data_length = NULL;
out 2687 librpc/gen_ndr/ndr_winreg.c if (r->out.data_length) {
out 2689 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.data_length, 0);
out 2690 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.data_length));
out 2693 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2694 librpc/gen_ndr/ndr_winreg.c if (r->out.data) {
out 2695 librpc/gen_ndr/ndr_winreg.c if (r->out.data_size == NULL) return ndr_pull_error(ndr, NDR_ERR_INVALID_POINTER, "NULL Pointer for size_is()");
out 2696 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.data, *r->out.data_size));
out 2698 librpc/gen_ndr/ndr_winreg.c if (r->out.data) {
out 2699 librpc/gen_ndr/ndr_winreg.c if (r->out.data_length == NULL) return ndr_pull_error(ndr, NDR_ERR_INVALID_POINTER, "NULL Pointer for length_is()");
out 2700 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_check_array_length(ndr, (void*)&r->out.data, *r->out.data_length));
out 2754 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "type", r->out.type);
out 2756 librpc/gen_ndr/ndr_winreg.c if (r->out.type) {
out 2757 librpc/gen_ndr/ndr_winreg.c ndr_print_winreg_Type(ndr, "type", *r->out.type);
out 2760 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "data", r->out.data);
out 2762 librpc/gen_ndr/ndr_winreg.c if (r->out.data) {
out 2763 librpc/gen_ndr/ndr_winreg.c if (r->out.data_length == NULL) return;
out 2764 librpc/gen_ndr/ndr_winreg.c ndr_print_array_uint8(ndr, "data", r->out.data, *r->out.data_length);
out 2767 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "data_size", r->out.data_size);
out 2769 librpc/gen_ndr/ndr_winreg.c if (r->out.data_size) {
out 2770 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "data_size", *r->out.data_size);
out 2773 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "data_length", r->out.data_length);
out 2775 librpc/gen_ndr/ndr_winreg.c if (r->out.data_length) {
out 2776 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "data_length", *r->out.data_length);
out 2779 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2790 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2800 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2820 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2840 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2867 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2896 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 2919 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 2959 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 2993 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3013 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3040 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3069 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3092 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3121 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3152 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3163 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3173 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3193 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3215 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3256 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3291 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3306 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3330 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3356 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3371 librpc/gen_ndr/ndr_winreg.c if (r->out.version == NULL) {
out 3374 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.version));
out 3375 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3385 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 3394 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.version);
out 3395 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.version);
out 3399 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.version);
out 3402 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.version, LIBNDR_FLAG_REF_ALLOC);
out 3403 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.version));
out 3405 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3429 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "version", r->out.version);
out 3431 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "version", *r->out.version);
out 3433 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3449 librpc/gen_ndr/ndr_winreg.c if (r->out.handle == NULL) {
out 3452 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 3453 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3464 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 3479 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 3480 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.handle);
out 3484 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 3487 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 3488 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 3490 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3517 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 3519 librpc/gen_ndr/ndr_winreg.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 3521 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3537 librpc/gen_ndr/ndr_winreg.c if (r->out.handle == NULL) {
out 3540 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 3541 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3552 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 3567 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 3568 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.handle);
out 3572 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 3575 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 3576 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 3578 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3605 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 3607 librpc/gen_ndr/ndr_winreg.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 3609 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3649 librpc/gen_ndr/ndr_winreg.c if (r->out.values == NULL) {
out 3656 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_QueryMultipleValue(ndr, NDR_SCALARS, &r->out.values[cntr_values_1]));
out 3659 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_QueryMultipleValue(ndr, NDR_BUFFERS, &r->out.values[cntr_values_1]));
out 3661 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.buffer));
out 3662 librpc/gen_ndr/ndr_winreg.c if (r->out.buffer) {
out 3663 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.buffer_size));
out 3665 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.buffer_size));
out 3666 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_array_uint8(ndr, NDR_SCALARS, r->out.buffer, *r->out.buffer_size));
out 3668 librpc/gen_ndr/ndr_winreg.c if (r->out.buffer_size == NULL) {
out 3671 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.buffer_size));
out 3672 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3686 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 3703 librpc/gen_ndr/ndr_winreg.c memcpy(r->out.values, r->in.values, ndr_get_array_size(ndr, &r->in.values) * sizeof(*r->in.values));
out 3739 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC_N(ndr, r->out.values, r->in.num_values);
out 3740 librpc/gen_ndr/ndr_winreg.c memcpy(r->out.values, r->in.values, (r->in.num_values) * sizeof(*r->in.values));
out 3741 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.buffer_size);
out 3742 librpc/gen_ndr/ndr_winreg.c *r->out.buffer_size = *r->in.buffer_size;
out 3757 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.values));
out 3758 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_array_length(ndr, &r->out.values));
out 3759 librpc/gen_ndr/ndr_winreg.c if (ndr_get_array_length(ndr, &r->out.values) > ndr_get_array_size(ndr, &r->out.values)) {
out 3760 librpc/gen_ndr/ndr_winreg.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->out.values), ndr_get_array_length(ndr, &r->out.values));
out 3763 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC_N(ndr, r->out.values, ndr_get_array_size(ndr, &r->out.values));
out 3765 librpc/gen_ndr/ndr_winreg.c memcpy(r->out.values, r->in.values, ndr_get_array_size(ndr, &r->out.values) * sizeof(*r->in.values));
out 3767 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.values, 0);
out 3769 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_QueryMultipleValue(ndr, NDR_SCALARS, &r->out.values[cntr_values_1]));
out 3772 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_QueryMultipleValue(ndr, NDR_BUFFERS, &r->out.values[cntr_values_1]));
out 3777 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.buffer);
out 3779 librpc/gen_ndr/ndr_winreg.c r->out.buffer = NULL;
out 3781 librpc/gen_ndr/ndr_winreg.c if (r->out.buffer) {
out 3783 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.buffer, 0);
out 3784 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_array_size(ndr, &r->out.buffer));
out 3785 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_array_length(ndr, &r->out.buffer));
out 3786 librpc/gen_ndr/ndr_winreg.c if (ndr_get_array_length(ndr, &r->out.buffer) > ndr_get_array_size(ndr, &r->out.buffer)) {
out 3787 librpc/gen_ndr/ndr_winreg.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->out.buffer), ndr_get_array_length(ndr, &r->out.buffer));
out 3789 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC_N(ndr, r->out.buffer, ndr_get_array_size(ndr, &r->out.buffer));
out 3790 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_array_uint8(ndr, NDR_SCALARS, r->out.buffer, ndr_get_array_length(ndr, &r->out.buffer)));
out 3794 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.buffer_size);
out 3797 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.buffer_size, LIBNDR_FLAG_REF_ALLOC);
out 3798 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.buffer_size));
out 3800 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3801 librpc/gen_ndr/ndr_winreg.c if (r->out.values) {
out 3802 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.values, r->in.num_values));
out 3804 librpc/gen_ndr/ndr_winreg.c if (r->out.values) {
out 3805 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_check_array_length(ndr, (void*)&r->out.values, r->in.num_values));
out 3807 librpc/gen_ndr/ndr_winreg.c if (r->out.buffer) {
out 3808 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_check_array_size(ndr, (void*)&r->out.buffer, *r->out.buffer_size));
out 3810 librpc/gen_ndr/ndr_winreg.c if (r->out.buffer) {
out 3811 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_check_array_length(ndr, (void*)&r->out.buffer, *r->out.buffer_size));
out 3861 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "values", r->out.values);
out 3868 librpc/gen_ndr/ndr_winreg.c ndr_print_QueryMultipleValue(ndr, "values", &r->out.values[cntr_values_1]);
out 3874 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 3876 librpc/gen_ndr/ndr_winreg.c if (r->out.buffer) {
out 3877 librpc/gen_ndr/ndr_winreg.c ndr_print_array_uint8(ndr, "buffer", r->out.buffer, *r->out.buffer_size);
out 3880 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "buffer_size", r->out.buffer_size);
out 3882 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "buffer_size", *r->out.buffer_size);
out 3884 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3907 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 3949 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 3985 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 3996 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4006 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4026 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4042 librpc/gen_ndr/ndr_winreg.c if (r->out.handle == NULL) {
out 4045 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 4046 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4057 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 4072 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 4073 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.handle);
out 4077 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 4080 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 4081 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 4083 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4110 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 4112 librpc/gen_ndr/ndr_winreg.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 4114 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4130 librpc/gen_ndr/ndr_winreg.c if (r->out.handle == NULL) {
out 4133 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 4134 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4145 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCT(r->out);
out 4160 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 4161 librpc/gen_ndr/ndr_winreg.c ZERO_STRUCTP(r->out.handle);
out 4165 librpc/gen_ndr/ndr_winreg.c NDR_PULL_ALLOC(ndr, r->out.handle);
out 4168 librpc/gen_ndr/ndr_winreg.c NDR_PULL_SET_MEM_CTX(ndr, r->out.handle, LIBNDR_FLAG_REF_ALLOC);
out 4169 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->out.handle));
out 4171 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4198 librpc/gen_ndr/ndr_winreg.c ndr_print_ptr(ndr, "handle", r->out.handle);
out 4200 librpc/gen_ndr/ndr_winreg.c ndr_print_policy_handle(ndr, "handle", r->out.handle);
out 4202 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 4213 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 4223 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 4243 librpc/gen_ndr/ndr_winreg.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5688 librpc/gen_ndr/ndr_wkssvc.c if (r->out.info == NULL) {
out 5691 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 5692 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_wkssvc_NetWkstaInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 5693 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5704 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 5725 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 5726 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCTP(r->out.info);
out 5730 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 5733 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 5734 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 5735 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_wkssvc_NetWkstaInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 5737 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5764 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 5766 librpc/gen_ndr/ndr_wkssvc.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 5767 librpc/gen_ndr/ndr_wkssvc.c ndr_print_wkssvc_NetWkstaInfo(ndr, "info", r->out.info);
out 5769 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5797 librpc/gen_ndr/ndr_wkssvc.c if (r->out.parm_error == NULL) {
out 5800 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.parm_error));
out 5801 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5813 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 5849 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.parm_error);
out 5850 librpc/gen_ndr/ndr_wkssvc.c *r->out.parm_error = *r->in.parm_error;
out 5854 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.parm_error);
out 5857 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.parm_error, LIBNDR_FLAG_REF_ALLOC);
out 5858 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.parm_error));
out 5860 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 5896 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "parm_error", r->out.parm_error);
out 5898 librpc/gen_ndr/ndr_wkssvc.c ndr_print_uint32(ndr, "parm_error", *r->out.parm_error);
out 5900 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5927 librpc/gen_ndr/ndr_wkssvc.c if (r->out.info == NULL) {
out 5930 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_wkssvc_NetWkstaEnumUsersInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 5931 librpc/gen_ndr/ndr_wkssvc.c if (r->out.entries_read == NULL) {
out 5934 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.entries_read));
out 5935 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 5936 librpc/gen_ndr/ndr_wkssvc.c if (r->out.resume_handle) {
out 5937 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 5939 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 5953 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 5993 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 5994 librpc/gen_ndr/ndr_wkssvc.c *r->out.info = *r->in.info;
out 5995 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.entries_read);
out 5996 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCTP(r->out.entries_read);
out 6000 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 6003 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 6004 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_wkssvc_NetWkstaEnumUsersInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 6007 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.entries_read);
out 6010 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.entries_read, LIBNDR_FLAG_REF_ALLOC);
out 6011 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.entries_read));
out 6015 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6017 librpc/gen_ndr/ndr_wkssvc.c r->out.resume_handle = NULL;
out 6019 librpc/gen_ndr/ndr_wkssvc.c if (r->out.resume_handle) {
out 6021 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 6022 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 6025 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6062 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 6064 librpc/gen_ndr/ndr_wkssvc.c ndr_print_wkssvc_NetWkstaEnumUsersInfo(ndr, "info", r->out.info);
out 6066 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
out 6068 librpc/gen_ndr/ndr_wkssvc.c ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
out 6070 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 6072 librpc/gen_ndr/ndr_wkssvc.c if (r->out.resume_handle) {
out 6073 librpc/gen_ndr/ndr_wkssvc.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 6076 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6095 librpc/gen_ndr/ndr_wkssvc.c if (r->out.info == NULL) {
out 6098 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
out 6099 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_wkssvc_NetrWkstaUserInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 6100 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6111 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 6132 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 6133 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCTP(r->out.info);
out 6137 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 6140 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 6141 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
out 6142 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_wkssvc_NetrWkstaUserInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 6144 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6171 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 6173 librpc/gen_ndr/ndr_wkssvc.c ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
out 6174 librpc/gen_ndr/ndr_wkssvc.c ndr_print_wkssvc_NetrWkstaUserInfo(ndr, "info", r->out.info);
out 6176 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6204 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.parm_err));
out 6205 librpc/gen_ndr/ndr_wkssvc.c if (r->out.parm_err) {
out 6206 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.parm_err));
out 6208 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6221 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 6266 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.parm_err);
out 6268 librpc/gen_ndr/ndr_wkssvc.c r->out.parm_err = NULL;
out 6270 librpc/gen_ndr/ndr_wkssvc.c if (r->out.parm_err) {
out 6272 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.parm_err, 0);
out 6273 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.parm_err));
out 6276 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6314 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "parm_err", r->out.parm_err);
out 6316 librpc/gen_ndr/ndr_wkssvc.c if (r->out.parm_err) {
out 6317 librpc/gen_ndr/ndr_wkssvc.c ndr_print_uint32(ndr, "parm_err", *r->out.parm_err);
out 6320 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6347 librpc/gen_ndr/ndr_wkssvc.c if (r->out.info == NULL) {
out 6350 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_wkssvc_NetWkstaTransportInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 6351 librpc/gen_ndr/ndr_wkssvc.c if (r->out.total_entries == NULL) {
out 6354 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.total_entries));
out 6355 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 6356 librpc/gen_ndr/ndr_wkssvc.c if (r->out.resume_handle) {
out 6357 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 6359 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6373 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 6413 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 6414 librpc/gen_ndr/ndr_wkssvc.c *r->out.info = *r->in.info;
out 6415 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.total_entries);
out 6416 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCTP(r->out.total_entries);
out 6420 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 6423 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 6424 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_wkssvc_NetWkstaTransportInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 6427 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.total_entries);
out 6430 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.total_entries, LIBNDR_FLAG_REF_ALLOC);
out 6431 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.total_entries));
out 6435 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 6437 librpc/gen_ndr/ndr_wkssvc.c r->out.resume_handle = NULL;
out 6439 librpc/gen_ndr/ndr_wkssvc.c if (r->out.resume_handle) {
out 6441 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 6442 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 6445 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6482 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 6484 librpc/gen_ndr/ndr_wkssvc.c ndr_print_wkssvc_NetWkstaTransportInfo(ndr, "info", r->out.info);
out 6486 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
out 6488 librpc/gen_ndr/ndr_wkssvc.c ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
out 6490 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 6492 librpc/gen_ndr/ndr_wkssvc.c if (r->out.resume_handle) {
out 6493 librpc/gen_ndr/ndr_wkssvc.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 6496 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6523 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.parm_err));
out 6524 librpc/gen_ndr/ndr_wkssvc.c if (r->out.parm_err) {
out 6525 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.parm_err));
out 6527 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6540 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 6584 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.parm_err);
out 6586 librpc/gen_ndr/ndr_wkssvc.c r->out.parm_err = NULL;
out 6588 librpc/gen_ndr/ndr_wkssvc.c if (r->out.parm_err) {
out 6590 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.parm_err, 0);
out 6591 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.parm_err));
out 6594 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6631 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "parm_err", r->out.parm_err);
out 6633 librpc/gen_ndr/ndr_wkssvc.c if (r->out.parm_err) {
out 6634 librpc/gen_ndr/ndr_wkssvc.c ndr_print_uint32(ndr, "parm_err", *r->out.parm_err);
out 6637 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6663 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6714 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6747 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6775 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.parm_err));
out 6776 librpc/gen_ndr/ndr_wkssvc.c if (r->out.parm_err) {
out 6777 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.parm_err));
out 6779 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6792 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 6837 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.parm_err);
out 6839 librpc/gen_ndr/ndr_wkssvc.c r->out.parm_err = NULL;
out 6841 librpc/gen_ndr/ndr_wkssvc.c if (r->out.parm_err) {
out 6843 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.parm_err, 0);
out 6844 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.parm_err));
out 6847 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 6885 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "parm_err", r->out.parm_err);
out 6887 librpc/gen_ndr/ndr_wkssvc.c if (r->out.parm_err) {
out 6888 librpc/gen_ndr/ndr_wkssvc.c ndr_print_uint32(ndr, "parm_err", *r->out.parm_err);
out 6891 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 6917 librpc/gen_ndr/ndr_wkssvc.c if (r->out.ctr == NULL) {
out 6920 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.ctr, r->in.level));
out 6921 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_wkssvc_NetrUseGetInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 6922 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 6933 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 6961 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 6962 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCTP(r->out.ctr);
out 6966 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 6969 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ctr, LIBNDR_FLAG_REF_ALLOC);
out 6970 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.ctr, r->in.level));
out 6971 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_wkssvc_NetrUseGetInfoCtr(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.ctr));
out 6973 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 7004 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "ctr", r->out.ctr);
out 7006 librpc/gen_ndr/ndr_wkssvc.c ndr_print_set_switch_value(ndr, r->out.ctr, r->in.level);
out 7007 librpc/gen_ndr/ndr_wkssvc.c ndr_print_wkssvc_NetrUseGetInfoCtr(ndr, "ctr", r->out.ctr);
out 7009 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 7035 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 7073 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 7104 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 7131 librpc/gen_ndr/ndr_wkssvc.c if (r->out.info == NULL) {
out 7134 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_wkssvc_NetrUseEnumInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 7135 librpc/gen_ndr/ndr_wkssvc.c if (r->out.entries_read == NULL) {
out 7138 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.entries_read));
out 7139 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.resume_handle));
out 7140 librpc/gen_ndr/ndr_wkssvc.c if (r->out.resume_handle) {
out 7141 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.resume_handle));
out 7143 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 7157 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 7197 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 7198 librpc/gen_ndr/ndr_wkssvc.c *r->out.info = *r->in.info;
out 7199 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.entries_read);
out 7200 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCTP(r->out.entries_read);
out 7204 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 7207 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 7208 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_wkssvc_NetrUseEnumInfo(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
out 7211 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.entries_read);
out 7214 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.entries_read, LIBNDR_FLAG_REF_ALLOC);
out 7215 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.entries_read));
out 7219 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.resume_handle);
out 7221 librpc/gen_ndr/ndr_wkssvc.c r->out.resume_handle = NULL;
out 7223 librpc/gen_ndr/ndr_wkssvc.c if (r->out.resume_handle) {
out 7225 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.resume_handle, 0);
out 7226 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.resume_handle));
out 7229 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 7266 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 7268 librpc/gen_ndr/ndr_wkssvc.c ndr_print_wkssvc_NetrUseEnumInfo(ndr, "info", r->out.info);
out 7270 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
out 7272 librpc/gen_ndr/ndr_wkssvc.c ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
out 7274 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 7276 librpc/gen_ndr/ndr_wkssvc.c if (r->out.resume_handle) {
out 7277 librpc/gen_ndr/ndr_wkssvc.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 7280 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 7318 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 7384 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 7425 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 7452 librpc/gen_ndr/ndr_wkssvc.c if (r->out.info == NULL) {
out 7455 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
out 7456 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.info) {
out 7457 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_wkssvc_NetrWorkstationStatistics(ndr, NDR_SCALARS, *r->out.info));
out 7459 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 7474 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 7514 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 7515 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCTP(r->out.info);
out 7519 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.info);
out 7522 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
out 7525 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 7527 librpc/gen_ndr/ndr_wkssvc.c *r->out.info = NULL;
out 7529 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.info) {
out 7531 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
out 7532 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_wkssvc_NetrWorkstationStatistics(ndr, NDR_SCALARS, *r->out.info));
out 7536 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 7570 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "info", r->out.info);
out 7572 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "info", *r->out.info);
out 7574 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.info) {
out 7575 librpc/gen_ndr/ndr_wkssvc.c ndr_print_wkssvc_NetrWorkstationStatistics(ndr, "info", *r->out.info);
out 7579 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 7597 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 7614 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 7638 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 7656 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 7673 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 7697 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 7744 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 7842 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 7891 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 7924 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 7995 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 8034 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 8074 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 8165 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 8210 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 8250 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 8328 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 8371 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 8399 librpc/gen_ndr/ndr_wkssvc.c if (r->out.name_buffer == NULL) {
out 8402 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.name_buffer));
out 8403 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.name_buffer) {
out 8404 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.name_buffer, CH_UTF16)));
out 8406 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(*r->out.name_buffer, CH_UTF16)));
out 8407 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, *r->out.name_buffer, ndr_charset_length(*r->out.name_buffer, CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 8409 librpc/gen_ndr/ndr_wkssvc.c if (r->out.name_type == NULL) {
out 8412 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_wkssvc_NetJoinStatus(ndr, NDR_SCALARS, *r->out.name_type));
out 8413 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 8427 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 8471 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.name_buffer);
out 8472 librpc/gen_ndr/ndr_wkssvc.c *r->out.name_buffer = *r->in.name_buffer;
out 8473 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.name_type);
out 8474 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCTP(r->out.name_type);
out 8478 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.name_buffer);
out 8481 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.name_buffer, LIBNDR_FLAG_REF_ALLOC);
out 8484 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, *r->out.name_buffer);
out 8486 librpc/gen_ndr/ndr_wkssvc.c *r->out.name_buffer = NULL;
out 8488 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.name_buffer) {
out 8490 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.name_buffer, 0);
out 8491 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.name_buffer));
out 8492 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_array_length(ndr, r->out.name_buffer));
out 8493 librpc/gen_ndr/ndr_wkssvc.c if (ndr_get_array_length(ndr, r->out.name_buffer) > ndr_get_array_size(ndr, r->out.name_buffer)) {
out 8494 librpc/gen_ndr/ndr_wkssvc.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, r->out.name_buffer), ndr_get_array_length(ndr, r->out.name_buffer));
out 8496 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, r->out.name_buffer), sizeof(uint16_t)));
out 8497 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, r->out.name_buffer, ndr_get_array_length(ndr, r->out.name_buffer), sizeof(uint16_t), CH_UTF16));
out 8502 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.name_type);
out 8505 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.name_type, LIBNDR_FLAG_REF_ALLOC);
out 8506 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_wkssvc_NetJoinStatus(ndr, NDR_SCALARS, r->out.name_type));
out 8508 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 8543 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "name_buffer", r->out.name_buffer);
out 8545 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "name_buffer", *r->out.name_buffer);
out 8547 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.name_buffer) {
out 8548 librpc/gen_ndr/ndr_wkssvc.c ndr_print_string(ndr, "name_buffer", *r->out.name_buffer);
out 8552 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "name_type", r->out.name_type);
out 8554 librpc/gen_ndr/ndr_wkssvc.c ndr_print_wkssvc_NetJoinStatus(ndr, "name_type", *r->out.name_type);
out 8556 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 8600 librpc/gen_ndr/ndr_wkssvc.c if (r->out.num_ous == NULL) {
out 8603 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_ous));
out 8604 librpc/gen_ndr/ndr_wkssvc.c if (r->out.ous == NULL) {
out 8607 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.ous));
out 8608 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.ous) {
out 8609 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_ous));
out 8610 librpc/gen_ndr/ndr_wkssvc.c for (cntr_ous_2 = 0; cntr_ous_2 < *r->out.num_ous; cntr_ous_2++) {
out 8611 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, (*r->out.ous)[cntr_ous_2]));
out 8613 librpc/gen_ndr/ndr_wkssvc.c for (cntr_ous_2 = 0; cntr_ous_2 < *r->out.num_ous; cntr_ous_2++) {
out 8614 librpc/gen_ndr/ndr_wkssvc.c if ((*r->out.ous)[cntr_ous_2]) {
out 8615 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length((*r->out.ous)[cntr_ous_2], CH_UTF16)));
out 8617 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length((*r->out.ous)[cntr_ous_2], CH_UTF16)));
out 8618 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, (*r->out.ous)[cntr_ous_2], ndr_charset_length((*r->out.ous)[cntr_ous_2], CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 8622 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 8643 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 8713 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.num_ous);
out 8714 librpc/gen_ndr/ndr_wkssvc.c *r->out.num_ous = *r->in.num_ous;
out 8715 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.ous);
out 8716 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCTP(r->out.ous);
out 8720 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.num_ous);
out 8723 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.num_ous, LIBNDR_FLAG_REF_ALLOC);
out 8724 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.num_ous));
out 8727 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.ous);
out 8730 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ous, LIBNDR_FLAG_REF_ALLOC);
out 8733 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, *r->out.ous);
out 8735 librpc/gen_ndr/ndr_wkssvc.c *r->out.ous = NULL;
out 8737 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.ous) {
out 8739 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.ous, 0);
out 8740 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.ous));
out 8741 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC_N(ndr, *r->out.ous, ndr_get_array_size(ndr, r->out.ous));
out 8743 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.ous, 0);
out 8744 librpc/gen_ndr/ndr_wkssvc.c for (cntr_ous_2 = 0; cntr_ous_2 < *r->out.num_ous; cntr_ous_2++) {
out 8747 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, (*r->out.ous)[cntr_ous_2]);
out 8749 librpc/gen_ndr/ndr_wkssvc.c (*r->out.ous)[cntr_ous_2] = NULL;
out 8752 librpc/gen_ndr/ndr_wkssvc.c for (cntr_ous_2 = 0; cntr_ous_2 < *r->out.num_ous; cntr_ous_2++) {
out 8753 librpc/gen_ndr/ndr_wkssvc.c if ((*r->out.ous)[cntr_ous_2]) {
out 8755 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, (*r->out.ous)[cntr_ous_2], 0);
out 8756 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_array_size(ndr, &(*r->out.ous)[cntr_ous_2]));
out 8757 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_array_length(ndr, &(*r->out.ous)[cntr_ous_2]));
out 8758 librpc/gen_ndr/ndr_wkssvc.c if (ndr_get_array_length(ndr, &(*r->out.ous)[cntr_ous_2]) > ndr_get_array_size(ndr, &(*r->out.ous)[cntr_ous_2])) {
out 8759 librpc/gen_ndr/ndr_wkssvc.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &(*r->out.ous)[cntr_ous_2]), ndr_get_array_length(ndr, &(*r->out.ous)[cntr_ous_2]));
out 8761 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &(*r->out.ous)[cntr_ous_2]), sizeof(uint16_t)));
out 8762 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &(*r->out.ous)[cntr_ous_2], ndr_get_array_length(ndr, &(*r->out.ous)[cntr_ous_2]), sizeof(uint16_t), CH_UTF16));
out 8770 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 8771 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.ous) {
out 8772 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_check_array_size(ndr, (void*)r->out.ous, *r->out.num_ous));
out 8820 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "num_ous", r->out.num_ous);
out 8822 librpc/gen_ndr/ndr_wkssvc.c ndr_print_uint32(ndr, "num_ous", *r->out.num_ous);
out 8824 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "ous", r->out.ous);
out 8826 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "ous", *r->out.ous);
out 8828 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.ous) {
out 8829 librpc/gen_ndr/ndr_wkssvc.c ndr->print(ndr, "%s: ARRAY(%d)", "ous", (int)*r->out.num_ous);
out 8831 librpc/gen_ndr/ndr_wkssvc.c for (cntr_ous_2=0;cntr_ous_2<*r->out.num_ous;cntr_ous_2++) {
out 8834 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "ous", (*r->out.ous)[cntr_ous_2]);
out 8836 librpc/gen_ndr/ndr_wkssvc.c if ((*r->out.ous)[cntr_ous_2]) {
out 8837 librpc/gen_ndr/ndr_wkssvc.c ndr_print_string(ndr, "ous", (*r->out.ous)[cntr_ous_2]);
out 8847 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 8891 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 8983 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 9032 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 9062 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 9127 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 9166 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 9203 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 9288 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 9333 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 9370 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 9442 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 9485 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 9526 librpc/gen_ndr/ndr_wkssvc.c if (r->out.num_ous == NULL) {
out 9529 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_ous));
out 9530 librpc/gen_ndr/ndr_wkssvc.c if (r->out.ous == NULL) {
out 9533 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.ous));
out 9534 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.ous) {
out 9535 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, *r->out.num_ous));
out 9536 librpc/gen_ndr/ndr_wkssvc.c for (cntr_ous_2 = 0; cntr_ous_2 < *r->out.num_ous; cntr_ous_2++) {
out 9537 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, (*r->out.ous)[cntr_ous_2]));
out 9539 librpc/gen_ndr/ndr_wkssvc.c for (cntr_ous_2 = 0; cntr_ous_2 < *r->out.num_ous; cntr_ous_2++) {
out 9540 librpc/gen_ndr/ndr_wkssvc.c if ((*r->out.ous)[cntr_ous_2]) {
out 9541 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length((*r->out.ous)[cntr_ous_2], CH_UTF16)));
out 9543 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length((*r->out.ous)[cntr_ous_2], CH_UTF16)));
out 9544 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, (*r->out.ous)[cntr_ous_2], ndr_charset_length((*r->out.ous)[cntr_ous_2], CH_UTF16), sizeof(uint16_t), CH_UTF16));
out 9548 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 9569 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 9633 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.num_ous);
out 9634 librpc/gen_ndr/ndr_wkssvc.c *r->out.num_ous = *r->in.num_ous;
out 9635 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.ous);
out 9636 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCTP(r->out.ous);
out 9640 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.num_ous);
out 9643 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.num_ous, LIBNDR_FLAG_REF_ALLOC);
out 9644 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, r->out.num_ous));
out 9647 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.ous);
out 9650 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ous, LIBNDR_FLAG_REF_ALLOC);
out 9653 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, *r->out.ous);
out 9655 librpc/gen_ndr/ndr_wkssvc.c *r->out.ous = NULL;
out 9657 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.ous) {
out 9659 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.ous, 0);
out 9660 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_array_size(ndr, r->out.ous));
out 9661 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC_N(ndr, *r->out.ous, ndr_get_array_size(ndr, r->out.ous));
out 9663 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.ous, 0);
out 9664 librpc/gen_ndr/ndr_wkssvc.c for (cntr_ous_2 = 0; cntr_ous_2 < *r->out.num_ous; cntr_ous_2++) {
out 9667 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, (*r->out.ous)[cntr_ous_2]);
out 9669 librpc/gen_ndr/ndr_wkssvc.c (*r->out.ous)[cntr_ous_2] = NULL;
out 9672 librpc/gen_ndr/ndr_wkssvc.c for (cntr_ous_2 = 0; cntr_ous_2 < *r->out.num_ous; cntr_ous_2++) {
out 9673 librpc/gen_ndr/ndr_wkssvc.c if ((*r->out.ous)[cntr_ous_2]) {
out 9675 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, (*r->out.ous)[cntr_ous_2], 0);
out 9676 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_array_size(ndr, &(*r->out.ous)[cntr_ous_2]));
out 9677 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_array_length(ndr, &(*r->out.ous)[cntr_ous_2]));
out 9678 librpc/gen_ndr/ndr_wkssvc.c if (ndr_get_array_length(ndr, &(*r->out.ous)[cntr_ous_2]) > ndr_get_array_size(ndr, &(*r->out.ous)[cntr_ous_2])) {
out 9679 librpc/gen_ndr/ndr_wkssvc.c return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &(*r->out.ous)[cntr_ous_2]), ndr_get_array_length(ndr, &(*r->out.ous)[cntr_ous_2]));
out 9681 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &(*r->out.ous)[cntr_ous_2]), sizeof(uint16_t)));
out 9682 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &(*r->out.ous)[cntr_ous_2], ndr_get_array_length(ndr, &(*r->out.ous)[cntr_ous_2]), sizeof(uint16_t), CH_UTF16));
out 9690 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 9691 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.ous) {
out 9692 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_check_array_size(ndr, (void*)r->out.ous, *r->out.num_ous));
out 9740 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "num_ous", r->out.num_ous);
out 9742 librpc/gen_ndr/ndr_wkssvc.c ndr_print_uint32(ndr, "num_ous", *r->out.num_ous);
out 9744 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "ous", r->out.ous);
out 9746 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "ous", *r->out.ous);
out 9748 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.ous) {
out 9749 librpc/gen_ndr/ndr_wkssvc.c ndr->print(ndr, "%s: ARRAY(%d)", "ous", (int)*r->out.num_ous);
out 9751 librpc/gen_ndr/ndr_wkssvc.c for (cntr_ous_2=0;cntr_ous_2<*r->out.num_ous;cntr_ous_2++) {
out 9754 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "ous", (*r->out.ous)[cntr_ous_2]);
out 9756 librpc/gen_ndr/ndr_wkssvc.c if ((*r->out.ous)[cntr_ous_2]) {
out 9757 librpc/gen_ndr/ndr_wkssvc.c ndr_print_string(ndr, "ous", (*r->out.ous)[cntr_ous_2]);
out 9767 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 9804 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 9889 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 9934 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 9971 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 10056 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 10101 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 10138 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 10223 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 10268 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 10288 librpc/gen_ndr/ndr_wkssvc.c if (r->out.ctr == NULL) {
out 10291 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.ctr));
out 10292 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.ctr) {
out 10293 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_wkssvc_ComputerNamesCtr(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.ctr));
out 10295 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
out 10308 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCT(r->out);
out 10330 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 10331 librpc/gen_ndr/ndr_wkssvc.c ZERO_STRUCTP(r->out.ctr);
out 10335 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, r->out.ctr);
out 10338 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, r->out.ctr, LIBNDR_FLAG_REF_ALLOC);
out 10341 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_ALLOC(ndr, *r->out.ctr);
out 10343 librpc/gen_ndr/ndr_wkssvc.c *r->out.ctr = NULL;
out 10345 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.ctr) {
out 10347 librpc/gen_ndr/ndr_wkssvc.c NDR_PULL_SET_MEM_CTX(ndr, *r->out.ctr, 0);
out 10348 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_wkssvc_ComputerNamesCtr(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.ctr));
out 10352 librpc/gen_ndr/ndr_wkssvc.c NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
out 10380 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "ctr", r->out.ctr);
out 10382 librpc/gen_ndr/ndr_wkssvc.c ndr_print_ptr(ndr, "ctr", *r->out.ctr);
out 10384 librpc/gen_ndr/ndr_wkssvc.c if (*r->out.ctr) {
out 10385 librpc/gen_ndr/ndr_wkssvc.c ndr_print_wkssvc_ComputerNamesCtr(ndr, "ctr", *r->out.ctr);
out 10389 librpc/gen_ndr/ndr_wkssvc.c ndr_print_WERROR(ndr, "result", r->out.result);
out 1009 librpc/gen_ndr/netlogon.h } out;
out 1024 librpc/gen_ndr/netlogon.h } out;
out 1045 librpc/gen_ndr/netlogon.h } out;
out 1063 librpc/gen_ndr/netlogon.h } out;
out 1078 librpc/gen_ndr/netlogon.h } out;
out 1095 librpc/gen_ndr/netlogon.h } out;
out 1113 librpc/gen_ndr/netlogon.h } out;
out 1134 librpc/gen_ndr/netlogon.h } out;
out 1155 librpc/gen_ndr/netlogon.h } out;
out 1179 librpc/gen_ndr/netlogon.h } out;
out 1204 librpc/gen_ndr/netlogon.h } out;
out 1218 librpc/gen_ndr/netlogon.h } out;
out 1233 librpc/gen_ndr/netlogon.h } out;
out 1247 librpc/gen_ndr/netlogon.h } out;
out 1263 librpc/gen_ndr/netlogon.h } out;
out 1282 librpc/gen_ndr/netlogon.h } out;
out 1304 librpc/gen_ndr/netlogon.h } out;
out 1323 librpc/gen_ndr/netlogon.h } out;
out 1339 librpc/gen_ndr/netlogon.h } out;
out 1352 librpc/gen_ndr/netlogon.h } out;
out 1369 librpc/gen_ndr/netlogon.h } out;
out 1387 librpc/gen_ndr/netlogon.h } out;
out 1395 librpc/gen_ndr/netlogon.h } out;
out 1409 librpc/gen_ndr/netlogon.h } out;
out 1417 librpc/gen_ndr/netlogon.h } out;
out 1425 librpc/gen_ndr/netlogon.h } out;
out 1445 librpc/gen_ndr/netlogon.h } out;
out 1462 librpc/gen_ndr/netlogon.h } out;
out 1475 librpc/gen_ndr/netlogon.h } out;
out 1494 librpc/gen_ndr/netlogon.h } out;
out 1512 librpc/gen_ndr/netlogon.h } out;
out 1530 librpc/gen_ndr/netlogon.h } out;
out 1538 librpc/gen_ndr/netlogon.h } out;
out 1553 librpc/gen_ndr/netlogon.h } out;
out 1572 librpc/gen_ndr/netlogon.h } out;
out 1580 librpc/gen_ndr/netlogon.h } out;
out 1593 librpc/gen_ndr/netlogon.h } out;
out 1608 librpc/gen_ndr/netlogon.h } out;
out 1621 librpc/gen_ndr/netlogon.h } out;
out 1641 librpc/gen_ndr/netlogon.h } out;
out 1655 librpc/gen_ndr/netlogon.h } out;
out 1671 librpc/gen_ndr/netlogon.h } out;
out 1690 librpc/gen_ndr/netlogon.h } out;
out 1705 librpc/gen_ndr/netlogon.h } out;
out 1722 librpc/gen_ndr/netlogon.h } out;
out 1745 librpc/gen_ndr/netlogon.h } out;
out 1765 librpc/gen_ndr/netlogon.h } out;
out 35 librpc/gen_ndr/ntsvcs.h } out;
out 43 librpc/gen_ndr/ntsvcs.h } out;
out 52 librpc/gen_ndr/ntsvcs.h } out;
out 60 librpc/gen_ndr/ntsvcs.h } out;
out 68 librpc/gen_ndr/ntsvcs.h } out;
out 76 librpc/gen_ndr/ntsvcs.h } out;
out 89 librpc/gen_ndr/ntsvcs.h } out;
out 97 librpc/gen_ndr/ntsvcs.h } out;
out 105 librpc/gen_ndr/ntsvcs.h } out;
out 113 librpc/gen_ndr/ntsvcs.h } out;
out 129 librpc/gen_ndr/ntsvcs.h } out;
out 143 librpc/gen_ndr/ntsvcs.h } out;
out 151 librpc/gen_ndr/ntsvcs.h } out;
out 172 librpc/gen_ndr/ntsvcs.h } out;
out 180 librpc/gen_ndr/ntsvcs.h } out;
out 188 librpc/gen_ndr/ntsvcs.h } out;
out 196 librpc/gen_ndr/ntsvcs.h } out;
out 204 librpc/gen_ndr/ntsvcs.h } out;
out 212 librpc/gen_ndr/ntsvcs.h } out;
out 220 librpc/gen_ndr/ntsvcs.h } out;
out 228 librpc/gen_ndr/ntsvcs.h } out;
out 236 librpc/gen_ndr/ntsvcs.h } out;
out 244 librpc/gen_ndr/ntsvcs.h } out;
out 252 librpc/gen_ndr/ntsvcs.h } out;
out 260 librpc/gen_ndr/ntsvcs.h } out;
out 268 librpc/gen_ndr/ntsvcs.h } out;
out 276 librpc/gen_ndr/ntsvcs.h } out;
out 284 librpc/gen_ndr/ntsvcs.h } out;
out 292 librpc/gen_ndr/ntsvcs.h } out;
out 300 librpc/gen_ndr/ntsvcs.h } out;
out 308 librpc/gen_ndr/ntsvcs.h } out;
out 316 librpc/gen_ndr/ntsvcs.h } out;
out 324 librpc/gen_ndr/ntsvcs.h } out;
out 332 librpc/gen_ndr/ntsvcs.h } out;
out 340 librpc/gen_ndr/ntsvcs.h } out;
out 348 librpc/gen_ndr/ntsvcs.h } out;
out 356 librpc/gen_ndr/ntsvcs.h } out;
out 364 librpc/gen_ndr/ntsvcs.h } out;
out 372 librpc/gen_ndr/ntsvcs.h } out;
out 380 librpc/gen_ndr/ntsvcs.h } out;
out 402 librpc/gen_ndr/ntsvcs.h } out;
out 418 librpc/gen_ndr/ntsvcs.h } out;
out 426 librpc/gen_ndr/ntsvcs.h } out;
out 434 librpc/gen_ndr/ntsvcs.h } out;
out 442 librpc/gen_ndr/ntsvcs.h } out;
out 450 librpc/gen_ndr/ntsvcs.h } out;
out 458 librpc/gen_ndr/ntsvcs.h } out;
out 466 librpc/gen_ndr/ntsvcs.h } out;
out 474 librpc/gen_ndr/ntsvcs.h } out;
out 482 librpc/gen_ndr/ntsvcs.h } out;
out 490 librpc/gen_ndr/ntsvcs.h } out;
out 498 librpc/gen_ndr/ntsvcs.h } out;
out 506 librpc/gen_ndr/ntsvcs.h } out;
out 514 librpc/gen_ndr/ntsvcs.h } out;
out 522 librpc/gen_ndr/ntsvcs.h } out;
out 530 librpc/gen_ndr/ntsvcs.h } out;
out 538 librpc/gen_ndr/ntsvcs.h } out;
out 546 librpc/gen_ndr/ntsvcs.h } out;
out 554 librpc/gen_ndr/ntsvcs.h } out;
out 562 librpc/gen_ndr/ntsvcs.h } out;
out 570 librpc/gen_ndr/ntsvcs.h } out;
out 578 librpc/gen_ndr/ntsvcs.h } out;
out 586 librpc/gen_ndr/ntsvcs.h } out;
out 594 librpc/gen_ndr/ntsvcs.h } out;
out 602 librpc/gen_ndr/ntsvcs.h } out;
out 832 librpc/gen_ndr/samr.h } out;
out 845 librpc/gen_ndr/samr.h } out;
out 859 librpc/gen_ndr/samr.h } out;
out 873 librpc/gen_ndr/samr.h } out;
out 885 librpc/gen_ndr/samr.h } out;
out 899 librpc/gen_ndr/samr.h } out;
out 916 librpc/gen_ndr/samr.h } out;
out 931 librpc/gen_ndr/samr.h } out;
out 945 librpc/gen_ndr/samr.h } out;
out 959 librpc/gen_ndr/samr.h } out;
out 975 librpc/gen_ndr/samr.h } out;
out 992 librpc/gen_ndr/samr.h } out;
out 1008 librpc/gen_ndr/samr.h } out;
out 1026 librpc/gen_ndr/samr.h } out;
out 1042 librpc/gen_ndr/samr.h } out;
out 1059 librpc/gen_ndr/samr.h } out;
out 1073 librpc/gen_ndr/samr.h } out;
out 1089 librpc/gen_ndr/samr.h } out;
out 1105 librpc/gen_ndr/samr.h } out;
out 1120 librpc/gen_ndr/samr.h } out;
out 1134 librpc/gen_ndr/samr.h } out;
out 1148 librpc/gen_ndr/samr.h } out;
out 1162 librpc/gen_ndr/samr.h } out;
out 1175 librpc/gen_ndr/samr.h } out;
out 1188 librpc/gen_ndr/samr.h } out;
out 1201 librpc/gen_ndr/samr.h } out;
out 1215 librpc/gen_ndr/samr.h } out;
out 1230 librpc/gen_ndr/samr.h } out;
out 1244 librpc/gen_ndr/samr.h } out;
out 1258 librpc/gen_ndr/samr.h } out;
out 1271 librpc/gen_ndr/samr.h } out;
out 1284 librpc/gen_ndr/samr.h } out;
out 1297 librpc/gen_ndr/samr.h } out;
out 1310 librpc/gen_ndr/samr.h } out;
out 1325 librpc/gen_ndr/samr.h } out;
out 1338 librpc/gen_ndr/samr.h } out;
out 1352 librpc/gen_ndr/samr.h } out;
out 1366 librpc/gen_ndr/samr.h } out;
out 1388 librpc/gen_ndr/samr.h } out;
out 1401 librpc/gen_ndr/samr.h } out;
out 1420 librpc/gen_ndr/samr.h } out;
out 1435 librpc/gen_ndr/samr.h } out;
out 1447 librpc/gen_ndr/samr.h } out;
out 1459 librpc/gen_ndr/samr.h } out;
out 1472 librpc/gen_ndr/samr.h } out;
out 1485 librpc/gen_ndr/samr.h } out;
out 1499 librpc/gen_ndr/samr.h } out;
out 1513 librpc/gen_ndr/samr.h } out;
out 1532 librpc/gen_ndr/samr.h } out;
out 1547 librpc/gen_ndr/samr.h } out;
out 1565 librpc/gen_ndr/samr.h } out;
out 1584 librpc/gen_ndr/samr.h } out;
out 1597 librpc/gen_ndr/samr.h } out;
out 1610 librpc/gen_ndr/samr.h } out;
out 1625 librpc/gen_ndr/samr.h } out;
out 1643 librpc/gen_ndr/samr.h } out;
out 1656 librpc/gen_ndr/samr.h } out;
out 1670 librpc/gen_ndr/samr.h } out;
out 1684 librpc/gen_ndr/samr.h } out;
out 1699 librpc/gen_ndr/samr.h } out;
out 1712 librpc/gen_ndr/samr.h } out;
out 1727 librpc/gen_ndr/samr.h } out;
out 1742 librpc/gen_ndr/samr.h } out;
out 1763 librpc/gen_ndr/samr.h } out;
out 1781 librpc/gen_ndr/samr.h } out;
out 1795 librpc/gen_ndr/samr.h } out;
out 1809 librpc/gen_ndr/samr.h } out;
out 1823 librpc/gen_ndr/samr.h } out;
out 1648 librpc/gen_ndr/spoolss.h } out;
out 1661 librpc/gen_ndr/spoolss.h } out;
out 1680 librpc/gen_ndr/spoolss.h } out;
out 1696 librpc/gen_ndr/spoolss.h } out;
out 1711 librpc/gen_ndr/spoolss.h } out;
out 1729 librpc/gen_ndr/spoolss.h } out;
out 1749 librpc/gen_ndr/spoolss.h } out;
out 1762 librpc/gen_ndr/spoolss.h } out;
out 1782 librpc/gen_ndr/spoolss.h } out;
out 1790 librpc/gen_ndr/spoolss.h } out;
out 1802 librpc/gen_ndr/spoolss.h } out;
out 1818 librpc/gen_ndr/spoolss.h } out;
out 1835 librpc/gen_ndr/spoolss.h } out;
out 1848 librpc/gen_ndr/spoolss.h } out;
out 1867 librpc/gen_ndr/spoolss.h } out;
out 1880 librpc/gen_ndr/spoolss.h } out;
out 1899 librpc/gen_ndr/spoolss.h } out;
out 1907 librpc/gen_ndr/spoolss.h } out;
out 1925 librpc/gen_ndr/spoolss.h } out;
out 1939 librpc/gen_ndr/spoolss.h } out;
out 1954 librpc/gen_ndr/spoolss.h } out;
out 1973 librpc/gen_ndr/spoolss.h } out;
out 1986 librpc/gen_ndr/spoolss.h } out;
out 2005 librpc/gen_ndr/spoolss.h } out;
out 2023 librpc/gen_ndr/spoolss.h } out;
out 2038 librpc/gen_ndr/spoolss.h } out;
out 2050 librpc/gen_ndr/spoolss.h } out;
out 2065 librpc/gen_ndr/spoolss.h } out;
out 2077 librpc/gen_ndr/spoolss.h } out;
out 2089 librpc/gen_ndr/spoolss.h } out;
out 2104 librpc/gen_ndr/spoolss.h } out;
out 2116 librpc/gen_ndr/spoolss.h } out;
out 2133 librpc/gen_ndr/spoolss.h } out;
out 2146 librpc/gen_ndr/spoolss.h } out;
out 2163 librpc/gen_ndr/spoolss.h } out;
out 2175 librpc/gen_ndr/spoolss.h } out;
out 2192 librpc/gen_ndr/spoolss.h } out;
out 2208 librpc/gen_ndr/spoolss.h } out;
out 2220 librpc/gen_ndr/spoolss.h } out;
out 2236 librpc/gen_ndr/spoolss.h } out;
out 2244 librpc/gen_ndr/spoolss.h } out;
out 2257 librpc/gen_ndr/spoolss.h } out;
out 2271 librpc/gen_ndr/spoolss.h } out;
out 2284 librpc/gen_ndr/spoolss.h } out;
out 2302 librpc/gen_ndr/spoolss.h } out;
out 2317 librpc/gen_ndr/spoolss.h } out;
out 2335 librpc/gen_ndr/spoolss.h } out;
out 2348 librpc/gen_ndr/spoolss.h } out;
out 2366 librpc/gen_ndr/spoolss.h } out;
out 2384 librpc/gen_ndr/spoolss.h } out;
out 2397 librpc/gen_ndr/spoolss.h } out;
out 2415 librpc/gen_ndr/spoolss.h } out;
out 2433 librpc/gen_ndr/spoolss.h } out;
out 2446 librpc/gen_ndr/spoolss.h } out;
out 2464 librpc/gen_ndr/spoolss.h } out;
out 2478 librpc/gen_ndr/spoolss.h } out;
out 2486 librpc/gen_ndr/spoolss.h } out;
out 2494 librpc/gen_ndr/spoolss.h } out;
out 2502 librpc/gen_ndr/spoolss.h } out;
out 2510 librpc/gen_ndr/spoolss.h } out;
out 2518 librpc/gen_ndr/spoolss.h } out;
out 2526 librpc/gen_ndr/spoolss.h } out;
out 2534 librpc/gen_ndr/spoolss.h } out;
out 2542 librpc/gen_ndr/spoolss.h } out;
out 2550 librpc/gen_ndr/spoolss.h } out;
out 2558 librpc/gen_ndr/spoolss.h } out;
out 2566 librpc/gen_ndr/spoolss.h } out;
out 2574 librpc/gen_ndr/spoolss.h } out;
out 2582 librpc/gen_ndr/spoolss.h } out;
out 2601 librpc/gen_ndr/spoolss.h } out;
out 2614 librpc/gen_ndr/spoolss.h } out;
out 2633 librpc/gen_ndr/spoolss.h } out;
out 2647 librpc/gen_ndr/spoolss.h } out;
out 2669 librpc/gen_ndr/spoolss.h } out;
out 2677 librpc/gen_ndr/spoolss.h } out;
out 2685 librpc/gen_ndr/spoolss.h } out;
out 2697 librpc/gen_ndr/spoolss.h } out;
out 2705 librpc/gen_ndr/spoolss.h } out;
out 2722 librpc/gen_ndr/spoolss.h } out;
out 2737 librpc/gen_ndr/spoolss.h } out;
out 2750 librpc/gen_ndr/spoolss.h } out;
out 2758 librpc/gen_ndr/spoolss.h } out;
out 2766 librpc/gen_ndr/spoolss.h } out;
out 2774 librpc/gen_ndr/spoolss.h } out;
out 2782 librpc/gen_ndr/spoolss.h } out;
out 2799 librpc/gen_ndr/spoolss.h } out;
out 2816 librpc/gen_ndr/spoolss.h } out;
out 2831 librpc/gen_ndr/spoolss.h } out;
out 2839 librpc/gen_ndr/spoolss.h } out;
out 2857 librpc/gen_ndr/spoolss.h } out;
out 2874 librpc/gen_ndr/spoolss.h } out;
out 2882 librpc/gen_ndr/spoolss.h } out;
out 2902 librpc/gen_ndr/spoolss.h } out;
out 2915 librpc/gen_ndr/spoolss.h } out;
out 2923 librpc/gen_ndr/spoolss.h } out;
out 2931 librpc/gen_ndr/spoolss.h } out;
out 2939 librpc/gen_ndr/spoolss.h } out;
out 2956 librpc/gen_ndr/spoolss.h } out;
out 2974 librpc/gen_ndr/spoolss.h } out;
out 2991 librpc/gen_ndr/spoolss.h } out;
out 3003 librpc/gen_ndr/spoolss.h } out;
out 3020 librpc/gen_ndr/spoolss.h } out;
out 3036 librpc/gen_ndr/spoolss.h } out;
out 3050 librpc/gen_ndr/spoolss.h } out;
out 3063 librpc/gen_ndr/spoolss.h } out;
out 3071 librpc/gen_ndr/spoolss.h } out;
out 3087 librpc/gen_ndr/spoolss.h } out;
out 3095 librpc/gen_ndr/spoolss.h } out;
out 3103 librpc/gen_ndr/spoolss.h } out;
out 3111 librpc/gen_ndr/spoolss.h } out;
out 3131 librpc/gen_ndr/spoolss.h } out;
out 3145 librpc/gen_ndr/spoolss.h } out;
out 3153 librpc/gen_ndr/spoolss.h } out;
out 3161 librpc/gen_ndr/spoolss.h } out;
out 3169 librpc/gen_ndr/spoolss.h } out;
out 3177 librpc/gen_ndr/spoolss.h } out;
out 3185 librpc/gen_ndr/spoolss.h } out;
out 3193 librpc/gen_ndr/spoolss.h } out;
out 47 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 48 librpc/gen_ndr/srv_dfs.c r->out.version = talloc_zero(r, enum dfs_ManagerVersion);
out 49 librpc/gen_ndr/srv_dfs.c if (r->out.version == NULL) {
out 127 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Add(p, r);
out 200 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Remove(p, r);
out 273 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_SetInfo(p, r);
out 346 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 347 librpc/gen_ndr/srv_dfs.c r->out.info = talloc_zero(r, union dfs_Info);
out 348 librpc/gen_ndr/srv_dfs.c if (r->out.info == NULL) {
out 353 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_GetInfo(p, r);
out 426 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 427 librpc/gen_ndr/srv_dfs.c r->out.info = r->in.info;
out 428 librpc/gen_ndr/srv_dfs.c r->out.total = r->in.total;
out 429 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Enum(p, r);
out 502 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Rename(p, r);
out 575 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Move(p, r);
out 648 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_ManagerGetConfigInfo(p, r);
out 721 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_ManagerSendSiteInfo(p, r);
out 794 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 795 librpc/gen_ndr/srv_dfs.c r->out.unknown2 = r->in.unknown2;
out 796 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_AddFtRoot(p, r);
out 869 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 870 librpc/gen_ndr/srv_dfs.c r->out.unknown = r->in.unknown;
out 871 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_RemoveFtRoot(p, r);
out 944 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_AddStdRoot(p, r);
out 1017 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_RemoveStdRoot(p, r);
out 1090 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_ManagerInitialize(p, r);
out 1163 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_AddStdRootForced(p, r);
out 1236 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 1237 librpc/gen_ndr/srv_dfs.c r->out.server_fullname = r->in.server_fullname;
out 1238 librpc/gen_ndr/srv_dfs.c r->out.is_root = r->in.is_root;
out 1239 librpc/gen_ndr/srv_dfs.c r->out.ttl = r->in.ttl;
out 1240 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_GetDcAddress(p, r);
out 1313 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_SetDcAddress(p, r);
out 1386 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_FlushFtTable(p, r);
out 1459 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Add2(p, r);
out 1532 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Remove2(p, r);
out 1605 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 1606 librpc/gen_ndr/srv_dfs.c r->out.info = r->in.info;
out 1607 librpc/gen_ndr/srv_dfs.c r->out.total = r->in.total;
out 1608 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_EnumEx(p, r);
out 1681 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_SetInfo2(p, r);
out 1761 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 1762 librpc/gen_ndr/srv_dfs.c r->out.version = talloc_zero(mem_ctx, enum dfs_ManagerVersion);
out 1763 librpc/gen_ndr/srv_dfs.c if (r->out.version == NULL) {
out 1773 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Add(cli->pipes_struct, r);
out 1779 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Remove(cli->pipes_struct, r);
out 1785 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_SetInfo(cli->pipes_struct, r);
out 1791 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 1792 librpc/gen_ndr/srv_dfs.c r->out.info = talloc_zero(mem_ctx, union dfs_Info);
out 1793 librpc/gen_ndr/srv_dfs.c if (r->out.info == NULL) {
out 1797 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_GetInfo(cli->pipes_struct, r);
out 1803 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 1804 librpc/gen_ndr/srv_dfs.c r->out.info = r->in.info;
out 1805 librpc/gen_ndr/srv_dfs.c r->out.total = r->in.total;
out 1806 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Enum(cli->pipes_struct, r);
out 1812 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Rename(cli->pipes_struct, r);
out 1818 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Move(cli->pipes_struct, r);
out 1824 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_ManagerGetConfigInfo(cli->pipes_struct, r);
out 1830 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_ManagerSendSiteInfo(cli->pipes_struct, r);
out 1836 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 1837 librpc/gen_ndr/srv_dfs.c r->out.unknown2 = r->in.unknown2;
out 1838 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_AddFtRoot(cli->pipes_struct, r);
out 1844 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 1845 librpc/gen_ndr/srv_dfs.c r->out.unknown = r->in.unknown;
out 1846 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_RemoveFtRoot(cli->pipes_struct, r);
out 1852 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_AddStdRoot(cli->pipes_struct, r);
out 1858 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_RemoveStdRoot(cli->pipes_struct, r);
out 1864 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_ManagerInitialize(cli->pipes_struct, r);
out 1870 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_AddStdRootForced(cli->pipes_struct, r);
out 1876 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 1877 librpc/gen_ndr/srv_dfs.c r->out.server_fullname = r->in.server_fullname;
out 1878 librpc/gen_ndr/srv_dfs.c r->out.is_root = r->in.is_root;
out 1879 librpc/gen_ndr/srv_dfs.c r->out.ttl = r->in.ttl;
out 1880 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_GetDcAddress(cli->pipes_struct, r);
out 1886 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_SetDcAddress(cli->pipes_struct, r);
out 1892 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_FlushFtTable(cli->pipes_struct, r);
out 1898 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Add2(cli->pipes_struct, r);
out 1904 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_Remove2(cli->pipes_struct, r);
out 1910 librpc/gen_ndr/srv_dfs.c ZERO_STRUCT(r->out);
out 1911 librpc/gen_ndr/srv_dfs.c r->out.info = r->in.info;
out 1912 librpc/gen_ndr/srv_dfs.c r->out.total = r->in.total;
out 1913 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_EnumEx(cli->pipes_struct, r);
out 1919 librpc/gen_ndr/srv_dfs.c r->out.result = _dfs_SetInfo2(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_dssetup.c ZERO_STRUCT(r->out);
out 48 librpc/gen_ndr/srv_dssetup.c r->out.info = talloc_zero(r, union dssetup_DsRoleInfo);
out 49 librpc/gen_ndr/srv_dssetup.c if (r->out.info == NULL) {
out 54 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleGetPrimaryDomainInformation(p, r);
out 127 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleDnsNameToFlatName(p, r);
out 200 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleDcAsDc(p, r);
out 273 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleDcAsReplica(p, r);
out 346 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleDemoteDc(p, r);
out 419 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleGetDcOperationProgress(p, r);
out 492 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleGetDcOperationResults(p, r);
out 565 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleCancel(p, r);
out 638 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleServerSaveStateForUpgrade(p, r);
out 711 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleUpgradeDownlevelServer(p, r);
out 784 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleAbortDownlevelServerUpgrade(p, r);
out 852 librpc/gen_ndr/srv_dssetup.c ZERO_STRUCT(r->out);
out 853 librpc/gen_ndr/srv_dssetup.c r->out.info = talloc_zero(mem_ctx, union dssetup_DsRoleInfo);
out 854 librpc/gen_ndr/srv_dssetup.c if (r->out.info == NULL) {
out 858 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleGetPrimaryDomainInformation(cli->pipes_struct, r);
out 864 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleDnsNameToFlatName(cli->pipes_struct, r);
out 870 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleDcAsDc(cli->pipes_struct, r);
out 876 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleDcAsReplica(cli->pipes_struct, r);
out 882 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleDemoteDc(cli->pipes_struct, r);
out 888 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleGetDcOperationProgress(cli->pipes_struct, r);
out 894 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleGetDcOperationResults(cli->pipes_struct, r);
out 900 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleCancel(cli->pipes_struct, r);
out 906 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleServerSaveStateForUpgrade(cli->pipes_struct, r);
out 912 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleUpgradeDownlevelServer(cli->pipes_struct, r);
out 918 librpc/gen_ndr/srv_dssetup.c r->out.result = _dssetup_DsRoleAbortDownlevelServerUpgrade(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 48 librpc/gen_ndr/srv_echo.c r->out.out_data = talloc_zero(r, uint32_t);
out 49 librpc/gen_ndr/srv_echo.c if (r->out.out_data == NULL) {
out 127 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 128 librpc/gen_ndr/srv_echo.c r->out.out_data = talloc_zero_array(r, uint8_t, r->in.len);
out 129 librpc/gen_ndr/srv_echo.c if (r->out.out_data == NULL) {
out 280 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 281 librpc/gen_ndr/srv_echo.c r->out.data = talloc_zero_array(r, uint8_t, r->in.len);
out 282 librpc/gen_ndr/srv_echo.c if (r->out.data == NULL) {
out 360 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 361 librpc/gen_ndr/srv_echo.c r->out.s2 = talloc_zero(r, const char *);
out 362 librpc/gen_ndr/srv_echo.c if (r->out.s2 == NULL) {
out 440 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 441 librpc/gen_ndr/srv_echo.c r->out.info = talloc_zero(r, union echo_Info);
out 442 librpc/gen_ndr/srv_echo.c if (r->out.info == NULL) {
out 447 librpc/gen_ndr/srv_echo.c r->out.result = _echo_TestCall2(p, r);
out 520 librpc/gen_ndr/srv_echo.c r->out.result = _echo_TestSleep(p, r);
out 593 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 594 librpc/gen_ndr/srv_echo.c r->out.foo1 = r->in.foo1;
out 595 librpc/gen_ndr/srv_echo.c r->out.foo2 = r->in.foo2;
out 596 librpc/gen_ndr/srv_echo.c r->out.foo3 = r->in.foo3;
out 670 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 671 librpc/gen_ndr/srv_echo.c r->out.data = r->in.data;
out 745 librpc/gen_ndr/srv_echo.c r->out.result = _echo_TestDoublePointer(p, r);
out 812 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 813 librpc/gen_ndr/srv_echo.c r->out.out_data = talloc_zero(mem_ctx, uint32_t);
out 814 librpc/gen_ndr/srv_echo.c if (r->out.out_data == NULL) {
out 824 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 825 librpc/gen_ndr/srv_echo.c r->out.out_data = talloc_zero_array(mem_ctx, uint8_t, r->in.len);
out 826 librpc/gen_ndr/srv_echo.c if (r->out.out_data == NULL) {
out 842 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 843 librpc/gen_ndr/srv_echo.c r->out.data = talloc_zero_array(mem_ctx, uint8_t, r->in.len);
out 844 librpc/gen_ndr/srv_echo.c if (r->out.data == NULL) {
out 854 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 855 librpc/gen_ndr/srv_echo.c r->out.s2 = talloc_zero(mem_ctx, const char *);
out 856 librpc/gen_ndr/srv_echo.c if (r->out.s2 == NULL) {
out 866 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 867 librpc/gen_ndr/srv_echo.c r->out.info = talloc_zero(mem_ctx, union echo_Info);
out 868 librpc/gen_ndr/srv_echo.c if (r->out.info == NULL) {
out 872 librpc/gen_ndr/srv_echo.c r->out.result = _echo_TestCall2(cli->pipes_struct, r);
out 878 librpc/gen_ndr/srv_echo.c r->out.result = _echo_TestSleep(cli->pipes_struct, r);
out 884 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 885 librpc/gen_ndr/srv_echo.c r->out.foo1 = r->in.foo1;
out 886 librpc/gen_ndr/srv_echo.c r->out.foo2 = r->in.foo2;
out 887 librpc/gen_ndr/srv_echo.c r->out.foo3 = r->in.foo3;
out 894 librpc/gen_ndr/srv_echo.c ZERO_STRUCT(r->out);
out 895 librpc/gen_ndr/srv_echo.c r->out.data = r->in.data;
out 902 librpc/gen_ndr/srv_echo.c r->out.result = _echo_TestDoublePointer(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_Insert(p, r);
out 120 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_Delete(p, r);
out 193 librpc/gen_ndr/srv_epmapper.c ZERO_STRUCT(r->out);
out 194 librpc/gen_ndr/srv_epmapper.c r->out.entry_handle = r->in.entry_handle;
out 195 librpc/gen_ndr/srv_epmapper.c r->out.num_ents = talloc_zero(r, uint32_t);
out 196 librpc/gen_ndr/srv_epmapper.c if (r->out.num_ents == NULL) {
out 201 librpc/gen_ndr/srv_epmapper.c r->out.entries = talloc_zero_array(r, struct epm_entry_t, r->in.max_ents);
out 202 librpc/gen_ndr/srv_epmapper.c if (r->out.entries == NULL) {
out 207 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_Lookup(p, r);
out 280 librpc/gen_ndr/srv_epmapper.c ZERO_STRUCT(r->out);
out 281 librpc/gen_ndr/srv_epmapper.c r->out.entry_handle = r->in.entry_handle;
out 282 librpc/gen_ndr/srv_epmapper.c r->out.num_towers = talloc_zero(r, uint32_t);
out 283 librpc/gen_ndr/srv_epmapper.c if (r->out.num_towers == NULL) {
out 288 librpc/gen_ndr/srv_epmapper.c r->out.towers = talloc_zero_array(r, struct epm_twr_p_t, r->in.max_towers);
out 289 librpc/gen_ndr/srv_epmapper.c if (r->out.towers == NULL) {
out 294 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_Map(p, r);
out 367 librpc/gen_ndr/srv_epmapper.c ZERO_STRUCT(r->out);
out 368 librpc/gen_ndr/srv_epmapper.c r->out.entry_handle = r->in.entry_handle;
out 369 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_LookupHandleFree(p, r);
out 442 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_InqObject(p, r);
out 515 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_MgmtDelete(p, r);
out 588 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_MapAuth(p, r);
out 653 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_Insert(cli->pipes_struct, r);
out 659 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_Delete(cli->pipes_struct, r);
out 665 librpc/gen_ndr/srv_epmapper.c ZERO_STRUCT(r->out);
out 666 librpc/gen_ndr/srv_epmapper.c r->out.entry_handle = r->in.entry_handle;
out 667 librpc/gen_ndr/srv_epmapper.c r->out.num_ents = talloc_zero(mem_ctx, uint32_t);
out 668 librpc/gen_ndr/srv_epmapper.c if (r->out.num_ents == NULL) {
out 672 librpc/gen_ndr/srv_epmapper.c r->out.entries = talloc_zero_array(mem_ctx, struct epm_entry_t, r->in.max_ents);
out 673 librpc/gen_ndr/srv_epmapper.c if (r->out.entries == NULL) {
out 677 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_Lookup(cli->pipes_struct, r);
out 683 librpc/gen_ndr/srv_epmapper.c ZERO_STRUCT(r->out);
out 684 librpc/gen_ndr/srv_epmapper.c r->out.entry_handle = r->in.entry_handle;
out 685 librpc/gen_ndr/srv_epmapper.c r->out.num_towers = talloc_zero(mem_ctx, uint32_t);
out 686 librpc/gen_ndr/srv_epmapper.c if (r->out.num_towers == NULL) {
out 690 librpc/gen_ndr/srv_epmapper.c r->out.towers = talloc_zero_array(mem_ctx, struct epm_twr_p_t, r->in.max_towers);
out 691 librpc/gen_ndr/srv_epmapper.c if (r->out.towers == NULL) {
out 695 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_Map(cli->pipes_struct, r);
out 701 librpc/gen_ndr/srv_epmapper.c ZERO_STRUCT(r->out);
out 702 librpc/gen_ndr/srv_epmapper.c r->out.entry_handle = r->in.entry_handle;
out 703 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_LookupHandleFree(cli->pipes_struct, r);
out 709 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_InqObject(cli->pipes_struct, r);
out 715 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_MgmtDelete(cli->pipes_struct, r);
out 721 librpc/gen_ndr/srv_epmapper.c r->out.result = _epm_MapAuth(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ClearEventLogW(p, r);
out 120 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_BackupEventLogW(p, r);
out 193 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 194 librpc/gen_ndr/srv_eventlog.c r->out.handle = r->in.handle;
out 195 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_CloseEventLog(p, r);
out 268 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 269 librpc/gen_ndr/srv_eventlog.c r->out.handle = r->in.handle;
out 270 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_DeregisterEventSource(p, r);
out 343 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 344 librpc/gen_ndr/srv_eventlog.c r->out.number = talloc_zero(r, uint32_t);
out 345 librpc/gen_ndr/srv_eventlog.c if (r->out.number == NULL) {
out 350 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_GetNumRecords(p, r);
out 423 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 424 librpc/gen_ndr/srv_eventlog.c r->out.oldest_entry = talloc_zero(r, uint32_t);
out 425 librpc/gen_ndr/srv_eventlog.c if (r->out.oldest_entry == NULL) {
out 430 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_GetOldestRecord(p, r);
out 503 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ChangeNotify(p, r);
out 576 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 577 librpc/gen_ndr/srv_eventlog.c r->out.handle = talloc_zero(r, struct policy_handle);
out 578 librpc/gen_ndr/srv_eventlog.c if (r->out.handle == NULL) {
out 583 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_OpenEventLogW(p, r);
out 656 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 657 librpc/gen_ndr/srv_eventlog.c r->out.log_handle = talloc_zero(r, struct policy_handle);
out 658 librpc/gen_ndr/srv_eventlog.c if (r->out.log_handle == NULL) {
out 663 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_RegisterEventSourceW(p, r);
out 736 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 737 librpc/gen_ndr/srv_eventlog.c r->out.handle = talloc_zero(r, struct policy_handle);
out 738 librpc/gen_ndr/srv_eventlog.c if (r->out.handle == NULL) {
out 743 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_OpenBackupEventLogW(p, r);
out 816 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 817 librpc/gen_ndr/srv_eventlog.c r->out.data = talloc_zero_array(r, uint8_t, r->in.number_of_bytes);
out 818 librpc/gen_ndr/srv_eventlog.c if (r->out.data == NULL) {
out 823 librpc/gen_ndr/srv_eventlog.c r->out.sent_size = talloc_zero(r, uint32_t);
out 824 librpc/gen_ndr/srv_eventlog.c if (r->out.sent_size == NULL) {
out 829 librpc/gen_ndr/srv_eventlog.c r->out.real_size = talloc_zero(r, uint32_t);
out 830 librpc/gen_ndr/srv_eventlog.c if (r->out.real_size == NULL) {
out 835 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ReadEventLogW(p, r);
out 908 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 909 librpc/gen_ndr/srv_eventlog.c r->out.record_number = r->in.record_number;
out 910 librpc/gen_ndr/srv_eventlog.c r->out.time_written = r->in.time_written;
out 911 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ReportEventW(p, r);
out 984 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ClearEventLogA(p, r);
out 1057 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_BackupEventLogA(p, r);
out 1130 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_OpenEventLogA(p, r);
out 1203 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_RegisterEventSourceA(p, r);
out 1276 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_OpenBackupEventLogA(p, r);
out 1349 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ReadEventLogA(p, r);
out 1422 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ReportEventA(p, r);
out 1495 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_RegisterClusterSvc(p, r);
out 1568 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_DeregisterClusterSvc(p, r);
out 1641 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_WriteClusterEvents(p, r);
out 1714 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 1715 librpc/gen_ndr/srv_eventlog.c r->out.buffer = talloc_zero_array(r, uint8_t, r->in.buf_size);
out 1716 librpc/gen_ndr/srv_eventlog.c if (r->out.buffer == NULL) {
out 1721 librpc/gen_ndr/srv_eventlog.c r->out.bytes_needed = talloc_zero(r, uint32_t);
out 1722 librpc/gen_ndr/srv_eventlog.c if (r->out.bytes_needed == NULL) {
out 1727 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_GetLogInformation(p, r);
out 1800 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_FlushEventLog(p, r);
out 1873 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 1874 librpc/gen_ndr/srv_eventlog.c r->out.record_number = r->in.record_number;
out 1875 librpc/gen_ndr/srv_eventlog.c r->out.time_written = r->in.time_written;
out 1876 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ReportEventAndSourceW(p, r);
out 1958 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ClearEventLogW(cli->pipes_struct, r);
out 1964 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_BackupEventLogW(cli->pipes_struct, r);
out 1970 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 1971 librpc/gen_ndr/srv_eventlog.c r->out.handle = r->in.handle;
out 1972 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_CloseEventLog(cli->pipes_struct, r);
out 1978 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 1979 librpc/gen_ndr/srv_eventlog.c r->out.handle = r->in.handle;
out 1980 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_DeregisterEventSource(cli->pipes_struct, r);
out 1986 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 1987 librpc/gen_ndr/srv_eventlog.c r->out.number = talloc_zero(mem_ctx, uint32_t);
out 1988 librpc/gen_ndr/srv_eventlog.c if (r->out.number == NULL) {
out 1992 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_GetNumRecords(cli->pipes_struct, r);
out 1998 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 1999 librpc/gen_ndr/srv_eventlog.c r->out.oldest_entry = talloc_zero(mem_ctx, uint32_t);
out 2000 librpc/gen_ndr/srv_eventlog.c if (r->out.oldest_entry == NULL) {
out 2004 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_GetOldestRecord(cli->pipes_struct, r);
out 2010 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ChangeNotify(cli->pipes_struct, r);
out 2016 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 2017 librpc/gen_ndr/srv_eventlog.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 2018 librpc/gen_ndr/srv_eventlog.c if (r->out.handle == NULL) {
out 2022 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_OpenEventLogW(cli->pipes_struct, r);
out 2028 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 2029 librpc/gen_ndr/srv_eventlog.c r->out.log_handle = talloc_zero(mem_ctx, struct policy_handle);
out 2030 librpc/gen_ndr/srv_eventlog.c if (r->out.log_handle == NULL) {
out 2034 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_RegisterEventSourceW(cli->pipes_struct, r);
out 2040 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 2041 librpc/gen_ndr/srv_eventlog.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 2042 librpc/gen_ndr/srv_eventlog.c if (r->out.handle == NULL) {
out 2046 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_OpenBackupEventLogW(cli->pipes_struct, r);
out 2052 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 2053 librpc/gen_ndr/srv_eventlog.c r->out.data = talloc_zero_array(mem_ctx, uint8_t, r->in.number_of_bytes);
out 2054 librpc/gen_ndr/srv_eventlog.c if (r->out.data == NULL) {
out 2058 librpc/gen_ndr/srv_eventlog.c r->out.sent_size = talloc_zero(mem_ctx, uint32_t);
out 2059 librpc/gen_ndr/srv_eventlog.c if (r->out.sent_size == NULL) {
out 2063 librpc/gen_ndr/srv_eventlog.c r->out.real_size = talloc_zero(mem_ctx, uint32_t);
out 2064 librpc/gen_ndr/srv_eventlog.c if (r->out.real_size == NULL) {
out 2068 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ReadEventLogW(cli->pipes_struct, r);
out 2074 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 2075 librpc/gen_ndr/srv_eventlog.c r->out.record_number = r->in.record_number;
out 2076 librpc/gen_ndr/srv_eventlog.c r->out.time_written = r->in.time_written;
out 2077 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ReportEventW(cli->pipes_struct, r);
out 2083 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ClearEventLogA(cli->pipes_struct, r);
out 2089 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_BackupEventLogA(cli->pipes_struct, r);
out 2095 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_OpenEventLogA(cli->pipes_struct, r);
out 2101 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_RegisterEventSourceA(cli->pipes_struct, r);
out 2107 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_OpenBackupEventLogA(cli->pipes_struct, r);
out 2113 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ReadEventLogA(cli->pipes_struct, r);
out 2119 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ReportEventA(cli->pipes_struct, r);
out 2125 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_RegisterClusterSvc(cli->pipes_struct, r);
out 2131 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_DeregisterClusterSvc(cli->pipes_struct, r);
out 2137 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_WriteClusterEvents(cli->pipes_struct, r);
out 2143 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 2144 librpc/gen_ndr/srv_eventlog.c r->out.buffer = talloc_zero_array(mem_ctx, uint8_t, r->in.buf_size);
out 2145 librpc/gen_ndr/srv_eventlog.c if (r->out.buffer == NULL) {
out 2149 librpc/gen_ndr/srv_eventlog.c r->out.bytes_needed = talloc_zero(mem_ctx, uint32_t);
out 2150 librpc/gen_ndr/srv_eventlog.c if (r->out.bytes_needed == NULL) {
out 2154 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_GetLogInformation(cli->pipes_struct, r);
out 2160 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_FlushEventLog(cli->pipes_struct, r);
out 2166 librpc/gen_ndr/srv_eventlog.c ZERO_STRUCT(r->out);
out 2167 librpc/gen_ndr/srv_eventlog.c r->out.record_number = r->in.record_number;
out 2168 librpc/gen_ndr/srv_eventlog.c r->out.time_written = r->in.time_written;
out 2169 librpc/gen_ndr/srv_eventlog.c r->out.result = _eventlog_ReportEventAndSourceW(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_initshutdown.c r->out.result = _initshutdown_Init(p, r);
out 120 librpc/gen_ndr/srv_initshutdown.c r->out.result = _initshutdown_Abort(p, r);
out 193 librpc/gen_ndr/srv_initshutdown.c r->out.result = _initshutdown_InitEx(p, r);
out 253 librpc/gen_ndr/srv_initshutdown.c r->out.result = _initshutdown_Init(cli->pipes_struct, r);
out 259 librpc/gen_ndr/srv_initshutdown.c r->out.result = _initshutdown_Abort(cli->pipes_struct, r);
out 265 librpc/gen_ndr/srv_initshutdown.c r->out.result = _initshutdown_InitEx(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 48 librpc/gen_ndr/srv_lsa.c r->out.handle = r->in.handle;
out 49 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_Close(p, r);
out 122 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_Delete(p, r);
out 195 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 196 librpc/gen_ndr/srv_lsa.c r->out.resume_handle = r->in.resume_handle;
out 197 librpc/gen_ndr/srv_lsa.c r->out.privs = talloc_zero(r, struct lsa_PrivArray);
out 198 librpc/gen_ndr/srv_lsa.c if (r->out.privs == NULL) {
out 203 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumPrivs(p, r);
out 276 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 277 librpc/gen_ndr/srv_lsa.c r->out.sdbuf = talloc_zero(r, struct sec_desc_buf *);
out 278 librpc/gen_ndr/srv_lsa.c if (r->out.sdbuf == NULL) {
out 283 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QuerySecurity(p, r);
out 356 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetSecObj(p, r);
out 429 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_ChangePassword(p, r);
out 502 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 503 librpc/gen_ndr/srv_lsa.c r->out.handle = talloc_zero(r, struct policy_handle);
out 504 librpc/gen_ndr/srv_lsa.c if (r->out.handle == NULL) {
out 509 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_OpenPolicy(p, r);
out 582 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 583 librpc/gen_ndr/srv_lsa.c r->out.info = talloc_zero(r, union lsa_PolicyInformation *);
out 584 librpc/gen_ndr/srv_lsa.c if (r->out.info == NULL) {
out 589 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QueryInfoPolicy(p, r);
out 662 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetInfoPolicy(p, r);
out 735 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_ClearAuditLog(p, r);
out 808 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 809 librpc/gen_ndr/srv_lsa.c r->out.acct_handle = talloc_zero(r, struct policy_handle);
out 810 librpc/gen_ndr/srv_lsa.c if (r->out.acct_handle == NULL) {
out 815 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CreateAccount(p, r);
out 888 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 889 librpc/gen_ndr/srv_lsa.c r->out.resume_handle = r->in.resume_handle;
out 890 librpc/gen_ndr/srv_lsa.c r->out.sids = talloc_zero(r, struct lsa_SidArray);
out 891 librpc/gen_ndr/srv_lsa.c if (r->out.sids == NULL) {
out 896 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumAccounts(p, r);
out 969 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 970 librpc/gen_ndr/srv_lsa.c r->out.trustdom_handle = talloc_zero(r, struct policy_handle);
out 971 librpc/gen_ndr/srv_lsa.c if (r->out.trustdom_handle == NULL) {
out 976 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CreateTrustedDomain(p, r);
out 1049 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 1050 librpc/gen_ndr/srv_lsa.c r->out.resume_handle = r->in.resume_handle;
out 1051 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(r, struct lsa_DomainList);
out 1052 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 1057 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumTrustDom(p, r);
out 1130 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 1131 librpc/gen_ndr/srv_lsa.c r->out.sids = r->in.sids;
out 1132 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 1133 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(r, struct lsa_RefDomainList *);
out 1134 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 1139 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupNames(p, r);
out 1212 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 1213 librpc/gen_ndr/srv_lsa.c r->out.names = r->in.names;
out 1214 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 1215 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(r, struct lsa_RefDomainList *);
out 1216 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 1221 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupSids(p, r);
out 1294 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 1295 librpc/gen_ndr/srv_lsa.c r->out.sec_handle = talloc_zero(r, struct policy_handle);
out 1296 librpc/gen_ndr/srv_lsa.c if (r->out.sec_handle == NULL) {
out 1301 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CreateSecret(p, r);
out 1374 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 1375 librpc/gen_ndr/srv_lsa.c r->out.acct_handle = talloc_zero(r, struct policy_handle);
out 1376 librpc/gen_ndr/srv_lsa.c if (r->out.acct_handle == NULL) {
out 1381 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_OpenAccount(p, r);
out 1454 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 1455 librpc/gen_ndr/srv_lsa.c r->out.privs = talloc_zero(r, struct lsa_PrivilegeSet *);
out 1456 librpc/gen_ndr/srv_lsa.c if (r->out.privs == NULL) {
out 1461 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumPrivsAccount(p, r);
out 1534 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_AddPrivilegesToAccount(p, r);
out 1607 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_RemovePrivilegesFromAccount(p, r);
out 1680 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_GetQuotasForAccount(p, r);
out 1753 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetQuotasForAccount(p, r);
out 1826 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 1827 librpc/gen_ndr/srv_lsa.c r->out.access_mask = talloc_zero(r, uint32_t);
out 1828 librpc/gen_ndr/srv_lsa.c if (r->out.access_mask == NULL) {
out 1833 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_GetSystemAccessAccount(p, r);
out 1906 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetSystemAccessAccount(p, r);
out 1979 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 1980 librpc/gen_ndr/srv_lsa.c r->out.trustdom_handle = talloc_zero(r, struct policy_handle);
out 1981 librpc/gen_ndr/srv_lsa.c if (r->out.trustdom_handle == NULL) {
out 1986 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_OpenTrustedDomain(p, r);
out 2059 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 2060 librpc/gen_ndr/srv_lsa.c r->out.info = talloc_zero(r, union lsa_TrustedDomainInfo *);
out 2061 librpc/gen_ndr/srv_lsa.c if (r->out.info == NULL) {
out 2066 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QueryTrustedDomainInfo(p, r);
out 2139 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetInformationTrustedDomain(p, r);
out 2212 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 2213 librpc/gen_ndr/srv_lsa.c r->out.sec_handle = talloc_zero(r, struct policy_handle);
out 2214 librpc/gen_ndr/srv_lsa.c if (r->out.sec_handle == NULL) {
out 2219 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_OpenSecret(p, r);
out 2292 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetSecret(p, r);
out 2365 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 2366 librpc/gen_ndr/srv_lsa.c r->out.new_val = r->in.new_val;
out 2367 librpc/gen_ndr/srv_lsa.c r->out.new_mtime = r->in.new_mtime;
out 2368 librpc/gen_ndr/srv_lsa.c r->out.old_val = r->in.old_val;
out 2369 librpc/gen_ndr/srv_lsa.c r->out.old_mtime = r->in.old_mtime;
out 2370 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QuerySecret(p, r);
out 2443 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 2444 librpc/gen_ndr/srv_lsa.c r->out.luid = talloc_zero(r, struct lsa_LUID);
out 2445 librpc/gen_ndr/srv_lsa.c if (r->out.luid == NULL) {
out 2450 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupPrivValue(p, r);
out 2523 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 2524 librpc/gen_ndr/srv_lsa.c r->out.name = talloc_zero(r, struct lsa_StringLarge *);
out 2525 librpc/gen_ndr/srv_lsa.c if (r->out.name == NULL) {
out 2530 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupPrivName(p, r);
out 2603 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 2604 librpc/gen_ndr/srv_lsa.c r->out.disp_name = talloc_zero(r, struct lsa_StringLarge *);
out 2605 librpc/gen_ndr/srv_lsa.c if (r->out.disp_name == NULL) {
out 2610 librpc/gen_ndr/srv_lsa.c r->out.returned_language_id = talloc_zero(r, uint16_t);
out 2611 librpc/gen_ndr/srv_lsa.c if (r->out.returned_language_id == NULL) {
out 2616 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupPrivDisplayName(p, r);
out 2689 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 2690 librpc/gen_ndr/srv_lsa.c r->out.handle = r->in.handle;
out 2691 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_DeleteObject(p, r);
out 2764 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 2765 librpc/gen_ndr/srv_lsa.c r->out.sids = talloc_zero(r, struct lsa_SidArray);
out 2766 librpc/gen_ndr/srv_lsa.c if (r->out.sids == NULL) {
out 2771 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumAccountsWithUserRight(p, r);
out 2844 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 2845 librpc/gen_ndr/srv_lsa.c r->out.rights = talloc_zero(r, struct lsa_RightSet);
out 2846 librpc/gen_ndr/srv_lsa.c if (r->out.rights == NULL) {
out 2851 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumAccountRights(p, r);
out 2924 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_AddAccountRights(p, r);
out 2997 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_RemoveAccountRights(p, r);
out 3070 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 3071 librpc/gen_ndr/srv_lsa.c r->out.info = talloc_zero(r, union lsa_TrustedDomainInfo *);
out 3072 librpc/gen_ndr/srv_lsa.c if (r->out.info == NULL) {
out 3077 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QueryTrustedDomainInfoBySid(p, r);
out 3150 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetTrustedDomainInfo(p, r);
out 3223 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_DeleteTrustedDomain(p, r);
out 3296 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_StorePrivateData(p, r);
out 3369 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_RetrievePrivateData(p, r);
out 3442 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 3443 librpc/gen_ndr/srv_lsa.c r->out.handle = talloc_zero(r, struct policy_handle);
out 3444 librpc/gen_ndr/srv_lsa.c if (r->out.handle == NULL) {
out 3449 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_OpenPolicy2(p, r);
out 3522 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 3523 librpc/gen_ndr/srv_lsa.c r->out.account_name = r->in.account_name;
out 3524 librpc/gen_ndr/srv_lsa.c r->out.authority_name = r->in.authority_name;
out 3525 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_GetUserName(p, r);
out 3598 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 3599 librpc/gen_ndr/srv_lsa.c r->out.info = talloc_zero(r, union lsa_PolicyInformation *);
out 3600 librpc/gen_ndr/srv_lsa.c if (r->out.info == NULL) {
out 3605 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QueryInfoPolicy2(p, r);
out 3678 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetInfoPolicy2(p, r);
out 3751 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 3752 librpc/gen_ndr/srv_lsa.c r->out.info = talloc_zero(r, union lsa_TrustedDomainInfo *);
out 3753 librpc/gen_ndr/srv_lsa.c if (r->out.info == NULL) {
out 3758 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QueryTrustedDomainInfoByName(p, r);
out 3831 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetTrustedDomainInfoByName(p, r);
out 3904 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 3905 librpc/gen_ndr/srv_lsa.c r->out.resume_handle = r->in.resume_handle;
out 3906 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(r, struct lsa_DomainListEx);
out 3907 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 3912 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumTrustedDomainsEx(p, r);
out 3985 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 3986 librpc/gen_ndr/srv_lsa.c r->out.trustdom_handle = talloc_zero(r, struct policy_handle);
out 3987 librpc/gen_ndr/srv_lsa.c if (r->out.trustdom_handle == NULL) {
out 3992 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CreateTrustedDomainEx(p, r);
out 4065 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 4066 librpc/gen_ndr/srv_lsa.c r->out.handle = r->in.handle;
out 4067 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CloseTrustedDomainEx(p, r);
out 4140 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 4141 librpc/gen_ndr/srv_lsa.c r->out.info = talloc_zero(r, union lsa_DomainInformationPolicy *);
out 4142 librpc/gen_ndr/srv_lsa.c if (r->out.info == NULL) {
out 4147 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QueryDomainInformationPolicy(p, r);
out 4220 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetDomainInformationPolicy(p, r);
out 4293 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 4294 librpc/gen_ndr/srv_lsa.c r->out.trustdom_handle = talloc_zero(r, struct policy_handle);
out 4295 librpc/gen_ndr/srv_lsa.c if (r->out.trustdom_handle == NULL) {
out 4300 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_OpenTrustedDomainByName(p, r);
out 4373 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_TestCall(p, r);
out 4446 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 4447 librpc/gen_ndr/srv_lsa.c r->out.names = r->in.names;
out 4448 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 4449 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(r, struct lsa_RefDomainList *);
out 4450 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 4455 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupSids2(p, r);
out 4528 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 4529 librpc/gen_ndr/srv_lsa.c r->out.sids = r->in.sids;
out 4530 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 4531 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(r, struct lsa_RefDomainList *);
out 4532 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 4537 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupNames2(p, r);
out 4610 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 4611 librpc/gen_ndr/srv_lsa.c r->out.trustdom_handle = talloc_zero(r, struct policy_handle);
out 4612 librpc/gen_ndr/srv_lsa.c if (r->out.trustdom_handle == NULL) {
out 4617 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CreateTrustedDomainEx2(p, r);
out 4690 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRWRITE(p, r);
out 4763 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRREAD(p, r);
out 4836 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRENUMERATE(p, r);
out 4909 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRWRITEDOMAINCREDENTIALS(p, r);
out 4982 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRREADDOMAINCREDENTIALS(p, r);
out 5055 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRDELETE(p, r);
out 5128 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRGETTARGETINFO(p, r);
out 5201 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRPROFILELOADED(p, r);
out 5274 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 5275 librpc/gen_ndr/srv_lsa.c r->out.sids = r->in.sids;
out 5276 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 5277 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(r, struct lsa_RefDomainList *);
out 5278 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 5283 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupNames3(p, r);
out 5356 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRGETSESSIONTYPES(p, r);
out 5429 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARREGISTERAUDITEVENT(p, r);
out 5502 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARGENAUDITEVENT(p, r);
out 5575 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARUNREGISTERAUDITEVENT(p, r);
out 5648 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 5649 librpc/gen_ndr/srv_lsa.c r->out.forest_trust_info = talloc_zero(r, struct lsa_ForestTrustInformation *);
out 5650 librpc/gen_ndr/srv_lsa.c if (r->out.forest_trust_info == NULL) {
out 5655 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_lsaRQueryForestTrustInformation(p, r);
out 5728 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARSETFORESTTRUSTINFORMATION(p, r);
out 5801 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRRENAME(p, r);
out 5874 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 5875 librpc/gen_ndr/srv_lsa.c r->out.names = r->in.names;
out 5876 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 5877 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(r, struct lsa_RefDomainList *);
out 5878 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 5883 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupSids3(p, r);
out 5956 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 5957 librpc/gen_ndr/srv_lsa.c r->out.sids = r->in.sids;
out 5958 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 5959 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(r, struct lsa_RefDomainList *);
out 5960 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 5965 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupNames4(p, r);
out 6038 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSAROPENPOLICYSCE(p, r);
out 6111 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARADTREGISTERSECURITYEVENTSOURCE(p, r);
out 6184 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARADTUNREGISTERSECURITYEVENTSOURCE(p, r);
out 6257 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARADTREPORTSECURITYEVENT(p, r);
out 6396 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6397 librpc/gen_ndr/srv_lsa.c r->out.handle = r->in.handle;
out 6398 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_Close(cli->pipes_struct, r);
out 6404 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_Delete(cli->pipes_struct, r);
out 6410 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6411 librpc/gen_ndr/srv_lsa.c r->out.resume_handle = r->in.resume_handle;
out 6412 librpc/gen_ndr/srv_lsa.c r->out.privs = talloc_zero(mem_ctx, struct lsa_PrivArray);
out 6413 librpc/gen_ndr/srv_lsa.c if (r->out.privs == NULL) {
out 6417 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumPrivs(cli->pipes_struct, r);
out 6423 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6424 librpc/gen_ndr/srv_lsa.c r->out.sdbuf = talloc_zero(mem_ctx, struct sec_desc_buf *);
out 6425 librpc/gen_ndr/srv_lsa.c if (r->out.sdbuf == NULL) {
out 6429 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QuerySecurity(cli->pipes_struct, r);
out 6435 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetSecObj(cli->pipes_struct, r);
out 6441 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_ChangePassword(cli->pipes_struct, r);
out 6447 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6448 librpc/gen_ndr/srv_lsa.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 6449 librpc/gen_ndr/srv_lsa.c if (r->out.handle == NULL) {
out 6453 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_OpenPolicy(cli->pipes_struct, r);
out 6459 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6460 librpc/gen_ndr/srv_lsa.c r->out.info = talloc_zero(mem_ctx, union lsa_PolicyInformation *);
out 6461 librpc/gen_ndr/srv_lsa.c if (r->out.info == NULL) {
out 6465 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QueryInfoPolicy(cli->pipes_struct, r);
out 6471 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetInfoPolicy(cli->pipes_struct, r);
out 6477 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_ClearAuditLog(cli->pipes_struct, r);
out 6483 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6484 librpc/gen_ndr/srv_lsa.c r->out.acct_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6485 librpc/gen_ndr/srv_lsa.c if (r->out.acct_handle == NULL) {
out 6489 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CreateAccount(cli->pipes_struct, r);
out 6495 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6496 librpc/gen_ndr/srv_lsa.c r->out.resume_handle = r->in.resume_handle;
out 6497 librpc/gen_ndr/srv_lsa.c r->out.sids = talloc_zero(mem_ctx, struct lsa_SidArray);
out 6498 librpc/gen_ndr/srv_lsa.c if (r->out.sids == NULL) {
out 6502 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumAccounts(cli->pipes_struct, r);
out 6508 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6509 librpc/gen_ndr/srv_lsa.c r->out.trustdom_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6510 librpc/gen_ndr/srv_lsa.c if (r->out.trustdom_handle == NULL) {
out 6514 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CreateTrustedDomain(cli->pipes_struct, r);
out 6520 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6521 librpc/gen_ndr/srv_lsa.c r->out.resume_handle = r->in.resume_handle;
out 6522 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(mem_ctx, struct lsa_DomainList);
out 6523 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 6527 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumTrustDom(cli->pipes_struct, r);
out 6533 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6534 librpc/gen_ndr/srv_lsa.c r->out.sids = r->in.sids;
out 6535 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 6536 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(mem_ctx, struct lsa_RefDomainList *);
out 6537 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 6541 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupNames(cli->pipes_struct, r);
out 6547 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6548 librpc/gen_ndr/srv_lsa.c r->out.names = r->in.names;
out 6549 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 6550 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(mem_ctx, struct lsa_RefDomainList *);
out 6551 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 6555 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupSids(cli->pipes_struct, r);
out 6561 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6562 librpc/gen_ndr/srv_lsa.c r->out.sec_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6563 librpc/gen_ndr/srv_lsa.c if (r->out.sec_handle == NULL) {
out 6567 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CreateSecret(cli->pipes_struct, r);
out 6573 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6574 librpc/gen_ndr/srv_lsa.c r->out.acct_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6575 librpc/gen_ndr/srv_lsa.c if (r->out.acct_handle == NULL) {
out 6579 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_OpenAccount(cli->pipes_struct, r);
out 6585 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6586 librpc/gen_ndr/srv_lsa.c r->out.privs = talloc_zero(mem_ctx, struct lsa_PrivilegeSet *);
out 6587 librpc/gen_ndr/srv_lsa.c if (r->out.privs == NULL) {
out 6591 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumPrivsAccount(cli->pipes_struct, r);
out 6597 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_AddPrivilegesToAccount(cli->pipes_struct, r);
out 6603 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_RemovePrivilegesFromAccount(cli->pipes_struct, r);
out 6609 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_GetQuotasForAccount(cli->pipes_struct, r);
out 6615 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetQuotasForAccount(cli->pipes_struct, r);
out 6621 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6622 librpc/gen_ndr/srv_lsa.c r->out.access_mask = talloc_zero(mem_ctx, uint32_t);
out 6623 librpc/gen_ndr/srv_lsa.c if (r->out.access_mask == NULL) {
out 6627 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_GetSystemAccessAccount(cli->pipes_struct, r);
out 6633 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetSystemAccessAccount(cli->pipes_struct, r);
out 6639 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6640 librpc/gen_ndr/srv_lsa.c r->out.trustdom_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6641 librpc/gen_ndr/srv_lsa.c if (r->out.trustdom_handle == NULL) {
out 6645 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_OpenTrustedDomain(cli->pipes_struct, r);
out 6651 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6652 librpc/gen_ndr/srv_lsa.c r->out.info = talloc_zero(mem_ctx, union lsa_TrustedDomainInfo *);
out 6653 librpc/gen_ndr/srv_lsa.c if (r->out.info == NULL) {
out 6657 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QueryTrustedDomainInfo(cli->pipes_struct, r);
out 6663 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetInformationTrustedDomain(cli->pipes_struct, r);
out 6669 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6670 librpc/gen_ndr/srv_lsa.c r->out.sec_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6671 librpc/gen_ndr/srv_lsa.c if (r->out.sec_handle == NULL) {
out 6675 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_OpenSecret(cli->pipes_struct, r);
out 6681 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetSecret(cli->pipes_struct, r);
out 6687 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6688 librpc/gen_ndr/srv_lsa.c r->out.new_val = r->in.new_val;
out 6689 librpc/gen_ndr/srv_lsa.c r->out.new_mtime = r->in.new_mtime;
out 6690 librpc/gen_ndr/srv_lsa.c r->out.old_val = r->in.old_val;
out 6691 librpc/gen_ndr/srv_lsa.c r->out.old_mtime = r->in.old_mtime;
out 6692 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QuerySecret(cli->pipes_struct, r);
out 6698 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6699 librpc/gen_ndr/srv_lsa.c r->out.luid = talloc_zero(mem_ctx, struct lsa_LUID);
out 6700 librpc/gen_ndr/srv_lsa.c if (r->out.luid == NULL) {
out 6704 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupPrivValue(cli->pipes_struct, r);
out 6710 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6711 librpc/gen_ndr/srv_lsa.c r->out.name = talloc_zero(mem_ctx, struct lsa_StringLarge *);
out 6712 librpc/gen_ndr/srv_lsa.c if (r->out.name == NULL) {
out 6716 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupPrivName(cli->pipes_struct, r);
out 6722 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6723 librpc/gen_ndr/srv_lsa.c r->out.disp_name = talloc_zero(mem_ctx, struct lsa_StringLarge *);
out 6724 librpc/gen_ndr/srv_lsa.c if (r->out.disp_name == NULL) {
out 6728 librpc/gen_ndr/srv_lsa.c r->out.returned_language_id = talloc_zero(mem_ctx, uint16_t);
out 6729 librpc/gen_ndr/srv_lsa.c if (r->out.returned_language_id == NULL) {
out 6733 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupPrivDisplayName(cli->pipes_struct, r);
out 6739 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6740 librpc/gen_ndr/srv_lsa.c r->out.handle = r->in.handle;
out 6741 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_DeleteObject(cli->pipes_struct, r);
out 6747 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6748 librpc/gen_ndr/srv_lsa.c r->out.sids = talloc_zero(mem_ctx, struct lsa_SidArray);
out 6749 librpc/gen_ndr/srv_lsa.c if (r->out.sids == NULL) {
out 6753 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumAccountsWithUserRight(cli->pipes_struct, r);
out 6759 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6760 librpc/gen_ndr/srv_lsa.c r->out.rights = talloc_zero(mem_ctx, struct lsa_RightSet);
out 6761 librpc/gen_ndr/srv_lsa.c if (r->out.rights == NULL) {
out 6765 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumAccountRights(cli->pipes_struct, r);
out 6771 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_AddAccountRights(cli->pipes_struct, r);
out 6777 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_RemoveAccountRights(cli->pipes_struct, r);
out 6783 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6784 librpc/gen_ndr/srv_lsa.c r->out.info = talloc_zero(mem_ctx, union lsa_TrustedDomainInfo *);
out 6785 librpc/gen_ndr/srv_lsa.c if (r->out.info == NULL) {
out 6789 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QueryTrustedDomainInfoBySid(cli->pipes_struct, r);
out 6795 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetTrustedDomainInfo(cli->pipes_struct, r);
out 6801 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_DeleteTrustedDomain(cli->pipes_struct, r);
out 6807 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_StorePrivateData(cli->pipes_struct, r);
out 6813 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_RetrievePrivateData(cli->pipes_struct, r);
out 6819 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6820 librpc/gen_ndr/srv_lsa.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 6821 librpc/gen_ndr/srv_lsa.c if (r->out.handle == NULL) {
out 6825 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_OpenPolicy2(cli->pipes_struct, r);
out 6831 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6832 librpc/gen_ndr/srv_lsa.c r->out.account_name = r->in.account_name;
out 6833 librpc/gen_ndr/srv_lsa.c r->out.authority_name = r->in.authority_name;
out 6834 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_GetUserName(cli->pipes_struct, r);
out 6840 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6841 librpc/gen_ndr/srv_lsa.c r->out.info = talloc_zero(mem_ctx, union lsa_PolicyInformation *);
out 6842 librpc/gen_ndr/srv_lsa.c if (r->out.info == NULL) {
out 6846 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QueryInfoPolicy2(cli->pipes_struct, r);
out 6852 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetInfoPolicy2(cli->pipes_struct, r);
out 6858 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6859 librpc/gen_ndr/srv_lsa.c r->out.info = talloc_zero(mem_ctx, union lsa_TrustedDomainInfo *);
out 6860 librpc/gen_ndr/srv_lsa.c if (r->out.info == NULL) {
out 6864 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QueryTrustedDomainInfoByName(cli->pipes_struct, r);
out 6870 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetTrustedDomainInfoByName(cli->pipes_struct, r);
out 6876 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6877 librpc/gen_ndr/srv_lsa.c r->out.resume_handle = r->in.resume_handle;
out 6878 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(mem_ctx, struct lsa_DomainListEx);
out 6879 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 6883 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_EnumTrustedDomainsEx(cli->pipes_struct, r);
out 6889 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6890 librpc/gen_ndr/srv_lsa.c r->out.trustdom_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6891 librpc/gen_ndr/srv_lsa.c if (r->out.trustdom_handle == NULL) {
out 6895 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CreateTrustedDomainEx(cli->pipes_struct, r);
out 6901 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6902 librpc/gen_ndr/srv_lsa.c r->out.handle = r->in.handle;
out 6903 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CloseTrustedDomainEx(cli->pipes_struct, r);
out 6909 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6910 librpc/gen_ndr/srv_lsa.c r->out.info = talloc_zero(mem_ctx, union lsa_DomainInformationPolicy *);
out 6911 librpc/gen_ndr/srv_lsa.c if (r->out.info == NULL) {
out 6915 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_QueryDomainInformationPolicy(cli->pipes_struct, r);
out 6921 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_SetDomainInformationPolicy(cli->pipes_struct, r);
out 6927 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6928 librpc/gen_ndr/srv_lsa.c r->out.trustdom_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6929 librpc/gen_ndr/srv_lsa.c if (r->out.trustdom_handle == NULL) {
out 6933 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_OpenTrustedDomainByName(cli->pipes_struct, r);
out 6939 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_TestCall(cli->pipes_struct, r);
out 6945 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6946 librpc/gen_ndr/srv_lsa.c r->out.names = r->in.names;
out 6947 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 6948 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(mem_ctx, struct lsa_RefDomainList *);
out 6949 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 6953 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupSids2(cli->pipes_struct, r);
out 6959 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6960 librpc/gen_ndr/srv_lsa.c r->out.sids = r->in.sids;
out 6961 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 6962 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(mem_ctx, struct lsa_RefDomainList *);
out 6963 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 6967 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupNames2(cli->pipes_struct, r);
out 6973 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 6974 librpc/gen_ndr/srv_lsa.c r->out.trustdom_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6975 librpc/gen_ndr/srv_lsa.c if (r->out.trustdom_handle == NULL) {
out 6979 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CreateTrustedDomainEx2(cli->pipes_struct, r);
out 6985 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRWRITE(cli->pipes_struct, r);
out 6991 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRREAD(cli->pipes_struct, r);
out 6997 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRENUMERATE(cli->pipes_struct, r);
out 7003 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRWRITEDOMAINCREDENTIALS(cli->pipes_struct, r);
out 7009 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRREADDOMAINCREDENTIALS(cli->pipes_struct, r);
out 7015 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRDELETE(cli->pipes_struct, r);
out 7021 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRGETTARGETINFO(cli->pipes_struct, r);
out 7027 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRPROFILELOADED(cli->pipes_struct, r);
out 7033 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 7034 librpc/gen_ndr/srv_lsa.c r->out.sids = r->in.sids;
out 7035 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 7036 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(mem_ctx, struct lsa_RefDomainList *);
out 7037 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 7041 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupNames3(cli->pipes_struct, r);
out 7047 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRGETSESSIONTYPES(cli->pipes_struct, r);
out 7053 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARREGISTERAUDITEVENT(cli->pipes_struct, r);
out 7059 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARGENAUDITEVENT(cli->pipes_struct, r);
out 7065 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARUNREGISTERAUDITEVENT(cli->pipes_struct, r);
out 7071 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 7072 librpc/gen_ndr/srv_lsa.c r->out.forest_trust_info = talloc_zero(mem_ctx, struct lsa_ForestTrustInformation *);
out 7073 librpc/gen_ndr/srv_lsa.c if (r->out.forest_trust_info == NULL) {
out 7077 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_lsaRQueryForestTrustInformation(cli->pipes_struct, r);
out 7083 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARSETFORESTTRUSTINFORMATION(cli->pipes_struct, r);
out 7089 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_CREDRRENAME(cli->pipes_struct, r);
out 7095 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 7096 librpc/gen_ndr/srv_lsa.c r->out.names = r->in.names;
out 7097 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 7098 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(mem_ctx, struct lsa_RefDomainList *);
out 7099 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 7103 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupSids3(cli->pipes_struct, r);
out 7109 librpc/gen_ndr/srv_lsa.c ZERO_STRUCT(r->out);
out 7110 librpc/gen_ndr/srv_lsa.c r->out.sids = r->in.sids;
out 7111 librpc/gen_ndr/srv_lsa.c r->out.count = r->in.count;
out 7112 librpc/gen_ndr/srv_lsa.c r->out.domains = talloc_zero(mem_ctx, struct lsa_RefDomainList *);
out 7113 librpc/gen_ndr/srv_lsa.c if (r->out.domains == NULL) {
out 7117 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LookupNames4(cli->pipes_struct, r);
out 7123 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSAROPENPOLICYSCE(cli->pipes_struct, r);
out 7129 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARADTREGISTERSECURITYEVENTSOURCE(cli->pipes_struct, r);
out 7135 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARADTUNREGISTERSECURITYEVENTSOURCE(cli->pipes_struct, r);
out 7141 librpc/gen_ndr/srv_lsa.c r->out.result = _lsa_LSARADTREPORTSECURITYEVENT(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 48 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(r, struct netr_UasInfo *);
out 49 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 54 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonUasLogon(p, r);
out 127 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 128 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(r, struct netr_UasLogoffInfo);
out 129 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 134 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonUasLogoff(p, r);
out 207 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 208 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 209 librpc/gen_ndr/srv_netlogon.c r->out.validation = talloc_zero(r, union netr_Validation);
out 210 librpc/gen_ndr/srv_netlogon.c if (r->out.validation == NULL) {
out 215 librpc/gen_ndr/srv_netlogon.c r->out.authoritative = talloc_zero(r, uint8_t);
out 216 librpc/gen_ndr/srv_netlogon.c if (r->out.authoritative == NULL) {
out 221 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonSamLogon(p, r);
out 294 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 295 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 296 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonSamLogoff(p, r);
out 369 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 370 librpc/gen_ndr/srv_netlogon.c r->out.return_credentials = talloc_zero(r, struct netr_Credential);
out 371 librpc/gen_ndr/srv_netlogon.c if (r->out.return_credentials == NULL) {
out 376 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerReqChallenge(p, r);
out 449 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 450 librpc/gen_ndr/srv_netlogon.c r->out.return_credentials = talloc_zero(r, struct netr_Credential);
out 451 librpc/gen_ndr/srv_netlogon.c if (r->out.return_credentials == NULL) {
out 456 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerAuthenticate(p, r);
out 529 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 530 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = talloc_zero(r, struct netr_Authenticator);
out 531 librpc/gen_ndr/srv_netlogon.c if (r->out.return_authenticator == NULL) {
out 536 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerPasswordSet(p, r);
out 609 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 610 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 611 librpc/gen_ndr/srv_netlogon.c r->out.sequence_num = r->in.sequence_num;
out 612 librpc/gen_ndr/srv_netlogon.c r->out.delta_enum_array = talloc_zero(r, struct netr_DELTA_ENUM_ARRAY *);
out 613 librpc/gen_ndr/srv_netlogon.c if (r->out.delta_enum_array == NULL) {
out 618 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DatabaseDeltas(p, r);
out 691 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 692 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 693 librpc/gen_ndr/srv_netlogon.c r->out.sync_context = r->in.sync_context;
out 694 librpc/gen_ndr/srv_netlogon.c r->out.delta_enum_array = talloc_zero(r, struct netr_DELTA_ENUM_ARRAY *);
out 695 librpc/gen_ndr/srv_netlogon.c if (r->out.delta_enum_array == NULL) {
out 700 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DatabaseSync(p, r);
out 773 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 774 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 775 librpc/gen_ndr/srv_netlogon.c r->out.buffer = talloc_zero(r, struct netr_AccountBuffer);
out 776 librpc/gen_ndr/srv_netlogon.c if (r->out.buffer == NULL) {
out 781 librpc/gen_ndr/srv_netlogon.c r->out.count_returned = talloc_zero(r, uint32_t);
out 782 librpc/gen_ndr/srv_netlogon.c if (r->out.count_returned == NULL) {
out 787 librpc/gen_ndr/srv_netlogon.c r->out.total_entries = talloc_zero(r, uint32_t);
out 788 librpc/gen_ndr/srv_netlogon.c if (r->out.total_entries == NULL) {
out 793 librpc/gen_ndr/srv_netlogon.c r->out.recordid = talloc_zero(r, struct netr_UAS_INFO_0);
out 794 librpc/gen_ndr/srv_netlogon.c if (r->out.recordid == NULL) {
out 799 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_AccountDeltas(p, r);
out 872 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 873 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 874 librpc/gen_ndr/srv_netlogon.c r->out.recordid = r->in.recordid;
out 875 librpc/gen_ndr/srv_netlogon.c r->out.buffer = talloc_zero(r, struct netr_AccountBuffer);
out 876 librpc/gen_ndr/srv_netlogon.c if (r->out.buffer == NULL) {
out 881 librpc/gen_ndr/srv_netlogon.c r->out.count_returned = talloc_zero(r, uint32_t);
out 882 librpc/gen_ndr/srv_netlogon.c if (r->out.count_returned == NULL) {
out 887 librpc/gen_ndr/srv_netlogon.c r->out.total_entries = talloc_zero(r, uint32_t);
out 888 librpc/gen_ndr/srv_netlogon.c if (r->out.total_entries == NULL) {
out 893 librpc/gen_ndr/srv_netlogon.c r->out.next_reference = talloc_zero(r, uint32_t);
out 894 librpc/gen_ndr/srv_netlogon.c if (r->out.next_reference == NULL) {
out 899 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_AccountSync(p, r);
out 972 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 973 librpc/gen_ndr/srv_netlogon.c r->out.dcname = talloc_zero(r, const char *);
out 974 librpc/gen_ndr/srv_netlogon.c if (r->out.dcname == NULL) {
out 979 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_GetDcName(p, r);
out 1052 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 1053 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(r, union netr_CONTROL_QUERY_INFORMATION);
out 1054 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 1059 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonControl(p, r);
out 1132 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 1133 librpc/gen_ndr/srv_netlogon.c r->out.dcname = talloc_zero(r, const char *);
out 1134 librpc/gen_ndr/srv_netlogon.c if (r->out.dcname == NULL) {
out 1139 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_GetAnyDCName(p, r);
out 1212 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 1213 librpc/gen_ndr/srv_netlogon.c r->out.query = talloc_zero(r, union netr_CONTROL_QUERY_INFORMATION);
out 1214 librpc/gen_ndr/srv_netlogon.c if (r->out.query == NULL) {
out 1219 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonControl2(p, r);
out 1292 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 1293 librpc/gen_ndr/srv_netlogon.c r->out.negotiate_flags = r->in.negotiate_flags;
out 1294 librpc/gen_ndr/srv_netlogon.c r->out.return_credentials = talloc_zero(r, struct netr_Credential);
out 1295 librpc/gen_ndr/srv_netlogon.c if (r->out.return_credentials == NULL) {
out 1300 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerAuthenticate2(p, r);
out 1373 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 1374 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 1375 librpc/gen_ndr/srv_netlogon.c r->out.sync_context = r->in.sync_context;
out 1376 librpc/gen_ndr/srv_netlogon.c r->out.delta_enum_array = talloc_zero(r, struct netr_DELTA_ENUM_ARRAY *);
out 1377 librpc/gen_ndr/srv_netlogon.c if (r->out.delta_enum_array == NULL) {
out 1382 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DatabaseSync2(p, r);
out 1455 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 1456 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 1457 librpc/gen_ndr/srv_netlogon.c r->out.delta_enum_array = talloc_zero(r, struct netr_DELTA_ENUM_ARRAY *);
out 1458 librpc/gen_ndr/srv_netlogon.c if (r->out.delta_enum_array == NULL) {
out 1463 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DatabaseRedo(p, r);
out 1536 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 1537 librpc/gen_ndr/srv_netlogon.c r->out.query = talloc_zero(r, union netr_CONTROL_QUERY_INFORMATION);
out 1538 librpc/gen_ndr/srv_netlogon.c if (r->out.query == NULL) {
out 1543 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonControl2Ex(p, r);
out 1616 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 1617 librpc/gen_ndr/srv_netlogon.c r->out.trusted_domains_blob = talloc_zero(r, struct netr_Blob);
out 1618 librpc/gen_ndr/srv_netlogon.c if (r->out.trusted_domains_blob == NULL) {
out 1623 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NetrEnumerateTrustedDomains(p, r);
out 1696 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 1697 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(r, struct netr_DsRGetDCNameInfo *);
out 1698 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 1703 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRGetDCName(p, r);
out 1776 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 1777 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 1778 librpc/gen_ndr/srv_netlogon.c r->out.capabilities = talloc_zero(r, union netr_Capabilities);
out 1779 librpc/gen_ndr/srv_netlogon.c if (r->out.capabilities == NULL) {
out 1784 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonGetCapabilities(p, r);
out 1857 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NETRLOGONSETSERVICEBITS(p, r);
out 1930 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 1931 librpc/gen_ndr/srv_netlogon.c r->out.rid = talloc_zero(r, uint32_t);
out 1932 librpc/gen_ndr/srv_netlogon.c if (r->out.rid == NULL) {
out 1937 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonGetTrustRid(p, r);
out 2010 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NETRLOGONCOMPUTESERVERDIGEST(p, r);
out 2083 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NETRLOGONCOMPUTECLIENTDIGEST(p, r);
out 2156 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 2157 librpc/gen_ndr/srv_netlogon.c r->out.negotiate_flags = r->in.negotiate_flags;
out 2158 librpc/gen_ndr/srv_netlogon.c r->out.return_credentials = talloc_zero(r, struct netr_Credential);
out 2159 librpc/gen_ndr/srv_netlogon.c if (r->out.return_credentials == NULL) {
out 2164 librpc/gen_ndr/srv_netlogon.c r->out.rid = talloc_zero(r, uint32_t);
out 2165 librpc/gen_ndr/srv_netlogon.c if (r->out.rid == NULL) {
out 2170 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerAuthenticate3(p, r);
out 2243 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 2244 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(r, struct netr_DsRGetDCNameInfo *);
out 2245 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 2250 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRGetDCNameEx(p, r);
out 2323 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 2324 librpc/gen_ndr/srv_netlogon.c r->out.site = talloc_zero(r, const char *);
out 2325 librpc/gen_ndr/srv_netlogon.c if (r->out.site == NULL) {
out 2330 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRGetSiteName(p, r);
out 2403 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 2404 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 2405 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(r, union netr_DomainInfo);
out 2406 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 2411 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonGetDomainInfo(p, r);
out 2484 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 2485 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = talloc_zero(r, struct netr_Authenticator);
out 2486 librpc/gen_ndr/srv_netlogon.c if (r->out.return_authenticator == NULL) {
out 2491 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerPasswordSet2(p, r);
out 2564 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 2565 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = talloc_zero(r, struct netr_Authenticator);
out 2566 librpc/gen_ndr/srv_netlogon.c if (r->out.return_authenticator == NULL) {
out 2571 librpc/gen_ndr/srv_netlogon.c r->out.password = talloc_zero(r, struct samr_Password);
out 2572 librpc/gen_ndr/srv_netlogon.c if (r->out.password == NULL) {
out 2577 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerPasswordGet(p, r);
out 2650 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NETRLOGONSENDTOSAM(p, r);
out 2723 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 2724 librpc/gen_ndr/srv_netlogon.c r->out.ctr = talloc_zero(r, struct netr_DsRAddressToSitenamesWCtr *);
out 2725 librpc/gen_ndr/srv_netlogon.c if (r->out.ctr == NULL) {
out 2730 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRAddressToSitenamesW(p, r);
out 2803 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 2804 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(r, struct netr_DsRGetDCNameInfo *);
out 2805 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 2810 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRGetDCNameEx2(p, r);
out 2883 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN(p, r);
out 2956 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 2957 librpc/gen_ndr/srv_netlogon.c r->out.dom_trust_list = talloc_zero(r, struct netr_DomainTrustList);
out 2958 librpc/gen_ndr/srv_netlogon.c if (r->out.dom_trust_list == NULL) {
out 2963 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NetrEnumerateTrustedDomainsEx(p, r);
out 3036 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3037 librpc/gen_ndr/srv_netlogon.c r->out.ctr = talloc_zero(r, struct netr_DsRAddressToSitenamesExWCtr *);
out 3038 librpc/gen_ndr/srv_netlogon.c if (r->out.ctr == NULL) {
out 3043 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRAddressToSitenamesExW(p, r);
out 3116 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3117 librpc/gen_ndr/srv_netlogon.c r->out.ctr = talloc_zero(r, struct DcSitesCtr *);
out 3118 librpc/gen_ndr/srv_netlogon.c if (r->out.ctr == NULL) {
out 3123 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsrGetDcSiteCoverageW(p, r);
out 3196 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3197 librpc/gen_ndr/srv_netlogon.c r->out.flags = r->in.flags;
out 3198 librpc/gen_ndr/srv_netlogon.c r->out.validation = talloc_zero(r, union netr_Validation);
out 3199 librpc/gen_ndr/srv_netlogon.c if (r->out.validation == NULL) {
out 3204 librpc/gen_ndr/srv_netlogon.c r->out.authoritative = talloc_zero(r, uint8_t);
out 3205 librpc/gen_ndr/srv_netlogon.c if (r->out.authoritative == NULL) {
out 3210 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonSamLogonEx(p, r);
out 3283 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3284 librpc/gen_ndr/srv_netlogon.c r->out.trusts = talloc_zero(r, struct netr_DomainTrustList);
out 3285 librpc/gen_ndr/srv_netlogon.c if (r->out.trusts == NULL) {
out 3290 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsrEnumerateDomainTrusts(p, r);
out 3363 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsrDeregisterDNSHostRecords(p, r);
out 3436 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3437 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = talloc_zero(r, struct netr_Authenticator);
out 3438 librpc/gen_ndr/srv_netlogon.c if (r->out.return_authenticator == NULL) {
out 3443 librpc/gen_ndr/srv_netlogon.c r->out.password = talloc_zero(r, struct samr_Password);
out 3444 librpc/gen_ndr/srv_netlogon.c if (r->out.password == NULL) {
out 3449 librpc/gen_ndr/srv_netlogon.c r->out.password2 = talloc_zero(r, struct samr_Password);
out 3450 librpc/gen_ndr/srv_netlogon.c if (r->out.password2 == NULL) {
out 3455 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerTrustPasswordsGet(p, r);
out 3528 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3529 librpc/gen_ndr/srv_netlogon.c r->out.forest_trust_info = talloc_zero(r, struct lsa_ForestTrustInformation *);
out 3530 librpc/gen_ndr/srv_netlogon.c if (r->out.forest_trust_info == NULL) {
out 3535 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRGetForestTrustInformation(p, r);
out 3608 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3609 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = talloc_zero(r, struct netr_Authenticator);
out 3610 librpc/gen_ndr/srv_netlogon.c if (r->out.return_authenticator == NULL) {
out 3615 librpc/gen_ndr/srv_netlogon.c r->out.forest_trust_info = talloc_zero(r, struct lsa_ForestTrustInformation *);
out 3616 librpc/gen_ndr/srv_netlogon.c if (r->out.forest_trust_info == NULL) {
out 3621 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_GetForestTrustInformation(p, r);
out 3694 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3695 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 3696 librpc/gen_ndr/srv_netlogon.c r->out.flags = r->in.flags;
out 3697 librpc/gen_ndr/srv_netlogon.c r->out.validation = talloc_zero(r, union netr_Validation);
out 3698 librpc/gen_ndr/srv_netlogon.c if (r->out.validation == NULL) {
out 3703 librpc/gen_ndr/srv_netlogon.c r->out.authoritative = talloc_zero(r, uint8_t);
out 3704 librpc/gen_ndr/srv_netlogon.c if (r->out.authoritative == NULL) {
out 3709 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonSamLogonWithFlags(p, r);
out 3782 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3783 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = talloc_zero(r, struct netr_Authenticator);
out 3784 librpc/gen_ndr/srv_netlogon.c if (r->out.return_authenticator == NULL) {
out 3789 librpc/gen_ndr/srv_netlogon.c r->out.new_owf_password = talloc_zero(r, struct samr_Password);
out 3790 librpc/gen_ndr/srv_netlogon.c if (r->out.new_owf_password == NULL) {
out 3795 librpc/gen_ndr/srv_netlogon.c r->out.old_owf_password = talloc_zero(r, struct samr_Password);
out 3796 librpc/gen_ndr/srv_netlogon.c if (r->out.old_owf_password == NULL) {
out 3801 librpc/gen_ndr/srv_netlogon.c r->out.trust_info = talloc_zero(r, struct netr_TrustInfo *);
out 3802 librpc/gen_ndr/srv_netlogon.c if (r->out.trust_info == NULL) {
out 3807 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerGetTrustInfo(p, r);
out 3911 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3912 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(mem_ctx, struct netr_UasInfo *);
out 3913 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 3917 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonUasLogon(cli->pipes_struct, r);
out 3923 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3924 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(mem_ctx, struct netr_UasLogoffInfo);
out 3925 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 3929 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonUasLogoff(cli->pipes_struct, r);
out 3935 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3936 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 3937 librpc/gen_ndr/srv_netlogon.c r->out.validation = talloc_zero(mem_ctx, union netr_Validation);
out 3938 librpc/gen_ndr/srv_netlogon.c if (r->out.validation == NULL) {
out 3942 librpc/gen_ndr/srv_netlogon.c r->out.authoritative = talloc_zero(mem_ctx, uint8_t);
out 3943 librpc/gen_ndr/srv_netlogon.c if (r->out.authoritative == NULL) {
out 3947 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonSamLogon(cli->pipes_struct, r);
out 3953 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3954 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 3955 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonSamLogoff(cli->pipes_struct, r);
out 3961 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3962 librpc/gen_ndr/srv_netlogon.c r->out.return_credentials = talloc_zero(mem_ctx, struct netr_Credential);
out 3963 librpc/gen_ndr/srv_netlogon.c if (r->out.return_credentials == NULL) {
out 3967 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerReqChallenge(cli->pipes_struct, r);
out 3973 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3974 librpc/gen_ndr/srv_netlogon.c r->out.return_credentials = talloc_zero(mem_ctx, struct netr_Credential);
out 3975 librpc/gen_ndr/srv_netlogon.c if (r->out.return_credentials == NULL) {
out 3979 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerAuthenticate(cli->pipes_struct, r);
out 3985 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3986 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = talloc_zero(mem_ctx, struct netr_Authenticator);
out 3987 librpc/gen_ndr/srv_netlogon.c if (r->out.return_authenticator == NULL) {
out 3991 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerPasswordSet(cli->pipes_struct, r);
out 3997 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 3998 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 3999 librpc/gen_ndr/srv_netlogon.c r->out.sequence_num = r->in.sequence_num;
out 4000 librpc/gen_ndr/srv_netlogon.c r->out.delta_enum_array = talloc_zero(mem_ctx, struct netr_DELTA_ENUM_ARRAY *);
out 4001 librpc/gen_ndr/srv_netlogon.c if (r->out.delta_enum_array == NULL) {
out 4005 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DatabaseDeltas(cli->pipes_struct, r);
out 4011 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4012 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 4013 librpc/gen_ndr/srv_netlogon.c r->out.sync_context = r->in.sync_context;
out 4014 librpc/gen_ndr/srv_netlogon.c r->out.delta_enum_array = talloc_zero(mem_ctx, struct netr_DELTA_ENUM_ARRAY *);
out 4015 librpc/gen_ndr/srv_netlogon.c if (r->out.delta_enum_array == NULL) {
out 4019 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DatabaseSync(cli->pipes_struct, r);
out 4025 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4026 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 4027 librpc/gen_ndr/srv_netlogon.c r->out.buffer = talloc_zero(mem_ctx, struct netr_AccountBuffer);
out 4028 librpc/gen_ndr/srv_netlogon.c if (r->out.buffer == NULL) {
out 4032 librpc/gen_ndr/srv_netlogon.c r->out.count_returned = talloc_zero(mem_ctx, uint32_t);
out 4033 librpc/gen_ndr/srv_netlogon.c if (r->out.count_returned == NULL) {
out 4037 librpc/gen_ndr/srv_netlogon.c r->out.total_entries = talloc_zero(mem_ctx, uint32_t);
out 4038 librpc/gen_ndr/srv_netlogon.c if (r->out.total_entries == NULL) {
out 4042 librpc/gen_ndr/srv_netlogon.c r->out.recordid = talloc_zero(mem_ctx, struct netr_UAS_INFO_0);
out 4043 librpc/gen_ndr/srv_netlogon.c if (r->out.recordid == NULL) {
out 4047 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_AccountDeltas(cli->pipes_struct, r);
out 4053 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4054 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 4055 librpc/gen_ndr/srv_netlogon.c r->out.recordid = r->in.recordid;
out 4056 librpc/gen_ndr/srv_netlogon.c r->out.buffer = talloc_zero(mem_ctx, struct netr_AccountBuffer);
out 4057 librpc/gen_ndr/srv_netlogon.c if (r->out.buffer == NULL) {
out 4061 librpc/gen_ndr/srv_netlogon.c r->out.count_returned = talloc_zero(mem_ctx, uint32_t);
out 4062 librpc/gen_ndr/srv_netlogon.c if (r->out.count_returned == NULL) {
out 4066 librpc/gen_ndr/srv_netlogon.c r->out.total_entries = talloc_zero(mem_ctx, uint32_t);
out 4067 librpc/gen_ndr/srv_netlogon.c if (r->out.total_entries == NULL) {
out 4071 librpc/gen_ndr/srv_netlogon.c r->out.next_reference = talloc_zero(mem_ctx, uint32_t);
out 4072 librpc/gen_ndr/srv_netlogon.c if (r->out.next_reference == NULL) {
out 4076 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_AccountSync(cli->pipes_struct, r);
out 4082 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4083 librpc/gen_ndr/srv_netlogon.c r->out.dcname = talloc_zero(mem_ctx, const char *);
out 4084 librpc/gen_ndr/srv_netlogon.c if (r->out.dcname == NULL) {
out 4088 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_GetDcName(cli->pipes_struct, r);
out 4094 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4095 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(mem_ctx, union netr_CONTROL_QUERY_INFORMATION);
out 4096 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 4100 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonControl(cli->pipes_struct, r);
out 4106 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4107 librpc/gen_ndr/srv_netlogon.c r->out.dcname = talloc_zero(mem_ctx, const char *);
out 4108 librpc/gen_ndr/srv_netlogon.c if (r->out.dcname == NULL) {
out 4112 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_GetAnyDCName(cli->pipes_struct, r);
out 4118 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4119 librpc/gen_ndr/srv_netlogon.c r->out.query = talloc_zero(mem_ctx, union netr_CONTROL_QUERY_INFORMATION);
out 4120 librpc/gen_ndr/srv_netlogon.c if (r->out.query == NULL) {
out 4124 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonControl2(cli->pipes_struct, r);
out 4130 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4131 librpc/gen_ndr/srv_netlogon.c r->out.negotiate_flags = r->in.negotiate_flags;
out 4132 librpc/gen_ndr/srv_netlogon.c r->out.return_credentials = talloc_zero(mem_ctx, struct netr_Credential);
out 4133 librpc/gen_ndr/srv_netlogon.c if (r->out.return_credentials == NULL) {
out 4137 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerAuthenticate2(cli->pipes_struct, r);
out 4143 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4144 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 4145 librpc/gen_ndr/srv_netlogon.c r->out.sync_context = r->in.sync_context;
out 4146 librpc/gen_ndr/srv_netlogon.c r->out.delta_enum_array = talloc_zero(mem_ctx, struct netr_DELTA_ENUM_ARRAY *);
out 4147 librpc/gen_ndr/srv_netlogon.c if (r->out.delta_enum_array == NULL) {
out 4151 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DatabaseSync2(cli->pipes_struct, r);
out 4157 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4158 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 4159 librpc/gen_ndr/srv_netlogon.c r->out.delta_enum_array = talloc_zero(mem_ctx, struct netr_DELTA_ENUM_ARRAY *);
out 4160 librpc/gen_ndr/srv_netlogon.c if (r->out.delta_enum_array == NULL) {
out 4164 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DatabaseRedo(cli->pipes_struct, r);
out 4170 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4171 librpc/gen_ndr/srv_netlogon.c r->out.query = talloc_zero(mem_ctx, union netr_CONTROL_QUERY_INFORMATION);
out 4172 librpc/gen_ndr/srv_netlogon.c if (r->out.query == NULL) {
out 4176 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonControl2Ex(cli->pipes_struct, r);
out 4182 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4183 librpc/gen_ndr/srv_netlogon.c r->out.trusted_domains_blob = talloc_zero(mem_ctx, struct netr_Blob);
out 4184 librpc/gen_ndr/srv_netlogon.c if (r->out.trusted_domains_blob == NULL) {
out 4188 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NetrEnumerateTrustedDomains(cli->pipes_struct, r);
out 4194 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4195 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(mem_ctx, struct netr_DsRGetDCNameInfo *);
out 4196 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 4200 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRGetDCName(cli->pipes_struct, r);
out 4206 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4207 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 4208 librpc/gen_ndr/srv_netlogon.c r->out.capabilities = talloc_zero(mem_ctx, union netr_Capabilities);
out 4209 librpc/gen_ndr/srv_netlogon.c if (r->out.capabilities == NULL) {
out 4213 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonGetCapabilities(cli->pipes_struct, r);
out 4219 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NETRLOGONSETSERVICEBITS(cli->pipes_struct, r);
out 4225 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4226 librpc/gen_ndr/srv_netlogon.c r->out.rid = talloc_zero(mem_ctx, uint32_t);
out 4227 librpc/gen_ndr/srv_netlogon.c if (r->out.rid == NULL) {
out 4231 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonGetTrustRid(cli->pipes_struct, r);
out 4237 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NETRLOGONCOMPUTESERVERDIGEST(cli->pipes_struct, r);
out 4243 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NETRLOGONCOMPUTECLIENTDIGEST(cli->pipes_struct, r);
out 4249 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4250 librpc/gen_ndr/srv_netlogon.c r->out.negotiate_flags = r->in.negotiate_flags;
out 4251 librpc/gen_ndr/srv_netlogon.c r->out.return_credentials = talloc_zero(mem_ctx, struct netr_Credential);
out 4252 librpc/gen_ndr/srv_netlogon.c if (r->out.return_credentials == NULL) {
out 4256 librpc/gen_ndr/srv_netlogon.c r->out.rid = talloc_zero(mem_ctx, uint32_t);
out 4257 librpc/gen_ndr/srv_netlogon.c if (r->out.rid == NULL) {
out 4261 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerAuthenticate3(cli->pipes_struct, r);
out 4267 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4268 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(mem_ctx, struct netr_DsRGetDCNameInfo *);
out 4269 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 4273 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRGetDCNameEx(cli->pipes_struct, r);
out 4279 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4280 librpc/gen_ndr/srv_netlogon.c r->out.site = talloc_zero(mem_ctx, const char *);
out 4281 librpc/gen_ndr/srv_netlogon.c if (r->out.site == NULL) {
out 4285 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRGetSiteName(cli->pipes_struct, r);
out 4291 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4292 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 4293 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(mem_ctx, union netr_DomainInfo);
out 4294 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 4298 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonGetDomainInfo(cli->pipes_struct, r);
out 4304 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4305 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = talloc_zero(mem_ctx, struct netr_Authenticator);
out 4306 librpc/gen_ndr/srv_netlogon.c if (r->out.return_authenticator == NULL) {
out 4310 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerPasswordSet2(cli->pipes_struct, r);
out 4316 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4317 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = talloc_zero(mem_ctx, struct netr_Authenticator);
out 4318 librpc/gen_ndr/srv_netlogon.c if (r->out.return_authenticator == NULL) {
out 4322 librpc/gen_ndr/srv_netlogon.c r->out.password = talloc_zero(mem_ctx, struct samr_Password);
out 4323 librpc/gen_ndr/srv_netlogon.c if (r->out.password == NULL) {
out 4327 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerPasswordGet(cli->pipes_struct, r);
out 4333 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NETRLOGONSENDTOSAM(cli->pipes_struct, r);
out 4339 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4340 librpc/gen_ndr/srv_netlogon.c r->out.ctr = talloc_zero(mem_ctx, struct netr_DsRAddressToSitenamesWCtr *);
out 4341 librpc/gen_ndr/srv_netlogon.c if (r->out.ctr == NULL) {
out 4345 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRAddressToSitenamesW(cli->pipes_struct, r);
out 4351 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4352 librpc/gen_ndr/srv_netlogon.c r->out.info = talloc_zero(mem_ctx, struct netr_DsRGetDCNameInfo *);
out 4353 librpc/gen_ndr/srv_netlogon.c if (r->out.info == NULL) {
out 4357 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRGetDCNameEx2(cli->pipes_struct, r);
out 4363 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN(cli->pipes_struct, r);
out 4369 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4370 librpc/gen_ndr/srv_netlogon.c r->out.dom_trust_list = talloc_zero(mem_ctx, struct netr_DomainTrustList);
out 4371 librpc/gen_ndr/srv_netlogon.c if (r->out.dom_trust_list == NULL) {
out 4375 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_NetrEnumerateTrustedDomainsEx(cli->pipes_struct, r);
out 4381 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4382 librpc/gen_ndr/srv_netlogon.c r->out.ctr = talloc_zero(mem_ctx, struct netr_DsRAddressToSitenamesExWCtr *);
out 4383 librpc/gen_ndr/srv_netlogon.c if (r->out.ctr == NULL) {
out 4387 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRAddressToSitenamesExW(cli->pipes_struct, r);
out 4393 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4394 librpc/gen_ndr/srv_netlogon.c r->out.ctr = talloc_zero(mem_ctx, struct DcSitesCtr *);
out 4395 librpc/gen_ndr/srv_netlogon.c if (r->out.ctr == NULL) {
out 4399 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsrGetDcSiteCoverageW(cli->pipes_struct, r);
out 4405 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4406 librpc/gen_ndr/srv_netlogon.c r->out.flags = r->in.flags;
out 4407 librpc/gen_ndr/srv_netlogon.c r->out.validation = talloc_zero(mem_ctx, union netr_Validation);
out 4408 librpc/gen_ndr/srv_netlogon.c if (r->out.validation == NULL) {
out 4412 librpc/gen_ndr/srv_netlogon.c r->out.authoritative = talloc_zero(mem_ctx, uint8_t);
out 4413 librpc/gen_ndr/srv_netlogon.c if (r->out.authoritative == NULL) {
out 4417 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonSamLogonEx(cli->pipes_struct, r);
out 4423 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4424 librpc/gen_ndr/srv_netlogon.c r->out.trusts = talloc_zero(mem_ctx, struct netr_DomainTrustList);
out 4425 librpc/gen_ndr/srv_netlogon.c if (r->out.trusts == NULL) {
out 4429 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsrEnumerateDomainTrusts(cli->pipes_struct, r);
out 4435 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsrDeregisterDNSHostRecords(cli->pipes_struct, r);
out 4441 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4442 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = talloc_zero(mem_ctx, struct netr_Authenticator);
out 4443 librpc/gen_ndr/srv_netlogon.c if (r->out.return_authenticator == NULL) {
out 4447 librpc/gen_ndr/srv_netlogon.c r->out.password = talloc_zero(mem_ctx, struct samr_Password);
out 4448 librpc/gen_ndr/srv_netlogon.c if (r->out.password == NULL) {
out 4452 librpc/gen_ndr/srv_netlogon.c r->out.password2 = talloc_zero(mem_ctx, struct samr_Password);
out 4453 librpc/gen_ndr/srv_netlogon.c if (r->out.password2 == NULL) {
out 4457 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerTrustPasswordsGet(cli->pipes_struct, r);
out 4463 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4464 librpc/gen_ndr/srv_netlogon.c r->out.forest_trust_info = talloc_zero(mem_ctx, struct lsa_ForestTrustInformation *);
out 4465 librpc/gen_ndr/srv_netlogon.c if (r->out.forest_trust_info == NULL) {
out 4469 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_DsRGetForestTrustInformation(cli->pipes_struct, r);
out 4475 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4476 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = talloc_zero(mem_ctx, struct netr_Authenticator);
out 4477 librpc/gen_ndr/srv_netlogon.c if (r->out.return_authenticator == NULL) {
out 4481 librpc/gen_ndr/srv_netlogon.c r->out.forest_trust_info = talloc_zero(mem_ctx, struct lsa_ForestTrustInformation *);
out 4482 librpc/gen_ndr/srv_netlogon.c if (r->out.forest_trust_info == NULL) {
out 4486 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_GetForestTrustInformation(cli->pipes_struct, r);
out 4492 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4493 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = r->in.return_authenticator;
out 4494 librpc/gen_ndr/srv_netlogon.c r->out.flags = r->in.flags;
out 4495 librpc/gen_ndr/srv_netlogon.c r->out.validation = talloc_zero(mem_ctx, union netr_Validation);
out 4496 librpc/gen_ndr/srv_netlogon.c if (r->out.validation == NULL) {
out 4500 librpc/gen_ndr/srv_netlogon.c r->out.authoritative = talloc_zero(mem_ctx, uint8_t);
out 4501 librpc/gen_ndr/srv_netlogon.c if (r->out.authoritative == NULL) {
out 4505 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_LogonSamLogonWithFlags(cli->pipes_struct, r);
out 4511 librpc/gen_ndr/srv_netlogon.c ZERO_STRUCT(r->out);
out 4512 librpc/gen_ndr/srv_netlogon.c r->out.return_authenticator = talloc_zero(mem_ctx, struct netr_Authenticator);
out 4513 librpc/gen_ndr/srv_netlogon.c if (r->out.return_authenticator == NULL) {
out 4517 librpc/gen_ndr/srv_netlogon.c r->out.new_owf_password = talloc_zero(mem_ctx, struct samr_Password);
out 4518 librpc/gen_ndr/srv_netlogon.c if (r->out.new_owf_password == NULL) {
out 4522 librpc/gen_ndr/srv_netlogon.c r->out.old_owf_password = talloc_zero(mem_ctx, struct samr_Password);
out 4523 librpc/gen_ndr/srv_netlogon.c if (r->out.old_owf_password == NULL) {
out 4527 librpc/gen_ndr/srv_netlogon.c r->out.trust_info = talloc_zero(mem_ctx, struct netr_TrustInfo *);
out 4528 librpc/gen_ndr/srv_netlogon.c if (r->out.trust_info == NULL) {
out 4532 librpc/gen_ndr/srv_netlogon.c r->out.result = _netr_ServerGetTrustInfo(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_Disconnect(p, r);
out 120 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_Connect(p, r);
out 193 librpc/gen_ndr/srv_ntsvcs.c ZERO_STRUCT(r->out);
out 194 librpc/gen_ndr/srv_ntsvcs.c r->out.version = talloc_zero(r, uint16_t);
out 195 librpc/gen_ndr/srv_ntsvcs.c if (r->out.version == NULL) {
out 200 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetVersion(p, r);
out 273 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetGlobalState(p, r);
out 346 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_InitDetection(p, r);
out 419 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_ReportLogOn(p, r);
out 492 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_ValidateDeviceInstance(p, r);
out 565 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetRootDeviceInstance(p, r);
out 638 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetRelatedDeviceInstance(p, r);
out 711 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_EnumerateSubKeys(p, r);
out 784 librpc/gen_ndr/srv_ntsvcs.c ZERO_STRUCT(r->out);
out 785 librpc/gen_ndr/srv_ntsvcs.c r->out.length = r->in.length;
out 786 librpc/gen_ndr/srv_ntsvcs.c r->out.buffer = talloc_zero_array(r, uint16_t, *r->out.length);
out 787 librpc/gen_ndr/srv_ntsvcs.c if (r->out.buffer == NULL) {
out 792 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetDeviceList(p, r);
out 865 librpc/gen_ndr/srv_ntsvcs.c ZERO_STRUCT(r->out);
out 866 librpc/gen_ndr/srv_ntsvcs.c r->out.size = talloc_zero(r, uint32_t);
out 867 librpc/gen_ndr/srv_ntsvcs.c if (r->out.size == NULL) {
out 872 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetDeviceListSize(p, r);
out 945 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetDepth(p, r);
out 1018 librpc/gen_ndr/srv_ntsvcs.c ZERO_STRUCT(r->out);
out 1019 librpc/gen_ndr/srv_ntsvcs.c r->out.reg_data_type = r->in.reg_data_type;
out 1020 librpc/gen_ndr/srv_ntsvcs.c r->out.buffer_size = r->in.buffer_size;
out 1021 librpc/gen_ndr/srv_ntsvcs.c r->out.needed = r->in.needed;
out 1022 librpc/gen_ndr/srv_ntsvcs.c r->out.buffer = talloc_zero_array(r, uint8_t, *r->out.buffer_size);
out 1023 librpc/gen_ndr/srv_ntsvcs.c if (r->out.buffer == NULL) {
out 1028 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetDeviceRegProp(p, r);
out 1101 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_SetDeviceRegProp(p, r);
out 1174 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetClassInstance(p, r);
out 1247 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_CreateKey(p, r);
out 1320 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_DeleteRegistryKey(p, r);
out 1393 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetClassCount(p, r);
out 1466 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetClassName(p, r);
out 1539 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_DeleteClassKey(p, r);
out 1612 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetInterfaceDeviceAlias(p, r);
out 1685 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetInterfaceDeviceList(p, r);
out 1758 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetInterfaceDeviceListSize(p, r);
out 1831 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_RegisterDeviceClassAssociation(p, r);
out 1904 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_UnregisterDeviceClassAssociation(p, r);
out 1977 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetClassRegProp(p, r);
out 2050 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_SetClassRegProp(p, r);
out 2123 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_CreateDevInst(p, r);
out 2196 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_DeviceInstanceAction(p, r);
out 2269 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetDeviceStatus(p, r);
out 2342 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_SetDeviceProblem(p, r);
out 2415 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_DisableDevInst(p, r);
out 2488 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_UninstallDevInst(p, r);
out 2561 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_AddID(p, r);
out 2634 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_RegisterDriver(p, r);
out 2707 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_QueryRemove(p, r);
out 2780 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_RequestDeviceEject(p, r);
out 2853 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_IsDockStationPresent(p, r);
out 2926 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_RequestEjectPC(p, r);
out 2999 librpc/gen_ndr/srv_ntsvcs.c ZERO_STRUCT(r->out);
out 3000 librpc/gen_ndr/srv_ntsvcs.c r->out.profile_flags = r->in.profile_flags;
out 3001 librpc/gen_ndr/srv_ntsvcs.c r->out.veto_type = r->in.veto_type;
out 3002 librpc/gen_ndr/srv_ntsvcs.c r->out.unknown5a = talloc_zero(r, const char *);
out 3003 librpc/gen_ndr/srv_ntsvcs.c if (r->out.unknown5a == NULL) {
out 3008 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_HwProfFlags(p, r);
out 3081 librpc/gen_ndr/srv_ntsvcs.c ZERO_STRUCT(r->out);
out 3082 librpc/gen_ndr/srv_ntsvcs.c r->out.info = r->in.info;
out 3083 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetHwProfInfo(p, r);
out 3156 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_AddEmptyLogConf(p, r);
out 3229 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_FreeLogConf(p, r);
out 3302 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetFirstLogConf(p, r);
out 3375 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetNextLogConf(p, r);
out 3448 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetLogConfPriority(p, r);
out 3521 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_AddResDes(p, r);
out 3594 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_FreeResDes(p, r);
out 3667 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetNextResDes(p, r);
out 3740 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetResDesData(p, r);
out 3813 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetResDesDataSize(p, r);
out 3886 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_ModifyResDes(p, r);
out 3959 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_DetectResourceLimit(p, r);
out 4032 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_QueryResConfList(p, r);
out 4105 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_SetHwProf(p, r);
out 4178 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_QueryArbitratorFreeData(p, r);
out 4251 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_QueryArbitratorFreeSize(p, r);
out 4324 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_RunDetection(p, r);
out 4397 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_RegisterNotification(p, r);
out 4470 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_UnregisterNotification(p, r);
out 4543 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetCustomDevProp(p, r);
out 4616 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetVersionInternal(p, r);
out 4689 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetBlockedDriverInfo(p, r);
out 4762 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetServerSideDeviceInstallFlags(p, r);
out 4884 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_Disconnect(cli->pipes_struct, r);
out 4890 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_Connect(cli->pipes_struct, r);
out 4896 librpc/gen_ndr/srv_ntsvcs.c ZERO_STRUCT(r->out);
out 4897 librpc/gen_ndr/srv_ntsvcs.c r->out.version = talloc_zero(mem_ctx, uint16_t);
out 4898 librpc/gen_ndr/srv_ntsvcs.c if (r->out.version == NULL) {
out 4902 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetVersion(cli->pipes_struct, r);
out 4908 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetGlobalState(cli->pipes_struct, r);
out 4914 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_InitDetection(cli->pipes_struct, r);
out 4920 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_ReportLogOn(cli->pipes_struct, r);
out 4926 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_ValidateDeviceInstance(cli->pipes_struct, r);
out 4932 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetRootDeviceInstance(cli->pipes_struct, r);
out 4938 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetRelatedDeviceInstance(cli->pipes_struct, r);
out 4944 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_EnumerateSubKeys(cli->pipes_struct, r);
out 4950 librpc/gen_ndr/srv_ntsvcs.c ZERO_STRUCT(r->out);
out 4951 librpc/gen_ndr/srv_ntsvcs.c r->out.length = r->in.length;
out 4952 librpc/gen_ndr/srv_ntsvcs.c r->out.buffer = talloc_zero_array(mem_ctx, uint16_t, *r->out.length);
out 4953 librpc/gen_ndr/srv_ntsvcs.c if (r->out.buffer == NULL) {
out 4957 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetDeviceList(cli->pipes_struct, r);
out 4963 librpc/gen_ndr/srv_ntsvcs.c ZERO_STRUCT(r->out);
out 4964 librpc/gen_ndr/srv_ntsvcs.c r->out.size = talloc_zero(mem_ctx, uint32_t);
out 4965 librpc/gen_ndr/srv_ntsvcs.c if (r->out.size == NULL) {
out 4969 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetDeviceListSize(cli->pipes_struct, r);
out 4975 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetDepth(cli->pipes_struct, r);
out 4981 librpc/gen_ndr/srv_ntsvcs.c ZERO_STRUCT(r->out);
out 4982 librpc/gen_ndr/srv_ntsvcs.c r->out.reg_data_type = r->in.reg_data_type;
out 4983 librpc/gen_ndr/srv_ntsvcs.c r->out.buffer_size = r->in.buffer_size;
out 4984 librpc/gen_ndr/srv_ntsvcs.c r->out.needed = r->in.needed;
out 4985 librpc/gen_ndr/srv_ntsvcs.c r->out.buffer = talloc_zero_array(mem_ctx, uint8_t, *r->out.buffer_size);
out 4986 librpc/gen_ndr/srv_ntsvcs.c if (r->out.buffer == NULL) {
out 4990 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetDeviceRegProp(cli->pipes_struct, r);
out 4996 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_SetDeviceRegProp(cli->pipes_struct, r);
out 5002 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetClassInstance(cli->pipes_struct, r);
out 5008 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_CreateKey(cli->pipes_struct, r);
out 5014 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_DeleteRegistryKey(cli->pipes_struct, r);
out 5020 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetClassCount(cli->pipes_struct, r);
out 5026 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetClassName(cli->pipes_struct, r);
out 5032 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_DeleteClassKey(cli->pipes_struct, r);
out 5038 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetInterfaceDeviceAlias(cli->pipes_struct, r);
out 5044 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetInterfaceDeviceList(cli->pipes_struct, r);
out 5050 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetInterfaceDeviceListSize(cli->pipes_struct, r);
out 5056 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_RegisterDeviceClassAssociation(cli->pipes_struct, r);
out 5062 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_UnregisterDeviceClassAssociation(cli->pipes_struct, r);
out 5068 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetClassRegProp(cli->pipes_struct, r);
out 5074 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_SetClassRegProp(cli->pipes_struct, r);
out 5080 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_CreateDevInst(cli->pipes_struct, r);
out 5086 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_DeviceInstanceAction(cli->pipes_struct, r);
out 5092 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetDeviceStatus(cli->pipes_struct, r);
out 5098 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_SetDeviceProblem(cli->pipes_struct, r);
out 5104 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_DisableDevInst(cli->pipes_struct, r);
out 5110 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_UninstallDevInst(cli->pipes_struct, r);
out 5116 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_AddID(cli->pipes_struct, r);
out 5122 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_RegisterDriver(cli->pipes_struct, r);
out 5128 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_QueryRemove(cli->pipes_struct, r);
out 5134 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_RequestDeviceEject(cli->pipes_struct, r);
out 5140 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_IsDockStationPresent(cli->pipes_struct, r);
out 5146 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_RequestEjectPC(cli->pipes_struct, r);
out 5152 librpc/gen_ndr/srv_ntsvcs.c ZERO_STRUCT(r->out);
out 5153 librpc/gen_ndr/srv_ntsvcs.c r->out.profile_flags = r->in.profile_flags;
out 5154 librpc/gen_ndr/srv_ntsvcs.c r->out.veto_type = r->in.veto_type;
out 5155 librpc/gen_ndr/srv_ntsvcs.c r->out.unknown5a = talloc_zero(mem_ctx, const char *);
out 5156 librpc/gen_ndr/srv_ntsvcs.c if (r->out.unknown5a == NULL) {
out 5160 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_HwProfFlags(cli->pipes_struct, r);
out 5166 librpc/gen_ndr/srv_ntsvcs.c ZERO_STRUCT(r->out);
out 5167 librpc/gen_ndr/srv_ntsvcs.c r->out.info = r->in.info;
out 5168 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetHwProfInfo(cli->pipes_struct, r);
out 5174 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_AddEmptyLogConf(cli->pipes_struct, r);
out 5180 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_FreeLogConf(cli->pipes_struct, r);
out 5186 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetFirstLogConf(cli->pipes_struct, r);
out 5192 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetNextLogConf(cli->pipes_struct, r);
out 5198 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetLogConfPriority(cli->pipes_struct, r);
out 5204 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_AddResDes(cli->pipes_struct, r);
out 5210 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_FreeResDes(cli->pipes_struct, r);
out 5216 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetNextResDes(cli->pipes_struct, r);
out 5222 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetResDesData(cli->pipes_struct, r);
out 5228 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetResDesDataSize(cli->pipes_struct, r);
out 5234 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_ModifyResDes(cli->pipes_struct, r);
out 5240 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_DetectResourceLimit(cli->pipes_struct, r);
out 5246 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_QueryResConfList(cli->pipes_struct, r);
out 5252 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_SetHwProf(cli->pipes_struct, r);
out 5258 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_QueryArbitratorFreeData(cli->pipes_struct, r);
out 5264 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_QueryArbitratorFreeSize(cli->pipes_struct, r);
out 5270 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_RunDetection(cli->pipes_struct, r);
out 5276 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_RegisterNotification(cli->pipes_struct, r);
out 5282 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_UnregisterNotification(cli->pipes_struct, r);
out 5288 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetCustomDevProp(cli->pipes_struct, r);
out 5294 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetVersionInternal(cli->pipes_struct, r);
out 5300 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetBlockedDriverInfo(cli->pipes_struct, r);
out 5306 librpc/gen_ndr/srv_ntsvcs.c r->out.result = _PNP_GetServerSideDeviceInstallFlags(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 48 librpc/gen_ndr/srv_samr.c r->out.connect_handle = talloc_zero(r, struct policy_handle);
out 49 librpc/gen_ndr/srv_samr.c if (r->out.connect_handle == NULL) {
out 54 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Connect(p, r);
out 127 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 128 librpc/gen_ndr/srv_samr.c r->out.handle = r->in.handle;
out 129 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Close(p, r);
out 202 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetSecurity(p, r);
out 275 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 276 librpc/gen_ndr/srv_samr.c r->out.sdbuf = talloc_zero(r, struct sec_desc_buf *);
out 277 librpc/gen_ndr/srv_samr.c if (r->out.sdbuf == NULL) {
out 282 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QuerySecurity(p, r);
out 355 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Shutdown(p, r);
out 428 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 429 librpc/gen_ndr/srv_samr.c r->out.sid = talloc_zero(r, struct dom_sid2 *);
out 430 librpc/gen_ndr/srv_samr.c if (r->out.sid == NULL) {
out 435 librpc/gen_ndr/srv_samr.c r->out.result = _samr_LookupDomain(p, r);
out 508 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 509 librpc/gen_ndr/srv_samr.c r->out.resume_handle = r->in.resume_handle;
out 510 librpc/gen_ndr/srv_samr.c r->out.sam = talloc_zero(r, struct samr_SamArray *);
out 511 librpc/gen_ndr/srv_samr.c if (r->out.sam == NULL) {
out 516 librpc/gen_ndr/srv_samr.c r->out.num_entries = talloc_zero(r, uint32_t);
out 517 librpc/gen_ndr/srv_samr.c if (r->out.num_entries == NULL) {
out 522 librpc/gen_ndr/srv_samr.c r->out.result = _samr_EnumDomains(p, r);
out 595 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 596 librpc/gen_ndr/srv_samr.c r->out.domain_handle = talloc_zero(r, struct policy_handle);
out 597 librpc/gen_ndr/srv_samr.c if (r->out.domain_handle == NULL) {
out 602 librpc/gen_ndr/srv_samr.c r->out.result = _samr_OpenDomain(p, r);
out 675 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 676 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(r, union samr_DomainInfo *);
out 677 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 682 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryDomainInfo(p, r);
out 755 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetDomainInfo(p, r);
out 828 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 829 librpc/gen_ndr/srv_samr.c r->out.group_handle = talloc_zero(r, struct policy_handle);
out 830 librpc/gen_ndr/srv_samr.c if (r->out.group_handle == NULL) {
out 835 librpc/gen_ndr/srv_samr.c r->out.rid = talloc_zero(r, uint32_t);
out 836 librpc/gen_ndr/srv_samr.c if (r->out.rid == NULL) {
out 841 librpc/gen_ndr/srv_samr.c r->out.result = _samr_CreateDomainGroup(p, r);
out 914 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 915 librpc/gen_ndr/srv_samr.c r->out.resume_handle = r->in.resume_handle;
out 916 librpc/gen_ndr/srv_samr.c r->out.sam = talloc_zero(r, struct samr_SamArray *);
out 917 librpc/gen_ndr/srv_samr.c if (r->out.sam == NULL) {
out 922 librpc/gen_ndr/srv_samr.c r->out.num_entries = talloc_zero(r, uint32_t);
out 923 librpc/gen_ndr/srv_samr.c if (r->out.num_entries == NULL) {
out 928 librpc/gen_ndr/srv_samr.c r->out.result = _samr_EnumDomainGroups(p, r);
out 1001 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 1002 librpc/gen_ndr/srv_samr.c r->out.user_handle = talloc_zero(r, struct policy_handle);
out 1003 librpc/gen_ndr/srv_samr.c if (r->out.user_handle == NULL) {
out 1008 librpc/gen_ndr/srv_samr.c r->out.rid = talloc_zero(r, uint32_t);
out 1009 librpc/gen_ndr/srv_samr.c if (r->out.rid == NULL) {
out 1014 librpc/gen_ndr/srv_samr.c r->out.result = _samr_CreateUser(p, r);
out 1087 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 1088 librpc/gen_ndr/srv_samr.c r->out.resume_handle = r->in.resume_handle;
out 1089 librpc/gen_ndr/srv_samr.c r->out.sam = talloc_zero(r, struct samr_SamArray *);
out 1090 librpc/gen_ndr/srv_samr.c if (r->out.sam == NULL) {
out 1095 librpc/gen_ndr/srv_samr.c r->out.num_entries = talloc_zero(r, uint32_t);
out 1096 librpc/gen_ndr/srv_samr.c if (r->out.num_entries == NULL) {
out 1101 librpc/gen_ndr/srv_samr.c r->out.result = _samr_EnumDomainUsers(p, r);
out 1174 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 1175 librpc/gen_ndr/srv_samr.c r->out.alias_handle = talloc_zero(r, struct policy_handle);
out 1176 librpc/gen_ndr/srv_samr.c if (r->out.alias_handle == NULL) {
out 1181 librpc/gen_ndr/srv_samr.c r->out.rid = talloc_zero(r, uint32_t);
out 1182 librpc/gen_ndr/srv_samr.c if (r->out.rid == NULL) {
out 1187 librpc/gen_ndr/srv_samr.c r->out.result = _samr_CreateDomAlias(p, r);
out 1260 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 1261 librpc/gen_ndr/srv_samr.c r->out.resume_handle = r->in.resume_handle;
out 1262 librpc/gen_ndr/srv_samr.c r->out.sam = talloc_zero(r, struct samr_SamArray *);
out 1263 librpc/gen_ndr/srv_samr.c if (r->out.sam == NULL) {
out 1268 librpc/gen_ndr/srv_samr.c r->out.num_entries = talloc_zero(r, uint32_t);
out 1269 librpc/gen_ndr/srv_samr.c if (r->out.num_entries == NULL) {
out 1274 librpc/gen_ndr/srv_samr.c r->out.result = _samr_EnumDomainAliases(p, r);
out 1347 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 1348 librpc/gen_ndr/srv_samr.c r->out.rids = talloc_zero(r, struct samr_Ids);
out 1349 librpc/gen_ndr/srv_samr.c if (r->out.rids == NULL) {
out 1354 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetAliasMembership(p, r);
out 1427 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 1428 librpc/gen_ndr/srv_samr.c r->out.rids = talloc_zero(r, struct samr_Ids);
out 1429 librpc/gen_ndr/srv_samr.c if (r->out.rids == NULL) {
out 1434 librpc/gen_ndr/srv_samr.c r->out.types = talloc_zero(r, struct samr_Ids);
out 1435 librpc/gen_ndr/srv_samr.c if (r->out.types == NULL) {
out 1440 librpc/gen_ndr/srv_samr.c r->out.result = _samr_LookupNames(p, r);
out 1513 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 1514 librpc/gen_ndr/srv_samr.c r->out.names = talloc_zero(r, struct lsa_Strings);
out 1515 librpc/gen_ndr/srv_samr.c if (r->out.names == NULL) {
out 1520 librpc/gen_ndr/srv_samr.c r->out.types = talloc_zero(r, struct samr_Ids);
out 1521 librpc/gen_ndr/srv_samr.c if (r->out.types == NULL) {
out 1526 librpc/gen_ndr/srv_samr.c r->out.result = _samr_LookupRids(p, r);
out 1599 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 1600 librpc/gen_ndr/srv_samr.c r->out.group_handle = talloc_zero(r, struct policy_handle);
out 1601 librpc/gen_ndr/srv_samr.c if (r->out.group_handle == NULL) {
out 1606 librpc/gen_ndr/srv_samr.c r->out.result = _samr_OpenGroup(p, r);
out 1679 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 1680 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(r, union samr_GroupInfo *);
out 1681 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 1686 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryGroupInfo(p, r);
out 1759 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetGroupInfo(p, r);
out 1832 librpc/gen_ndr/srv_samr.c r->out.result = _samr_AddGroupMember(p, r);
out 1905 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 1906 librpc/gen_ndr/srv_samr.c r->out.group_handle = r->in.group_handle;
out 1907 librpc/gen_ndr/srv_samr.c r->out.result = _samr_DeleteDomainGroup(p, r);
out 1980 librpc/gen_ndr/srv_samr.c r->out.result = _samr_DeleteGroupMember(p, r);
out 2053 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 2054 librpc/gen_ndr/srv_samr.c r->out.rids = talloc_zero(r, struct samr_RidTypeArray *);
out 2055 librpc/gen_ndr/srv_samr.c if (r->out.rids == NULL) {
out 2060 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryGroupMember(p, r);
out 2133 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetMemberAttributesOfGroup(p, r);
out 2206 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 2207 librpc/gen_ndr/srv_samr.c r->out.alias_handle = talloc_zero(r, struct policy_handle);
out 2208 librpc/gen_ndr/srv_samr.c if (r->out.alias_handle == NULL) {
out 2213 librpc/gen_ndr/srv_samr.c r->out.result = _samr_OpenAlias(p, r);
out 2286 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 2287 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(r, union samr_AliasInfo *);
out 2288 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 2293 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryAliasInfo(p, r);
out 2366 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetAliasInfo(p, r);
out 2439 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 2440 librpc/gen_ndr/srv_samr.c r->out.alias_handle = r->in.alias_handle;
out 2441 librpc/gen_ndr/srv_samr.c r->out.result = _samr_DeleteDomAlias(p, r);
out 2514 librpc/gen_ndr/srv_samr.c r->out.result = _samr_AddAliasMember(p, r);
out 2587 librpc/gen_ndr/srv_samr.c r->out.result = _samr_DeleteAliasMember(p, r);
out 2660 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 2661 librpc/gen_ndr/srv_samr.c r->out.sids = talloc_zero(r, struct lsa_SidArray);
out 2662 librpc/gen_ndr/srv_samr.c if (r->out.sids == NULL) {
out 2667 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetMembersInAlias(p, r);
out 2740 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 2741 librpc/gen_ndr/srv_samr.c r->out.user_handle = talloc_zero(r, struct policy_handle);
out 2742 librpc/gen_ndr/srv_samr.c if (r->out.user_handle == NULL) {
out 2747 librpc/gen_ndr/srv_samr.c r->out.result = _samr_OpenUser(p, r);
out 2820 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 2821 librpc/gen_ndr/srv_samr.c r->out.user_handle = r->in.user_handle;
out 2822 librpc/gen_ndr/srv_samr.c r->out.result = _samr_DeleteUser(p, r);
out 2895 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 2896 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(r, union samr_UserInfo *);
out 2897 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 2902 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryUserInfo(p, r);
out 2975 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetUserInfo(p, r);
out 3048 librpc/gen_ndr/srv_samr.c r->out.result = _samr_ChangePasswordUser(p, r);
out 3121 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 3122 librpc/gen_ndr/srv_samr.c r->out.rids = talloc_zero(r, struct samr_RidWithAttributeArray *);
out 3123 librpc/gen_ndr/srv_samr.c if (r->out.rids == NULL) {
out 3128 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetGroupsForUser(p, r);
out 3201 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 3202 librpc/gen_ndr/srv_samr.c r->out.total_size = talloc_zero(r, uint32_t);
out 3203 librpc/gen_ndr/srv_samr.c if (r->out.total_size == NULL) {
out 3208 librpc/gen_ndr/srv_samr.c r->out.returned_size = talloc_zero(r, uint32_t);
out 3209 librpc/gen_ndr/srv_samr.c if (r->out.returned_size == NULL) {
out 3214 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(r, union samr_DispInfo);
out 3215 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 3220 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryDisplayInfo(p, r);
out 3293 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 3294 librpc/gen_ndr/srv_samr.c r->out.idx = talloc_zero(r, uint32_t);
out 3295 librpc/gen_ndr/srv_samr.c if (r->out.idx == NULL) {
out 3300 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetDisplayEnumerationIndex(p, r);
out 3373 librpc/gen_ndr/srv_samr.c r->out.result = _samr_TestPrivateFunctionsDomain(p, r);
out 3446 librpc/gen_ndr/srv_samr.c r->out.result = _samr_TestPrivateFunctionsUser(p, r);
out 3519 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 3520 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(r, struct samr_PwInfo);
out 3521 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 3526 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetUserPwInfo(p, r);
out 3599 librpc/gen_ndr/srv_samr.c r->out.result = _samr_RemoveMemberFromForeignDomain(p, r);
out 3672 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 3673 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(r, union samr_DomainInfo *);
out 3674 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 3679 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryDomainInfo2(p, r);
out 3752 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 3753 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(r, union samr_UserInfo *);
out 3754 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 3759 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryUserInfo2(p, r);
out 3832 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 3833 librpc/gen_ndr/srv_samr.c r->out.total_size = talloc_zero(r, uint32_t);
out 3834 librpc/gen_ndr/srv_samr.c if (r->out.total_size == NULL) {
out 3839 librpc/gen_ndr/srv_samr.c r->out.returned_size = talloc_zero(r, uint32_t);
out 3840 librpc/gen_ndr/srv_samr.c if (r->out.returned_size == NULL) {
out 3845 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(r, union samr_DispInfo);
out 3846 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 3851 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryDisplayInfo2(p, r);
out 3924 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 3925 librpc/gen_ndr/srv_samr.c r->out.idx = talloc_zero(r, uint32_t);
out 3926 librpc/gen_ndr/srv_samr.c if (r->out.idx == NULL) {
out 3931 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetDisplayEnumerationIndex2(p, r);
out 4004 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 4005 librpc/gen_ndr/srv_samr.c r->out.user_handle = talloc_zero(r, struct policy_handle);
out 4006 librpc/gen_ndr/srv_samr.c if (r->out.user_handle == NULL) {
out 4011 librpc/gen_ndr/srv_samr.c r->out.access_granted = talloc_zero(r, uint32_t);
out 4012 librpc/gen_ndr/srv_samr.c if (r->out.access_granted == NULL) {
out 4017 librpc/gen_ndr/srv_samr.c r->out.rid = talloc_zero(r, uint32_t);
out 4018 librpc/gen_ndr/srv_samr.c if (r->out.rid == NULL) {
out 4023 librpc/gen_ndr/srv_samr.c r->out.result = _samr_CreateUser2(p, r);
out 4096 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 4097 librpc/gen_ndr/srv_samr.c r->out.total_size = talloc_zero(r, uint32_t);
out 4098 librpc/gen_ndr/srv_samr.c if (r->out.total_size == NULL) {
out 4103 librpc/gen_ndr/srv_samr.c r->out.returned_size = talloc_zero(r, uint32_t);
out 4104 librpc/gen_ndr/srv_samr.c if (r->out.returned_size == NULL) {
out 4109 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(r, union samr_DispInfo);
out 4110 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 4115 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryDisplayInfo3(p, r);
out 4188 librpc/gen_ndr/srv_samr.c r->out.result = _samr_AddMultipleMembersToAlias(p, r);
out 4261 librpc/gen_ndr/srv_samr.c r->out.result = _samr_RemoveMultipleMembersFromAlias(p, r);
out 4334 librpc/gen_ndr/srv_samr.c r->out.result = _samr_OemChangePasswordUser2(p, r);
out 4407 librpc/gen_ndr/srv_samr.c r->out.result = _samr_ChangePasswordUser2(p, r);
out 4480 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 4481 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(r, struct samr_PwInfo);
out 4482 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 4487 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetDomPwInfo(p, r);
out 4560 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 4561 librpc/gen_ndr/srv_samr.c r->out.connect_handle = talloc_zero(r, struct policy_handle);
out 4562 librpc/gen_ndr/srv_samr.c if (r->out.connect_handle == NULL) {
out 4567 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Connect2(p, r);
out 4640 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetUserInfo2(p, r);
out 4713 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetBootKeyInformation(p, r);
out 4786 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 4787 librpc/gen_ndr/srv_samr.c r->out.unknown = talloc_zero(r, uint32_t);
out 4788 librpc/gen_ndr/srv_samr.c if (r->out.unknown == NULL) {
out 4793 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetBootKeyInformation(p, r);
out 4866 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 4867 librpc/gen_ndr/srv_samr.c r->out.connect_handle = talloc_zero(r, struct policy_handle);
out 4868 librpc/gen_ndr/srv_samr.c if (r->out.connect_handle == NULL) {
out 4873 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Connect3(p, r);
out 4946 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 4947 librpc/gen_ndr/srv_samr.c r->out.connect_handle = talloc_zero(r, struct policy_handle);
out 4948 librpc/gen_ndr/srv_samr.c if (r->out.connect_handle == NULL) {
out 4953 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Connect4(p, r);
out 5026 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5027 librpc/gen_ndr/srv_samr.c r->out.dominfo = talloc_zero(r, struct samr_DomInfo1 *);
out 5028 librpc/gen_ndr/srv_samr.c if (r->out.dominfo == NULL) {
out 5033 librpc/gen_ndr/srv_samr.c r->out.reject = talloc_zero(r, struct samr_ChangeReject *);
out 5034 librpc/gen_ndr/srv_samr.c if (r->out.reject == NULL) {
out 5039 librpc/gen_ndr/srv_samr.c r->out.result = _samr_ChangePasswordUser3(p, r);
out 5112 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5113 librpc/gen_ndr/srv_samr.c r->out.level_out = talloc_zero(r, uint32_t);
out 5114 librpc/gen_ndr/srv_samr.c if (r->out.level_out == NULL) {
out 5119 librpc/gen_ndr/srv_samr.c r->out.info_out = talloc_zero(r, union samr_ConnectInfo);
out 5120 librpc/gen_ndr/srv_samr.c if (r->out.info_out == NULL) {
out 5125 librpc/gen_ndr/srv_samr.c r->out.connect_handle = talloc_zero(r, struct policy_handle);
out 5126 librpc/gen_ndr/srv_samr.c if (r->out.connect_handle == NULL) {
out 5131 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Connect5(p, r);
out 5204 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5205 librpc/gen_ndr/srv_samr.c r->out.sid = talloc_zero(r, struct dom_sid2 *);
out 5206 librpc/gen_ndr/srv_samr.c if (r->out.sid == NULL) {
out 5211 librpc/gen_ndr/srv_samr.c r->out.result = _samr_RidToSid(p, r);
out 5284 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetDsrmPassword(p, r);
out 5357 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5358 librpc/gen_ndr/srv_samr.c r->out.rep = talloc_zero(r, union samr_ValidatePasswordRep *);
out 5359 librpc/gen_ndr/srv_samr.c if (r->out.rep == NULL) {
out 5364 librpc/gen_ndr/srv_samr.c r->out.result = _samr_ValidatePassword(p, r);
out 5489 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5490 librpc/gen_ndr/srv_samr.c r->out.connect_handle = talloc_zero(mem_ctx, struct policy_handle);
out 5491 librpc/gen_ndr/srv_samr.c if (r->out.connect_handle == NULL) {
out 5495 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Connect(cli->pipes_struct, r);
out 5501 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5502 librpc/gen_ndr/srv_samr.c r->out.handle = r->in.handle;
out 5503 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Close(cli->pipes_struct, r);
out 5509 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetSecurity(cli->pipes_struct, r);
out 5515 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5516 librpc/gen_ndr/srv_samr.c r->out.sdbuf = talloc_zero(mem_ctx, struct sec_desc_buf *);
out 5517 librpc/gen_ndr/srv_samr.c if (r->out.sdbuf == NULL) {
out 5521 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QuerySecurity(cli->pipes_struct, r);
out 5527 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Shutdown(cli->pipes_struct, r);
out 5533 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5534 librpc/gen_ndr/srv_samr.c r->out.sid = talloc_zero(mem_ctx, struct dom_sid2 *);
out 5535 librpc/gen_ndr/srv_samr.c if (r->out.sid == NULL) {
out 5539 librpc/gen_ndr/srv_samr.c r->out.result = _samr_LookupDomain(cli->pipes_struct, r);
out 5545 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5546 librpc/gen_ndr/srv_samr.c r->out.resume_handle = r->in.resume_handle;
out 5547 librpc/gen_ndr/srv_samr.c r->out.sam = talloc_zero(mem_ctx, struct samr_SamArray *);
out 5548 librpc/gen_ndr/srv_samr.c if (r->out.sam == NULL) {
out 5552 librpc/gen_ndr/srv_samr.c r->out.num_entries = talloc_zero(mem_ctx, uint32_t);
out 5553 librpc/gen_ndr/srv_samr.c if (r->out.num_entries == NULL) {
out 5557 librpc/gen_ndr/srv_samr.c r->out.result = _samr_EnumDomains(cli->pipes_struct, r);
out 5563 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5564 librpc/gen_ndr/srv_samr.c r->out.domain_handle = talloc_zero(mem_ctx, struct policy_handle);
out 5565 librpc/gen_ndr/srv_samr.c if (r->out.domain_handle == NULL) {
out 5569 librpc/gen_ndr/srv_samr.c r->out.result = _samr_OpenDomain(cli->pipes_struct, r);
out 5575 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5576 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(mem_ctx, union samr_DomainInfo *);
out 5577 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 5581 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryDomainInfo(cli->pipes_struct, r);
out 5587 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetDomainInfo(cli->pipes_struct, r);
out 5593 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5594 librpc/gen_ndr/srv_samr.c r->out.group_handle = talloc_zero(mem_ctx, struct policy_handle);
out 5595 librpc/gen_ndr/srv_samr.c if (r->out.group_handle == NULL) {
out 5599 librpc/gen_ndr/srv_samr.c r->out.rid = talloc_zero(mem_ctx, uint32_t);
out 5600 librpc/gen_ndr/srv_samr.c if (r->out.rid == NULL) {
out 5604 librpc/gen_ndr/srv_samr.c r->out.result = _samr_CreateDomainGroup(cli->pipes_struct, r);
out 5610 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5611 librpc/gen_ndr/srv_samr.c r->out.resume_handle = r->in.resume_handle;
out 5612 librpc/gen_ndr/srv_samr.c r->out.sam = talloc_zero(mem_ctx, struct samr_SamArray *);
out 5613 librpc/gen_ndr/srv_samr.c if (r->out.sam == NULL) {
out 5617 librpc/gen_ndr/srv_samr.c r->out.num_entries = talloc_zero(mem_ctx, uint32_t);
out 5618 librpc/gen_ndr/srv_samr.c if (r->out.num_entries == NULL) {
out 5622 librpc/gen_ndr/srv_samr.c r->out.result = _samr_EnumDomainGroups(cli->pipes_struct, r);
out 5628 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5629 librpc/gen_ndr/srv_samr.c r->out.user_handle = talloc_zero(mem_ctx, struct policy_handle);
out 5630 librpc/gen_ndr/srv_samr.c if (r->out.user_handle == NULL) {
out 5634 librpc/gen_ndr/srv_samr.c r->out.rid = talloc_zero(mem_ctx, uint32_t);
out 5635 librpc/gen_ndr/srv_samr.c if (r->out.rid == NULL) {
out 5639 librpc/gen_ndr/srv_samr.c r->out.result = _samr_CreateUser(cli->pipes_struct, r);
out 5645 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5646 librpc/gen_ndr/srv_samr.c r->out.resume_handle = r->in.resume_handle;
out 5647 librpc/gen_ndr/srv_samr.c r->out.sam = talloc_zero(mem_ctx, struct samr_SamArray *);
out 5648 librpc/gen_ndr/srv_samr.c if (r->out.sam == NULL) {
out 5652 librpc/gen_ndr/srv_samr.c r->out.num_entries = talloc_zero(mem_ctx, uint32_t);
out 5653 librpc/gen_ndr/srv_samr.c if (r->out.num_entries == NULL) {
out 5657 librpc/gen_ndr/srv_samr.c r->out.result = _samr_EnumDomainUsers(cli->pipes_struct, r);
out 5663 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5664 librpc/gen_ndr/srv_samr.c r->out.alias_handle = talloc_zero(mem_ctx, struct policy_handle);
out 5665 librpc/gen_ndr/srv_samr.c if (r->out.alias_handle == NULL) {
out 5669 librpc/gen_ndr/srv_samr.c r->out.rid = talloc_zero(mem_ctx, uint32_t);
out 5670 librpc/gen_ndr/srv_samr.c if (r->out.rid == NULL) {
out 5674 librpc/gen_ndr/srv_samr.c r->out.result = _samr_CreateDomAlias(cli->pipes_struct, r);
out 5680 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5681 librpc/gen_ndr/srv_samr.c r->out.resume_handle = r->in.resume_handle;
out 5682 librpc/gen_ndr/srv_samr.c r->out.sam = talloc_zero(mem_ctx, struct samr_SamArray *);
out 5683 librpc/gen_ndr/srv_samr.c if (r->out.sam == NULL) {
out 5687 librpc/gen_ndr/srv_samr.c r->out.num_entries = talloc_zero(mem_ctx, uint32_t);
out 5688 librpc/gen_ndr/srv_samr.c if (r->out.num_entries == NULL) {
out 5692 librpc/gen_ndr/srv_samr.c r->out.result = _samr_EnumDomainAliases(cli->pipes_struct, r);
out 5698 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5699 librpc/gen_ndr/srv_samr.c r->out.rids = talloc_zero(mem_ctx, struct samr_Ids);
out 5700 librpc/gen_ndr/srv_samr.c if (r->out.rids == NULL) {
out 5704 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetAliasMembership(cli->pipes_struct, r);
out 5710 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5711 librpc/gen_ndr/srv_samr.c r->out.rids = talloc_zero(mem_ctx, struct samr_Ids);
out 5712 librpc/gen_ndr/srv_samr.c if (r->out.rids == NULL) {
out 5716 librpc/gen_ndr/srv_samr.c r->out.types = talloc_zero(mem_ctx, struct samr_Ids);
out 5717 librpc/gen_ndr/srv_samr.c if (r->out.types == NULL) {
out 5721 librpc/gen_ndr/srv_samr.c r->out.result = _samr_LookupNames(cli->pipes_struct, r);
out 5727 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5728 librpc/gen_ndr/srv_samr.c r->out.names = talloc_zero(mem_ctx, struct lsa_Strings);
out 5729 librpc/gen_ndr/srv_samr.c if (r->out.names == NULL) {
out 5733 librpc/gen_ndr/srv_samr.c r->out.types = talloc_zero(mem_ctx, struct samr_Ids);
out 5734 librpc/gen_ndr/srv_samr.c if (r->out.types == NULL) {
out 5738 librpc/gen_ndr/srv_samr.c r->out.result = _samr_LookupRids(cli->pipes_struct, r);
out 5744 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5745 librpc/gen_ndr/srv_samr.c r->out.group_handle = talloc_zero(mem_ctx, struct policy_handle);
out 5746 librpc/gen_ndr/srv_samr.c if (r->out.group_handle == NULL) {
out 5750 librpc/gen_ndr/srv_samr.c r->out.result = _samr_OpenGroup(cli->pipes_struct, r);
out 5756 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5757 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(mem_ctx, union samr_GroupInfo *);
out 5758 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 5762 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryGroupInfo(cli->pipes_struct, r);
out 5768 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetGroupInfo(cli->pipes_struct, r);
out 5774 librpc/gen_ndr/srv_samr.c r->out.result = _samr_AddGroupMember(cli->pipes_struct, r);
out 5780 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5781 librpc/gen_ndr/srv_samr.c r->out.group_handle = r->in.group_handle;
out 5782 librpc/gen_ndr/srv_samr.c r->out.result = _samr_DeleteDomainGroup(cli->pipes_struct, r);
out 5788 librpc/gen_ndr/srv_samr.c r->out.result = _samr_DeleteGroupMember(cli->pipes_struct, r);
out 5794 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5795 librpc/gen_ndr/srv_samr.c r->out.rids = talloc_zero(mem_ctx, struct samr_RidTypeArray *);
out 5796 librpc/gen_ndr/srv_samr.c if (r->out.rids == NULL) {
out 5800 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryGroupMember(cli->pipes_struct, r);
out 5806 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetMemberAttributesOfGroup(cli->pipes_struct, r);
out 5812 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5813 librpc/gen_ndr/srv_samr.c r->out.alias_handle = talloc_zero(mem_ctx, struct policy_handle);
out 5814 librpc/gen_ndr/srv_samr.c if (r->out.alias_handle == NULL) {
out 5818 librpc/gen_ndr/srv_samr.c r->out.result = _samr_OpenAlias(cli->pipes_struct, r);
out 5824 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5825 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(mem_ctx, union samr_AliasInfo *);
out 5826 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 5830 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryAliasInfo(cli->pipes_struct, r);
out 5836 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetAliasInfo(cli->pipes_struct, r);
out 5842 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5843 librpc/gen_ndr/srv_samr.c r->out.alias_handle = r->in.alias_handle;
out 5844 librpc/gen_ndr/srv_samr.c r->out.result = _samr_DeleteDomAlias(cli->pipes_struct, r);
out 5850 librpc/gen_ndr/srv_samr.c r->out.result = _samr_AddAliasMember(cli->pipes_struct, r);
out 5856 librpc/gen_ndr/srv_samr.c r->out.result = _samr_DeleteAliasMember(cli->pipes_struct, r);
out 5862 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5863 librpc/gen_ndr/srv_samr.c r->out.sids = talloc_zero(mem_ctx, struct lsa_SidArray);
out 5864 librpc/gen_ndr/srv_samr.c if (r->out.sids == NULL) {
out 5868 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetMembersInAlias(cli->pipes_struct, r);
out 5874 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5875 librpc/gen_ndr/srv_samr.c r->out.user_handle = talloc_zero(mem_ctx, struct policy_handle);
out 5876 librpc/gen_ndr/srv_samr.c if (r->out.user_handle == NULL) {
out 5880 librpc/gen_ndr/srv_samr.c r->out.result = _samr_OpenUser(cli->pipes_struct, r);
out 5886 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5887 librpc/gen_ndr/srv_samr.c r->out.user_handle = r->in.user_handle;
out 5888 librpc/gen_ndr/srv_samr.c r->out.result = _samr_DeleteUser(cli->pipes_struct, r);
out 5894 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5895 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(mem_ctx, union samr_UserInfo *);
out 5896 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 5900 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryUserInfo(cli->pipes_struct, r);
out 5906 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetUserInfo(cli->pipes_struct, r);
out 5912 librpc/gen_ndr/srv_samr.c r->out.result = _samr_ChangePasswordUser(cli->pipes_struct, r);
out 5918 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5919 librpc/gen_ndr/srv_samr.c r->out.rids = talloc_zero(mem_ctx, struct samr_RidWithAttributeArray *);
out 5920 librpc/gen_ndr/srv_samr.c if (r->out.rids == NULL) {
out 5924 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetGroupsForUser(cli->pipes_struct, r);
out 5930 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5931 librpc/gen_ndr/srv_samr.c r->out.total_size = talloc_zero(mem_ctx, uint32_t);
out 5932 librpc/gen_ndr/srv_samr.c if (r->out.total_size == NULL) {
out 5936 librpc/gen_ndr/srv_samr.c r->out.returned_size = talloc_zero(mem_ctx, uint32_t);
out 5937 librpc/gen_ndr/srv_samr.c if (r->out.returned_size == NULL) {
out 5941 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(mem_ctx, union samr_DispInfo);
out 5942 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 5946 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryDisplayInfo(cli->pipes_struct, r);
out 5952 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5953 librpc/gen_ndr/srv_samr.c r->out.idx = talloc_zero(mem_ctx, uint32_t);
out 5954 librpc/gen_ndr/srv_samr.c if (r->out.idx == NULL) {
out 5958 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetDisplayEnumerationIndex(cli->pipes_struct, r);
out 5964 librpc/gen_ndr/srv_samr.c r->out.result = _samr_TestPrivateFunctionsDomain(cli->pipes_struct, r);
out 5970 librpc/gen_ndr/srv_samr.c r->out.result = _samr_TestPrivateFunctionsUser(cli->pipes_struct, r);
out 5976 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5977 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(mem_ctx, struct samr_PwInfo);
out 5978 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 5982 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetUserPwInfo(cli->pipes_struct, r);
out 5988 librpc/gen_ndr/srv_samr.c r->out.result = _samr_RemoveMemberFromForeignDomain(cli->pipes_struct, r);
out 5994 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 5995 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(mem_ctx, union samr_DomainInfo *);
out 5996 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 6000 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryDomainInfo2(cli->pipes_struct, r);
out 6006 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6007 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(mem_ctx, union samr_UserInfo *);
out 6008 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 6012 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryUserInfo2(cli->pipes_struct, r);
out 6018 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6019 librpc/gen_ndr/srv_samr.c r->out.total_size = talloc_zero(mem_ctx, uint32_t);
out 6020 librpc/gen_ndr/srv_samr.c if (r->out.total_size == NULL) {
out 6024 librpc/gen_ndr/srv_samr.c r->out.returned_size = talloc_zero(mem_ctx, uint32_t);
out 6025 librpc/gen_ndr/srv_samr.c if (r->out.returned_size == NULL) {
out 6029 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(mem_ctx, union samr_DispInfo);
out 6030 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 6034 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryDisplayInfo2(cli->pipes_struct, r);
out 6040 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6041 librpc/gen_ndr/srv_samr.c r->out.idx = talloc_zero(mem_ctx, uint32_t);
out 6042 librpc/gen_ndr/srv_samr.c if (r->out.idx == NULL) {
out 6046 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetDisplayEnumerationIndex2(cli->pipes_struct, r);
out 6052 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6053 librpc/gen_ndr/srv_samr.c r->out.user_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6054 librpc/gen_ndr/srv_samr.c if (r->out.user_handle == NULL) {
out 6058 librpc/gen_ndr/srv_samr.c r->out.access_granted = talloc_zero(mem_ctx, uint32_t);
out 6059 librpc/gen_ndr/srv_samr.c if (r->out.access_granted == NULL) {
out 6063 librpc/gen_ndr/srv_samr.c r->out.rid = talloc_zero(mem_ctx, uint32_t);
out 6064 librpc/gen_ndr/srv_samr.c if (r->out.rid == NULL) {
out 6068 librpc/gen_ndr/srv_samr.c r->out.result = _samr_CreateUser2(cli->pipes_struct, r);
out 6074 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6075 librpc/gen_ndr/srv_samr.c r->out.total_size = talloc_zero(mem_ctx, uint32_t);
out 6076 librpc/gen_ndr/srv_samr.c if (r->out.total_size == NULL) {
out 6080 librpc/gen_ndr/srv_samr.c r->out.returned_size = talloc_zero(mem_ctx, uint32_t);
out 6081 librpc/gen_ndr/srv_samr.c if (r->out.returned_size == NULL) {
out 6085 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(mem_ctx, union samr_DispInfo);
out 6086 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 6090 librpc/gen_ndr/srv_samr.c r->out.result = _samr_QueryDisplayInfo3(cli->pipes_struct, r);
out 6096 librpc/gen_ndr/srv_samr.c r->out.result = _samr_AddMultipleMembersToAlias(cli->pipes_struct, r);
out 6102 librpc/gen_ndr/srv_samr.c r->out.result = _samr_RemoveMultipleMembersFromAlias(cli->pipes_struct, r);
out 6108 librpc/gen_ndr/srv_samr.c r->out.result = _samr_OemChangePasswordUser2(cli->pipes_struct, r);
out 6114 librpc/gen_ndr/srv_samr.c r->out.result = _samr_ChangePasswordUser2(cli->pipes_struct, r);
out 6120 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6121 librpc/gen_ndr/srv_samr.c r->out.info = talloc_zero(mem_ctx, struct samr_PwInfo);
out 6122 librpc/gen_ndr/srv_samr.c if (r->out.info == NULL) {
out 6126 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetDomPwInfo(cli->pipes_struct, r);
out 6132 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6133 librpc/gen_ndr/srv_samr.c r->out.connect_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6134 librpc/gen_ndr/srv_samr.c if (r->out.connect_handle == NULL) {
out 6138 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Connect2(cli->pipes_struct, r);
out 6144 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetUserInfo2(cli->pipes_struct, r);
out 6150 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetBootKeyInformation(cli->pipes_struct, r);
out 6156 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6157 librpc/gen_ndr/srv_samr.c r->out.unknown = talloc_zero(mem_ctx, uint32_t);
out 6158 librpc/gen_ndr/srv_samr.c if (r->out.unknown == NULL) {
out 6162 librpc/gen_ndr/srv_samr.c r->out.result = _samr_GetBootKeyInformation(cli->pipes_struct, r);
out 6168 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6169 librpc/gen_ndr/srv_samr.c r->out.connect_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6170 librpc/gen_ndr/srv_samr.c if (r->out.connect_handle == NULL) {
out 6174 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Connect3(cli->pipes_struct, r);
out 6180 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6181 librpc/gen_ndr/srv_samr.c r->out.connect_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6182 librpc/gen_ndr/srv_samr.c if (r->out.connect_handle == NULL) {
out 6186 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Connect4(cli->pipes_struct, r);
out 6192 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6193 librpc/gen_ndr/srv_samr.c r->out.dominfo = talloc_zero(mem_ctx, struct samr_DomInfo1 *);
out 6194 librpc/gen_ndr/srv_samr.c if (r->out.dominfo == NULL) {
out 6198 librpc/gen_ndr/srv_samr.c r->out.reject = talloc_zero(mem_ctx, struct samr_ChangeReject *);
out 6199 librpc/gen_ndr/srv_samr.c if (r->out.reject == NULL) {
out 6203 librpc/gen_ndr/srv_samr.c r->out.result = _samr_ChangePasswordUser3(cli->pipes_struct, r);
out 6209 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6210 librpc/gen_ndr/srv_samr.c r->out.level_out = talloc_zero(mem_ctx, uint32_t);
out 6211 librpc/gen_ndr/srv_samr.c if (r->out.level_out == NULL) {
out 6215 librpc/gen_ndr/srv_samr.c r->out.info_out = talloc_zero(mem_ctx, union samr_ConnectInfo);
out 6216 librpc/gen_ndr/srv_samr.c if (r->out.info_out == NULL) {
out 6220 librpc/gen_ndr/srv_samr.c r->out.connect_handle = talloc_zero(mem_ctx, struct policy_handle);
out 6221 librpc/gen_ndr/srv_samr.c if (r->out.connect_handle == NULL) {
out 6225 librpc/gen_ndr/srv_samr.c r->out.result = _samr_Connect5(cli->pipes_struct, r);
out 6231 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6232 librpc/gen_ndr/srv_samr.c r->out.sid = talloc_zero(mem_ctx, struct dom_sid2 *);
out 6233 librpc/gen_ndr/srv_samr.c if (r->out.sid == NULL) {
out 6237 librpc/gen_ndr/srv_samr.c r->out.result = _samr_RidToSid(cli->pipes_struct, r);
out 6243 librpc/gen_ndr/srv_samr.c r->out.result = _samr_SetDsrmPassword(cli->pipes_struct, r);
out 6249 librpc/gen_ndr/srv_samr.c ZERO_STRUCT(r->out);
out 6250 librpc/gen_ndr/srv_samr.c r->out.rep = talloc_zero(mem_ctx, union samr_ValidatePasswordRep *);
out 6251 librpc/gen_ndr/srv_samr.c if (r->out.rep == NULL) {
out 6255 librpc/gen_ndr/srv_samr.c r->out.result = _samr_ValidatePassword(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 48 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(r, uint32_t);
out 49 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 54 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_PrinterInfo *);
out 55 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 60 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 61 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 66 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrinters(p, r);
out 139 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 140 librpc/gen_ndr/srv_spoolss.c r->out.handle = talloc_zero(r, struct policy_handle);
out 141 librpc/gen_ndr/srv_spoolss.c if (r->out.handle == NULL) {
out 146 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_OpenPrinter(p, r);
out 219 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_SetJob(p, r);
out 292 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 293 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_JobInfo);
out 294 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 299 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 300 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 305 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetJob(p, r);
out 378 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 379 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(r, uint32_t);
out 380 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 385 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_JobInfo *);
out 386 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 391 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 392 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 397 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumJobs(p, r);
out 470 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrinter(p, r);
out 543 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinter(p, r);
out 616 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_SetPrinter(p, r);
out 689 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 690 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_PrinterInfo);
out 691 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 696 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 697 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 702 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrinter(p, r);
out 775 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrinterDriver(p, r);
out 848 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 849 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(r, uint32_t);
out 850 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 855 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_DriverInfo *);
out 856 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 861 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 862 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 867 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrinterDrivers(p, r);
out 940 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrinterDriver(p, r);
out 1013 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 1014 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_DriverDirectoryInfo);
out 1015 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 1020 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 1021 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 1026 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrinterDriverDirectory(p, r);
out 1099 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterDriver(p, r);
out 1172 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrintProcessor(p, r);
out 1245 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 1246 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(r, uint32_t);
out 1247 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 1252 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_PrintProcessorInfo *);
out 1253 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 1258 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 1259 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 1264 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrintProcessors(p, r);
out 1337 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 1338 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_PrintProcessorDirectoryInfo);
out 1339 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 1344 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 1345 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 1350 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrintProcessorDirectory(p, r);
out 1423 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 1424 librpc/gen_ndr/srv_spoolss.c r->out.job_id = talloc_zero(r, uint32_t);
out 1425 librpc/gen_ndr/srv_spoolss.c if (r->out.job_id == NULL) {
out 1430 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_StartDocPrinter(p, r);
out 1503 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_StartPagePrinter(p, r);
out 1576 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 1577 librpc/gen_ndr/srv_spoolss.c r->out.num_written = talloc_zero(r, uint32_t);
out 1578 librpc/gen_ndr/srv_spoolss.c if (r->out.num_written == NULL) {
out 1583 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_WritePrinter(p, r);
out 1656 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EndPagePrinter(p, r);
out 1729 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AbortPrinter(p, r);
out 1802 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 1803 librpc/gen_ndr/srv_spoolss.c r->out.data = talloc_zero_array(r, uint8_t, r->in.data_size);
out 1804 librpc/gen_ndr/srv_spoolss.c if (r->out.data == NULL) {
out 1809 librpc/gen_ndr/srv_spoolss.c r->out._data_size = talloc_zero(r, uint32_t);
out 1810 librpc/gen_ndr/srv_spoolss.c if (r->out._data_size == NULL) {
out 1815 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ReadPrinter(p, r);
out 1888 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EndDocPrinter(p, r);
out 1961 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 1962 librpc/gen_ndr/srv_spoolss.c r->out.buffer = r->in.buffer;
out 1963 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 1964 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 1969 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddJob(p, r);
out 2042 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ScheduleJob(p, r);
out 2115 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 2116 librpc/gen_ndr/srv_spoolss.c r->out.type = talloc_zero(r, enum winreg_Type);
out 2117 librpc/gen_ndr/srv_spoolss.c if (r->out.type == NULL) {
out 2122 librpc/gen_ndr/srv_spoolss.c r->out.data = talloc_zero(r, union spoolss_PrinterData);
out 2123 librpc/gen_ndr/srv_spoolss.c if (r->out.data == NULL) {
out 2128 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 2129 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 2134 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrinterData(p, r);
out 2207 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_SetPrinterData(p, r);
out 2280 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_WaitForPrinterChange(p, r);
out 2353 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 2354 librpc/gen_ndr/srv_spoolss.c r->out.handle = r->in.handle;
out 2355 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ClosePrinter(p, r);
out 2428 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddForm(p, r);
out 2501 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeleteForm(p, r);
out 2574 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 2575 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_FormInfo);
out 2576 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 2581 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 2582 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 2587 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetForm(p, r);
out 2660 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_SetForm(p, r);
out 2733 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 2734 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(r, uint32_t);
out 2735 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 2740 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_FormInfo *);
out 2741 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 2746 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 2747 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 2752 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumForms(p, r);
out 2825 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 2826 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(r, uint32_t);
out 2827 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 2832 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_PortInfo *);
out 2833 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 2838 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 2839 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 2844 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPorts(p, r);
out 2917 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 2918 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(r, uint32_t);
out 2919 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 2924 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_MonitorInfo *);
out 2925 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 2930 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 2931 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 2936 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumMonitors(p, r);
out 3009 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPort(p, r);
out 3082 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ConfigurePort(p, r);
out 3155 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePort(p, r);
out 3228 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_CreatePrinterIC(p, r);
out 3301 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_PlayGDIScriptOnPrinterIC(p, r);
out 3374 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterIC(p, r);
out 3447 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrinterConnection(p, r);
out 3520 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterConnection(p, r);
out 3593 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_PrinterMessageBox(p, r);
out 3666 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddMonitor(p, r);
out 3739 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeleteMonitor(p, r);
out 3812 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrintProcessor(p, r);
out 3885 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrintProvidor(p, r);
out 3958 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrintProvidor(p, r);
out 4031 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 4032 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(r, uint32_t);
out 4033 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 4038 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_PrintProcDataTypesInfo *);
out 4039 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 4044 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 4045 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 4050 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrintProcDataTypes(p, r);
out 4123 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ResetPrinter(p, r);
out 4196 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 4197 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, union spoolss_DriverInfo);
out 4198 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 4203 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 4204 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 4209 librpc/gen_ndr/srv_spoolss.c r->out.server_major_version = talloc_zero(r, uint32_t);
out 4210 librpc/gen_ndr/srv_spoolss.c if (r->out.server_major_version == NULL) {
out 4215 librpc/gen_ndr/srv_spoolss.c r->out.server_minor_version = talloc_zero(r, uint32_t);
out 4216 librpc/gen_ndr/srv_spoolss.c if (r->out.server_minor_version == NULL) {
out 4221 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrinterDriver2(p, r);
out 4294 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_FindFirstPrinterChangeNotification(p, r);
out 4367 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_FindNextPrinterChangeNotification(p, r);
out 4440 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_FindClosePrinterNotify(p, r);
out 4513 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_RouterFindFirstPrinterChangeNotificationOld(p, r);
out 4586 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 4587 librpc/gen_ndr/srv_spoolss.c r->out.handle = talloc_zero(r, struct policy_handle);
out 4588 librpc/gen_ndr/srv_spoolss.c if (r->out.handle == NULL) {
out 4593 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ReplyOpenPrinter(p, r);
out 4666 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_RouterReplyPrinter(p, r);
out 4739 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 4740 librpc/gen_ndr/srv_spoolss.c r->out.handle = r->in.handle;
out 4741 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ReplyClosePrinter(p, r);
out 4814 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPortEx(p, r);
out 4887 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_RouterFindFirstPrinterChangeNotification(p, r);
out 4960 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_SpoolerInit(p, r);
out 5033 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ResetPrinterEx(p, r);
out 5106 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_RemoteFindFirstPrinterChangeNotifyEx(p, r);
out 5179 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 5180 librpc/gen_ndr/srv_spoolss.c r->out.reply_result = talloc_zero(r, uint32_t);
out 5181 librpc/gen_ndr/srv_spoolss.c if (r->out.reply_result == NULL) {
out 5186 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_RouterReplyPrinterEx(p, r);
out 5259 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 5260 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, struct spoolss_NotifyInfo *);
out 5261 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 5266 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_RouterRefreshPrinterChangeNotify(p, r);
out 5339 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_44(p, r);
out 5412 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 5413 librpc/gen_ndr/srv_spoolss.c r->out.handle = talloc_zero(r, struct policy_handle);
out 5414 librpc/gen_ndr/srv_spoolss.c if (r->out.handle == NULL) {
out 5419 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_OpenPrinterEx(p, r);
out 5492 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 5493 librpc/gen_ndr/srv_spoolss.c r->out.handle = talloc_zero(r, struct policy_handle);
out 5494 librpc/gen_ndr/srv_spoolss.c if (r->out.handle == NULL) {
out 5499 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrinterEx(p, r);
out 5572 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_47(p, r);
out 5645 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 5646 librpc/gen_ndr/srv_spoolss.c r->out.value_name = talloc_zero_array(r, const char, r->in.value_offered / 2);
out 5647 librpc/gen_ndr/srv_spoolss.c if (r->out.value_name == NULL) {
out 5652 librpc/gen_ndr/srv_spoolss.c r->out.value_needed = talloc_zero(r, uint32_t);
out 5653 librpc/gen_ndr/srv_spoolss.c if (r->out.value_needed == NULL) {
out 5658 librpc/gen_ndr/srv_spoolss.c r->out.type = talloc_zero(r, enum winreg_Type);
out 5659 librpc/gen_ndr/srv_spoolss.c if (r->out.type == NULL) {
out 5664 librpc/gen_ndr/srv_spoolss.c r->out.data = talloc_zero_array(r, uint8_t, r->in.data_offered);
out 5665 librpc/gen_ndr/srv_spoolss.c if (r->out.data == NULL) {
out 5670 librpc/gen_ndr/srv_spoolss.c r->out.data_needed = talloc_zero(r, uint32_t);
out 5671 librpc/gen_ndr/srv_spoolss.c if (r->out.data_needed == NULL) {
out 5676 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrinterData(p, r);
out 5749 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterData(p, r);
out 5822 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_4a(p, r);
out 5895 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_4b(p, r);
out 5968 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_4c(p, r);
out 6041 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_SetPrinterDataEx(p, r);
out 6114 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 6115 librpc/gen_ndr/srv_spoolss.c r->out.type = talloc_zero(r, enum winreg_Type);
out 6116 librpc/gen_ndr/srv_spoolss.c if (r->out.type == NULL) {
out 6121 librpc/gen_ndr/srv_spoolss.c r->out.buffer = talloc_zero_array(r, uint8_t, r->in.offered);
out 6122 librpc/gen_ndr/srv_spoolss.c if (r->out.buffer == NULL) {
out 6127 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 6128 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 6133 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrinterDataEx(p, r);
out 6206 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 6207 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(r, uint32_t);
out 6208 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 6213 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(r, struct spoolss_PrinterEnumValues *);
out 6214 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 6219 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 6220 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 6225 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrinterDataEx(p, r);
out 6298 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 6299 librpc/gen_ndr/srv_spoolss.c r->out.key_buffer = talloc_zero(r, const char **);
out 6300 librpc/gen_ndr/srv_spoolss.c if (r->out.key_buffer == NULL) {
out 6305 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 6306 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 6311 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrinterKey(p, r);
out 6384 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterDataEx(p, r);
out 6457 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterKey(p, r);
out 6530 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_53(p, r);
out 6603 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterDriverEx(p, r);
out 6676 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_55(p, r);
out 6749 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_56(p, r);
out 6822 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_57(p, r);
out 6895 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 6896 librpc/gen_ndr/srv_spoolss.c r->out.status_code = r->in.status_code;
out 6897 librpc/gen_ndr/srv_spoolss.c r->out.out_data = talloc_zero_array(r, uint8_t, r->in.out_data_size);
out 6898 librpc/gen_ndr/srv_spoolss.c if (r->out.out_data == NULL) {
out 6903 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(r, uint32_t);
out 6904 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 6909 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_XcvData(p, r);
out 6982 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrinterDriverEx(p, r);
out 7055 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_5a(p, r);
out 7128 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_5b(p, r);
out 7201 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_5c(p, r);
out 7274 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_5d(p, r);
out 7347 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_5e(p, r);
out 7420 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_5f(p, r);
out 7573 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7574 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(mem_ctx, uint32_t);
out 7575 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 7579 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_PrinterInfo *);
out 7580 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 7584 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7585 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7589 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrinters(cli->pipes_struct, r);
out 7595 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7596 librpc/gen_ndr/srv_spoolss.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 7597 librpc/gen_ndr/srv_spoolss.c if (r->out.handle == NULL) {
out 7601 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_OpenPrinter(cli->pipes_struct, r);
out 7607 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_SetJob(cli->pipes_struct, r);
out 7613 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7614 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_JobInfo);
out 7615 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 7619 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7620 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7624 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetJob(cli->pipes_struct, r);
out 7630 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7631 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(mem_ctx, uint32_t);
out 7632 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 7636 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_JobInfo *);
out 7637 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 7641 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7642 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7646 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumJobs(cli->pipes_struct, r);
out 7652 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrinter(cli->pipes_struct, r);
out 7658 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinter(cli->pipes_struct, r);
out 7664 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_SetPrinter(cli->pipes_struct, r);
out 7670 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7671 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_PrinterInfo);
out 7672 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 7676 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7677 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7681 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrinter(cli->pipes_struct, r);
out 7687 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrinterDriver(cli->pipes_struct, r);
out 7693 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7694 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(mem_ctx, uint32_t);
out 7695 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 7699 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_DriverInfo *);
out 7700 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 7704 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7705 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7709 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrinterDrivers(cli->pipes_struct, r);
out 7715 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrinterDriver(cli->pipes_struct, r);
out 7721 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7722 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_DriverDirectoryInfo);
out 7723 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 7727 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7728 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7732 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrinterDriverDirectory(cli->pipes_struct, r);
out 7738 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterDriver(cli->pipes_struct, r);
out 7744 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrintProcessor(cli->pipes_struct, r);
out 7750 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7751 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(mem_ctx, uint32_t);
out 7752 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 7756 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_PrintProcessorInfo *);
out 7757 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 7761 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7762 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7766 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrintProcessors(cli->pipes_struct, r);
out 7772 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7773 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_PrintProcessorDirectoryInfo);
out 7774 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 7778 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7779 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7783 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrintProcessorDirectory(cli->pipes_struct, r);
out 7789 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7790 librpc/gen_ndr/srv_spoolss.c r->out.job_id = talloc_zero(mem_ctx, uint32_t);
out 7791 librpc/gen_ndr/srv_spoolss.c if (r->out.job_id == NULL) {
out 7795 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_StartDocPrinter(cli->pipes_struct, r);
out 7801 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_StartPagePrinter(cli->pipes_struct, r);
out 7807 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7808 librpc/gen_ndr/srv_spoolss.c r->out.num_written = talloc_zero(mem_ctx, uint32_t);
out 7809 librpc/gen_ndr/srv_spoolss.c if (r->out.num_written == NULL) {
out 7813 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_WritePrinter(cli->pipes_struct, r);
out 7819 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EndPagePrinter(cli->pipes_struct, r);
out 7825 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AbortPrinter(cli->pipes_struct, r);
out 7831 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7832 librpc/gen_ndr/srv_spoolss.c r->out.data = talloc_zero_array(mem_ctx, uint8_t, r->in.data_size);
out 7833 librpc/gen_ndr/srv_spoolss.c if (r->out.data == NULL) {
out 7837 librpc/gen_ndr/srv_spoolss.c r->out._data_size = talloc_zero(mem_ctx, uint32_t);
out 7838 librpc/gen_ndr/srv_spoolss.c if (r->out._data_size == NULL) {
out 7842 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ReadPrinter(cli->pipes_struct, r);
out 7848 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EndDocPrinter(cli->pipes_struct, r);
out 7854 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7855 librpc/gen_ndr/srv_spoolss.c r->out.buffer = r->in.buffer;
out 7856 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7857 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7861 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddJob(cli->pipes_struct, r);
out 7867 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ScheduleJob(cli->pipes_struct, r);
out 7873 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7874 librpc/gen_ndr/srv_spoolss.c r->out.type = talloc_zero(mem_ctx, enum winreg_Type);
out 7875 librpc/gen_ndr/srv_spoolss.c if (r->out.type == NULL) {
out 7879 librpc/gen_ndr/srv_spoolss.c r->out.data = talloc_zero(mem_ctx, union spoolss_PrinterData);
out 7880 librpc/gen_ndr/srv_spoolss.c if (r->out.data == NULL) {
out 7884 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7885 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7889 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrinterData(cli->pipes_struct, r);
out 7895 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_SetPrinterData(cli->pipes_struct, r);
out 7901 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_WaitForPrinterChange(cli->pipes_struct, r);
out 7907 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7908 librpc/gen_ndr/srv_spoolss.c r->out.handle = r->in.handle;
out 7909 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ClosePrinter(cli->pipes_struct, r);
out 7915 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddForm(cli->pipes_struct, r);
out 7921 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeleteForm(cli->pipes_struct, r);
out 7927 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7928 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_FormInfo);
out 7929 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 7933 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7934 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7938 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetForm(cli->pipes_struct, r);
out 7944 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_SetForm(cli->pipes_struct, r);
out 7950 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7951 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(mem_ctx, uint32_t);
out 7952 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 7956 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_FormInfo *);
out 7957 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 7961 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7962 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7966 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumForms(cli->pipes_struct, r);
out 7972 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7973 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(mem_ctx, uint32_t);
out 7974 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 7978 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_PortInfo *);
out 7979 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 7983 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 7984 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 7988 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPorts(cli->pipes_struct, r);
out 7994 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 7995 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(mem_ctx, uint32_t);
out 7996 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 8000 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_MonitorInfo *);
out 8001 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 8005 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 8006 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 8010 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumMonitors(cli->pipes_struct, r);
out 8016 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPort(cli->pipes_struct, r);
out 8022 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ConfigurePort(cli->pipes_struct, r);
out 8028 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePort(cli->pipes_struct, r);
out 8034 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_CreatePrinterIC(cli->pipes_struct, r);
out 8040 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_PlayGDIScriptOnPrinterIC(cli->pipes_struct, r);
out 8046 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterIC(cli->pipes_struct, r);
out 8052 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrinterConnection(cli->pipes_struct, r);
out 8058 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterConnection(cli->pipes_struct, r);
out 8064 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_PrinterMessageBox(cli->pipes_struct, r);
out 8070 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddMonitor(cli->pipes_struct, r);
out 8076 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeleteMonitor(cli->pipes_struct, r);
out 8082 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrintProcessor(cli->pipes_struct, r);
out 8088 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrintProvidor(cli->pipes_struct, r);
out 8094 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrintProvidor(cli->pipes_struct, r);
out 8100 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8101 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(mem_ctx, uint32_t);
out 8102 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 8106 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_PrintProcDataTypesInfo *);
out 8107 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 8111 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 8112 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 8116 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrintProcDataTypes(cli->pipes_struct, r);
out 8122 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ResetPrinter(cli->pipes_struct, r);
out 8128 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8129 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, union spoolss_DriverInfo);
out 8130 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 8134 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 8135 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 8139 librpc/gen_ndr/srv_spoolss.c r->out.server_major_version = talloc_zero(mem_ctx, uint32_t);
out 8140 librpc/gen_ndr/srv_spoolss.c if (r->out.server_major_version == NULL) {
out 8144 librpc/gen_ndr/srv_spoolss.c r->out.server_minor_version = talloc_zero(mem_ctx, uint32_t);
out 8145 librpc/gen_ndr/srv_spoolss.c if (r->out.server_minor_version == NULL) {
out 8149 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrinterDriver2(cli->pipes_struct, r);
out 8155 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_FindFirstPrinterChangeNotification(cli->pipes_struct, r);
out 8161 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_FindNextPrinterChangeNotification(cli->pipes_struct, r);
out 8167 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_FindClosePrinterNotify(cli->pipes_struct, r);
out 8173 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_RouterFindFirstPrinterChangeNotificationOld(cli->pipes_struct, r);
out 8179 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8180 librpc/gen_ndr/srv_spoolss.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 8181 librpc/gen_ndr/srv_spoolss.c if (r->out.handle == NULL) {
out 8185 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ReplyOpenPrinter(cli->pipes_struct, r);
out 8191 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_RouterReplyPrinter(cli->pipes_struct, r);
out 8197 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8198 librpc/gen_ndr/srv_spoolss.c r->out.handle = r->in.handle;
out 8199 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ReplyClosePrinter(cli->pipes_struct, r);
out 8205 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPortEx(cli->pipes_struct, r);
out 8211 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_RouterFindFirstPrinterChangeNotification(cli->pipes_struct, r);
out 8217 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_SpoolerInit(cli->pipes_struct, r);
out 8223 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_ResetPrinterEx(cli->pipes_struct, r);
out 8229 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_RemoteFindFirstPrinterChangeNotifyEx(cli->pipes_struct, r);
out 8235 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8236 librpc/gen_ndr/srv_spoolss.c r->out.reply_result = talloc_zero(mem_ctx, uint32_t);
out 8237 librpc/gen_ndr/srv_spoolss.c if (r->out.reply_result == NULL) {
out 8241 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_RouterReplyPrinterEx(cli->pipes_struct, r);
out 8247 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8248 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, struct spoolss_NotifyInfo *);
out 8249 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 8253 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_RouterRefreshPrinterChangeNotify(cli->pipes_struct, r);
out 8259 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_44(cli->pipes_struct, r);
out 8265 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8266 librpc/gen_ndr/srv_spoolss.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 8267 librpc/gen_ndr/srv_spoolss.c if (r->out.handle == NULL) {
out 8271 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_OpenPrinterEx(cli->pipes_struct, r);
out 8277 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8278 librpc/gen_ndr/srv_spoolss.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 8279 librpc/gen_ndr/srv_spoolss.c if (r->out.handle == NULL) {
out 8283 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrinterEx(cli->pipes_struct, r);
out 8289 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_47(cli->pipes_struct, r);
out 8295 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8296 librpc/gen_ndr/srv_spoolss.c r->out.value_name = talloc_zero_array(mem_ctx, const char, r->in.value_offered / 2);
out 8297 librpc/gen_ndr/srv_spoolss.c if (r->out.value_name == NULL) {
out 8301 librpc/gen_ndr/srv_spoolss.c r->out.value_needed = talloc_zero(mem_ctx, uint32_t);
out 8302 librpc/gen_ndr/srv_spoolss.c if (r->out.value_needed == NULL) {
out 8306 librpc/gen_ndr/srv_spoolss.c r->out.type = talloc_zero(mem_ctx, enum winreg_Type);
out 8307 librpc/gen_ndr/srv_spoolss.c if (r->out.type == NULL) {
out 8311 librpc/gen_ndr/srv_spoolss.c r->out.data = talloc_zero_array(mem_ctx, uint8_t, r->in.data_offered);
out 8312 librpc/gen_ndr/srv_spoolss.c if (r->out.data == NULL) {
out 8316 librpc/gen_ndr/srv_spoolss.c r->out.data_needed = talloc_zero(mem_ctx, uint32_t);
out 8317 librpc/gen_ndr/srv_spoolss.c if (r->out.data_needed == NULL) {
out 8321 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrinterData(cli->pipes_struct, r);
out 8327 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterData(cli->pipes_struct, r);
out 8333 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_4a(cli->pipes_struct, r);
out 8339 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_4b(cli->pipes_struct, r);
out 8345 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_4c(cli->pipes_struct, r);
out 8351 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_SetPrinterDataEx(cli->pipes_struct, r);
out 8357 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8358 librpc/gen_ndr/srv_spoolss.c r->out.type = talloc_zero(mem_ctx, enum winreg_Type);
out 8359 librpc/gen_ndr/srv_spoolss.c if (r->out.type == NULL) {
out 8363 librpc/gen_ndr/srv_spoolss.c r->out.buffer = talloc_zero_array(mem_ctx, uint8_t, r->in.offered);
out 8364 librpc/gen_ndr/srv_spoolss.c if (r->out.buffer == NULL) {
out 8368 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 8369 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 8373 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_GetPrinterDataEx(cli->pipes_struct, r);
out 8379 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8380 librpc/gen_ndr/srv_spoolss.c r->out.count = talloc_zero(mem_ctx, uint32_t);
out 8381 librpc/gen_ndr/srv_spoolss.c if (r->out.count == NULL) {
out 8385 librpc/gen_ndr/srv_spoolss.c r->out.info = talloc_zero(mem_ctx, struct spoolss_PrinterEnumValues *);
out 8386 librpc/gen_ndr/srv_spoolss.c if (r->out.info == NULL) {
out 8390 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 8391 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 8395 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrinterDataEx(cli->pipes_struct, r);
out 8401 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8402 librpc/gen_ndr/srv_spoolss.c r->out.key_buffer = talloc_zero(mem_ctx, const char **);
out 8403 librpc/gen_ndr/srv_spoolss.c if (r->out.key_buffer == NULL) {
out 8407 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 8408 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 8412 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_EnumPrinterKey(cli->pipes_struct, r);
out 8418 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterDataEx(cli->pipes_struct, r);
out 8424 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterKey(cli->pipes_struct, r);
out 8430 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_53(cli->pipes_struct, r);
out 8436 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_DeletePrinterDriverEx(cli->pipes_struct, r);
out 8442 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_55(cli->pipes_struct, r);
out 8448 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_56(cli->pipes_struct, r);
out 8454 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_57(cli->pipes_struct, r);
out 8460 librpc/gen_ndr/srv_spoolss.c ZERO_STRUCT(r->out);
out 8461 librpc/gen_ndr/srv_spoolss.c r->out.status_code = r->in.status_code;
out 8462 librpc/gen_ndr/srv_spoolss.c r->out.out_data = talloc_zero_array(mem_ctx, uint8_t, r->in.out_data_size);
out 8463 librpc/gen_ndr/srv_spoolss.c if (r->out.out_data == NULL) {
out 8467 librpc/gen_ndr/srv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 8468 librpc/gen_ndr/srv_spoolss.c if (r->out.needed == NULL) {
out 8472 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_XcvData(cli->pipes_struct, r);
out 8478 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_AddPrinterDriverEx(cli->pipes_struct, r);
out 8484 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_5a(cli->pipes_struct, r);
out 8490 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_5b(cli->pipes_struct, r);
out 8496 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_5c(cli->pipes_struct, r);
out 8502 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_5d(cli->pipes_struct, r);
out 8508 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_5e(cli->pipes_struct, r);
out 8514 librpc/gen_ndr/srv_spoolss.c r->out.result = _spoolss_5f(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 48 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 49 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 50 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(r, uint32_t);
out 51 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 56 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevEnum(p, r);
out 129 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 130 librpc/gen_ndr/srv_srvsvc.c r->out.info = talloc_zero(r, union srvsvc_NetCharDevInfo);
out 131 librpc/gen_ndr/srv_srvsvc.c if (r->out.info == NULL) {
out 136 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevGetInfo(p, r);
out 209 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevControl(p, r);
out 282 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 283 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 284 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 285 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(r, uint32_t);
out 286 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 291 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevQEnum(p, r);
out 364 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 365 librpc/gen_ndr/srv_srvsvc.c r->out.info = talloc_zero(r, union srvsvc_NetCharDevQInfo);
out 366 librpc/gen_ndr/srv_srvsvc.c if (r->out.info == NULL) {
out 371 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevQGetInfo(p, r);
out 444 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 445 librpc/gen_ndr/srv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 446 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevQSetInfo(p, r);
out 519 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevQPurge(p, r);
out 592 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevQPurgeSelf(p, r);
out 665 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 666 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 667 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 668 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(r, uint32_t);
out 669 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 674 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetConnEnum(p, r);
out 747 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 748 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 749 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 750 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(r, uint32_t);
out 751 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 756 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetFileEnum(p, r);
out 829 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 830 librpc/gen_ndr/srv_srvsvc.c r->out.info = talloc_zero(r, union srvsvc_NetFileInfo);
out 831 librpc/gen_ndr/srv_srvsvc.c if (r->out.info == NULL) {
out 836 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetFileGetInfo(p, r);
out 909 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetFileClose(p, r);
out 982 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 983 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 984 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 985 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(r, uint32_t);
out 986 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 991 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetSessEnum(p, r);
out 1064 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetSessDel(p, r);
out 1137 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 1138 librpc/gen_ndr/srv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 1139 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareAdd(p, r);
out 1212 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 1213 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 1214 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 1215 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(r, uint32_t);
out 1216 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 1221 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareEnumAll(p, r);
out 1294 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 1295 librpc/gen_ndr/srv_srvsvc.c r->out.info = talloc_zero(r, union srvsvc_NetShareInfo);
out 1296 librpc/gen_ndr/srv_srvsvc.c if (r->out.info == NULL) {
out 1301 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareGetInfo(p, r);
out 1374 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 1375 librpc/gen_ndr/srv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 1376 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareSetInfo(p, r);
out 1449 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareDel(p, r);
out 1522 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareDelSticky(p, r);
out 1595 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 1596 librpc/gen_ndr/srv_srvsvc.c r->out.type = talloc_zero(r, enum srvsvc_ShareType);
out 1597 librpc/gen_ndr/srv_srvsvc.c if (r->out.type == NULL) {
out 1602 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareCheck(p, r);
out 1675 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 1676 librpc/gen_ndr/srv_srvsvc.c r->out.info = talloc_zero(r, union srvsvc_NetSrvInfo);
out 1677 librpc/gen_ndr/srv_srvsvc.c if (r->out.info == NULL) {
out 1682 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetSrvGetInfo(p, r);
out 1755 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 1756 librpc/gen_ndr/srv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 1757 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetSrvSetInfo(p, r);
out 1830 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 1831 librpc/gen_ndr/srv_srvsvc.c r->out.info = r->in.info;
out 1832 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 1833 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(r, uint32_t);
out 1834 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 1839 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetDiskEnum(p, r);
out 1912 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 1913 librpc/gen_ndr/srv_srvsvc.c r->out.stats = talloc_zero(r, struct srvsvc_Statistics *);
out 1914 librpc/gen_ndr/srv_srvsvc.c if (r->out.stats == NULL) {
out 1919 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetServerStatisticsGet(p, r);
out 1992 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetTransportAdd(p, r);
out 2065 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 2066 librpc/gen_ndr/srv_srvsvc.c r->out.transports = r->in.transports;
out 2067 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 2068 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(r, uint32_t);
out 2069 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 2074 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetTransportEnum(p, r);
out 2147 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetTransportDel(p, r);
out 2220 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 2221 librpc/gen_ndr/srv_srvsvc.c r->out.info = talloc_zero(r, struct srvsvc_NetRemoteTODInfo *);
out 2222 librpc/gen_ndr/srv_srvsvc.c if (r->out.info == NULL) {
out 2227 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetRemoteTOD(p, r);
out 2300 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetSetServiceBits(p, r);
out 2373 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 2374 librpc/gen_ndr/srv_srvsvc.c r->out.pathtype = talloc_zero(r, uint32_t);
out 2375 librpc/gen_ndr/srv_srvsvc.c if (r->out.pathtype == NULL) {
out 2380 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetPathType(p, r);
out 2453 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 2454 librpc/gen_ndr/srv_srvsvc.c r->out.pathtype = r->in.pathtype;
out 2455 librpc/gen_ndr/srv_srvsvc.c r->out.can_path = talloc_zero_array(r, uint8_t, r->in.maxbuf);
out 2456 librpc/gen_ndr/srv_srvsvc.c if (r->out.can_path == NULL) {
out 2461 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetPathCanonicalize(p, r);
out 2534 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetPathCompare(p, r);
out 2607 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetNameValidate(p, r);
out 2680 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRPRNAMECANONICALIZE(p, r);
out 2753 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetPRNameCompare(p, r);
out 2826 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 2827 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 2828 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 2829 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(r, uint32_t);
out 2830 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 2835 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareEnum(p, r);
out 2908 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 2909 librpc/gen_ndr/srv_srvsvc.c r->out.hnd = talloc_zero(r, struct policy_handle);
out 2910 librpc/gen_ndr/srv_srvsvc.c if (r->out.hnd == NULL) {
out 2915 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareDelStart(p, r);
out 2988 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 2989 librpc/gen_ndr/srv_srvsvc.c r->out.hnd = r->in.hnd;
out 2990 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareDelCommit(p, r);
out 3063 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 3064 librpc/gen_ndr/srv_srvsvc.c r->out.sd_buf = talloc_zero(r, struct sec_desc_buf *);
out 3065 librpc/gen_ndr/srv_srvsvc.c if (r->out.sd_buf == NULL) {
out 3070 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetGetFileSecurity(p, r);
out 3143 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetSetFileSecurity(p, r);
out 3216 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetServerTransportAddEx(p, r);
out 3289 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetServerSetServiceBitsEx(p, r);
out 3362 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSGETVERSION(p, r);
out 3435 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSCREATELOCALPARTITION(p, r);
out 3508 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSDELETELOCALPARTITION(p, r);
out 3581 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSSETLOCALVOLUMESTATE(p, r);
out 3654 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSSETSERVERINFO(p, r);
out 3727 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSCREATEEXITPOINT(p, r);
out 3800 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSDELETEEXITPOINT(p, r);
out 3873 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSMODIFYPREFIX(p, r);
out 3946 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSFIXLOCALVOLUME(p, r);
out 4019 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSMANAGERREPORTSITEINFO(p, r);
out 4092 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRSERVERTRANSPORTDELEX(p, r);
out 4203 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4204 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 4205 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 4206 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(mem_ctx, uint32_t);
out 4207 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 4211 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevEnum(cli->pipes_struct, r);
out 4217 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4218 librpc/gen_ndr/srv_srvsvc.c r->out.info = talloc_zero(mem_ctx, union srvsvc_NetCharDevInfo);
out 4219 librpc/gen_ndr/srv_srvsvc.c if (r->out.info == NULL) {
out 4223 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevGetInfo(cli->pipes_struct, r);
out 4229 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevControl(cli->pipes_struct, r);
out 4235 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4236 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 4237 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 4238 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(mem_ctx, uint32_t);
out 4239 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 4243 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevQEnum(cli->pipes_struct, r);
out 4249 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4250 librpc/gen_ndr/srv_srvsvc.c r->out.info = talloc_zero(mem_ctx, union srvsvc_NetCharDevQInfo);
out 4251 librpc/gen_ndr/srv_srvsvc.c if (r->out.info == NULL) {
out 4255 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevQGetInfo(cli->pipes_struct, r);
out 4261 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4262 librpc/gen_ndr/srv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 4263 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevQSetInfo(cli->pipes_struct, r);
out 4269 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevQPurge(cli->pipes_struct, r);
out 4275 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetCharDevQPurgeSelf(cli->pipes_struct, r);
out 4281 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4282 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 4283 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 4284 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(mem_ctx, uint32_t);
out 4285 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 4289 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetConnEnum(cli->pipes_struct, r);
out 4295 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4296 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 4297 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 4298 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(mem_ctx, uint32_t);
out 4299 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 4303 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetFileEnum(cli->pipes_struct, r);
out 4309 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4310 librpc/gen_ndr/srv_srvsvc.c r->out.info = talloc_zero(mem_ctx, union srvsvc_NetFileInfo);
out 4311 librpc/gen_ndr/srv_srvsvc.c if (r->out.info == NULL) {
out 4315 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetFileGetInfo(cli->pipes_struct, r);
out 4321 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetFileClose(cli->pipes_struct, r);
out 4327 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4328 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 4329 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 4330 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(mem_ctx, uint32_t);
out 4331 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 4335 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetSessEnum(cli->pipes_struct, r);
out 4341 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetSessDel(cli->pipes_struct, r);
out 4347 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4348 librpc/gen_ndr/srv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 4349 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareAdd(cli->pipes_struct, r);
out 4355 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4356 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 4357 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 4358 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(mem_ctx, uint32_t);
out 4359 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 4363 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareEnumAll(cli->pipes_struct, r);
out 4369 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4370 librpc/gen_ndr/srv_srvsvc.c r->out.info = talloc_zero(mem_ctx, union srvsvc_NetShareInfo);
out 4371 librpc/gen_ndr/srv_srvsvc.c if (r->out.info == NULL) {
out 4375 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareGetInfo(cli->pipes_struct, r);
out 4381 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4382 librpc/gen_ndr/srv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 4383 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareSetInfo(cli->pipes_struct, r);
out 4389 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareDel(cli->pipes_struct, r);
out 4395 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareDelSticky(cli->pipes_struct, r);
out 4401 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4402 librpc/gen_ndr/srv_srvsvc.c r->out.type = talloc_zero(mem_ctx, enum srvsvc_ShareType);
out 4403 librpc/gen_ndr/srv_srvsvc.c if (r->out.type == NULL) {
out 4407 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareCheck(cli->pipes_struct, r);
out 4413 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4414 librpc/gen_ndr/srv_srvsvc.c r->out.info = talloc_zero(mem_ctx, union srvsvc_NetSrvInfo);
out 4415 librpc/gen_ndr/srv_srvsvc.c if (r->out.info == NULL) {
out 4419 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetSrvGetInfo(cli->pipes_struct, r);
out 4425 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4426 librpc/gen_ndr/srv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 4427 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetSrvSetInfo(cli->pipes_struct, r);
out 4433 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4434 librpc/gen_ndr/srv_srvsvc.c r->out.info = r->in.info;
out 4435 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 4436 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(mem_ctx, uint32_t);
out 4437 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 4441 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetDiskEnum(cli->pipes_struct, r);
out 4447 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4448 librpc/gen_ndr/srv_srvsvc.c r->out.stats = talloc_zero(mem_ctx, struct srvsvc_Statistics *);
out 4449 librpc/gen_ndr/srv_srvsvc.c if (r->out.stats == NULL) {
out 4453 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetServerStatisticsGet(cli->pipes_struct, r);
out 4459 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetTransportAdd(cli->pipes_struct, r);
out 4465 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4466 librpc/gen_ndr/srv_srvsvc.c r->out.transports = r->in.transports;
out 4467 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 4468 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(mem_ctx, uint32_t);
out 4469 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 4473 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetTransportEnum(cli->pipes_struct, r);
out 4479 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetTransportDel(cli->pipes_struct, r);
out 4485 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4486 librpc/gen_ndr/srv_srvsvc.c r->out.info = talloc_zero(mem_ctx, struct srvsvc_NetRemoteTODInfo *);
out 4487 librpc/gen_ndr/srv_srvsvc.c if (r->out.info == NULL) {
out 4491 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetRemoteTOD(cli->pipes_struct, r);
out 4497 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetSetServiceBits(cli->pipes_struct, r);
out 4503 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4504 librpc/gen_ndr/srv_srvsvc.c r->out.pathtype = talloc_zero(mem_ctx, uint32_t);
out 4505 librpc/gen_ndr/srv_srvsvc.c if (r->out.pathtype == NULL) {
out 4509 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetPathType(cli->pipes_struct, r);
out 4515 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4516 librpc/gen_ndr/srv_srvsvc.c r->out.pathtype = r->in.pathtype;
out 4517 librpc/gen_ndr/srv_srvsvc.c r->out.can_path = talloc_zero_array(mem_ctx, uint8_t, r->in.maxbuf);
out 4518 librpc/gen_ndr/srv_srvsvc.c if (r->out.can_path == NULL) {
out 4522 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetPathCanonicalize(cli->pipes_struct, r);
out 4528 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetPathCompare(cli->pipes_struct, r);
out 4534 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetNameValidate(cli->pipes_struct, r);
out 4540 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRPRNAMECANONICALIZE(cli->pipes_struct, r);
out 4546 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetPRNameCompare(cli->pipes_struct, r);
out 4552 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4553 librpc/gen_ndr/srv_srvsvc.c r->out.info_ctr = r->in.info_ctr;
out 4554 librpc/gen_ndr/srv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 4555 librpc/gen_ndr/srv_srvsvc.c r->out.totalentries = talloc_zero(mem_ctx, uint32_t);
out 4556 librpc/gen_ndr/srv_srvsvc.c if (r->out.totalentries == NULL) {
out 4560 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareEnum(cli->pipes_struct, r);
out 4566 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4567 librpc/gen_ndr/srv_srvsvc.c r->out.hnd = talloc_zero(mem_ctx, struct policy_handle);
out 4568 librpc/gen_ndr/srv_srvsvc.c if (r->out.hnd == NULL) {
out 4572 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareDelStart(cli->pipes_struct, r);
out 4578 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4579 librpc/gen_ndr/srv_srvsvc.c r->out.hnd = r->in.hnd;
out 4580 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetShareDelCommit(cli->pipes_struct, r);
out 4586 librpc/gen_ndr/srv_srvsvc.c ZERO_STRUCT(r->out);
out 4587 librpc/gen_ndr/srv_srvsvc.c r->out.sd_buf = talloc_zero(mem_ctx, struct sec_desc_buf *);
out 4588 librpc/gen_ndr/srv_srvsvc.c if (r->out.sd_buf == NULL) {
out 4592 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetGetFileSecurity(cli->pipes_struct, r);
out 4598 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetSetFileSecurity(cli->pipes_struct, r);
out 4604 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetServerTransportAddEx(cli->pipes_struct, r);
out 4610 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NetServerSetServiceBitsEx(cli->pipes_struct, r);
out 4616 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSGETVERSION(cli->pipes_struct, r);
out 4622 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSCREATELOCALPARTITION(cli->pipes_struct, r);
out 4628 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSDELETELOCALPARTITION(cli->pipes_struct, r);
out 4634 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSSETLOCALVOLUMESTATE(cli->pipes_struct, r);
out 4640 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSSETSERVERINFO(cli->pipes_struct, r);
out 4646 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSCREATEEXITPOINT(cli->pipes_struct, r);
out 4652 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSDELETEEXITPOINT(cli->pipes_struct, r);
out 4658 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSMODIFYPREFIX(cli->pipes_struct, r);
out 4664 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSFIXLOCALVOLUME(cli->pipes_struct, r);
out 4670 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRDFSMANAGERREPORTSITEINFO(cli->pipes_struct, r);
out 4676 librpc/gen_ndr/srv_srvsvc.c r->out.result = _srvsvc_NETRSERVERTRANSPORTDELEX(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 48 librpc/gen_ndr/srv_svcctl.c r->out.handle = r->in.handle;
out 49 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_CloseServiceHandle(p, r);
out 122 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 123 librpc/gen_ndr/srv_svcctl.c r->out.service_status = talloc_zero(r, struct SERVICE_STATUS);
out 124 librpc/gen_ndr/srv_svcctl.c if (r->out.service_status == NULL) {
out 129 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_ControlService(p, r);
out 202 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_DeleteService(p, r);
out 275 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 276 librpc/gen_ndr/srv_svcctl.c r->out.lock = talloc_zero(r, struct policy_handle);
out 277 librpc/gen_ndr/srv_svcctl.c if (r->out.lock == NULL) {
out 282 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_LockServiceDatabase(p, r);
out 355 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 356 librpc/gen_ndr/srv_svcctl.c r->out.buffer = talloc_zero_array(r, uint8_t, r->in.offered);
out 357 librpc/gen_ndr/srv_svcctl.c if (r->out.buffer == NULL) {
out 362 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 363 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 368 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceObjectSecurity(p, r);
out 441 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_SetServiceObjectSecurity(p, r);
out 514 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 515 librpc/gen_ndr/srv_svcctl.c r->out.service_status = talloc_zero(r, struct SERVICE_STATUS);
out 516 librpc/gen_ndr/srv_svcctl.c if (r->out.service_status == NULL) {
out 521 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceStatus(p, r);
out 594 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_SetServiceStatus(p, r);
out 667 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 668 librpc/gen_ndr/srv_svcctl.c r->out.lock = r->in.lock;
out 669 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_UnlockServiceDatabase(p, r);
out 742 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_NotifyBootConfigStatus(p, r);
out 815 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_SCSetServiceBitsW(p, r);
out 888 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 889 librpc/gen_ndr/srv_svcctl.c r->out.tag_id = talloc_zero(r, uint32_t);
out 890 librpc/gen_ndr/srv_svcctl.c if (r->out.tag_id == NULL) {
out 895 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_ChangeServiceConfigW(p, r);
out 968 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 969 librpc/gen_ndr/srv_svcctl.c r->out.TagId = r->in.TagId;
out 970 librpc/gen_ndr/srv_svcctl.c r->out.handle = talloc_zero(r, struct policy_handle);
out 971 librpc/gen_ndr/srv_svcctl.c if (r->out.handle == NULL) {
out 976 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_CreateServiceW(p, r);
out 1049 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 1050 librpc/gen_ndr/srv_svcctl.c r->out.service_status = talloc_zero_array(r, uint8_t, r->in.offered);
out 1051 librpc/gen_ndr/srv_svcctl.c if (r->out.service_status == NULL) {
out 1056 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 1057 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 1062 librpc/gen_ndr/srv_svcctl.c r->out.services_returned = talloc_zero(r, uint32_t);
out 1063 librpc/gen_ndr/srv_svcctl.c if (r->out.services_returned == NULL) {
out 1068 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_EnumDependentServicesW(p, r);
out 1141 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 1142 librpc/gen_ndr/srv_svcctl.c r->out.resume_handle = r->in.resume_handle;
out 1143 librpc/gen_ndr/srv_svcctl.c r->out.service = talloc_zero_array(r, uint8_t, r->in.offered);
out 1144 librpc/gen_ndr/srv_svcctl.c if (r->out.service == NULL) {
out 1149 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 1150 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 1155 librpc/gen_ndr/srv_svcctl.c r->out.services_returned = talloc_zero(r, uint32_t);
out 1156 librpc/gen_ndr/srv_svcctl.c if (r->out.services_returned == NULL) {
out 1161 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_EnumServicesStatusW(p, r);
out 1234 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 1235 librpc/gen_ndr/srv_svcctl.c r->out.handle = talloc_zero(r, struct policy_handle);
out 1236 librpc/gen_ndr/srv_svcctl.c if (r->out.handle == NULL) {
out 1241 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_OpenSCManagerW(p, r);
out 1314 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 1315 librpc/gen_ndr/srv_svcctl.c r->out.handle = talloc_zero(r, struct policy_handle);
out 1316 librpc/gen_ndr/srv_svcctl.c if (r->out.handle == NULL) {
out 1321 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_OpenServiceW(p, r);
out 1394 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 1395 librpc/gen_ndr/srv_svcctl.c r->out.query = talloc_zero(r, struct QUERY_SERVICE_CONFIG);
out 1396 librpc/gen_ndr/srv_svcctl.c if (r->out.query == NULL) {
out 1401 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 1402 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 1407 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceConfigW(p, r);
out 1480 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 1481 librpc/gen_ndr/srv_svcctl.c r->out.lock_status = talloc_zero(r, struct SERVICE_LOCK_STATUS);
out 1482 librpc/gen_ndr/srv_svcctl.c if (r->out.lock_status == NULL) {
out 1487 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 1488 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 1493 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceLockStatusW(p, r);
out 1566 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_StartServiceW(p, r);
out 1639 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 1640 librpc/gen_ndr/srv_svcctl.c r->out.display_name_length = r->in.display_name_length;
out 1641 librpc/gen_ndr/srv_svcctl.c r->out.display_name = talloc_zero(r, const char *);
out 1642 librpc/gen_ndr/srv_svcctl.c if (r->out.display_name == NULL) {
out 1647 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_GetServiceDisplayNameW(p, r);
out 1720 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 1721 librpc/gen_ndr/srv_svcctl.c r->out.display_name_length = r->in.display_name_length;
out 1722 librpc/gen_ndr/srv_svcctl.c r->out.key_name = talloc_zero(r, const char *);
out 1723 librpc/gen_ndr/srv_svcctl.c if (r->out.key_name == NULL) {
out 1728 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_GetServiceKeyNameW(p, r);
out 1801 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_SCSetServiceBitsA(p, r);
out 1874 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 1875 librpc/gen_ndr/srv_svcctl.c r->out.tag_id = talloc_zero(r, uint32_t);
out 1876 librpc/gen_ndr/srv_svcctl.c if (r->out.tag_id == NULL) {
out 1881 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_ChangeServiceConfigA(p, r);
out 1954 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 1955 librpc/gen_ndr/srv_svcctl.c r->out.TagId = talloc_zero(r, uint32_t);
out 1956 librpc/gen_ndr/srv_svcctl.c if (r->out.TagId == NULL) {
out 1961 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_CreateServiceA(p, r);
out 2034 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 2035 librpc/gen_ndr/srv_svcctl.c r->out.service_status = talloc_zero(r, struct ENUM_SERVICE_STATUSA);
out 2036 librpc/gen_ndr/srv_svcctl.c if (r->out.service_status == NULL) {
out 2041 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 2042 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 2047 librpc/gen_ndr/srv_svcctl.c r->out.services_returned = talloc_zero(r, uint32_t);
out 2048 librpc/gen_ndr/srv_svcctl.c if (r->out.services_returned == NULL) {
out 2053 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_EnumDependentServicesA(p, r);
out 2126 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 2127 librpc/gen_ndr/srv_svcctl.c r->out.resume_handle = r->in.resume_handle;
out 2128 librpc/gen_ndr/srv_svcctl.c r->out.service = talloc_zero_array(r, uint8_t, r->in.offered);
out 2129 librpc/gen_ndr/srv_svcctl.c if (r->out.service == NULL) {
out 2134 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 2135 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 2140 librpc/gen_ndr/srv_svcctl.c r->out.services_returned = talloc_zero(r, uint32_t);
out 2141 librpc/gen_ndr/srv_svcctl.c if (r->out.services_returned == NULL) {
out 2146 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_EnumServicesStatusA(p, r);
out 2219 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 2220 librpc/gen_ndr/srv_svcctl.c r->out.handle = talloc_zero(r, struct policy_handle);
out 2221 librpc/gen_ndr/srv_svcctl.c if (r->out.handle == NULL) {
out 2226 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_OpenSCManagerA(p, r);
out 2299 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_OpenServiceA(p, r);
out 2372 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 2373 librpc/gen_ndr/srv_svcctl.c r->out.query = talloc_zero_array(r, uint8_t, r->in.offered);
out 2374 librpc/gen_ndr/srv_svcctl.c if (r->out.query == NULL) {
out 2379 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 2380 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 2385 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceConfigA(p, r);
out 2458 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 2459 librpc/gen_ndr/srv_svcctl.c r->out.lock_status = talloc_zero(r, struct SERVICE_LOCK_STATUS);
out 2460 librpc/gen_ndr/srv_svcctl.c if (r->out.lock_status == NULL) {
out 2465 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 2466 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 2471 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceLockStatusA(p, r);
out 2544 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_StartServiceA(p, r);
out 2617 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 2618 librpc/gen_ndr/srv_svcctl.c r->out.display_name_length = r->in.display_name_length;
out 2619 librpc/gen_ndr/srv_svcctl.c r->out.display_name = talloc_zero(r, const char *);
out 2620 librpc/gen_ndr/srv_svcctl.c if (r->out.display_name == NULL) {
out 2625 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_GetServiceDisplayNameA(p, r);
out 2698 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 2699 librpc/gen_ndr/srv_svcctl.c r->out.display_name_length = r->in.display_name_length;
out 2700 librpc/gen_ndr/srv_svcctl.c r->out.key_name = talloc_zero(r, const char *);
out 2701 librpc/gen_ndr/srv_svcctl.c if (r->out.key_name == NULL) {
out 2706 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_GetServiceKeyNameA(p, r);
out 2779 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_GetCurrentGroupeStateW(p, r);
out 2852 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_EnumServiceGroupW(p, r);
out 2925 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_ChangeServiceConfig2A(p, r);
out 2998 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_ChangeServiceConfig2W(p, r);
out 3071 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3072 librpc/gen_ndr/srv_svcctl.c r->out.buffer = talloc_zero_array(r, uint8_t, r->in.offered);
out 3073 librpc/gen_ndr/srv_svcctl.c if (r->out.buffer == NULL) {
out 3078 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 3079 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3084 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceConfig2A(p, r);
out 3157 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3158 librpc/gen_ndr/srv_svcctl.c r->out.buffer = talloc_zero_array(r, uint8_t, r->in.offered);
out 3159 librpc/gen_ndr/srv_svcctl.c if (r->out.buffer == NULL) {
out 3164 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 3165 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3170 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceConfig2W(p, r);
out 3243 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3244 librpc/gen_ndr/srv_svcctl.c r->out.buffer = talloc_zero_array(r, uint8_t, r->in.offered);
out 3245 librpc/gen_ndr/srv_svcctl.c if (r->out.buffer == NULL) {
out 3250 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 3251 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3256 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceStatusEx(p, r);
out 3329 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3330 librpc/gen_ndr/srv_svcctl.c r->out.resume_handle = r->in.resume_handle;
out 3331 librpc/gen_ndr/srv_svcctl.c r->out.services = talloc_zero_array(r, uint8_t, r->in.offered);
out 3332 librpc/gen_ndr/srv_svcctl.c if (r->out.services == NULL) {
out 3337 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 3338 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3343 librpc/gen_ndr/srv_svcctl.c r->out.service_returned = talloc_zero(r, uint32_t);
out 3344 librpc/gen_ndr/srv_svcctl.c if (r->out.service_returned == NULL) {
out 3349 librpc/gen_ndr/srv_svcctl.c r->out.group_name = talloc_zero(r, const char *);
out 3350 librpc/gen_ndr/srv_svcctl.c if (r->out.group_name == NULL) {
out 3355 librpc/gen_ndr/srv_svcctl.c r->out.result = _EnumServicesStatusExA(p, r);
out 3428 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3429 librpc/gen_ndr/srv_svcctl.c r->out.resume_handle = r->in.resume_handle;
out 3430 librpc/gen_ndr/srv_svcctl.c r->out.services = talloc_zero_array(r, uint8_t, r->in.offered);
out 3431 librpc/gen_ndr/srv_svcctl.c if (r->out.services == NULL) {
out 3436 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(r, uint32_t);
out 3437 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3442 librpc/gen_ndr/srv_svcctl.c r->out.service_returned = talloc_zero(r, uint32_t);
out 3443 librpc/gen_ndr/srv_svcctl.c if (r->out.service_returned == NULL) {
out 3448 librpc/gen_ndr/srv_svcctl.c r->out.result = _EnumServicesStatusExW(p, r);
out 3521 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_SCSendTSMessage(p, r);
out 3622 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3623 librpc/gen_ndr/srv_svcctl.c r->out.handle = r->in.handle;
out 3624 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_CloseServiceHandle(cli->pipes_struct, r);
out 3630 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3631 librpc/gen_ndr/srv_svcctl.c r->out.service_status = talloc_zero(mem_ctx, struct SERVICE_STATUS);
out 3632 librpc/gen_ndr/srv_svcctl.c if (r->out.service_status == NULL) {
out 3636 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_ControlService(cli->pipes_struct, r);
out 3642 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_DeleteService(cli->pipes_struct, r);
out 3648 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3649 librpc/gen_ndr/srv_svcctl.c r->out.lock = talloc_zero(mem_ctx, struct policy_handle);
out 3650 librpc/gen_ndr/srv_svcctl.c if (r->out.lock == NULL) {
out 3654 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_LockServiceDatabase(cli->pipes_struct, r);
out 3660 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3661 librpc/gen_ndr/srv_svcctl.c r->out.buffer = talloc_zero_array(mem_ctx, uint8_t, r->in.offered);
out 3662 librpc/gen_ndr/srv_svcctl.c if (r->out.buffer == NULL) {
out 3666 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 3667 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3671 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceObjectSecurity(cli->pipes_struct, r);
out 3677 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_SetServiceObjectSecurity(cli->pipes_struct, r);
out 3683 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3684 librpc/gen_ndr/srv_svcctl.c r->out.service_status = talloc_zero(mem_ctx, struct SERVICE_STATUS);
out 3685 librpc/gen_ndr/srv_svcctl.c if (r->out.service_status == NULL) {
out 3689 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceStatus(cli->pipes_struct, r);
out 3695 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_SetServiceStatus(cli->pipes_struct, r);
out 3701 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3702 librpc/gen_ndr/srv_svcctl.c r->out.lock = r->in.lock;
out 3703 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_UnlockServiceDatabase(cli->pipes_struct, r);
out 3709 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_NotifyBootConfigStatus(cli->pipes_struct, r);
out 3715 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_SCSetServiceBitsW(cli->pipes_struct, r);
out 3721 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3722 librpc/gen_ndr/srv_svcctl.c r->out.tag_id = talloc_zero(mem_ctx, uint32_t);
out 3723 librpc/gen_ndr/srv_svcctl.c if (r->out.tag_id == NULL) {
out 3727 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_ChangeServiceConfigW(cli->pipes_struct, r);
out 3733 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3734 librpc/gen_ndr/srv_svcctl.c r->out.TagId = r->in.TagId;
out 3735 librpc/gen_ndr/srv_svcctl.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 3736 librpc/gen_ndr/srv_svcctl.c if (r->out.handle == NULL) {
out 3740 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_CreateServiceW(cli->pipes_struct, r);
out 3746 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3747 librpc/gen_ndr/srv_svcctl.c r->out.service_status = talloc_zero_array(mem_ctx, uint8_t, r->in.offered);
out 3748 librpc/gen_ndr/srv_svcctl.c if (r->out.service_status == NULL) {
out 3752 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 3753 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3757 librpc/gen_ndr/srv_svcctl.c r->out.services_returned = talloc_zero(mem_ctx, uint32_t);
out 3758 librpc/gen_ndr/srv_svcctl.c if (r->out.services_returned == NULL) {
out 3762 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_EnumDependentServicesW(cli->pipes_struct, r);
out 3768 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3769 librpc/gen_ndr/srv_svcctl.c r->out.resume_handle = r->in.resume_handle;
out 3770 librpc/gen_ndr/srv_svcctl.c r->out.service = talloc_zero_array(mem_ctx, uint8_t, r->in.offered);
out 3771 librpc/gen_ndr/srv_svcctl.c if (r->out.service == NULL) {
out 3775 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 3776 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3780 librpc/gen_ndr/srv_svcctl.c r->out.services_returned = talloc_zero(mem_ctx, uint32_t);
out 3781 librpc/gen_ndr/srv_svcctl.c if (r->out.services_returned == NULL) {
out 3785 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_EnumServicesStatusW(cli->pipes_struct, r);
out 3791 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3792 librpc/gen_ndr/srv_svcctl.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 3793 librpc/gen_ndr/srv_svcctl.c if (r->out.handle == NULL) {
out 3797 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_OpenSCManagerW(cli->pipes_struct, r);
out 3803 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3804 librpc/gen_ndr/srv_svcctl.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 3805 librpc/gen_ndr/srv_svcctl.c if (r->out.handle == NULL) {
out 3809 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_OpenServiceW(cli->pipes_struct, r);
out 3815 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3816 librpc/gen_ndr/srv_svcctl.c r->out.query = talloc_zero(mem_ctx, struct QUERY_SERVICE_CONFIG);
out 3817 librpc/gen_ndr/srv_svcctl.c if (r->out.query == NULL) {
out 3821 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 3822 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3826 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceConfigW(cli->pipes_struct, r);
out 3832 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3833 librpc/gen_ndr/srv_svcctl.c r->out.lock_status = talloc_zero(mem_ctx, struct SERVICE_LOCK_STATUS);
out 3834 librpc/gen_ndr/srv_svcctl.c if (r->out.lock_status == NULL) {
out 3838 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 3839 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3843 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceLockStatusW(cli->pipes_struct, r);
out 3849 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_StartServiceW(cli->pipes_struct, r);
out 3855 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3856 librpc/gen_ndr/srv_svcctl.c r->out.display_name_length = r->in.display_name_length;
out 3857 librpc/gen_ndr/srv_svcctl.c r->out.display_name = talloc_zero(mem_ctx, const char *);
out 3858 librpc/gen_ndr/srv_svcctl.c if (r->out.display_name == NULL) {
out 3862 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_GetServiceDisplayNameW(cli->pipes_struct, r);
out 3868 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3869 librpc/gen_ndr/srv_svcctl.c r->out.display_name_length = r->in.display_name_length;
out 3870 librpc/gen_ndr/srv_svcctl.c r->out.key_name = talloc_zero(mem_ctx, const char *);
out 3871 librpc/gen_ndr/srv_svcctl.c if (r->out.key_name == NULL) {
out 3875 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_GetServiceKeyNameW(cli->pipes_struct, r);
out 3881 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_SCSetServiceBitsA(cli->pipes_struct, r);
out 3887 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3888 librpc/gen_ndr/srv_svcctl.c r->out.tag_id = talloc_zero(mem_ctx, uint32_t);
out 3889 librpc/gen_ndr/srv_svcctl.c if (r->out.tag_id == NULL) {
out 3893 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_ChangeServiceConfigA(cli->pipes_struct, r);
out 3899 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3900 librpc/gen_ndr/srv_svcctl.c r->out.TagId = talloc_zero(mem_ctx, uint32_t);
out 3901 librpc/gen_ndr/srv_svcctl.c if (r->out.TagId == NULL) {
out 3905 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_CreateServiceA(cli->pipes_struct, r);
out 3911 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3912 librpc/gen_ndr/srv_svcctl.c r->out.service_status = talloc_zero(mem_ctx, struct ENUM_SERVICE_STATUSA);
out 3913 librpc/gen_ndr/srv_svcctl.c if (r->out.service_status == NULL) {
out 3917 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 3918 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3922 librpc/gen_ndr/srv_svcctl.c r->out.services_returned = talloc_zero(mem_ctx, uint32_t);
out 3923 librpc/gen_ndr/srv_svcctl.c if (r->out.services_returned == NULL) {
out 3927 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_EnumDependentServicesA(cli->pipes_struct, r);
out 3933 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3934 librpc/gen_ndr/srv_svcctl.c r->out.resume_handle = r->in.resume_handle;
out 3935 librpc/gen_ndr/srv_svcctl.c r->out.service = talloc_zero_array(mem_ctx, uint8_t, r->in.offered);
out 3936 librpc/gen_ndr/srv_svcctl.c if (r->out.service == NULL) {
out 3940 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 3941 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3945 librpc/gen_ndr/srv_svcctl.c r->out.services_returned = talloc_zero(mem_ctx, uint32_t);
out 3946 librpc/gen_ndr/srv_svcctl.c if (r->out.services_returned == NULL) {
out 3950 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_EnumServicesStatusA(cli->pipes_struct, r);
out 3956 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3957 librpc/gen_ndr/srv_svcctl.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 3958 librpc/gen_ndr/srv_svcctl.c if (r->out.handle == NULL) {
out 3962 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_OpenSCManagerA(cli->pipes_struct, r);
out 3968 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_OpenServiceA(cli->pipes_struct, r);
out 3974 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3975 librpc/gen_ndr/srv_svcctl.c r->out.query = talloc_zero_array(mem_ctx, uint8_t, r->in.offered);
out 3976 librpc/gen_ndr/srv_svcctl.c if (r->out.query == NULL) {
out 3980 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 3981 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 3985 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceConfigA(cli->pipes_struct, r);
out 3991 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 3992 librpc/gen_ndr/srv_svcctl.c r->out.lock_status = talloc_zero(mem_ctx, struct SERVICE_LOCK_STATUS);
out 3993 librpc/gen_ndr/srv_svcctl.c if (r->out.lock_status == NULL) {
out 3997 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 3998 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 4002 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceLockStatusA(cli->pipes_struct, r);
out 4008 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_StartServiceA(cli->pipes_struct, r);
out 4014 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 4015 librpc/gen_ndr/srv_svcctl.c r->out.display_name_length = r->in.display_name_length;
out 4016 librpc/gen_ndr/srv_svcctl.c r->out.display_name = talloc_zero(mem_ctx, const char *);
out 4017 librpc/gen_ndr/srv_svcctl.c if (r->out.display_name == NULL) {
out 4021 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_GetServiceDisplayNameA(cli->pipes_struct, r);
out 4027 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 4028 librpc/gen_ndr/srv_svcctl.c r->out.display_name_length = r->in.display_name_length;
out 4029 librpc/gen_ndr/srv_svcctl.c r->out.key_name = talloc_zero(mem_ctx, const char *);
out 4030 librpc/gen_ndr/srv_svcctl.c if (r->out.key_name == NULL) {
out 4034 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_GetServiceKeyNameA(cli->pipes_struct, r);
out 4040 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_GetCurrentGroupeStateW(cli->pipes_struct, r);
out 4046 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_EnumServiceGroupW(cli->pipes_struct, r);
out 4052 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_ChangeServiceConfig2A(cli->pipes_struct, r);
out 4058 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_ChangeServiceConfig2W(cli->pipes_struct, r);
out 4064 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 4065 librpc/gen_ndr/srv_svcctl.c r->out.buffer = talloc_zero_array(mem_ctx, uint8_t, r->in.offered);
out 4066 librpc/gen_ndr/srv_svcctl.c if (r->out.buffer == NULL) {
out 4070 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 4071 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 4075 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceConfig2A(cli->pipes_struct, r);
out 4081 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 4082 librpc/gen_ndr/srv_svcctl.c r->out.buffer = talloc_zero_array(mem_ctx, uint8_t, r->in.offered);
out 4083 librpc/gen_ndr/srv_svcctl.c if (r->out.buffer == NULL) {
out 4087 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 4088 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 4092 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceConfig2W(cli->pipes_struct, r);
out 4098 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 4099 librpc/gen_ndr/srv_svcctl.c r->out.buffer = talloc_zero_array(mem_ctx, uint8_t, r->in.offered);
out 4100 librpc/gen_ndr/srv_svcctl.c if (r->out.buffer == NULL) {
out 4104 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 4105 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 4109 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_QueryServiceStatusEx(cli->pipes_struct, r);
out 4115 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 4116 librpc/gen_ndr/srv_svcctl.c r->out.resume_handle = r->in.resume_handle;
out 4117 librpc/gen_ndr/srv_svcctl.c r->out.services = talloc_zero_array(mem_ctx, uint8_t, r->in.offered);
out 4118 librpc/gen_ndr/srv_svcctl.c if (r->out.services == NULL) {
out 4122 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 4123 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 4127 librpc/gen_ndr/srv_svcctl.c r->out.service_returned = talloc_zero(mem_ctx, uint32_t);
out 4128 librpc/gen_ndr/srv_svcctl.c if (r->out.service_returned == NULL) {
out 4132 librpc/gen_ndr/srv_svcctl.c r->out.group_name = talloc_zero(mem_ctx, const char *);
out 4133 librpc/gen_ndr/srv_svcctl.c if (r->out.group_name == NULL) {
out 4137 librpc/gen_ndr/srv_svcctl.c r->out.result = _EnumServicesStatusExA(cli->pipes_struct, r);
out 4143 librpc/gen_ndr/srv_svcctl.c ZERO_STRUCT(r->out);
out 4144 librpc/gen_ndr/srv_svcctl.c r->out.resume_handle = r->in.resume_handle;
out 4145 librpc/gen_ndr/srv_svcctl.c r->out.services = talloc_zero_array(mem_ctx, uint8_t, r->in.offered);
out 4146 librpc/gen_ndr/srv_svcctl.c if (r->out.services == NULL) {
out 4150 librpc/gen_ndr/srv_svcctl.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 4151 librpc/gen_ndr/srv_svcctl.c if (r->out.needed == NULL) {
out 4155 librpc/gen_ndr/srv_svcctl.c r->out.service_returned = talloc_zero(mem_ctx, uint32_t);
out 4156 librpc/gen_ndr/srv_svcctl.c if (r->out.service_returned == NULL) {
out 4160 librpc/gen_ndr/srv_svcctl.c r->out.result = _EnumServicesStatusExW(cli->pipes_struct, r);
out 4166 librpc/gen_ndr/srv_svcctl.c r->out.result = _svcctl_SCSendTSMessage(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 48 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(r, struct policy_handle);
out 49 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 54 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKCR(p, r);
out 127 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 128 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(r, struct policy_handle);
out 129 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 134 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKCU(p, r);
out 207 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 208 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(r, struct policy_handle);
out 209 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 214 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKLM(p, r);
out 287 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 288 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(r, struct policy_handle);
out 289 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 294 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKPD(p, r);
out 367 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 368 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(r, struct policy_handle);
out 369 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 374 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKU(p, r);
out 447 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 448 librpc/gen_ndr/srv_winreg.c r->out.handle = r->in.handle;
out 449 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_CloseKey(p, r);
out 522 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 523 librpc/gen_ndr/srv_winreg.c r->out.action_taken = r->in.action_taken;
out 524 librpc/gen_ndr/srv_winreg.c r->out.new_handle = talloc_zero(r, struct policy_handle);
out 525 librpc/gen_ndr/srv_winreg.c if (r->out.new_handle == NULL) {
out 530 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_CreateKey(p, r);
out 603 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_DeleteKey(p, r);
out 676 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_DeleteValue(p, r);
out 749 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 750 librpc/gen_ndr/srv_winreg.c r->out.name = r->in.name;
out 751 librpc/gen_ndr/srv_winreg.c r->out.keyclass = r->in.keyclass;
out 752 librpc/gen_ndr/srv_winreg.c r->out.last_changed_time = r->in.last_changed_time;
out 753 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_EnumKey(p, r);
out 826 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 827 librpc/gen_ndr/srv_winreg.c r->out.name = r->in.name;
out 828 librpc/gen_ndr/srv_winreg.c r->out.type = r->in.type;
out 829 librpc/gen_ndr/srv_winreg.c r->out.value = r->in.value;
out 830 librpc/gen_ndr/srv_winreg.c r->out.size = r->in.size;
out 831 librpc/gen_ndr/srv_winreg.c r->out.length = r->in.length;
out 832 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_EnumValue(p, r);
out 905 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_FlushKey(p, r);
out 978 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 979 librpc/gen_ndr/srv_winreg.c r->out.sd = r->in.sd;
out 980 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_GetKeySecurity(p, r);
out 1053 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_LoadKey(p, r);
out 1126 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_NotifyChangeKeyValue(p, r);
out 1199 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 1200 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(r, struct policy_handle);
out 1201 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 1206 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenKey(p, r);
out 1279 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 1280 librpc/gen_ndr/srv_winreg.c r->out.classname = r->in.classname;
out 1281 librpc/gen_ndr/srv_winreg.c r->out.num_subkeys = talloc_zero(r, uint32_t);
out 1282 librpc/gen_ndr/srv_winreg.c if (r->out.num_subkeys == NULL) {
out 1287 librpc/gen_ndr/srv_winreg.c r->out.max_subkeylen = talloc_zero(r, uint32_t);
out 1288 librpc/gen_ndr/srv_winreg.c if (r->out.max_subkeylen == NULL) {
out 1293 librpc/gen_ndr/srv_winreg.c r->out.max_classlen = talloc_zero(r, uint32_t);
out 1294 librpc/gen_ndr/srv_winreg.c if (r->out.max_classlen == NULL) {
out 1299 librpc/gen_ndr/srv_winreg.c r->out.num_values = talloc_zero(r, uint32_t);
out 1300 librpc/gen_ndr/srv_winreg.c if (r->out.num_values == NULL) {
out 1305 librpc/gen_ndr/srv_winreg.c r->out.max_valnamelen = talloc_zero(r, uint32_t);
out 1306 librpc/gen_ndr/srv_winreg.c if (r->out.max_valnamelen == NULL) {
out 1311 librpc/gen_ndr/srv_winreg.c r->out.max_valbufsize = talloc_zero(r, uint32_t);
out 1312 librpc/gen_ndr/srv_winreg.c if (r->out.max_valbufsize == NULL) {
out 1317 librpc/gen_ndr/srv_winreg.c r->out.secdescsize = talloc_zero(r, uint32_t);
out 1318 librpc/gen_ndr/srv_winreg.c if (r->out.secdescsize == NULL) {
out 1323 librpc/gen_ndr/srv_winreg.c r->out.last_changed_time = talloc_zero(r, NTTIME);
out 1324 librpc/gen_ndr/srv_winreg.c if (r->out.last_changed_time == NULL) {
out 1329 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_QueryInfoKey(p, r);
out 1402 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 1403 librpc/gen_ndr/srv_winreg.c r->out.type = r->in.type;
out 1404 librpc/gen_ndr/srv_winreg.c r->out.data = r->in.data;
out 1405 librpc/gen_ndr/srv_winreg.c r->out.data_size = r->in.data_size;
out 1406 librpc/gen_ndr/srv_winreg.c r->out.data_length = r->in.data_length;
out 1407 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_QueryValue(p, r);
out 1480 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_ReplaceKey(p, r);
out 1553 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_RestoreKey(p, r);
out 1626 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_SaveKey(p, r);
out 1699 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_SetKeySecurity(p, r);
out 1772 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_SetValue(p, r);
out 1845 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_UnLoadKey(p, r);
out 1918 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_InitiateSystemShutdown(p, r);
out 1991 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_AbortSystemShutdown(p, r);
out 2064 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2065 librpc/gen_ndr/srv_winreg.c r->out.version = talloc_zero(r, uint32_t);
out 2066 librpc/gen_ndr/srv_winreg.c if (r->out.version == NULL) {
out 2071 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_GetVersion(p, r);
out 2144 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2145 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(r, struct policy_handle);
out 2146 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 2151 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKCC(p, r);
out 2224 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2225 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(r, struct policy_handle);
out 2226 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 2231 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKDD(p, r);
out 2304 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2305 librpc/gen_ndr/srv_winreg.c r->out.values = r->in.values;
out 2306 librpc/gen_ndr/srv_winreg.c r->out.buffer = r->in.buffer;
out 2307 librpc/gen_ndr/srv_winreg.c r->out.buffer_size = r->in.buffer_size;
out 2308 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_QueryMultipleValues(p, r);
out 2381 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_InitiateSystemShutdownEx(p, r);
out 2454 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_SaveKeyEx(p, r);
out 2527 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2528 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(r, struct policy_handle);
out 2529 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 2534 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKPT(p, r);
out 2607 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2608 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(r, struct policy_handle);
out 2609 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 2614 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKPN(p, r);
out 2687 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_QueryMultipleValues2(p, r);
out 2779 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2780 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 2781 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 2785 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKCR(cli->pipes_struct, r);
out 2791 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2792 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 2793 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 2797 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKCU(cli->pipes_struct, r);
out 2803 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2804 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 2805 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 2809 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKLM(cli->pipes_struct, r);
out 2815 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2816 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 2817 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 2821 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKPD(cli->pipes_struct, r);
out 2827 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2828 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 2829 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 2833 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKU(cli->pipes_struct, r);
out 2839 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2840 librpc/gen_ndr/srv_winreg.c r->out.handle = r->in.handle;
out 2841 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_CloseKey(cli->pipes_struct, r);
out 2847 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2848 librpc/gen_ndr/srv_winreg.c r->out.action_taken = r->in.action_taken;
out 2849 librpc/gen_ndr/srv_winreg.c r->out.new_handle = talloc_zero(mem_ctx, struct policy_handle);
out 2850 librpc/gen_ndr/srv_winreg.c if (r->out.new_handle == NULL) {
out 2854 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_CreateKey(cli->pipes_struct, r);
out 2860 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_DeleteKey(cli->pipes_struct, r);
out 2866 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_DeleteValue(cli->pipes_struct, r);
out 2872 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2873 librpc/gen_ndr/srv_winreg.c r->out.name = r->in.name;
out 2874 librpc/gen_ndr/srv_winreg.c r->out.keyclass = r->in.keyclass;
out 2875 librpc/gen_ndr/srv_winreg.c r->out.last_changed_time = r->in.last_changed_time;
out 2876 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_EnumKey(cli->pipes_struct, r);
out 2882 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2883 librpc/gen_ndr/srv_winreg.c r->out.name = r->in.name;
out 2884 librpc/gen_ndr/srv_winreg.c r->out.type = r->in.type;
out 2885 librpc/gen_ndr/srv_winreg.c r->out.value = r->in.value;
out 2886 librpc/gen_ndr/srv_winreg.c r->out.size = r->in.size;
out 2887 librpc/gen_ndr/srv_winreg.c r->out.length = r->in.length;
out 2888 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_EnumValue(cli->pipes_struct, r);
out 2894 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_FlushKey(cli->pipes_struct, r);
out 2900 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2901 librpc/gen_ndr/srv_winreg.c r->out.sd = r->in.sd;
out 2902 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_GetKeySecurity(cli->pipes_struct, r);
out 2908 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_LoadKey(cli->pipes_struct, r);
out 2914 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_NotifyChangeKeyValue(cli->pipes_struct, r);
out 2920 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2921 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 2922 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 2926 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenKey(cli->pipes_struct, r);
out 2932 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2933 librpc/gen_ndr/srv_winreg.c r->out.classname = r->in.classname;
out 2934 librpc/gen_ndr/srv_winreg.c r->out.num_subkeys = talloc_zero(mem_ctx, uint32_t);
out 2935 librpc/gen_ndr/srv_winreg.c if (r->out.num_subkeys == NULL) {
out 2939 librpc/gen_ndr/srv_winreg.c r->out.max_subkeylen = talloc_zero(mem_ctx, uint32_t);
out 2940 librpc/gen_ndr/srv_winreg.c if (r->out.max_subkeylen == NULL) {
out 2944 librpc/gen_ndr/srv_winreg.c r->out.max_classlen = talloc_zero(mem_ctx, uint32_t);
out 2945 librpc/gen_ndr/srv_winreg.c if (r->out.max_classlen == NULL) {
out 2949 librpc/gen_ndr/srv_winreg.c r->out.num_values = talloc_zero(mem_ctx, uint32_t);
out 2950 librpc/gen_ndr/srv_winreg.c if (r->out.num_values == NULL) {
out 2954 librpc/gen_ndr/srv_winreg.c r->out.max_valnamelen = talloc_zero(mem_ctx, uint32_t);
out 2955 librpc/gen_ndr/srv_winreg.c if (r->out.max_valnamelen == NULL) {
out 2959 librpc/gen_ndr/srv_winreg.c r->out.max_valbufsize = talloc_zero(mem_ctx, uint32_t);
out 2960 librpc/gen_ndr/srv_winreg.c if (r->out.max_valbufsize == NULL) {
out 2964 librpc/gen_ndr/srv_winreg.c r->out.secdescsize = talloc_zero(mem_ctx, uint32_t);
out 2965 librpc/gen_ndr/srv_winreg.c if (r->out.secdescsize == NULL) {
out 2969 librpc/gen_ndr/srv_winreg.c r->out.last_changed_time = talloc_zero(mem_ctx, NTTIME);
out 2970 librpc/gen_ndr/srv_winreg.c if (r->out.last_changed_time == NULL) {
out 2974 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_QueryInfoKey(cli->pipes_struct, r);
out 2980 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 2981 librpc/gen_ndr/srv_winreg.c r->out.type = r->in.type;
out 2982 librpc/gen_ndr/srv_winreg.c r->out.data = r->in.data;
out 2983 librpc/gen_ndr/srv_winreg.c r->out.data_size = r->in.data_size;
out 2984 librpc/gen_ndr/srv_winreg.c r->out.data_length = r->in.data_length;
out 2985 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_QueryValue(cli->pipes_struct, r);
out 2991 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_ReplaceKey(cli->pipes_struct, r);
out 2997 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_RestoreKey(cli->pipes_struct, r);
out 3003 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_SaveKey(cli->pipes_struct, r);
out 3009 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_SetKeySecurity(cli->pipes_struct, r);
out 3015 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_SetValue(cli->pipes_struct, r);
out 3021 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_UnLoadKey(cli->pipes_struct, r);
out 3027 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_InitiateSystemShutdown(cli->pipes_struct, r);
out 3033 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_AbortSystemShutdown(cli->pipes_struct, r);
out 3039 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 3040 librpc/gen_ndr/srv_winreg.c r->out.version = talloc_zero(mem_ctx, uint32_t);
out 3041 librpc/gen_ndr/srv_winreg.c if (r->out.version == NULL) {
out 3045 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_GetVersion(cli->pipes_struct, r);
out 3051 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 3052 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 3053 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 3057 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKCC(cli->pipes_struct, r);
out 3063 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 3064 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 3065 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 3069 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKDD(cli->pipes_struct, r);
out 3075 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 3076 librpc/gen_ndr/srv_winreg.c r->out.values = r->in.values;
out 3077 librpc/gen_ndr/srv_winreg.c r->out.buffer = r->in.buffer;
out 3078 librpc/gen_ndr/srv_winreg.c r->out.buffer_size = r->in.buffer_size;
out 3079 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_QueryMultipleValues(cli->pipes_struct, r);
out 3085 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_InitiateSystemShutdownEx(cli->pipes_struct, r);
out 3091 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_SaveKeyEx(cli->pipes_struct, r);
out 3097 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 3098 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 3099 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 3103 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKPT(cli->pipes_struct, r);
out 3109 librpc/gen_ndr/srv_winreg.c ZERO_STRUCT(r->out);
out 3110 librpc/gen_ndr/srv_winreg.c r->out.handle = talloc_zero(mem_ctx, struct policy_handle);
out 3111 librpc/gen_ndr/srv_winreg.c if (r->out.handle == NULL) {
out 3115 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_OpenHKPN(cli->pipes_struct, r);
out 3121 librpc/gen_ndr/srv_winreg.c r->out.result = _winreg_QueryMultipleValues2(cli->pipes_struct, r);
out 47 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 48 librpc/gen_ndr/srv_wkssvc.c r->out.info = talloc_zero(r, union wkssvc_NetWkstaInfo);
out 49 librpc/gen_ndr/srv_wkssvc.c if (r->out.info == NULL) {
out 54 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetWkstaGetInfo(p, r);
out 127 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 128 librpc/gen_ndr/srv_wkssvc.c r->out.parm_error = r->in.parm_error;
out 129 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetWkstaSetInfo(p, r);
out 202 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 203 librpc/gen_ndr/srv_wkssvc.c r->out.info = r->in.info;
out 204 librpc/gen_ndr/srv_wkssvc.c r->out.resume_handle = r->in.resume_handle;
out 205 librpc/gen_ndr/srv_wkssvc.c r->out.entries_read = talloc_zero(r, uint32_t);
out 206 librpc/gen_ndr/srv_wkssvc.c if (r->out.entries_read == NULL) {
out 211 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetWkstaEnumUsers(p, r);
out 284 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 285 librpc/gen_ndr/srv_wkssvc.c r->out.info = talloc_zero(r, union wkssvc_NetrWkstaUserInfo);
out 286 librpc/gen_ndr/srv_wkssvc.c if (r->out.info == NULL) {
out 291 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrWkstaUserGetInfo(p, r);
out 364 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 365 librpc/gen_ndr/srv_wkssvc.c r->out.parm_err = r->in.parm_err;
out 366 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrWkstaUserSetInfo(p, r);
out 439 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 440 librpc/gen_ndr/srv_wkssvc.c r->out.info = r->in.info;
out 441 librpc/gen_ndr/srv_wkssvc.c r->out.resume_handle = r->in.resume_handle;
out 442 librpc/gen_ndr/srv_wkssvc.c r->out.total_entries = talloc_zero(r, uint32_t);
out 443 librpc/gen_ndr/srv_wkssvc.c if (r->out.total_entries == NULL) {
out 448 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetWkstaTransportEnum(p, r);
out 521 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 522 librpc/gen_ndr/srv_wkssvc.c r->out.parm_err = r->in.parm_err;
out 523 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrWkstaTransportAdd(p, r);
out 596 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrWkstaTransportDel(p, r);
out 669 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 670 librpc/gen_ndr/srv_wkssvc.c r->out.parm_err = r->in.parm_err;
out 671 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrUseAdd(p, r);
out 744 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 745 librpc/gen_ndr/srv_wkssvc.c r->out.ctr = talloc_zero(r, union wkssvc_NetrUseGetInfoCtr);
out 746 librpc/gen_ndr/srv_wkssvc.c if (r->out.ctr == NULL) {
out 751 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrUseGetInfo(p, r);
out 824 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrUseDel(p, r);
out 897 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 898 librpc/gen_ndr/srv_wkssvc.c r->out.info = r->in.info;
out 899 librpc/gen_ndr/srv_wkssvc.c r->out.resume_handle = r->in.resume_handle;
out 900 librpc/gen_ndr/srv_wkssvc.c r->out.entries_read = talloc_zero(r, uint32_t);
out 901 librpc/gen_ndr/srv_wkssvc.c if (r->out.entries_read == NULL) {
out 906 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrUseEnum(p, r);
out 979 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrMessageBufferSend(p, r);
out 1052 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 1053 librpc/gen_ndr/srv_wkssvc.c r->out.info = talloc_zero(r, struct wkssvc_NetrWorkstationStatistics *);
out 1054 librpc/gen_ndr/srv_wkssvc.c if (r->out.info == NULL) {
out 1059 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrWorkstationStatisticsGet(p, r);
out 1132 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrLogonDomainNameAdd(p, r);
out 1205 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrLogonDomainNameDel(p, r);
out 1278 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrJoinDomain(p, r);
out 1351 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrUnjoinDomain(p, r);
out 1424 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrRenameMachineInDomain(p, r);
out 1497 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrValidateName(p, r);
out 1570 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 1571 librpc/gen_ndr/srv_wkssvc.c r->out.name_buffer = r->in.name_buffer;
out 1572 librpc/gen_ndr/srv_wkssvc.c r->out.name_type = talloc_zero(r, enum wkssvc_NetJoinStatus);
out 1573 librpc/gen_ndr/srv_wkssvc.c if (r->out.name_type == NULL) {
out 1578 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrGetJoinInformation(p, r);
out 1651 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 1652 librpc/gen_ndr/srv_wkssvc.c r->out.num_ous = r->in.num_ous;
out 1653 librpc/gen_ndr/srv_wkssvc.c r->out.ous = talloc_zero(r, const char **);
out 1654 librpc/gen_ndr/srv_wkssvc.c if (r->out.ous == NULL) {
out 1659 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrGetJoinableOus(p, r);
out 1732 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrJoinDomain2(p, r);
out 1805 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrUnjoinDomain2(p, r);
out 1878 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrRenameMachineInDomain2(p, r);
out 1951 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrValidateName2(p, r);
out 2024 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2025 librpc/gen_ndr/srv_wkssvc.c r->out.num_ous = r->in.num_ous;
out 2026 librpc/gen_ndr/srv_wkssvc.c r->out.ous = talloc_zero(r, const char **);
out 2027 librpc/gen_ndr/srv_wkssvc.c if (r->out.ous == NULL) {
out 2032 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrGetJoinableOus2(p, r);
out 2105 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrAddAlternateComputerName(p, r);
out 2178 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrRemoveAlternateComputerName(p, r);
out 2251 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrSetPrimaryComputername(p, r);
out 2324 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2325 librpc/gen_ndr/srv_wkssvc.c r->out.ctr = talloc_zero(r, struct wkssvc_ComputerNamesCtr *);
out 2326 librpc/gen_ndr/srv_wkssvc.c if (r->out.ctr == NULL) {
out 2331 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrEnumerateComputerNames(p, r);
out 2419 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2420 librpc/gen_ndr/srv_wkssvc.c r->out.info = talloc_zero(mem_ctx, union wkssvc_NetWkstaInfo);
out 2421 librpc/gen_ndr/srv_wkssvc.c if (r->out.info == NULL) {
out 2425 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetWkstaGetInfo(cli->pipes_struct, r);
out 2431 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2432 librpc/gen_ndr/srv_wkssvc.c r->out.parm_error = r->in.parm_error;
out 2433 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetWkstaSetInfo(cli->pipes_struct, r);
out 2439 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2440 librpc/gen_ndr/srv_wkssvc.c r->out.info = r->in.info;
out 2441 librpc/gen_ndr/srv_wkssvc.c r->out.resume_handle = r->in.resume_handle;
out 2442 librpc/gen_ndr/srv_wkssvc.c r->out.entries_read = talloc_zero(mem_ctx, uint32_t);
out 2443 librpc/gen_ndr/srv_wkssvc.c if (r->out.entries_read == NULL) {
out 2447 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetWkstaEnumUsers(cli->pipes_struct, r);
out 2453 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2454 librpc/gen_ndr/srv_wkssvc.c r->out.info = talloc_zero(mem_ctx, union wkssvc_NetrWkstaUserInfo);
out 2455 librpc/gen_ndr/srv_wkssvc.c if (r->out.info == NULL) {
out 2459 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrWkstaUserGetInfo(cli->pipes_struct, r);
out 2465 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2466 librpc/gen_ndr/srv_wkssvc.c r->out.parm_err = r->in.parm_err;
out 2467 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrWkstaUserSetInfo(cli->pipes_struct, r);
out 2473 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2474 librpc/gen_ndr/srv_wkssvc.c r->out.info = r->in.info;
out 2475 librpc/gen_ndr/srv_wkssvc.c r->out.resume_handle = r->in.resume_handle;
out 2476 librpc/gen_ndr/srv_wkssvc.c r->out.total_entries = talloc_zero(mem_ctx, uint32_t);
out 2477 librpc/gen_ndr/srv_wkssvc.c if (r->out.total_entries == NULL) {
out 2481 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetWkstaTransportEnum(cli->pipes_struct, r);
out 2487 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2488 librpc/gen_ndr/srv_wkssvc.c r->out.parm_err = r->in.parm_err;
out 2489 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrWkstaTransportAdd(cli->pipes_struct, r);
out 2495 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrWkstaTransportDel(cli->pipes_struct, r);
out 2501 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2502 librpc/gen_ndr/srv_wkssvc.c r->out.parm_err = r->in.parm_err;
out 2503 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrUseAdd(cli->pipes_struct, r);
out 2509 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2510 librpc/gen_ndr/srv_wkssvc.c r->out.ctr = talloc_zero(mem_ctx, union wkssvc_NetrUseGetInfoCtr);
out 2511 librpc/gen_ndr/srv_wkssvc.c if (r->out.ctr == NULL) {
out 2515 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrUseGetInfo(cli->pipes_struct, r);
out 2521 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrUseDel(cli->pipes_struct, r);
out 2527 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2528 librpc/gen_ndr/srv_wkssvc.c r->out.info = r->in.info;
out 2529 librpc/gen_ndr/srv_wkssvc.c r->out.resume_handle = r->in.resume_handle;
out 2530 librpc/gen_ndr/srv_wkssvc.c r->out.entries_read = talloc_zero(mem_ctx, uint32_t);
out 2531 librpc/gen_ndr/srv_wkssvc.c if (r->out.entries_read == NULL) {
out 2535 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrUseEnum(cli->pipes_struct, r);
out 2541 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrMessageBufferSend(cli->pipes_struct, r);
out 2547 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2548 librpc/gen_ndr/srv_wkssvc.c r->out.info = talloc_zero(mem_ctx, struct wkssvc_NetrWorkstationStatistics *);
out 2549 librpc/gen_ndr/srv_wkssvc.c if (r->out.info == NULL) {
out 2553 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrWorkstationStatisticsGet(cli->pipes_struct, r);
out 2559 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrLogonDomainNameAdd(cli->pipes_struct, r);
out 2565 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrLogonDomainNameDel(cli->pipes_struct, r);
out 2571 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrJoinDomain(cli->pipes_struct, r);
out 2577 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrUnjoinDomain(cli->pipes_struct, r);
out 2583 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrRenameMachineInDomain(cli->pipes_struct, r);
out 2589 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrValidateName(cli->pipes_struct, r);
out 2595 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2596 librpc/gen_ndr/srv_wkssvc.c r->out.name_buffer = r->in.name_buffer;
out 2597 librpc/gen_ndr/srv_wkssvc.c r->out.name_type = talloc_zero(mem_ctx, enum wkssvc_NetJoinStatus);
out 2598 librpc/gen_ndr/srv_wkssvc.c if (r->out.name_type == NULL) {
out 2602 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrGetJoinInformation(cli->pipes_struct, r);
out 2608 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2609 librpc/gen_ndr/srv_wkssvc.c r->out.num_ous = r->in.num_ous;
out 2610 librpc/gen_ndr/srv_wkssvc.c r->out.ous = talloc_zero(mem_ctx, const char **);
out 2611 librpc/gen_ndr/srv_wkssvc.c if (r->out.ous == NULL) {
out 2615 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrGetJoinableOus(cli->pipes_struct, r);
out 2621 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrJoinDomain2(cli->pipes_struct, r);
out 2627 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrUnjoinDomain2(cli->pipes_struct, r);
out 2633 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrRenameMachineInDomain2(cli->pipes_struct, r);
out 2639 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrValidateName2(cli->pipes_struct, r);
out 2645 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2646 librpc/gen_ndr/srv_wkssvc.c r->out.num_ous = r->in.num_ous;
out 2647 librpc/gen_ndr/srv_wkssvc.c r->out.ous = talloc_zero(mem_ctx, const char **);
out 2648 librpc/gen_ndr/srv_wkssvc.c if (r->out.ous == NULL) {
out 2652 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrGetJoinableOus2(cli->pipes_struct, r);
out 2658 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrAddAlternateComputerName(cli->pipes_struct, r);
out 2664 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrRemoveAlternateComputerName(cli->pipes_struct, r);
out 2670 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrSetPrimaryComputername(cli->pipes_struct, r);
out 2676 librpc/gen_ndr/srv_wkssvc.c ZERO_STRUCT(r->out);
out 2677 librpc/gen_ndr/srv_wkssvc.c r->out.ctr = talloc_zero(mem_ctx, struct wkssvc_ComputerNamesCtr *);
out 2678 librpc/gen_ndr/srv_wkssvc.c if (r->out.ctr == NULL) {
out 2682 librpc/gen_ndr/srv_wkssvc.c r->out.result = _wkssvc_NetrEnumerateComputerNames(cli->pipes_struct, r);
out 1062 librpc/gen_ndr/srvsvc.h } out;
out 1077 librpc/gen_ndr/srvsvc.h } out;
out 1091 librpc/gen_ndr/srvsvc.h } out;
out 1110 librpc/gen_ndr/srvsvc.h } out;
out 1126 librpc/gen_ndr/srvsvc.h } out;
out 1143 librpc/gen_ndr/srvsvc.h } out;
out 1156 librpc/gen_ndr/srvsvc.h } out;
out 1170 librpc/gen_ndr/srvsvc.h } out;
out 1189 librpc/gen_ndr/srvsvc.h } out;
out 1209 librpc/gen_ndr/srvsvc.h } out;
out 1224 librpc/gen_ndr/srvsvc.h } out;
out 1237 librpc/gen_ndr/srvsvc.h } out;
out 1257 librpc/gen_ndr/srvsvc.h } out;
out 1271 librpc/gen_ndr/srvsvc.h } out;
out 1287 librpc/gen_ndr/srvsvc.h } out;
out 1305 librpc/gen_ndr/srvsvc.h } out;
out 1320 librpc/gen_ndr/srvsvc.h } out;
out 1337 librpc/gen_ndr/srvsvc.h } out;
out 1351 librpc/gen_ndr/srvsvc.h } out;
out 1365 librpc/gen_ndr/srvsvc.h } out;
out 1379 librpc/gen_ndr/srvsvc.h } out;
out 1393 librpc/gen_ndr/srvsvc.h } out;
out 1409 librpc/gen_ndr/srvsvc.h } out;
out 1428 librpc/gen_ndr/srvsvc.h } out;
out 1444 librpc/gen_ndr/srvsvc.h } out;
out 1458 librpc/gen_ndr/srvsvc.h } out;
out 1476 librpc/gen_ndr/srvsvc.h } out;
out 1490 librpc/gen_ndr/srvsvc.h } out;
out 1503 librpc/gen_ndr/srvsvc.h } out;
out 1518 librpc/gen_ndr/srvsvc.h } out;
out 1533 librpc/gen_ndr/srvsvc.h } out;
out 1552 librpc/gen_ndr/srvsvc.h } out;
out 1568 librpc/gen_ndr/srvsvc.h } out;
out 1583 librpc/gen_ndr/srvsvc.h } out;
out 1591 librpc/gen_ndr/srvsvc.h } out;
out 1607 librpc/gen_ndr/srvsvc.h } out;
out 1625 librpc/gen_ndr/srvsvc.h } out;
out 1640 librpc/gen_ndr/srvsvc.h } out;
out 1653 librpc/gen_ndr/srvsvc.h } out;
out 1669 librpc/gen_ndr/srvsvc.h } out;
out 1685 librpc/gen_ndr/srvsvc.h } out;
out 1699 librpc/gen_ndr/srvsvc.h } out;
out 1716 librpc/gen_ndr/srvsvc.h } out;
out 1724 librpc/gen_ndr/srvsvc.h } out;
out 1732 librpc/gen_ndr/srvsvc.h } out;
out 1740 librpc/gen_ndr/srvsvc.h } out;
out 1748 librpc/gen_ndr/srvsvc.h } out;
out 1756 librpc/gen_ndr/srvsvc.h } out;
out 1764 librpc/gen_ndr/srvsvc.h } out;
out 1772 librpc/gen_ndr/srvsvc.h } out;
out 1780 librpc/gen_ndr/srvsvc.h } out;
out 1788 librpc/gen_ndr/srvsvc.h } out;
out 1796 librpc/gen_ndr/srvsvc.h } out;
out 1804 librpc/gen_ndr/srvsvc.h } out;
out 302 librpc/gen_ndr/svcctl.h } out;
out 316 librpc/gen_ndr/svcctl.h } out;
out 328 librpc/gen_ndr/svcctl.h } out;
out 341 librpc/gen_ndr/svcctl.h } out;
out 357 librpc/gen_ndr/svcctl.h } out;
out 372 librpc/gen_ndr/svcctl.h } out;
out 385 librpc/gen_ndr/svcctl.h } out;
out 393 librpc/gen_ndr/svcctl.h } out;
out 406 librpc/gen_ndr/svcctl.h } out;
out 414 librpc/gen_ndr/svcctl.h } out;
out 429 librpc/gen_ndr/svcctl.h } out;
out 451 librpc/gen_ndr/svcctl.h } out;
out 479 librpc/gen_ndr/svcctl.h } out;
out 496 librpc/gen_ndr/svcctl.h } out;
out 516 librpc/gen_ndr/svcctl.h } out;
out 531 librpc/gen_ndr/svcctl.h } out;
out 546 librpc/gen_ndr/svcctl.h } out;
out 561 librpc/gen_ndr/svcctl.h } out;
out 576 librpc/gen_ndr/svcctl.h } out;
out 590 librpc/gen_ndr/svcctl.h } out;
out 606 librpc/gen_ndr/svcctl.h } out;
out 622 librpc/gen_ndr/svcctl.h } out;
out 637 librpc/gen_ndr/svcctl.h } out;
out 659 librpc/gen_ndr/svcctl.h } out;
out 683 librpc/gen_ndr/svcctl.h } out;
out 700 librpc/gen_ndr/svcctl.h } out;
out 720 librpc/gen_ndr/svcctl.h } out;
out 735 librpc/gen_ndr/svcctl.h } out;
out 749 librpc/gen_ndr/svcctl.h } out;
out 764 librpc/gen_ndr/svcctl.h } out;
out 779 librpc/gen_ndr/svcctl.h } out;
out 793 librpc/gen_ndr/svcctl.h } out;
out 809 librpc/gen_ndr/svcctl.h } out;
out 825 librpc/gen_ndr/svcctl.h } out;
out 833 librpc/gen_ndr/svcctl.h } out;
out 841 librpc/gen_ndr/svcctl.h } out;
out 855 librpc/gen_ndr/svcctl.h } out;
out 869 librpc/gen_ndr/svcctl.h } out;
out 885 librpc/gen_ndr/svcctl.h } out;
out 901 librpc/gen_ndr/svcctl.h } out;
out 917 librpc/gen_ndr/svcctl.h } out;
out 939 librpc/gen_ndr/svcctl.h } out;
out 961 librpc/gen_ndr/svcctl.h } out;
out 969 librpc/gen_ndr/svcctl.h } out;
out 133 librpc/gen_ndr/winreg.h } out;
out 147 librpc/gen_ndr/winreg.h } out;
out 161 librpc/gen_ndr/winreg.h } out;
out 175 librpc/gen_ndr/winreg.h } out;
out 189 librpc/gen_ndr/winreg.h } out;
out 202 librpc/gen_ndr/winreg.h } out;
out 222 librpc/gen_ndr/winreg.h } out;
out 235 librpc/gen_ndr/winreg.h } out;
out 248 librpc/gen_ndr/winreg.h } out;
out 267 librpc/gen_ndr/winreg.h } out;
out 290 librpc/gen_ndr/winreg.h } out;
out 302 librpc/gen_ndr/winreg.h } out;
out 317 librpc/gen_ndr/winreg.h } out;
out 331 librpc/gen_ndr/winreg.h } out;
out 349 librpc/gen_ndr/winreg.h } out;
out 365 librpc/gen_ndr/winreg.h } out;
out 387 librpc/gen_ndr/winreg.h } out;
out 408 librpc/gen_ndr/winreg.h } out;
out 416 librpc/gen_ndr/winreg.h } out;
out 430 librpc/gen_ndr/winreg.h } out;
out 444 librpc/gen_ndr/winreg.h } out;
out 458 librpc/gen_ndr/winreg.h } out;
out 474 librpc/gen_ndr/winreg.h } out;
out 482 librpc/gen_ndr/winreg.h } out;
out 498 librpc/gen_ndr/winreg.h } out;
out 510 librpc/gen_ndr/winreg.h } out;
out 523 librpc/gen_ndr/winreg.h } out;
out 537 librpc/gen_ndr/winreg.h } out;
out 551 librpc/gen_ndr/winreg.h } out;
out 570 librpc/gen_ndr/winreg.h } out;
out 587 librpc/gen_ndr/winreg.h } out;
out 595 librpc/gen_ndr/winreg.h } out;
out 609 librpc/gen_ndr/winreg.h } out;
out 623 librpc/gen_ndr/winreg.h } out;
out 631 librpc/gen_ndr/winreg.h } out;
out 505 librpc/gen_ndr/wkssvc.h } out;
out 521 librpc/gen_ndr/wkssvc.h } out;
out 539 librpc/gen_ndr/wkssvc.h } out;
out 553 librpc/gen_ndr/wkssvc.h } out;
out 569 librpc/gen_ndr/wkssvc.h } out;
out 587 librpc/gen_ndr/wkssvc.h } out;
out 603 librpc/gen_ndr/wkssvc.h } out;
out 617 librpc/gen_ndr/wkssvc.h } out;
out 633 librpc/gen_ndr/wkssvc.h } out;
out 648 librpc/gen_ndr/wkssvc.h } out;
out 662 librpc/gen_ndr/wkssvc.h } out;
out 680 librpc/gen_ndr/wkssvc.h } out;
out 696 librpc/gen_ndr/wkssvc.h } out;
out 712 librpc/gen_ndr/wkssvc.h } out;
out 724 librpc/gen_ndr/wkssvc.h } out;
out 736 librpc/gen_ndr/wkssvc.h } out;
out 753 librpc/gen_ndr/wkssvc.h } out;
out 768 librpc/gen_ndr/wkssvc.h } out;
out 784 librpc/gen_ndr/wkssvc.h } out;
out 800 librpc/gen_ndr/wkssvc.h } out;
out 815 librpc/gen_ndr/wkssvc.h } out;
out 833 librpc/gen_ndr/wkssvc.h } out;
out 850 librpc/gen_ndr/wkssvc.h } out;
out 865 librpc/gen_ndr/wkssvc.h } out;
out 881 librpc/gen_ndr/wkssvc.h } out;
out 897 librpc/gen_ndr/wkssvc.h } out;
out 915 librpc/gen_ndr/wkssvc.h } out;
out 931 librpc/gen_ndr/wkssvc.h } out;
out 947 librpc/gen_ndr/wkssvc.h } out;
out 963 librpc/gen_ndr/wkssvc.h } out;
out 978 librpc/gen_ndr/wkssvc.h } out;
out 52 librpc/ndr/ndr_spoolss_buf.c _r.out.info = NULL;\
out 53 librpc/ndr/ndr_spoolss_buf.c _r.out.needed = r->out.needed;\
out 54 librpc/ndr/ndr_spoolss_buf.c _r.out.count = r->out.count;\
out 55 librpc/ndr/ndr_spoolss_buf.c _r.out.result = r->out.result;\
out 56 librpc/ndr/ndr_spoolss_buf.c if (r->out.info && *r->out.info && !r->in.buffer) {\
out 65 librpc/ndr/ndr_spoolss_buf.c if (r->out.info) {\
out 68 librpc/ndr/ndr_spoolss_buf.c __r.in.count = *r->out.count;\
out 69 librpc/ndr/ndr_spoolss_buf.c __r.out.info = *r->out.info;\
out 81 librpc/ndr/ndr_spoolss_buf.c _r.out.info = &_data_blob_info;\
out 93 librpc/ndr/ndr_spoolss_buf.c out;\
out 99 librpc/ndr/ndr_spoolss_buf.c ZERO_STRUCT(r->out);\
out 104 librpc/ndr/ndr_spoolss_buf.c r->out.needed = _r.out.needed;\
out 105 librpc/ndr/ndr_spoolss_buf.c r->out.count = _r.out.count;\
out 115 librpc/ndr/ndr_spoolss_buf.c NDR_PULL_ALLOC(ndr, r->out.info);\
out 116 librpc/ndr/ndr_spoolss_buf.c ZERO_STRUCTP(r->out.info);\
out 123 librpc/ndr/ndr_spoolss_buf.c _r.out.needed = r->out.needed;\
out 124 librpc/ndr/ndr_spoolss_buf.c _r.out.count = r->out.count;\
out 127 librpc/ndr/ndr_spoolss_buf.c NDR_PULL_ALLOC(ndr, r->out.info);\
out 129 librpc/ndr/ndr_spoolss_buf.c *r->out.info = NULL;\
out 130 librpc/ndr/ndr_spoolss_buf.c r->out.needed = _r.out.needed;\
out 131 librpc/ndr/ndr_spoolss_buf.c r->out.count = _r.out.count;\
out 132 librpc/ndr/ndr_spoolss_buf.c r->out.result = _r.out.result;\
out 133 librpc/ndr/ndr_spoolss_buf.c if (_r.out.info) {\
out 135 librpc/ndr/ndr_spoolss_buf.c NDR_PULL_ALLOC(ndr, *r->out.info);\
out 136 librpc/ndr/ndr_spoolss_buf.c _ndr_info = ndr_pull_init_blob(_r.out.info, *r->out.info, ndr->iconv_convenience);\
out 144 librpc/ndr/ndr_spoolss_buf.c if (*r->out.needed <= _ndr_info->data_size) {\
out 147 librpc/ndr/ndr_spoolss_buf.c __r.in.count = *r->out.count;\
out 148 librpc/ndr/ndr_spoolss_buf.c __r.out.info = NULL;\
out 150 librpc/ndr/ndr_spoolss_buf.c *r->out.info = __r.out.info;\
out 158 librpc/ndr/ndr_spoolss_buf.c out;\
out 163 librpc/ndr/ndr_spoolss_buf.c out;\
out 185 librpc/ndr/ndr_spoolss_buf.c __r.out.info = info;\
out 199 librpc/ndr/ndr_spoolss_buf.c __r.out.info = info;\
out 474 librpc/ndr/ndr_spoolss_buf.c _r.out.count = r->out.count;
out 475 librpc/ndr/ndr_spoolss_buf.c _r.out.needed = r->out.needed;
out 476 librpc/ndr/ndr_spoolss_buf.c _r.out.result = r->out.result;
out 477 librpc/ndr/ndr_spoolss_buf.c _r.out.info = data_blob(NULL, 0);
out 478 librpc/ndr/ndr_spoolss_buf.c if (r->in.offered >= *r->out.needed) {
out 483 librpc/ndr/ndr_spoolss_buf.c __r.in.count = *r->out.count;
out 484 librpc/ndr/ndr_spoolss_buf.c __r.out.info = *r->out.info;
out 490 librpc/ndr/ndr_spoolss_buf.c _r.out.info = ndr_push_blob(_ndr_info);
out 503 librpc/ndr/ndr_spoolss_buf.c ZERO_STRUCT(r->out);
out 508 librpc/ndr/ndr_spoolss_buf.c r->out.needed = _r.out.needed;
out 509 librpc/ndr/ndr_spoolss_buf.c r->out.count = _r.out.count;
out 510 librpc/ndr/ndr_spoolss_buf.c NDR_PULL_ALLOC(ndr, r->out.info);
out 511 librpc/ndr/ndr_spoolss_buf.c ZERO_STRUCTP(r->out.info);
out 517 librpc/ndr/ndr_spoolss_buf.c _r.out.count = r->out.count;
out 518 librpc/ndr/ndr_spoolss_buf.c _r.out.needed = r->out.needed;
out 521 librpc/ndr/ndr_spoolss_buf.c NDR_PULL_ALLOC(ndr, r->out.info);
out 523 librpc/ndr/ndr_spoolss_buf.c *r->out.info = NULL;
out 524 librpc/ndr/ndr_spoolss_buf.c r->out.needed = _r.out.needed;
out 525 librpc/ndr/ndr_spoolss_buf.c r->out.count = _r.out.count;
out 526 librpc/ndr/ndr_spoolss_buf.c r->out.result = _r.out.result;
out 527 librpc/ndr/ndr_spoolss_buf.c if (_r.out.info.length) {
out 529 librpc/ndr/ndr_spoolss_buf.c NDR_PULL_ALLOC(ndr, *r->out.info);
out 530 librpc/ndr/ndr_spoolss_buf.c _ndr_info = ndr_pull_init_blob(&_r.out.info, *r->out.info, ndr->iconv_convenience);
out 538 librpc/ndr/ndr_spoolss_buf.c if (*r->out.needed <= _ndr_info->data_size) {
out 540 librpc/ndr/ndr_spoolss_buf.c __r.in.count = *r->out.count;
out 541 librpc/ndr/ndr_spoolss_buf.c __r.out.info = NULL;
out 543 librpc/ndr/ndr_spoolss_buf.c *r->out.info = __r.out.info;
out 574 librpc/ndr/ndr_spoolss_buf.c _r.out.type = r->out.type;
out 575 librpc/ndr/ndr_spoolss_buf.c _r.out.data = &blob;
out 576 librpc/ndr/ndr_spoolss_buf.c _r.out.needed = r->out.needed;
out 577 librpc/ndr/ndr_spoolss_buf.c _r.out.result = r->out.result;
out 584 librpc/ndr/ndr_spoolss_buf.c __r.in.type = *r->out.type;
out 585 librpc/ndr/ndr_spoolss_buf.c __r.out.data = r->out.data;
out 592 librpc/ndr/ndr_spoolss_buf.c _r.out.data = &_blob;
out 604 librpc/ndr/ndr_spoolss_buf.c ZERO_STRUCT(r->out);
out 609 librpc/ndr/ndr_spoolss_buf.c _r.out.type = r->out.type;
out 610 librpc/ndr/ndr_spoolss_buf.c _r.out.data = &blob;
out 611 librpc/ndr/ndr_spoolss_buf.c _r.out.needed = r->out.needed;
out 616 librpc/ndr/ndr_spoolss_buf.c r->out.needed = _r.out.needed;
out 623 librpc/ndr/ndr_spoolss_buf.c _r.out.type = r->out.type;
out 624 librpc/ndr/ndr_spoolss_buf.c _r.out.data = &blob;
out 625 librpc/ndr/ndr_spoolss_buf.c _r.out.needed = r->out.needed;
out 626 librpc/ndr/ndr_spoolss_buf.c _r.out.result = r->out.result;
out 628 librpc/ndr/ndr_spoolss_buf.c r->out.type = _r.out.type;
out 630 librpc/ndr/ndr_spoolss_buf.c NDR_PULL_ALLOC(ndr, r->out.data);
out 632 librpc/ndr/ndr_spoolss_buf.c ZERO_STRUCTP(r->out.data);
out 633 librpc/ndr/ndr_spoolss_buf.c r->out.needed = _r.out.needed;
out 634 librpc/ndr/ndr_spoolss_buf.c r->out.result = _r.out.result;
out 635 librpc/ndr/ndr_spoolss_buf.c if (_r.out.data && _r.out.data->length != r->in.offered) {
out 638 librpc/ndr/ndr_spoolss_buf.c (unsigned)r->in.offered, (unsigned)_r.out.data->length);
out 640 librpc/ndr/ndr_spoolss_buf.c if (_r.out.data && _r.out.data->length > 0 && *r->out.needed <= _r.out.data->length) {
out 642 librpc/ndr/ndr_spoolss_buf.c struct ndr_pull *_ndr_data = ndr_pull_init_blob(_r.out.data, ndr, ndr->iconv_convenience);
out 645 librpc/ndr/ndr_spoolss_buf.c __r.in.type = *r->out.type;
out 646 librpc/ndr/ndr_spoolss_buf.c __r.out.data = r->out.data;
out 648 librpc/ndr/ndr_spoolss_buf.c r->out.data = __r.out.data;
out 650 librpc/ndr/ndr_spoolss_buf.c *r->out.type = REG_NONE;
out 672 librpc/ndr/ndr_spoolss_buf.c __r.out.data = discard_const_p(union spoolss_PrinterData, &r->in.data);
out 681 librpc/ndr/ndr_spoolss_buf.c _r.out.result = r->out.result;
out 690 librpc/ndr/ndr_spoolss_buf.c _r.out.result = r->out.result;
out 1147 nsswitch/pam_winbind.c goto out;
out 1177 nsswitch/pam_winbind.c goto out;
out 1207 nsswitch/pam_winbind.c out:
out 2260 nsswitch/pam_winbind.c goto out;
out 2273 nsswitch/pam_winbind.c goto out;
out 2286 nsswitch/pam_winbind.c goto out;
out 2295 nsswitch/pam_winbind.c out:
out 2306 nsswitch/pam_winbind.c goto out;
out 2319 nsswitch/pam_winbind.c goto out;
out 2334 nsswitch/pam_winbind.c goto out;
out 2344 nsswitch/pam_winbind.c out:
out 2475 nsswitch/pam_winbind.c goto out;
out 2492 nsswitch/pam_winbind.c goto out;
out 2499 nsswitch/pam_winbind.c goto out;
out 2514 nsswitch/pam_winbind.c goto out;
out 2530 nsswitch/pam_winbind.c goto out;
out 2541 nsswitch/pam_winbind.c goto out;
out 2551 nsswitch/pam_winbind.c goto out;
out 2568 nsswitch/pam_winbind.c out:
out 2610 nsswitch/pam_winbind.c goto out;
out 2621 nsswitch/pam_winbind.c goto out;
out 2646 nsswitch/pam_winbind.c goto out;
out 2671 nsswitch/pam_winbind.c goto out;
out 2703 nsswitch/pam_winbind.c goto out;
out 2715 nsswitch/pam_winbind.c goto out;
out 2722 nsswitch/pam_winbind.c goto out;
out 2725 nsswitch/pam_winbind.c out:
out 2761 nsswitch/pam_winbind.c goto out;
out 2791 nsswitch/pam_winbind.c out:
out 2815 nsswitch/pam_winbind.c goto out;
out 2827 nsswitch/pam_winbind.c goto out;
out 2836 nsswitch/pam_winbind.c goto out;
out 2843 nsswitch/pam_winbind.c goto out;
out 2846 nsswitch/pam_winbind.c goto out;
out 2864 nsswitch/pam_winbind.c goto out;
out 2871 nsswitch/pam_winbind.c goto out;
out 2879 nsswitch/pam_winbind.c goto out;
out 2886 nsswitch/pam_winbind.c goto out;
out 2892 nsswitch/pam_winbind.c out:
out 2910 nsswitch/pam_winbind.c goto out;
out 2919 nsswitch/pam_winbind.c out:
out 2936 nsswitch/pam_winbind.c goto out;
out 2941 nsswitch/pam_winbind.c out:
out 3021 nsswitch/pam_winbind.c goto out;
out 3038 nsswitch/pam_winbind.c goto out;
out 3044 nsswitch/pam_winbind.c goto out;
out 3054 nsswitch/pam_winbind.c goto out;
out 3057 nsswitch/pam_winbind.c goto out;
out 3078 nsswitch/pam_winbind.c goto out;
out 3092 nsswitch/pam_winbind.c goto out;
out 3107 nsswitch/pam_winbind.c goto out;
out 3137 nsswitch/pam_winbind.c goto out;
out 3164 nsswitch/pam_winbind.c goto out;
out 3198 nsswitch/pam_winbind.c goto out;
out 3265 nsswitch/pam_winbind.c goto out;
out 3271 nsswitch/pam_winbind.c out:
out 258 nsswitch/wb_common.c goto out;
out 274 nsswitch/wb_common.c out:
out 179 nsswitch/winbind_krb5_locator.c struct addrinfo *out = NULL;
out 185 nsswitch/winbind_krb5_locator.c ret = getaddrinfo(name, service, in, &out);
out 204 nsswitch/winbind_krb5_locator.c ret = cbfunc(cbdata, out->ai_socktype, out->ai_addr);
out 213 nsswitch/winbind_krb5_locator.c freeaddrinfo(out);
out 350 nsswitch/wins.c goto out;
out 360 nsswitch/wins.c goto out;
out 373 nsswitch/wins.c goto out;
out 380 nsswitch/wins.c goto out;
out 388 nsswitch/wins.c goto out;
out 409 nsswitch/wins.c goto out;
out 415 nsswitch/wins.c goto out;
out 422 nsswitch/wins.c out:
out 489 source3/client/cifs.upcall.c goto out;
out 492 source3/client/cifs.upcall.c goto out;
out 499 source3/client/cifs.upcall.c goto out;
out 508 source3/client/cifs.upcall.c goto out;
out 516 source3/client/cifs.upcall.c goto out;
out 524 source3/client/cifs.upcall.c goto out;
out 533 source3/client/cifs.upcall.c goto out;
out 540 source3/client/cifs.upcall.c goto out;
out 547 source3/client/cifs.upcall.c goto out;
out 608 source3/client/cifs.upcall.c goto out;
out 616 source3/client/cifs.upcall.c goto out;
out 630 source3/client/cifs.upcall.c goto out;
out 636 source3/client/cifs.upcall.c out:
out 383 source3/client/client.c goto out;
out 391 source3/client/client.c goto out;
out 402 source3/client/client.c goto out;
out 417 source3/client/client.c goto out;
out 423 source3/client/client.c goto out;
out 432 source3/client/client.c goto out;
out 437 source3/client/client.c goto out;
out 443 source3/client/client.c goto out;
out 449 source3/client/client.c out:
out 382 source3/client/mount.cifs.c char * out = NULL;
out 441 source3/client/mount.cifs.c SAFE_FREE(out);
out 474 source3/client/mount.cifs.c SAFE_FREE(out);
out 491 source3/client/mount.cifs.c SAFE_FREE(out);
out 498 source3/client/mount.cifs.c SAFE_FREE(out);
out 517 source3/client/mount.cifs.c SAFE_FREE(out);
out 525 source3/client/mount.cifs.c SAFE_FREE(out);
out 540 source3/client/mount.cifs.c SAFE_FREE(out);
out 550 source3/client/mount.cifs.c SAFE_FREE(out);
out 560 source3/client/mount.cifs.c SAFE_FREE(out);
out 567 source3/client/mount.cifs.c SAFE_FREE(out);
out 576 source3/client/mount.cifs.c SAFE_FREE(out);
out 581 source3/client/mount.cifs.c SAFE_FREE(out);
out 620 source3/client/mount.cifs.c SAFE_FREE(out);
out 635 source3/client/mount.cifs.c SAFE_FREE(out);
out 704 source3/client/mount.cifs.c out = (char *)realloc(out, out_len + word_len + 2);
out 705 source3/client/mount.cifs.c if (out == NULL) {
out 711 source3/client/mount.cifs.c strlcat(out, ",", out_len + word_len + 2);
out 716 source3/client/mount.cifs.c snprintf(out + out_len, word_len + 1, "%s=%s", data, value);
out 718 source3/client/mount.cifs.c snprintf(out + out_len, word_len + 1, "%s", data);
out 719 source3/client/mount.cifs.c out_len = strlen(out);
out 729 source3/client/mount.cifs.c out = (char *)realloc(out, out_len + word_len + 6);
out 730 source3/client/mount.cifs.c if (out == NULL) {
out 736 source3/client/mount.cifs.c strlcat(out, ",", out_len + word_len + 6);
out 739 source3/client/mount.cifs.c snprintf(out + out_len, word_len + 5, "uid=%s", user);
out 740 source3/client/mount.cifs.c out_len = strlen(out);
out 745 source3/client/mount.cifs.c out = (char *)realloc(out, out_len + 1 + word_len + 6);
out 746 source3/client/mount.cifs.c if (out == NULL) {
out 752 source3/client/mount.cifs.c strlcat(out, ",", out_len + word_len + 6);
out 755 source3/client/mount.cifs.c snprintf(out + out_len, word_len + 5, "gid=%s", group);
out 756 source3/client/mount.cifs.c out_len = strlen(out);
out 760 source3/client/mount.cifs.c *optionsp = out;
out 121 source3/include/ads.h } out;
out 15 source3/include/mangle.h char **out, /* talloced on the given context. */
out 18 source3/include/mangle.h char out[13],
out 455 source3/iniparser/src/dictionary.c if (d==NULL || out==NULL) return ;
out 457 source3/iniparser/src/dictionary.c fprintf(out, "empty dictionary\n");
out 462 source3/iniparser/src/dictionary.c fprintf(out, "%20s\t[%s]\n",
out 179 source3/lib/afs_settoken.c char *in, *out;
out 216 source3/lib/afs_settoken.c iob.out = buf;
out 651 source3/lib/charcnv.c out:
out 692 source3/lib/charcnv.c goto out;
out 701 source3/lib/charcnv.c goto out;
out 714 source3/lib/charcnv.c goto out;
out 724 source3/lib/charcnv.c goto out;
out 736 source3/lib/charcnv.c goto out;
out 754 source3/lib/charcnv.c goto out;
out 761 source3/lib/charcnv.c goto out;
out 1190 source3/lib/ctdbd_conn.c memcpy(out, in, sizeof (*out));
out 1196 source3/lib/ctdbd_conn.c struct sockaddr_in *out4 = (struct sockaddr_in *)out;
out 1198 source3/lib/ctdbd_conn.c memset(out, 0, sizeof(*out));
out 1200 source3/lib/ctdbd_conn.c out4->sin_len = sizeof(*out);
out 46 source3/lib/dprintf.c goto out;
out 55 source3/lib/dprintf.c goto out;
out 65 source3/lib/dprintf.c goto out;
out 79 source3/lib/dprintf.c out:
out 251 source3/lib/fault.c goto out;
out 280 source3/lib/fault.c out:
out 280 source3/lib/gencache.c goto out;
out 286 source3/lib/gencache.c goto out;
out 303 source3/lib/gencache.c goto out;
out 308 source3/lib/gencache.c out:
out 355 source3/lib/gencache.c goto out;
out 362 source3/lib/gencache.c goto out;
out 381 source3/lib/gencache.c out:
out 38 source3/lib/ldb/common/attrib_handlers.c *out = ldb_val_dup(mem_ctx, in);
out 39 source3/lib/ldb/common/attrib_handlers.c if (in->length > 0 && out->data == NULL) {
out 58 source3/lib/ldb/common/attrib_handlers.c if (!in || !out || !(in->data)) {
out 62 source3/lib/ldb/common/attrib_handlers.c out->data = (uint8_t *)ldb_casefold(ldb, mem_ctx, (const char *)(in->data));
out 63 source3/lib/ldb/common/attrib_handlers.c if (out->data == NULL) {
out 68 source3/lib/ldb/common/attrib_handlers.c s = (char *)(out->data);
out 97 source3/lib/ldb/common/attrib_handlers.c out->length = strlen((char *)out->data);
out 115 source3/lib/ldb/common/attrib_handlers.c out->data = (uint8_t *)talloc_asprintf(mem_ctx, "%lld", i);
out 116 source3/lib/ldb/common/attrib_handlers.c if (out->data == NULL) {
out 119 source3/lib/ldb/common/attrib_handlers.c out->length = strlen((char *)out->data);
out 233 source3/lib/ldb/common/attrib_handlers.c out->length = 0;
out 234 source3/lib/ldb/common/attrib_handlers.c out->data = NULL;
out 241 source3/lib/ldb/common/attrib_handlers.c out->data = (uint8_t *)ldb_dn_linearize(mem_ctx, dn);
out 242 source3/lib/ldb/common/attrib_handlers.c if (out->data == NULL) {
out 245 source3/lib/ldb/common/attrib_handlers.c out->length = strlen((char *)out->data);
out 326 source3/lib/ldb/common/attrib_handlers.c out->data = (uint8_t *)ldb_timestring(mem_ctx, t);
out 327 source3/lib/ldb/common/attrib_handlers.c if (out->data == NULL) {
out 330 source3/lib/ldb/common/attrib_handlers.c out->length = strlen((char *)out->data);
out 76 source3/lib/ldb/common/ldb_attributes.c *out = ldb_val_dup(mem_ctx, in);
out 78 source3/lib/ldb/common/ldb_attributes.c if (out->data == NULL && in->data != NULL) {
out 160 source3/lib/ldb/common/ldb_ldif.c char *out;
out 162 source3/lib/ldb/common/ldb_ldif.c out = talloc_array(mem_ctx, char, bytes+pad_bytes+1);
out 163 source3/lib/ldb/common/ldb_ldif.c if (!out) return NULL;
out 176 source3/lib/ldb/common/ldb_ldif.c out[i] = b64[idx];
out 180 source3/lib/ldb/common/ldb_ldif.c out[i] = '=';
out 181 source3/lib/ldb/common/ldb_ldif.c out[i] = 0;
out 183 source3/lib/ldb/common/ldb_ldif.c return out;
out 292 source3/lib/ldb/common/ldb_modules.c *out = module;
out 44 source3/lib/ldb/samba/ldif_handlers.c status = ndr_push_struct_blob(out, mem_ctx, sid,
out 71 source3/lib/ldb/samba/ldif_handlers.c out->data = (uint8_t *)dom_sid_string(mem_ctx, sid);
out 73 source3/lib/ldb/samba/ldif_handlers.c if (out->data == NULL) {
out 76 source3/lib/ldb/samba/ldif_handlers.c out->length = strlen((const char *)out->data);
out 130 source3/lib/ldb/samba/ldif_handlers.c return ldif_read_objectSid(ldb, mem_ctx, in, out);
out 132 source3/lib/ldb/samba/ldif_handlers.c return ldb_handler_copy(ldb, mem_ctx, in, out);
out 149 source3/lib/ldb/samba/ldif_handlers.c status = ndr_push_struct_blob(out, mem_ctx, &guid,
out 170 source3/lib/ldb/samba/ldif_handlers.c out->data = (uint8_t *)GUID_string(mem_ctx, &guid);
out 171 source3/lib/ldb/samba/ldif_handlers.c if (out->data == NULL) {
out 174 source3/lib/ldb/samba/ldif_handlers.c out->length = strlen((const char *)out->data);
out 235 source3/lib/ldb/samba/ldif_handlers.c return ldif_read_objectGUID(ldb, mem_ctx, in, out);
out 237 source3/lib/ldb/samba/ldif_handlers.c return ldb_handler_copy(ldb, mem_ctx, in, out);
out 254 source3/lib/ldb/samba/ldif_handlers.c status = ndr_push_struct_blob(out, mem_ctx, sd,
out 282 source3/lib/ldb/samba/ldif_handlers.c out->data = (uint8_t *)sddl_encode(mem_ctx, sd, NULL);
out 284 source3/lib/ldb/samba/ldif_handlers.c if (out->data == NULL) {
out 287 source3/lib/ldb/samba/ldif_handlers.c out->length = strlen((const char *)out->data);
out 313 source3/lib/ldb/samba/ldif_handlers.c out->data = (void *)oc2;
out 314 source3/lib/ldb/samba/ldif_handlers.c out->length = strlen(oc2);
out 310 source3/lib/ldb/tools/ad2oLschema.c fprintf(out, "dn: cn=schema\n");
out 402 source3/lib/ldb/tools/ad2oLschema.c fprintf(out, "%s\n\n", schema_entry);
out 405 source3/lib/ldb/tools/ad2oLschema.c fprintf(out, "%s\n", schema_entry);
out 560 source3/lib/ldb/tools/ad2oLschema.c fprintf(out, "%s\n\n", schema_entry);
out 563 source3/lib/ldb/tools/ad2oLschema.c fprintf(out, "%s\n", schema_entry);
out 577 source3/lib/ldb/tools/ad2oLschema.c FILE *out = stdout;
out 598 source3/lib/ldb/tools/ad2oLschema.c out = fopen(options->output, "w");
out 599 source3/lib/ldb/tools/ad2oLschema.c if (!out) {
out 616 source3/lib/ldb/tools/ad2oLschema.c ret = process_convert(ldb, target, in, out);
out 619 source3/lib/ldb/tools/ad2oLschema.c fclose(out);
out 507 source3/lib/ldb/tools/oLschema2ldif.c ldb_ldif_write_file(ldb_ctx, out, &ldif);
out 531 source3/lib/ldb/tools/oLschema2ldif.c ldb_ldif_write_file(ldb_ctx, out, &ldif);
out 564 source3/lib/ldb/tools/oLschema2ldif.c FILE *out = stdout;
out 592 source3/lib/ldb/tools/oLschema2ldif.c out = fopen(options->output, "w");
out 593 source3/lib/ldb/tools/oLschema2ldif.c if (!out) {
out 599 source3/lib/ldb/tools/oLschema2ldif.c ret = process_file(in, out);
out 602 source3/lib/ldb/tools/oLschema2ldif.c fclose(out);
out 67 source3/lib/netapi/examples/dsgetdc/dsgetdc.c goto out;
out 73 source3/lib/netapi/examples/dsgetdc/dsgetdc.c goto out;
out 95 source3/lib/netapi/examples/dsgetdc/dsgetdc.c out:
out 59 source3/lib/netapi/examples/file/file_close.c goto out;
out 65 source3/lib/netapi/examples/file/file_close.c goto out;
out 75 source3/lib/netapi/examples/file/file_close.c goto out;
out 78 source3/lib/netapi/examples/file/file_close.c out:
out 69 source3/lib/netapi/examples/file/file_enum.c goto out;
out 75 source3/lib/netapi/examples/file/file_enum.c goto out;
out 81 source3/lib/netapi/examples/file/file_enum.c goto out;
out 139 source3/lib/netapi/examples/file/file_enum.c goto out;
out 141 source3/lib/netapi/examples/file/file_enum.c out:
out 64 source3/lib/netapi/examples/file/file_getinfo.c goto out;
out 70 source3/lib/netapi/examples/file/file_getinfo.c goto out;
out 87 source3/lib/netapi/examples/file/file_getinfo.c goto out;
out 107 source3/lib/netapi/examples/file/file_getinfo.c out:
out 61 source3/lib/netapi/examples/getdc/getdc.c goto out;
out 67 source3/lib/netapi/examples/getdc/getdc.c goto out;
out 80 source3/lib/netapi/examples/getdc/getdc.c out:
out 61 source3/lib/netapi/examples/group/group_add.c goto out;
out 67 source3/lib/netapi/examples/group/group_add.c goto out;
out 85 source3/lib/netapi/examples/group/group_add.c out:
out 60 source3/lib/netapi/examples/group/group_adduser.c goto out;
out 66 source3/lib/netapi/examples/group/group_adduser.c goto out;
out 72 source3/lib/netapi/examples/group/group_adduser.c goto out;
out 86 source3/lib/netapi/examples/group/group_adduser.c out:
out 59 source3/lib/netapi/examples/group/group_del.c goto out;
out 65 source3/lib/netapi/examples/group/group_del.c goto out;
out 77 source3/lib/netapi/examples/group/group_del.c out:
out 60 source3/lib/netapi/examples/group/group_deluser.c goto out;
out 66 source3/lib/netapi/examples/group/group_deluser.c goto out;
out 72 source3/lib/netapi/examples/group/group_deluser.c goto out;
out 86 source3/lib/netapi/examples/group/group_deluser.c out:
out 70 source3/lib/netapi/examples/group/group_enum.c goto out;
out 148 source3/lib/netapi/examples/group/group_enum.c out:
out 66 source3/lib/netapi/examples/group/group_getinfo.c goto out;
out 72 source3/lib/netapi/examples/group/group_getinfo.c goto out;
out 89 source3/lib/netapi/examples/group/group_getinfo.c goto out;
out 122 source3/lib/netapi/examples/group/group_getinfo.c out:
out 68 source3/lib/netapi/examples/group/group_getusers.c goto out;
out 74 source3/lib/netapi/examples/group/group_getusers.c goto out;
out 127 source3/lib/netapi/examples/group/group_getusers.c out:
out 69 source3/lib/netapi/examples/group/group_setinfo.c goto out;
out 75 source3/lib/netapi/examples/group/group_setinfo.c goto out;
out 81 source3/lib/netapi/examples/group/group_setinfo.c goto out;
out 87 source3/lib/netapi/examples/group/group_setinfo.c goto out;
out 134 source3/lib/netapi/examples/group/group_setinfo.c goto out;
out 137 source3/lib/netapi/examples/group/group_setinfo.c out:
out 68 source3/lib/netapi/examples/group/group_setusers.c goto out;
out 74 source3/lib/netapi/examples/group/group_setusers.c goto out;
out 80 source3/lib/netapi/examples/group/group_setusers.c goto out;
out 96 source3/lib/netapi/examples/group/group_setusers.c goto out;
out 112 source3/lib/netapi/examples/group/group_setusers.c goto out;
out 137 source3/lib/netapi/examples/group/group_setusers.c out:
out 67 source3/lib/netapi/examples/join/getjoinableous.c goto out;
out 89 source3/lib/netapi/examples/join/getjoinableous.c out:
out 74 source3/lib/netapi/examples/join/netdomjoin.c goto out;
out 80 source3/lib/netapi/examples/join/netdomjoin.c goto out;
out 99 source3/lib/netapi/examples/join/netdomjoin.c out:
out 59 source3/lib/netapi/examples/join/rename_machine.c goto out;
out 65 source3/lib/netapi/examples/join/rename_machine.c goto out;
out 81 source3/lib/netapi/examples/join/rename_machine.c out:
out 65 source3/lib/netapi/examples/localgroup/localgroup_add.c goto out;
out 71 source3/lib/netapi/examples/localgroup/localgroup_add.c goto out;
out 101 source3/lib/netapi/examples/localgroup/localgroup_add.c out:
out 66 source3/lib/netapi/examples/localgroup/localgroup_addmembers.c goto out;
out 72 source3/lib/netapi/examples/localgroup/localgroup_addmembers.c goto out;
out 78 source3/lib/netapi/examples/localgroup/localgroup_addmembers.c goto out;
out 93 source3/lib/netapi/examples/localgroup/localgroup_addmembers.c goto out;
out 99 source3/lib/netapi/examples/localgroup/localgroup_addmembers.c goto out;
out 111 source3/lib/netapi/examples/localgroup/localgroup_addmembers.c goto out;
out 136 source3/lib/netapi/examples/localgroup/localgroup_addmembers.c out:
out 59 source3/lib/netapi/examples/localgroup/localgroup_del.c goto out;
out 65 source3/lib/netapi/examples/localgroup/localgroup_del.c goto out;
out 78 source3/lib/netapi/examples/localgroup/localgroup_del.c out:
out 66 source3/lib/netapi/examples/localgroup/localgroup_delmembers.c goto out;
out 72 source3/lib/netapi/examples/localgroup/localgroup_delmembers.c goto out;
out 78 source3/lib/netapi/examples/localgroup/localgroup_delmembers.c goto out;
out 93 source3/lib/netapi/examples/localgroup/localgroup_delmembers.c goto out;
out 99 source3/lib/netapi/examples/localgroup/localgroup_delmembers.c goto out;
out 111 source3/lib/netapi/examples/localgroup/localgroup_delmembers.c goto out;
out 136 source3/lib/netapi/examples/localgroup/localgroup_delmembers.c out:
out 67 source3/lib/netapi/examples/localgroup/localgroup_enum.c goto out;
out 121 source3/lib/netapi/examples/localgroup/localgroup_enum.c out:
out 64 source3/lib/netapi/examples/localgroup/localgroup_getinfo.c goto out;
out 70 source3/lib/netapi/examples/localgroup/localgroup_getinfo.c goto out;
out 87 source3/lib/netapi/examples/localgroup/localgroup_getinfo.c goto out;
out 107 source3/lib/netapi/examples/localgroup/localgroup_getinfo.c out:
out 71 source3/lib/netapi/examples/localgroup/localgroup_getmembers.c goto out;
out 76 source3/lib/netapi/examples/localgroup/localgroup_getmembers.c goto out;
out 160 source3/lib/netapi/examples/localgroup/localgroup_getmembers.c out:
out 78 source3/lib/netapi/examples/localgroup/localgroup_setinfo.c goto out;
out 84 source3/lib/netapi/examples/localgroup/localgroup_setinfo.c goto out;
out 107 source3/lib/netapi/examples/localgroup/localgroup_setinfo.c goto out;
out 120 source3/lib/netapi/examples/localgroup/localgroup_setinfo.c goto out;
out 123 source3/lib/netapi/examples/localgroup/localgroup_setinfo.c out:
out 67 source3/lib/netapi/examples/localgroup/localgroup_setmembers.c goto out;
out 73 source3/lib/netapi/examples/localgroup/localgroup_setmembers.c goto out;
out 79 source3/lib/netapi/examples/localgroup/localgroup_setmembers.c goto out;
out 95 source3/lib/netapi/examples/localgroup/localgroup_setmembers.c goto out;
out 101 source3/lib/netapi/examples/localgroup/localgroup_setmembers.c goto out;
out 114 source3/lib/netapi/examples/localgroup/localgroup_setmembers.c goto out;
out 141 source3/lib/netapi/examples/localgroup/localgroup_setmembers.c out:
out 59 source3/lib/netapi/examples/server/remote_tod.c goto out;
out 78 source3/lib/netapi/examples/server/remote_tod.c out:
out 69 source3/lib/netapi/examples/server/server_getinfo.c goto out;
out 85 source3/lib/netapi/examples/server/server_getinfo.c goto out;
out 139 source3/lib/netapi/examples/server/server_getinfo.c out:
out 64 source3/lib/netapi/examples/share/share_add.c goto out;
out 70 source3/lib/netapi/examples/share/share_add.c goto out;
out 76 source3/lib/netapi/examples/share/share_add.c goto out;
out 102 source3/lib/netapi/examples/share/share_add.c goto out;
out 105 source3/lib/netapi/examples/share/share_add.c out:
out 59 source3/lib/netapi/examples/share/share_del.c goto out;
out 65 source3/lib/netapi/examples/share/share_del.c goto out;
out 77 source3/lib/netapi/examples/share/share_del.c goto out;
out 80 source3/lib/netapi/examples/share/share_del.c out:
out 68 source3/lib/netapi/examples/share/share_enum.c goto out;
out 137 source3/lib/netapi/examples/share/share_enum.c out:
out 67 source3/lib/netapi/examples/share/share_getinfo.c goto out;
out 73 source3/lib/netapi/examples/share/share_getinfo.c goto out;
out 90 source3/lib/netapi/examples/share/share_getinfo.c goto out;
out 147 source3/lib/netapi/examples/share/share_getinfo.c out:
out 65 source3/lib/netapi/examples/share/share_setinfo.c goto out;
out 71 source3/lib/netapi/examples/share/share_setinfo.c goto out;
out 97 source3/lib/netapi/examples/share/share_setinfo.c goto out;
out 100 source3/lib/netapi/examples/share/share_setinfo.c out:
out 58 source3/lib/netapi/examples/shutdown/shutdown_abort.c goto out;
out 68 source3/lib/netapi/examples/shutdown/shutdown_abort.c goto out;
out 71 source3/lib/netapi/examples/shutdown/shutdown_abort.c out:
out 60 source3/lib/netapi/examples/shutdown/shutdown_init.c goto out;
out 66 source3/lib/netapi/examples/shutdown/shutdown_init.c goto out;
out 72 source3/lib/netapi/examples/shutdown/shutdown_init.c goto out;
out 86 source3/lib/netapi/examples/shutdown/shutdown_init.c goto out;
out 89 source3/lib/netapi/examples/shutdown/shutdown_init.c out:
out 62 source3/lib/netapi/examples/user/user_add.c goto out;
out 68 source3/lib/netapi/examples/user/user_add.c goto out;
out 74 source3/lib/netapi/examples/user/user_add.c goto out;
out 98 source3/lib/netapi/examples/user/user_add.c out:
out 61 source3/lib/netapi/examples/user/user_chgpwd.c goto out;
out 67 source3/lib/netapi/examples/user/user_chgpwd.c goto out;
out 73 source3/lib/netapi/examples/user/user_chgpwd.c goto out;
out 79 source3/lib/netapi/examples/user/user_chgpwd.c goto out;
out 94 source3/lib/netapi/examples/user/user_chgpwd.c out:
out 59 source3/lib/netapi/examples/user/user_del.c goto out;
out 65 source3/lib/netapi/examples/user/user_del.c goto out;
out 77 source3/lib/netapi/examples/user/user_del.c out:
out 64 source3/lib/netapi/examples/user/user_dispinfo.c goto out;
out 95 source3/lib/netapi/examples/user/user_dispinfo.c out:
out 70 source3/lib/netapi/examples/user/user_enum.c goto out;
out 152 source3/lib/netapi/examples/user/user_enum.c out:
out 67 source3/lib/netapi/examples/user/user_getgroups.c goto out;
out 73 source3/lib/netapi/examples/user/user_getgroups.c goto out;
out 128 source3/lib/netapi/examples/user/user_getgroups.c out:
out 73 source3/lib/netapi/examples/user/user_getinfo.c goto out;
out 79 source3/lib/netapi/examples/user/user_getinfo.c goto out;
out 96 source3/lib/netapi/examples/user/user_getinfo.c goto out;
out 288 source3/lib/netapi/examples/user/user_getinfo.c out:
out 67 source3/lib/netapi/examples/user/user_getlocalgroups.c goto out;
out 73 source3/lib/netapi/examples/user/user_getlocalgroups.c goto out;
out 117 source3/lib/netapi/examples/user/user_getlocalgroups.c out:
out 66 source3/lib/netapi/examples/user/user_modalsget.c goto out;
out 82 source3/lib/netapi/examples/user/user_modalsget.c goto out;
out 126 source3/lib/netapi/examples/user/user_modalsget.c out:
out 74 source3/lib/netapi/examples/user/user_modalsset.c goto out;
out 134 source3/lib/netapi/examples/user/user_modalsset.c goto out;
out 137 source3/lib/netapi/examples/user/user_modalsset.c out:
out 68 source3/lib/netapi/examples/user/user_setgroups.c goto out;
out 74 source3/lib/netapi/examples/user/user_setgroups.c goto out;
out 80 source3/lib/netapi/examples/user/user_setgroups.c goto out;
out 96 source3/lib/netapi/examples/user/user_setgroups.c goto out;
out 112 source3/lib/netapi/examples/user/user_setgroups.c goto out;
out 138 source3/lib/netapi/examples/user/user_setgroups.c out:
out 87 source3/lib/netapi/examples/user/user_setinfo.c goto out;
out 93 source3/lib/netapi/examples/user/user_setinfo.c goto out;
out 99 source3/lib/netapi/examples/user/user_setinfo.c goto out;
out 105 source3/lib/netapi/examples/user/user_setinfo.c goto out;
out 199 source3/lib/netapi/examples/user/user_setinfo.c goto out;
out 202 source3/lib/netapi/examples/user/user_setinfo.c out:
out 119 source3/lib/netapi/file.c if (!r->out.buffer) {
out 151 source3/lib/netapi/file.c r->out.buffer,
out 185 source3/lib/netapi/file.c if (!r->out.buffer) {
out 224 source3/lib/netapi/file.c r->out.total_entries,
out 225 source3/lib/netapi/file.c r->out.resume_handle,
out 245 source3/lib/netapi/file.c r->out.buffer,
out 253 source3/lib/netapi/file.c if (r->out.entries_read) {
out 254 source3/lib/netapi/file.c *r->out.entries_read = num_entries;
out 257 source3/lib/netapi/file.c if (r->out.total_entries) {
out 258 source3/lib/netapi/file.c *r->out.total_entries = num_entries;
out 57 source3/lib/netapi/getdc.c (const char **)r->out.buffer,
out 97 source3/lib/netapi/getdc.c (const char **)r->out.buffer,
out 122 source3/lib/netapi/getdc.c (struct netr_DsRGetDCNameInfo **)r->out.dc_info);
out 156 source3/lib/netapi/getdc.c (struct netr_DsRGetDCNameInfo **)r->out.dc_info,
out 710 source3/lib/netapi/group.c r->out.buffer);
out 1188 source3/lib/netapi/group.c if (r->out.total_entries) {
out 1189 source3/lib/netapi/group.c *r->out.total_entries = domain_info->general.num_groups;
out 1208 source3/lib/netapi/group.c if (r->out.resume_handle && info.info3.count > 0) {
out 1209 source3/lib/netapi/group.c *r->out.resume_handle =
out 1217 source3/lib/netapi/group.c r->out.entries_read,
out 1218 source3/lib/netapi/group.c r->out.buffer);
out 1273 source3/lib/netapi/group.c if (!r->out.buffer) {
out 1277 source3/lib/netapi/group.c *r->out.buffer = NULL;
out 1278 source3/lib/netapi/group.c *r->out.entries_read = 0;
out 1279 source3/lib/netapi/group.c *r->out.total_entries = 0;
out 1360 source3/lib/netapi/group.c r->out.buffer,
out 1368 source3/lib/netapi/group.c *r->out.entries_read = entries_read;
out 1369 source3/lib/netapi/group.c *r->out.total_entries = entries_read;
out 87 source3/lib/netapi/joindomain.c if (!W_ERROR_IS_OK(werr) && j->out.error_string) {
out 88 source3/lib/netapi/joindomain.c libnetapi_set_error_string(mem_ctx, "%s", j->out.error_string);
out 213 source3/lib/netapi/joindomain.c if (!W_ERROR_IS_OK(werr) && u->out.error_string) {
out 214 source3/lib/netapi/joindomain.c libnetapi_set_error_string(mem_ctx, "%s", u->out.error_string);
out 289 source3/lib/netapi/joindomain.c (enum wkssvc_NetJoinStatus *)r->out.name_type,
out 296 source3/lib/netapi/joindomain.c *r->out.name_buffer = talloc_strdup(ctx, buffer);
out 297 source3/lib/netapi/joindomain.c W_ERROR_HAVE_NO_MEMORY(*r->out.name_buffer);
out 310 source3/lib/netapi/joindomain.c *r->out.name_buffer = talloc_strdup(ctx, lp_realm());
out 312 source3/lib/netapi/joindomain.c *r->out.name_buffer = talloc_strdup(ctx, lp_workgroup());
out 314 source3/lib/netapi/joindomain.c if (!*r->out.name_buffer) {
out 322 source3/lib/netapi/joindomain.c *r->out.name_type = NetSetupDomainName;
out 326 source3/lib/netapi/joindomain.c *r->out.name_type = NetSetupWorkgroupName;
out 384 source3/lib/netapi/joindomain.c (char ***)r->out.ous,
out 385 source3/lib/netapi/joindomain.c (size_t *)r->out.ou_count);
out 428 source3/lib/netapi/joindomain.c r->out.ou_count,
out 429 source3/lib/netapi/joindomain.c r->out.ous,
out 68 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 74 source3/lib/netapi/libnetapi.c return r.out.result;
out 114 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 120 source3/lib/netapi/libnetapi.c return r.out.result;
out 145 source3/lib/netapi/libnetapi.c r.out.name_buffer = name_buffer;
out 146 source3/lib/netapi/libnetapi.c r.out.name_type = name_type;
out 158 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 164 source3/lib/netapi/libnetapi.c return r.out.result;
out 195 source3/lib/netapi/libnetapi.c r.out.ou_count = ou_count;
out 196 source3/lib/netapi/libnetapi.c r.out.ous = ous;
out 208 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 214 source3/lib/netapi/libnetapi.c return r.out.result;
out 256 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 262 source3/lib/netapi/libnetapi.c return r.out.result;
out 288 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 300 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 306 source3/lib/netapi/libnetapi.c return r.out.result;
out 334 source3/lib/netapi/libnetapi.c r.out.parm_error = parm_error;
out 346 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 352 source3/lib/netapi/libnetapi.c return r.out.result;
out 378 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 390 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 396 source3/lib/netapi/libnetapi.c return r.out.result;
out 422 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 434 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 440 source3/lib/netapi/libnetapi.c return r.out.result;
out 472 source3/lib/netapi/libnetapi.c r.out.dc_info = dc_info;
out 484 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 490 source3/lib/netapi/libnetapi.c return r.out.result;
out 518 source3/lib/netapi/libnetapi.c r.out.parm_error = parm_error;
out 530 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 536 source3/lib/netapi/libnetapi.c return r.out.result;
out 572 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 578 source3/lib/netapi/libnetapi.c return r.out.result;
out 612 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 613 source3/lib/netapi/libnetapi.c r.out.entries_read = entries_read;
out 614 source3/lib/netapi/libnetapi.c r.out.total_entries = total_entries;
out 615 source3/lib/netapi/libnetapi.c r.out.resume_handle = resume_handle;
out 627 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 633 source3/lib/netapi/libnetapi.c return r.out.result;
out 673 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 679 source3/lib/netapi/libnetapi.c return r.out.result;
out 707 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 719 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 725 source3/lib/netapi/libnetapi.c return r.out.result;
out 755 source3/lib/netapi/libnetapi.c r.out.parm_err = parm_err;
out 767 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 773 source3/lib/netapi/libnetapi.c return r.out.result;
out 805 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 806 source3/lib/netapi/libnetapi.c r.out.entries_read = entries_read;
out 807 source3/lib/netapi/libnetapi.c r.out.total_entries = total_entries;
out 819 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 825 source3/lib/netapi/libnetapi.c return r.out.result;
out 867 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 873 source3/lib/netapi/libnetapi.c return r.out.result;
out 907 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 908 source3/lib/netapi/libnetapi.c r.out.entries_read = entries_read;
out 909 source3/lib/netapi/libnetapi.c r.out.total_entries = total_entries;
out 921 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 927 source3/lib/netapi/libnetapi.c return r.out.result;
out 953 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 965 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 971 source3/lib/netapi/libnetapi.c return r.out.result;
out 999 source3/lib/netapi/libnetapi.c r.out.parm_err = parm_err;
out 1011 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1017 source3/lib/netapi/libnetapi.c return r.out.result;
out 1050 source3/lib/netapi/libnetapi.c r.out.entries_read = entries_read;
out 1051 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 1063 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1069 source3/lib/netapi/libnetapi.c return r.out.result;
out 1097 source3/lib/netapi/libnetapi.c r.out.parm_err = parm_err;
out 1109 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1115 source3/lib/netapi/libnetapi.c return r.out.result;
out 1151 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1157 source3/lib/netapi/libnetapi.c return r.out.result;
out 1189 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 1190 source3/lib/netapi/libnetapi.c r.out.entries_read = entries_read;
out 1191 source3/lib/netapi/libnetapi.c r.out.total_entries = total_entries;
out 1192 source3/lib/netapi/libnetapi.c r.out.resume_handle = resume_handle;
out 1204 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1210 source3/lib/netapi/libnetapi.c return r.out.result;
out 1240 source3/lib/netapi/libnetapi.c r.out.parm_err = parm_err;
out 1252 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1258 source3/lib/netapi/libnetapi.c return r.out.result;
out 1286 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 1298 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1304 source3/lib/netapi/libnetapi.c return r.out.result;
out 1342 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1348 source3/lib/netapi/libnetapi.c return r.out.result;
out 1386 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1392 source3/lib/netapi/libnetapi.c return r.out.result;
out 1426 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 1427 source3/lib/netapi/libnetapi.c r.out.entries_read = entries_read;
out 1428 source3/lib/netapi/libnetapi.c r.out.total_entries = total_entries;
out 1429 source3/lib/netapi/libnetapi.c r.out.resume_handle = resume_handle;
out 1441 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1447 source3/lib/netapi/libnetapi.c return r.out.result;
out 1489 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1495 source3/lib/netapi/libnetapi.c return r.out.result;
out 1523 source3/lib/netapi/libnetapi.c r.out.parm_err = parm_err;
out 1535 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1541 source3/lib/netapi/libnetapi.c return r.out.result;
out 1577 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1583 source3/lib/netapi/libnetapi.c return r.out.result;
out 1611 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 1623 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1629 source3/lib/netapi/libnetapi.c return r.out.result;
out 1659 source3/lib/netapi/libnetapi.c r.out.parm_err = parm_err;
out 1671 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1677 source3/lib/netapi/libnetapi.c return r.out.result;
out 1709 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 1710 source3/lib/netapi/libnetapi.c r.out.entries_read = entries_read;
out 1711 source3/lib/netapi/libnetapi.c r.out.total_entries = total_entries;
out 1712 source3/lib/netapi/libnetapi.c r.out.resume_handle = resume_handle;
out 1724 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1730 source3/lib/netapi/libnetapi.c return r.out.result;
out 1772 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1778 source3/lib/netapi/libnetapi.c return r.out.result;
out 1820 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1826 source3/lib/netapi/libnetapi.c return r.out.result;
out 1860 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 1861 source3/lib/netapi/libnetapi.c r.out.entries_read = entries_read;
out 1862 source3/lib/netapi/libnetapi.c r.out.total_entries = total_entries;
out 1863 source3/lib/netapi/libnetapi.c r.out.resume_handle = resume_handle;
out 1875 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1881 source3/lib/netapi/libnetapi.c return r.out.result;
out 1923 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1929 source3/lib/netapi/libnetapi.c return r.out.result;
out 1953 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 1965 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 1971 source3/lib/netapi/libnetapi.c return r.out.result;
out 1999 source3/lib/netapi/libnetapi.c r.out.parm_err = parm_err;
out 2011 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 2017 source3/lib/netapi/libnetapi.c return r.out.result;
out 2055 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 2061 source3/lib/netapi/libnetapi.c return r.out.result;
out 2093 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 2094 source3/lib/netapi/libnetapi.c r.out.entries_read = entries_read;
out 2095 source3/lib/netapi/libnetapi.c r.out.total_entries = total_entries;
out 2096 source3/lib/netapi/libnetapi.c r.out.resume_handle = resume_handle;
out 2108 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 2114 source3/lib/netapi/libnetapi.c return r.out.result;
out 2142 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 2154 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 2160 source3/lib/netapi/libnetapi.c return r.out.result;
out 2190 source3/lib/netapi/libnetapi.c r.out.parm_err = parm_err;
out 2202 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 2208 source3/lib/netapi/libnetapi.c return r.out.result;
out 2244 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 2250 source3/lib/netapi/libnetapi.c return r.out.result;
out 2278 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 2290 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 2296 source3/lib/netapi/libnetapi.c return r.out.result;
out 2332 source3/lib/netapi/libnetapi.c r.out.buffer = buffer;
out 2333 source3/lib/netapi/libnetapi.c r.out.entries_read = entries_read;
out 2334 source3/lib/netapi/libnetapi.c r.out.total_entries = total_entries;
out 2335 source3/lib/netapi/libnetapi.c r.out.resume_handle = resume_handle;
out 2347 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 2353 source3/lib/netapi/libnetapi.c return r.out.result;
out 2395 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 2401 source3/lib/netapi/libnetapi.c return r.out.result;
out 2435 source3/lib/netapi/libnetapi.c r.out.result = W_ERROR_V(werr);
out 2441 source3/lib/netapi/libnetapi.c return r.out.result;
out 516 source3/lib/netapi/localgroup.c r->out.buffer);
out 733 source3/lib/netapi/localgroup.c if (!r->out.buffer) {
out 745 source3/lib/netapi/localgroup.c if (r->out.total_entries) {
out 746 source3/lib/netapi/localgroup.c *r->out.total_entries = 0;
out 748 source3/lib/netapi/localgroup.c if (r->out.entries_read) {
out 749 source3/lib/netapi/localgroup.c *r->out.entries_read = 0;
out 798 source3/lib/netapi/localgroup.c if (r->out.total_entries) {
out 799 source3/lib/netapi/localgroup.c *r->out.total_entries += builtin_info->general.num_aliases;
out 811 source3/lib/netapi/localgroup.c if (r->out.total_entries) {
out 812 source3/lib/netapi/localgroup.c *r->out.total_entries += domain_info->general.num_aliases;
out 847 source3/lib/netapi/localgroup.c r->out.entries_read,
out 848 source3/lib/netapi/localgroup.c r->out.buffer);
out 883 source3/lib/netapi/localgroup.c r->out.entries_read,
out 884 source3/lib/netapi/localgroup.c r->out.buffer);
out 76 source3/lib/netapi/serverinfo.c return NetServerGetInfo_l_101(ctx, r->out.buffer);
out 78 source3/lib/netapi/serverinfo.c return NetServerGetInfo_l_1005(ctx, r->out.buffer);
out 486 source3/lib/netapi/serverinfo.c if (!r->out.buffer) {
out 521 source3/lib/netapi/serverinfo.c r->out.buffer);
out 542 source3/lib/netapi/serverinfo.c *r->out.parm_error = 1005; /* sure here ? */
out 549 source3/lib/netapi/serverinfo.c *r->out.parm_error = 1005;
out 620 source3/lib/netapi/serverinfo.c r->out.parm_error,
out 658 source3/lib/netapi/serverinfo.c *r->out.buffer = (uint8_t *)talloc_memdup(ctx, info,
out 660 source3/lib/netapi/serverinfo.c W_ERROR_HAVE_NO_MEMORY(*r->out.buffer);
out 221 source3/lib/netapi/share.c r->out.parm_err,
out 299 source3/lib/netapi/share.c if (!r->out.buffer) {
out 344 source3/lib/netapi/share.c r->out.total_entries,
out 345 source3/lib/netapi/share.c r->out.resume_handle,
out 368 source3/lib/netapi/share.c r->out.buffer,
out 369 source3/lib/netapi/share.c r->out.entries_read);
out 400 source3/lib/netapi/share.c if (!r->in.net_name || !r->out.buffer) {
out 439 source3/lib/netapi/share.c r->out.buffer,
out 509 source3/lib/netapi/share.c r->out.parm_err,
out 58 source3/lib/netapi/tests/netapitest.c goto out;
out 64 source3/lib/netapi/tests/netapitest.c goto out;
out 69 source3/lib/netapi/tests/netapitest.c goto out;
out 74 source3/lib/netapi/tests/netapitest.c goto out;
out 79 source3/lib/netapi/tests/netapitest.c goto out;
out 84 source3/lib/netapi/tests/netapitest.c goto out;
out 89 source3/lib/netapi/tests/netapitest.c goto out;
out 94 source3/lib/netapi/tests/netapitest.c goto out;
out 97 source3/lib/netapi/tests/netapitest.c out:
out 136 source3/lib/netapi/tests/netdisplay.c goto out;
out 143 source3/lib/netapi/tests/netdisplay.c out:
out 113 source3/lib/netapi/tests/netfile.c goto out;
out 129 source3/lib/netapi/tests/netfile.c goto out;
out 138 source3/lib/netapi/tests/netfile.c out:
out 233 source3/lib/netapi/tests/netgroup.c goto out;
out 247 source3/lib/netapi/tests/netgroup.c goto out;
out 268 source3/lib/netapi/tests/netgroup.c goto out;
out 271 source3/lib/netapi/tests/netgroup.c out:
out 309 source3/lib/netapi/tests/netgroup.c goto out;
out 317 source3/lib/netapi/tests/netgroup.c goto out;
out 327 source3/lib/netapi/tests/netgroup.c goto out;
out 340 source3/lib/netapi/tests/netgroup.c goto out;
out 360 source3/lib/netapi/tests/netgroup.c goto out;
out 368 source3/lib/netapi/tests/netgroup.c goto out;
out 379 source3/lib/netapi/tests/netgroup.c goto out;
out 388 source3/lib/netapi/tests/netgroup.c goto out;
out 398 source3/lib/netapi/tests/netgroup.c goto out;
out 407 source3/lib/netapi/tests/netgroup.c goto out;
out 417 source3/lib/netapi/tests/netgroup.c goto out;
out 426 source3/lib/netapi/tests/netgroup.c goto out;
out 434 source3/lib/netapi/tests/netgroup.c goto out;
out 442 source3/lib/netapi/tests/netgroup.c goto out;
out 450 source3/lib/netapi/tests/netgroup.c goto out;
out 458 source3/lib/netapi/tests/netgroup.c goto out;
out 466 source3/lib/netapi/tests/netgroup.c goto out;
out 472 source3/lib/netapi/tests/netgroup.c goto out;
out 482 source3/lib/netapi/tests/netgroup.c goto out;
out 490 source3/lib/netapi/tests/netgroup.c goto out;
out 496 source3/lib/netapi/tests/netgroup.c out:
out 140 source3/lib/netapi/tests/netlocalgroup.c goto out;
out 150 source3/lib/netapi/tests/netlocalgroup.c goto out;
out 164 source3/lib/netapi/tests/netlocalgroup.c goto out;
out 177 source3/lib/netapi/tests/netlocalgroup.c goto out;
out 185 source3/lib/netapi/tests/netlocalgroup.c goto out;
out 194 source3/lib/netapi/tests/netlocalgroup.c goto out;
out 205 source3/lib/netapi/tests/netlocalgroup.c goto out;
out 213 source3/lib/netapi/tests/netlocalgroup.c goto out;
out 219 source3/lib/netapi/tests/netlocalgroup.c out:
out 47 source3/lib/netapi/tests/netserver.c goto out;
out 54 source3/lib/netapi/tests/netserver.c out:
out 153 source3/lib/netapi/tests/netshare.c goto out;
out 163 source3/lib/netapi/tests/netshare.c goto out;
out 176 source3/lib/netapi/tests/netshare.c goto out;
out 190 source3/lib/netapi/tests/netshare.c goto out;
out 196 source3/lib/netapi/tests/netshare.c goto out;
out 201 source3/lib/netapi/tests/netshare.c goto out;
out 211 source3/lib/netapi/tests/netshare.c goto out;
out 219 source3/lib/netapi/tests/netshare.c goto out;
out 225 source3/lib/netapi/tests/netshare.c out:
out 365 source3/lib/netapi/tests/netuser.c goto out;
out 375 source3/lib/netapi/tests/netuser.c goto out;
out 388 source3/lib/netapi/tests/netuser.c goto out;
out 399 source3/lib/netapi/tests/netuser.c goto out;
out 412 source3/lib/netapi/tests/netuser.c goto out;
out 421 source3/lib/netapi/tests/netuser.c goto out;
out 432 source3/lib/netapi/tests/netuser.c goto out;
out 440 source3/lib/netapi/tests/netuser.c goto out;
out 445 source3/lib/netapi/tests/netuser.c goto out;
out 451 source3/lib/netapi/tests/netuser.c out:
out 1195 source3/lib/netapi/user.c if (!r->out.buffer) {
out 1199 source3/lib/netapi/user.c *r->out.buffer = NULL;
out 1200 source3/lib/netapi/user.c *r->out.entries_read = 0;
out 1290 source3/lib/netapi/user.c r->out.buffer,
out 1291 source3/lib/netapi/user.c r->out.entries_read);
out 1502 source3/lib/netapi/user.c *r->out.entries_read = 0;
out 1553 source3/lib/netapi/user.c r->out.entries_read,
out 1554 source3/lib/netapi/user.c r->out.buffer);
out 1622 source3/lib/netapi/user.c if (!r->out.buffer) {
out 1691 source3/lib/netapi/user.c r->out.buffer,
out 2195 source3/lib/netapi/user.c if (!r->out.buffer) {
out 2244 source3/lib/netapi/user.c r->out.buffer);
out 2811 source3/lib/netapi/user.c if (!r->out.buffer) {
out 2815 source3/lib/netapi/user.c *r->out.buffer = NULL;
out 2816 source3/lib/netapi/user.c *r->out.entries_read = 0;
out 2817 source3/lib/netapi/user.c *r->out.total_entries = 0;
out 2903 source3/lib/netapi/user.c r->out.buffer,
out 2911 source3/lib/netapi/user.c *r->out.entries_read = entries_read;
out 2912 source3/lib/netapi/user.c *r->out.total_entries = entries_read;
out 3244 source3/lib/netapi/user.c if (!r->out.buffer) {
out 3248 source3/lib/netapi/user.c *r->out.buffer = NULL;
out 3249 source3/lib/netapi/user.c *r->out.entries_read = 0;
out 3250 source3/lib/netapi/user.c *r->out.total_entries = 0;
out 3403 source3/lib/netapi/user.c r->out.buffer,
out 3411 source3/lib/netapi/user.c *r->out.entries_read = entries_read;
out 3412 source3/lib/netapi/user.c *r->out.total_entries = entries_read;
out 24 source3/lib/packet.c DATA_BLOB in, out;
out 168 source3/lib/packet.c return ctx->out.length;
out 178 source3/lib/packet.c sent = send(ctx->fd, ctx->out.data, ctx->out.length, 0);
out 185 source3/lib/packet.c memmove(ctx->out.data, ctx->out.data + sent,
out 186 source3/lib/packet.c ctx->out.length - sent);
out 187 source3/lib/packet.c ctx->out.length -= sent;
out 197 source3/lib/packet.c while (ctx->out.length != 0) {
out 217 source3/lib/packet.c uint8 *out;
out 219 source3/lib/packet.c len = ctx->out.length;
out 240 source3/lib/packet.c if (!(out = TALLOC_REALLOC_ARRAY(ctx, ctx->out.data, uint8, len))) {
out 245 source3/lib/packet.c ctx->out.data = out;
out 251 source3/lib/packet.c memcpy(ctx->out.data+ctx->out.length, blob.data, blob.length);
out 252 source3/lib/packet.c ctx->out.length += blob.length;
out 256 source3/lib/packet.c SMB_ASSERT(ctx->out.length == len);
out 221 source3/lib/sharesec.c goto out;
out 226 source3/lib/sharesec.c goto out;
out 234 source3/lib/sharesec.c goto out;
out 240 source3/lib/sharesec.c out:
out 44 source3/lib/tdb_validate.c goto out;
out 51 source3/lib/tdb_validate.c goto out;
out 60 source3/lib/tdb_validate.c goto out;
out 64 source3/lib/tdb_validate.c goto out;
out 71 source3/lib/tdb_validate.c out:
out 401 source3/libads/authdata.c goto out;
out 436 source3/libads/authdata.c goto out;
out 451 source3/libads/authdata.c goto out;
out 457 source3/libads/authdata.c goto out;
out 462 source3/libads/authdata.c out:
out 178 source3/libads/kerberos.c goto out;
out 190 source3/libads/kerberos.c goto out;
out 194 source3/libads/kerberos.c goto out;
out 198 source3/libads/kerberos.c goto out;
out 211 source3/libads/kerberos.c goto out;
out 217 source3/libads/kerberos.c goto out;
out 225 source3/libads/kerberos.c goto out;
out 229 source3/libads/kerberos.c goto out;
out 233 source3/libads/kerberos.c goto out;
out 243 source3/libads/kerberos.c out:
out 495 source3/libads/kerberos.c goto out;
out 500 source3/libads/kerberos.c goto out;
out 512 source3/libads/kerberos.c out:
out 594 source3/libads/kerberos.c goto out;
out 598 source3/libads/kerberos.c goto out;
out 603 source3/libads/kerberos.c goto out;
out 607 source3/libads/kerberos.c goto out;
out 613 source3/libads/kerberos.c goto out;
out 622 source3/libads/kerberos.c out:
out 57 source3/libads/kerberos_keytab.c goto out;
out 71 source3/libads/kerberos_keytab.c goto out;
out 108 source3/libads/kerberos_keytab.c goto out;
out 114 source3/libads/kerberos_keytab.c goto out;
out 124 source3/libads/kerberos_keytab.c goto out;
out 131 source3/libads/kerberos_keytab.c goto out;
out 142 source3/libads/kerberos_keytab.c goto out;
out 150 source3/libads/kerberos_keytab.c goto out;
out 180 source3/libads/kerberos_keytab.c goto out;
out 185 source3/libads/kerberos_keytab.c out:
out 257 source3/libads/kerberos_keytab.c goto out;
out 264 source3/libads/kerberos_keytab.c goto out;
out 270 source3/libads/kerberos_keytab.c goto out;
out 281 source3/libads/kerberos_keytab.c goto out;
out 287 source3/libads/kerberos_keytab.c goto out;
out 293 source3/libads/kerberos_keytab.c goto out;
out 304 source3/libads/kerberos_keytab.c goto out;
out 310 source3/libads/kerberos_keytab.c goto out;
out 319 source3/libads/kerberos_keytab.c goto out;
out 323 source3/libads/kerberos_keytab.c goto out;
out 336 source3/libads/kerberos_keytab.c goto out;
out 345 source3/libads/kerberos_keytab.c goto out;
out 353 source3/libads/kerberos_keytab.c goto out;
out 362 source3/libads/kerberos_keytab.c goto out;
out 366 source3/libads/kerberos_keytab.c out:
out 406 source3/libads/kerberos_keytab.c goto out;
out 412 source3/libads/kerberos_keytab.c goto out;
out 422 source3/libads/kerberos_keytab.c goto out;
out 427 source3/libads/kerberos_keytab.c goto out;
out 432 source3/libads/kerberos_keytab.c goto out;
out 438 source3/libads/kerberos_keytab.c goto out;
out 449 source3/libads/kerberos_keytab.c goto out;
out 452 source3/libads/kerberos_keytab.c out:
out 716 source3/libads/kerberos_keytab.c goto out;
out 721 source3/libads/kerberos_keytab.c goto out;
out 734 source3/libads/kerberos_keytab.c goto out;
out 744 source3/libads/kerberos_keytab.c goto out;
out 755 source3/libads/kerberos_keytab.c goto out;
out 761 source3/libads/kerberos_keytab.c goto out;
out 767 source3/libads/kerberos_keytab.c out:
out 62 source3/libads/kerberos_verify.c goto out;
out 72 source3/libads/kerberos_verify.c goto out;
out 88 source3/libads/kerberos_verify.c goto out;
out 97 source3/libads/kerberos_verify.c goto out;
out 104 source3/libads/kerberos_verify.c out:
out 154 source3/libads/kerberos_verify.c goto out;
out 157 source3/libads/kerberos_verify.c goto out;
out 160 source3/libads/kerberos_verify.c goto out;
out 163 source3/libads/kerberos_verify.c goto out;
out 166 source3/libads/kerberos_verify.c goto out;
out 169 source3/libads/kerberos_verify.c goto out;
out 172 source3/libads/kerberos_verify.c goto out;
out 181 source3/libads/kerberos_verify.c goto out;
out 191 source3/libads/kerberos_verify.c goto out;
out 199 source3/libads/kerberos_verify.c goto out;
out 255 source3/libads/kerberos_verify.c out:
out 354 source3/libads/kerberos_verify.c goto out;
out 391 source3/libads/kerberos_verify.c out:
out 453 source3/libads/kerberos_verify.c goto out;
out 463 source3/libads/kerberos_verify.c goto out;
out 474 source3/libads/kerberos_verify.c goto out;
out 482 source3/libads/kerberos_verify.c goto out;
out 498 source3/libads/kerberos_verify.c goto out;
out 510 source3/libads/kerberos_verify.c goto out;
out 517 source3/libads/kerberos_verify.c goto out;
out 577 source3/libads/kerberos_verify.c goto out;
out 587 source3/libads/kerberos_verify.c goto out;
out 643 source3/libads/kerberos_verify.c goto out;
out 648 source3/libads/kerberos_verify.c out:
out 220 source3/libads/ldap.c goto out;
out 229 source3/libads/ldap.c goto out;
out 262 source3/libads/ldap.c goto out;
out 270 source3/libads/ldap.c out:
out 616 source3/libads/ldap.c goto out;
out 658 source3/libads/ldap.c goto out;
out 664 source3/libads/ldap.c goto out;
out 673 source3/libads/ldap.c goto out;
out 688 source3/libads/ldap.c goto out;
out 696 source3/libads/ldap.c goto out;
out 703 source3/libads/ldap.c goto out;
out 708 source3/libads/ldap.c goto out;
out 713 source3/libads/ldap.c out:
out 1634 source3/libads/ldap.c goto out;
out 1638 source3/libads/ldap.c goto out;
out 1644 source3/libads/ldap.c goto out;
out 1649 source3/libads/ldap.c goto out;
out 1654 source3/libads/ldap.c goto out;
out 1666 source3/libads/ldap.c goto out;
out 1674 source3/libads/ldap.c goto out;
out 1681 source3/libads/ldap.c goto out;
out 1685 source3/libads/ldap.c out:
out 1916 source3/libads/ldap.c goto out;
out 1927 source3/libads/ldap.c goto out;
out 1933 source3/libads/ldap.c goto out;
out 1938 source3/libads/ldap.c goto out;
out 1944 source3/libads/ldap.c goto out;
out 1947 source3/libads/ldap.c out:
out 3321 source3/libads/ldap.c goto out;
out 3326 source3/libads/ldap.c goto out;
out 3333 source3/libads/ldap.c out:
out 3353 source3/libads/ldap.c goto out;
out 3358 source3/libads/ldap.c goto out;
out 3365 source3/libads/ldap.c out:
out 3385 source3/libads/ldap.c goto out;
out 3390 source3/libads/ldap.c goto out;
out 3397 source3/libads/ldap.c out:
out 3709 source3/libads/ldap.c goto out;
out 3717 source3/libads/ldap.c goto out;
out 3722 source3/libads/ldap.c goto out;
out 3728 source3/libads/ldap.c goto out;
out 3733 source3/libads/ldap.c goto out;
out 3744 source3/libads/ldap.c goto out;
out 3747 source3/libads/ldap.c out:
out 70 source3/libads/ldap_schema.c goto out;
out 75 source3/libads/ldap_schema.c goto out;
out 79 source3/libads/ldap_schema.c goto out;
out 91 source3/libads/ldap_schema.c goto out;
out 99 source3/libads/ldap_schema.c goto out;
out 103 source3/libads/ldap_schema.c out:
out 107 source3/libads/ndr.c ndr_print_uint32(ndr, "ofs", r->ldap.out.ofs);
out 108 source3/libads/ndr.c ndr_print_uint32(ndr, "left", r->ldap.out.left);
out 109 source3/libads/ndr.c ndr_print_uint32(ndr, "max_unwrapped", r->ldap.out.max_unwrapped);
out 110 source3/libads/ndr.c ndr_print_uint32(ndr, "sig_size", r->ldap.out.sig_size);
out 111 source3/libads/ndr.c ndr_print_uint32(ndr, "size", r->ldap.out.size);
out 112 source3/libads/ndr.c ndr_print_array_uint8(ndr, "buf", r->ldap.out.buf, r->ldap.out.size);
out 31 source3/libads/sasl.c uint8 *dptr = ads->ldap.out.buf + (4 + NTLMSSP_SIG_SIZE);
out 52 source3/libads/sasl.c memcpy(ads->ldap.out.buf + 4,
out 58 source3/libads/sasl.c ads->ldap.out.left = 4 + NTLMSSP_SIG_SIZE + len;
out 250 source3/libads/sasl.c ads->ldap.out.max_unwrapped = ADS_SASL_WRAPPING_OUT_MAX_WRAPPED - NTLMSSP_SIG_SIZE;
out 251 source3/libads/sasl.c ads->ldap.out.sig_size = NTLMSSP_SIG_SIZE;
out 252 source3/libads/sasl.c ads->ldap.in.min_wrapped = ads->ldap.out.sig_size;
out 295 source3/libads/sasl.c if ((ads->ldap.out.size - 4) < wrapped.length) {
out 300 source3/libads/sasl.c memcpy(ads->ldap.out.buf + 4, wrapped.value, wrapped.length);
out 303 source3/libads/sasl.c ads->ldap.out.left = 4 + wrapped.length;
out 581 source3/libads/sasl.c max_msg_size, &ads->ldap.out.max_unwrapped);
out 587 source3/libads/sasl.c ads->ldap.out.sig_size = max_msg_size - ads->ldap.out.max_unwrapped;
out 1012 source3/libads/sasl.c max_msg_size, &ads->ldap.out.max_unwrapped);
out 1018 source3/libads/sasl.c ads->ldap.out.sig_size = max_msg_size - ads->ldap.out.max_unwrapped;
out 175 source3/libads/sasl_wrapping.c ads->ldap.out.ofs = 0;
out 176 source3/libads/sasl_wrapping.c ads->ldap.out.left = 0;
out 177 source3/libads/sasl_wrapping.c ads->ldap.out.size = 4 + ads->ldap.out.sig_size + len;
out 178 source3/libads/sasl_wrapping.c ads->ldap.out.buf = talloc_array(ads->ldap.mem_ctx,
out 179 source3/libads/sasl_wrapping.c uint8, ads->ldap.out.size);
out 180 source3/libads/sasl_wrapping.c if (!ads->ldap.out.buf) {
out 189 source3/libads/sasl_wrapping.c talloc_free(ads->ldap.out.buf);
out 191 source3/libads/sasl_wrapping.c ads->ldap.out.buf = NULL;
out 192 source3/libads/sasl_wrapping.c ads->ldap.out.size = 0;
out 193 source3/libads/sasl_wrapping.c ads->ldap.out.ofs = 0;
out 194 source3/libads/sasl_wrapping.c ads->ldap.out.left = 0;
out 203 source3/libads/sasl_wrapping.c if (ads->ldap.out.left == 0) {
out 211 source3/libads/sasl_wrapping.c rlen = MIN(len, ads->ldap.out.max_unwrapped);
out 222 source3/libads/sasl_wrapping.c RSIVAL(ads->ldap.out.buf, 0, ads->ldap.out.left - 4);
out 228 source3/libads/sasl_wrapping.c ads->ldap.out.buf + ads->ldap.out.ofs,
out 229 source3/libads/sasl_wrapping.c ads->ldap.out.left);
out 231 source3/libads/sasl_wrapping.c ads->ldap.out.ofs += ret;
out 232 source3/libads/sasl_wrapping.c ads->ldap.out.left -= ret;
out 234 source3/libads/sasl_wrapping.c if (ads->ldap.out.left == 0) {
out 567 source3/libgpo/gpext/gpext.c goto out;
out 575 source3/libgpo/gpext/gpext.c goto out;
out 582 source3/libgpo/gpext/gpext.c goto out;
out 599 source3/libgpo/gpext/gpext.c goto out;
out 610 source3/libgpo/gpext/gpext.c goto out;
out 617 source3/libgpo/gpext/gpext.c out:
out 421 source3/libgpo/gpext/registry.c goto out;
out 426 source3/libgpo/gpext/registry.c goto out;
out 433 source3/libgpo/gpext/registry.c goto out;
out 438 source3/libgpo/gpext/registry.c goto out;
out 443 source3/libgpo/gpext/registry.c goto out;
out 449 source3/libgpo/gpext/registry.c goto out;
out 457 source3/libgpo/gpext/registry.c out:
out 159 source3/libgpo/gpext/security.c goto out;
out 164 source3/libgpo/gpext/security.c goto out;
out 169 source3/libgpo/gpext/security.c goto out;
out 172 source3/libgpo/gpext/security.c out:
out 51 source3/libgpo/gpo_filesync.c goto out;
out 56 source3/libgpo/gpo_filesync.c goto out;
out 61 source3/libgpo/gpo_filesync.c goto out;
out 80 source3/libgpo/gpo_filesync.c out:
out 69 source3/libgpo/gpo_ini.c goto out;
out 76 source3/libgpo/gpo_ini.c goto out;
out 82 source3/libgpo/gpo_ini.c goto out;
out 89 source3/libgpo/gpo_ini.c goto out;
out 107 source3/libgpo/gpo_ini.c goto out;
out 114 source3/libgpo/gpo_ini.c out:
out 223 source3/libgpo/gpo_ini.c goto out;
out 231 source3/libgpo/gpo_ini.c goto out;
out 239 source3/libgpo/gpo_ini.c out:
out 633 source3/libgpo/gpo_util.c goto out;
out 645 source3/libgpo/gpo_util.c goto out;
out 674 source3/libgpo/gpo_util.c goto out;
out 682 source3/libgpo/gpo_util.c goto out;
out 693 source3/libgpo/gpo_util.c goto out;
out 714 source3/libgpo/gpo_util.c out:
out 741 source3/libgpo/gpo_util.c goto out;
out 747 source3/libgpo/gpo_util.c out:
out 502 source3/libnet/libnet_dssync.c goto out;
out 531 source3/libnet/libnet_dssync.c goto out;
out 536 source3/libnet/libnet_dssync.c goto out;
out 613 source3/libnet/libnet_dssync.c goto out;
out 628 source3/libnet/libnet_dssync.c goto out;
out 635 source3/libnet/libnet_dssync.c out:
out 658 source3/libnet/libnet_dssync.c goto out;
out 678 source3/libnet/libnet_dssync.c goto out;
out 687 source3/libnet/libnet_dssync.c goto out;
out 697 source3/libnet/libnet_dssync.c goto out;
out 701 source3/libnet/libnet_dssync.c out:
out 721 source3/libnet/libnet_dssync.c goto out;
out 726 source3/libnet/libnet_dssync.c goto out;
out 729 source3/libnet/libnet_dssync.c out:
out 573 source3/libnet/libnet_dssync_keytab.c goto out;
out 577 source3/libnet/libnet_dssync_keytab.c out:
out 62 source3/libnet/libnet_join.c if (r->out.error_string) {
out 67 source3/libnet/libnet_join.c r->out.error_string = talloc_vasprintf(mem_ctx, format, args);
out 80 source3/libnet/libnet_join.c if (r->out.error_string) {
out 85 source3/libnet/libnet_join.c r->out.error_string = talloc_vasprintf(mem_ctx, format, args);
out 139 source3/libnet/libnet_join.c status = libnet_connect_ads(r->out.dns_domain_name,
out 140 source3/libnet/libnet_join.c r->out.netbios_domain_name,
out 152 source3/libnet/libnet_join.c if (!r->out.netbios_domain_name) {
out 153 source3/libnet/libnet_join.c r->out.netbios_domain_name = talloc_strdup(mem_ctx,
out 155 source3/libnet/libnet_join.c ADS_ERROR_HAVE_NO_MEMORY(r->out.netbios_domain_name);
out 158 source3/libnet/libnet_join.c if (!r->out.dns_domain_name) {
out 159 source3/libnet/libnet_join.c r->out.dns_domain_name = talloc_strdup(mem_ctx,
out 161 source3/libnet/libnet_join.c ADS_ERROR_HAVE_NO_MEMORY(r->out.dns_domain_name);
out 164 source3/libnet/libnet_join.c r->out.domain_is_ad = true;
out 312 source3/libnet/libnet_join.c r->out.dn = talloc_strdup(mem_ctx, dn);
out 313 source3/libnet/libnet_join.c if (!r->out.dn) {
out 357 source3/libnet/libnet_join.c r->out.dns_domain_name);
out 388 source3/libnet/libnet_join.c return ads_gen_mod(r->in.ads, r->out.dn, mods);
out 415 source3/libnet/libnet_join.c r->out.dns_domain_name);
out 435 source3/libnet/libnet_join.c return ads_gen_mod(r->in.ads, r->out.dn, mods);
out 492 source3/libnet/libnet_join.c return ads_gen_mod(r->in.ads, r->out.dn, mods);
out 625 source3/libnet/libnet_join.c if (!secrets_store_domain_sid(r->out.netbios_domain_name,
out 626 source3/libnet/libnet_join.c r->out.domain_sid))
out 633 source3/libnet/libnet_join.c r->out.netbios_domain_name,
out 715 source3/libnet/libnet_join.c r->out.domain_is_ad = true;
out 716 source3/libnet/libnet_join.c r->out.netbios_domain_name = info->dns.name.string;
out 717 source3/libnet/libnet_join.c r->out.dns_domain_name = info->dns.dns_domain.string;
out 718 source3/libnet/libnet_join.c r->out.forest_name = info->dns.dns_forest.string;
out 719 source3/libnet/libnet_join.c r->out.domain_sid = sid_dup_talloc(mem_ctx, info->dns.sid);
out 720 source3/libnet/libnet_join.c NT_STATUS_HAVE_NO_MEMORY(r->out.domain_sid);
out 732 source3/libnet/libnet_join.c r->out.netbios_domain_name = info->account_domain.name.string;
out 733 source3/libnet/libnet_join.c r->out.domain_sid = sid_dup_talloc(mem_ctx, info->account_domain.sid);
out 734 source3/libnet/libnet_join.c NT_STATUS_HAVE_NO_MEMORY(r->out.domain_sid);
out 799 source3/libnet/libnet_join.c r->out.domain_sid,
out 900 source3/libnet/libnet_join.c if (r->out.domain_is_ad) {
out 1098 source3/libnet/libnet_join.c status = libnet_join_ok(r->out.netbios_domain_name,
out 1292 source3/libnet/libnet_join.c r->out.netbios_domain_name);
out 1295 source3/libnet/libnet_join.c if (r->out.domain_is_ad) {
out 1300 source3/libnet/libnet_join.c r->out.dns_domain_name);
out 1345 source3/libnet/libnet_join.c if (!W_ERROR_IS_OK(r->out.result)) {
out 1346 source3/libnet/libnet_join.c return r->out.result;
out 1360 source3/libnet/libnet_join.c r->out.modified_config = true;
out 1361 source3/libnet/libnet_join.c r->out.result = werr;
out 1373 source3/libnet/libnet_join.c if (!W_ERROR_IS_OK(r->out.result)) {
out 1374 source3/libnet/libnet_join.c return r->out.result;
out 1388 source3/libnet/libnet_join.c r->out.modified_config = true;
out 1389 source3/libnet/libnet_join.c r->out.result = werr;
out 1508 source3/libnet/libnet_join.c if (!W_ERROR_IS_OK(r->out.result)) {
out 1509 source3/libnet/libnet_join.c return r->out.result;
out 1521 source3/libnet/libnet_join.c saf_join_store(r->out.netbios_domain_name, r->in.dc_name);
out 1522 source3/libnet/libnet_join.c if (r->out.dns_domain_name) {
out 1523 source3/libnet/libnet_join.c saf_join_store(r->out.dns_domain_name, r->in.dc_name);
out 1527 source3/libnet/libnet_join.c if (r->out.domain_is_ad) {
out 1537 source3/libnet/libnet_join.c libnet_join_add_dom_rids_to_builtins(r->out.domain_sid);
out 1656 source3/libnet/libnet_join.c valid_workgroup = strequal(lp_workgroup(), r->out.netbios_domain_name);
out 1658 source3/libnet/libnet_join.c switch (r->out.domain_is_ad) {
out 1667 source3/libnet/libnet_join.c valid_realm = strequal(lp_realm(), r->out.dns_domain_name);
out 1690 source3/libnet/libnet_join.c lp_workgroup(), r->out.netbios_domain_name);
out 1697 source3/libnet/libnet_join.c lp_realm(), r->out.dns_domain_name);
out 1711 source3/libnet/libnet_join.c sec, r->out.domain_is_ad ?
out 1787 source3/libnet/libnet_join.c if (r->out.domain_is_ad && r->in.account_ou) {
out 1900 source3/libnet/libnet_join.c r->out.result = werr;
out 1968 source3/libnet/libnet_join.c r->out.dns_domain_name =
out 1979 source3/libnet/libnet_join.c r->out.deleted_machine_account = true;
out 1980 source3/libnet/libnet_join.c W_ERROR_HAVE_NO_MEMORY(r->out.dns_domain_name);
out 2001 source3/libnet/libnet_join.c r->out.disabled_machine_account = true;
out 2051 source3/libnet/libnet_join.c saf_delete(r->out.netbios_domain_name);
out 2052 source3/libnet/libnet_join.c saf_delete(r->out.dns_domain_name);
out 2088 source3/libnet/libnet_join.c r->out.result = werr;
out 420 source3/libnet/libnet_samsync.c goto out;
out 427 source3/libnet/libnet_samsync.c out:
out 195 source3/libnet/libnet_samsync_keytab.c goto out;
out 198 source3/libnet/libnet_samsync_keytab.c out:
out 46 source3/librpc/gen_ndr/libnet_join.h } out;
out 79 source3/librpc/gen_ndr/libnet_join.h } out;
out 1311 source3/librpc/gen_ndr/libnetapi.h } out;
out 1326 source3/librpc/gen_ndr/libnetapi.h } out;
out 1340 source3/librpc/gen_ndr/libnetapi.h } out;
out 1357 source3/librpc/gen_ndr/libnetapi.h } out;
out 1373 source3/librpc/gen_ndr/libnetapi.h } out;
out 1387 source3/librpc/gen_ndr/libnetapi.h } out;
out 1402 source3/librpc/gen_ndr/libnetapi.h } out;
out 1416 source3/librpc/gen_ndr/libnetapi.h } out;
out 1430 source3/librpc/gen_ndr/libnetapi.h } out;
out 1447 source3/librpc/gen_ndr/libnetapi.h } out;
out 1462 source3/librpc/gen_ndr/libnetapi.h } out;
out 1475 source3/librpc/gen_ndr/libnetapi.h } out;
out 1495 source3/librpc/gen_ndr/libnetapi.h } out;
out 1510 source3/librpc/gen_ndr/libnetapi.h } out;
out 1525 source3/librpc/gen_ndr/libnetapi.h } out;
out 1541 source3/librpc/gen_ndr/libnetapi.h } out;
out 1559 source3/librpc/gen_ndr/libnetapi.h } out;
out 1575 source3/librpc/gen_ndr/libnetapi.h } out;
out 1594 source3/librpc/gen_ndr/libnetapi.h } out;
out 1608 source3/librpc/gen_ndr/libnetapi.h } out;
out 1623 source3/librpc/gen_ndr/libnetapi.h } out;
out 1641 source3/librpc/gen_ndr/libnetapi.h } out;
out 1656 source3/librpc/gen_ndr/libnetapi.h } out;
out 1669 source3/librpc/gen_ndr/libnetapi.h } out;
out 1688 source3/librpc/gen_ndr/libnetapi.h } out;
out 1704 source3/librpc/gen_ndr/libnetapi.h } out;
out 1719 source3/librpc/gen_ndr/libnetapi.h } out;
out 1733 source3/librpc/gen_ndr/libnetapi.h } out;
out 1747 source3/librpc/gen_ndr/libnetapi.h } out;
out 1767 source3/librpc/gen_ndr/libnetapi.h } out;
out 1783 source3/librpc/gen_ndr/libnetapi.h } out;
out 1798 source3/librpc/gen_ndr/libnetapi.h } out;
out 1811 source3/librpc/gen_ndr/libnetapi.h } out;
out 1826 source3/librpc/gen_ndr/libnetapi.h } out;
out 1842 source3/librpc/gen_ndr/libnetapi.h } out;
out 1861 source3/librpc/gen_ndr/libnetapi.h } out;
out 1877 source3/librpc/gen_ndr/libnetapi.h } out;
out 1893 source3/librpc/gen_ndr/libnetapi.h } out;
out 1913 source3/librpc/gen_ndr/libnetapi.h } out;
out 1929 source3/librpc/gen_ndr/libnetapi.h } out;
out 1942 source3/librpc/gen_ndr/libnetapi.h } out;
out 1957 source3/librpc/gen_ndr/libnetapi.h } out;
out 1971 source3/librpc/gen_ndr/libnetapi.h } out;
out 1990 source3/librpc/gen_ndr/libnetapi.h } out;
out 2005 source3/librpc/gen_ndr/libnetapi.h } out;
out 2021 source3/librpc/gen_ndr/libnetapi.h } out;
out 2034 source3/librpc/gen_ndr/libnetapi.h } out;
out 2049 source3/librpc/gen_ndr/libnetapi.h } out;
out 2070 source3/librpc/gen_ndr/libnetapi.h } out;
out 2086 source3/librpc/gen_ndr/libnetapi.h } out;
out 2098 source3/librpc/gen_ndr/libnetapi.h } out;
out 51 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_string(ndr, "account_name", r->out.account_name);
out 52 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_string(ndr, "netbios_domain_name", r->out.netbios_domain_name);
out 53 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_string(ndr, "dns_domain_name", r->out.dns_domain_name);
out 54 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_string(ndr, "forest_name", r->out.forest_name);
out 55 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_string(ndr, "dn", r->out.dn);
out 56 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_ptr(ndr, "domain_sid", r->out.domain_sid);
out 58 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_dom_sid(ndr, "domain_sid", r->out.domain_sid);
out 60 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_uint8(ndr, "modified_config", r->out.modified_config);
out 61 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_string(ndr, "error_string", r->out.error_string);
out 62 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_uint8(ndr, "domain_is_ad", r->out.domain_is_ad);
out 63 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_WERROR(ndr, "result", r->out.result);
out 109 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_string(ndr, "netbios_domain_name", r->out.netbios_domain_name);
out 110 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_string(ndr, "dns_domain_name", r->out.dns_domain_name);
out 111 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_string(ndr, "forest_name", r->out.forest_name);
out 112 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_uint8(ndr, "modified_config", r->out.modified_config);
out 113 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_string(ndr, "error_string", r->out.error_string);
out 114 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_uint8(ndr, "disabled_machine_account", r->out.disabled_machine_account);
out 115 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_uint8(ndr, "deleted_machine_account", r->out.deleted_machine_account);
out 116 source3/librpc/gen_ndr/ndr_libnet_join.c ndr_print_WERROR(ndr, "result", r->out.result);
out 5895 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 5935 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 5962 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "name_buffer", r->out.name_buffer);
out 5964 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "name_buffer", *r->out.name_buffer);
out 5966 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.name_buffer) {
out 5967 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_string(ndr, "name_buffer", *r->out.name_buffer);
out 5971 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "name_type", r->out.name_type);
out 5973 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint16(ndr, "name_type", *r->out.name_type);
out 5975 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6018 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "ou_count", r->out.ou_count);
out 6020 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "ou_count", *r->out.ou_count);
out 6022 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "ous", r->out.ous);
out 6024 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "ous", *r->out.ous);
out 6026 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.ous) {
out 6027 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "ous", **r->out.ous);
out 6029 source3/librpc/gen_ndr/ndr_libnetapi.c if (**r->out.ous) {
out 6030 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_string(ndr, "ous", **r->out.ous);
out 6036 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6062 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6090 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6092 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 6094 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 6095 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 6099 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6131 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "parm_error", r->out.parm_error);
out 6133 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "parm_error", *r->out.parm_error);
out 6135 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6168 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6170 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 6172 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 6173 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 6177 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6210 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6212 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 6214 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 6215 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 6219 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6263 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "dc_info", r->out.dc_info);
out 6265 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "dc_info", *r->out.dc_info);
out 6267 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.dc_info) {
out 6268 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_DOMAIN_CONTROLLER_INFO(ndr, "dc_info", *r->out.dc_info);
out 6272 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6304 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "parm_error", r->out.parm_error);
out 6306 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "parm_error", *r->out.parm_error);
out 6308 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6339 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6373 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6375 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 6377 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 6378 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 6382 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
out 6384 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
out 6386 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
out 6388 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
out 6390 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 6392 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 6394 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6419 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6443 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6445 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 6447 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 6448 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 6452 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6480 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "parm_err", r->out.parm_err);
out 6482 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "parm_err", *r->out.parm_err);
out 6484 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6509 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6511 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 6513 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 6514 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 6518 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
out 6520 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
out 6522 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
out 6524 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
out 6526 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6555 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6581 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6583 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 6585 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 6586 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 6590 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
out 6592 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
out 6594 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
out 6596 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
out 6598 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6621 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6623 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 6625 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 6626 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 6630 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6657 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "parm_err", r->out.parm_err);
out 6659 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "parm_err", *r->out.parm_err);
out 6661 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6692 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
out 6694 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
out 6696 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6723 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "parm_err", r->out.parm_err);
out 6725 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "parm_err", *r->out.parm_err);
out 6727 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6750 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6778 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6780 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 6782 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 6783 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 6787 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
out 6789 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
out 6791 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
out 6793 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
out 6795 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 6797 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 6799 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6827 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "parm_err", r->out.parm_err);
out 6829 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "parm_err", *r->out.parm_err);
out 6831 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6855 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6857 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 6859 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 6860 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 6864 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6888 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6912 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6941 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 6943 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 6945 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 6946 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 6950 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
out 6952 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
out 6954 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
out 6956 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
out 6958 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 6960 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 6962 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 6991 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7018 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "parm_err", r->out.parm_err);
out 7020 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "parm_err", *r->out.parm_err);
out 7022 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7045 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7069 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 7071 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 7073 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 7074 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 7078 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7106 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "parm_err", r->out.parm_err);
out 7108 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "parm_err", *r->out.parm_err);
out 7110 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7138 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 7140 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 7142 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 7143 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 7147 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
out 7149 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
out 7151 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
out 7153 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
out 7155 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 7157 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 7159 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7188 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7217 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7246 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 7248 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 7250 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 7251 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 7255 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
out 7257 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
out 7259 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
out 7261 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
out 7263 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 7265 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 7267 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7296 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7318 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 7320 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 7322 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 7323 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 7327 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7354 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "parm_err", r->out.parm_err);
out 7356 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "parm_err", *r->out.parm_err);
out 7358 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7382 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7410 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 7412 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 7414 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 7415 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 7419 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
out 7421 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
out 7423 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
out 7425 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
out 7427 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 7429 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 7431 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7455 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 7457 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 7459 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 7460 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 7464 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7492 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "parm_err", r->out.parm_err);
out 7494 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "parm_err", *r->out.parm_err);
out 7496 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7519 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7543 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 7545 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 7547 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 7548 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 7552 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7582 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", r->out.buffer);
out 7584 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "buffer", *r->out.buffer);
out 7586 source3/librpc/gen_ndr/ndr_libnetapi.c if (*r->out.buffer) {
out 7587 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint8(ndr, "buffer", **r->out.buffer);
out 7591 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "entries_read", r->out.entries_read);
out 7593 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "entries_read", *r->out.entries_read);
out 7595 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "total_entries", r->out.total_entries);
out 7597 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "total_entries", *r->out.total_entries);
out 7599 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_ptr(ndr, "resume_handle", r->out.resume_handle);
out 7601 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_uint32(ndr, "resume_handle", *r->out.resume_handle);
out 7603 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7629 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 7651 source3/librpc/gen_ndr/ndr_libnetapi.c ndr_print_NET_API_STATUS(ndr, "result", r->out.result);
out 637 source3/libsmb/clidfs.c goto out;
out 653 source3/libsmb/clidfs.c goto out;
out 659 source3/libsmb/clidfs.c goto out;
out 663 source3/libsmb/clidfs.c goto out;
out 685 source3/libsmb/clidfs.c goto out;
out 688 source3/libsmb/clidfs.c goto out;
out 702 source3/libsmb/clidfs.c goto out;
out 709 source3/libsmb/clidfs.c goto out;
out 724 source3/libsmb/clidfs.c goto out;
out 732 source3/libsmb/clidfs.c goto out;
out 737 source3/libsmb/clidfs.c goto out;
out 746 source3/libsmb/clidfs.c out:
out 2075 source3/libsmb/clifile.c goto out;
out 2080 source3/libsmb/clifile.c goto out;
out 2086 source3/libsmb/clifile.c goto out;
out 2097 source3/libsmb/clifile.c goto out;
out 2100 source3/libsmb/clifile.c goto out;
out 2108 source3/libsmb/clifile.c goto out;
out 2115 source3/libsmb/clifile.c goto out;
out 2120 source3/libsmb/clifile.c goto out;
out 2139 source3/libsmb/clifile.c goto out;
out 2152 source3/libsmb/clifile.c out :
out 477 source3/libsmb/clifsinfo.c goto out;
out 484 source3/libsmb/clifsinfo.c goto out;
out 490 source3/libsmb/clifsinfo.c goto out;
out 494 source3/libsmb/clifsinfo.c *out = data_blob(rdata, rdata_count);
out 497 source3/libsmb/clifsinfo.c out:
out 1101 source3/libsmb/clikrb5.c goto out;
out 1109 source3/libsmb/clikrb5.c goto out;
out 1114 source3/libsmb/clikrb5.c out:
out 1189 source3/libsmb/clikrb5.c goto out;
out 1192 source3/libsmb/clikrb5.c out:
out 1708 source3/libsmb/clikrb5.c goto out;
out 1719 source3/libsmb/clikrb5.c goto out;
out 1725 source3/libsmb/clikrb5.c goto out;
out 1736 source3/libsmb/clikrb5.c goto out;
out 1744 source3/libsmb/clikrb5.c goto out;
out 1774 source3/libsmb/clikrb5.c goto out;
out 1780 source3/libsmb/clikrb5.c goto out;
out 1788 source3/libsmb/clikrb5.c goto out;
out 1795 source3/libsmb/clikrb5.c out:
out 1872 source3/libsmb/clikrb5.c goto out;
out 1878 source3/libsmb/clikrb5.c goto out;
out 1889 source3/libsmb/clikrb5.c goto out;
out 1915 source3/libsmb/clikrb5.c goto out;
out 1924 source3/libsmb/clikrb5.c out:
out 398 source3/libsmb/clirap2.c goto out;
out 439 source3/libsmb/clirap2.c out:
out 487 source3/libsmb/clirap2.c goto out;
out 514 source3/libsmb/clirap2.c out:
out 676 source3/libsmb/clirap2.c goto out;
out 702 source3/libsmb/clirap2.c out:
out 745 source3/libsmb/clirap2.c goto out;
out 771 source3/libsmb/clirap2.c out:
out 951 source3/libsmb/clirap2.c goto out;
out 1014 source3/libsmb/clirap2.c out:
out 1059 source3/libsmb/clirap2.c goto out;
out 1085 source3/libsmb/clirap2.c out:
out 1938 source3/libsmb/clirap2.c goto out;
out 2068 source3/libsmb/clirap2.c out:
out 2116 source3/libsmb/clirap2.c goto out;
out 2243 source3/libsmb/clirap2.c out:
out 2291 source3/libsmb/clirap2.c goto out;
out 2326 source3/libsmb/clirap2.c out:
out 2372 source3/libsmb/clirap2.c goto out;
out 2425 source3/libsmb/clirap2.c out:
out 2475 source3/libsmb/clirap2.c goto out;
out 2528 source3/libsmb/clirap2.c out:
out 2624 source3/libsmb/clirap2.c goto out;
out 2670 source3/libsmb/clirap2.c out:
out 204 source3/libsmb/clitrans.c goto out;
out 219 source3/libsmb/clitrans.c goto out;
out 229 source3/libsmb/clitrans.c goto out;
out 240 source3/libsmb/clitrans.c goto out;
out 248 source3/libsmb/clitrans.c goto out;
out 260 source3/libsmb/clitrans.c goto out;
out 267 source3/libsmb/clitrans.c goto out;
out 281 source3/libsmb/clitrans.c goto out;
out 288 source3/libsmb/clitrans.c goto out;
out 302 source3/libsmb/clitrans.c goto out;
out 312 source3/libsmb/clitrans.c goto out;
out 316 source3/libsmb/clitrans.c goto out;
out 332 source3/libsmb/clitrans.c out:
out 510 source3/libsmb/clitrans.c goto out;
out 520 source3/libsmb/clitrans.c goto out;
out 531 source3/libsmb/clitrans.c goto out;
out 536 source3/libsmb/clitrans.c goto out;
out 546 source3/libsmb/clitrans.c goto out;
out 556 source3/libsmb/clitrans.c goto out;
out 567 source3/libsmb/clitrans.c goto out;
out 575 source3/libsmb/clitrans.c goto out;
out 587 source3/libsmb/clitrans.c goto out;
out 594 source3/libsmb/clitrans.c goto out;
out 609 source3/libsmb/clitrans.c goto out;
out 616 source3/libsmb/clitrans.c goto out;
out 631 source3/libsmb/clitrans.c goto out;
out 640 source3/libsmb/clitrans.c goto out;
out 645 source3/libsmb/clitrans.c goto out;
out 654 source3/libsmb/clitrans.c goto out;
out 670 source3/libsmb/clitrans.c out:
out 1919 source3/libsmb/namequery.c goto out;
out 1940 source3/libsmb/namequery.c goto out;
out 1960 source3/libsmb/namequery.c goto out;
out 1969 source3/libsmb/namequery.c goto out;
out 2006 source3/libsmb/namequery.c goto out;
out 2010 source3/libsmb/namequery.c goto out;
out 2017 source3/libsmb/namequery.c goto out;
out 2122 source3/libsmb/namequery.c out:
out 1242 source3/libsmb/nmblib.c char *out = out_string;
out 1244 source3/libsmb/nmblib.c *out=0;
out 1251 source3/libsmb/nmblib.c *out = 0;
out 1254 source3/libsmb/nmblib.c *out = ((in[0]-'A')<<4) + (in[1]-'A');
out 1256 source3/libsmb/nmblib.c out++;
out 1258 source3/libsmb/nmblib.c ret = out[-1];
out 1259 source3/libsmb/nmblib.c out[-1] = 0;
out 1264 source3/libsmb/nmblib.c *out++ = '.'; /* Scope names are separated by periods */
out 1266 source3/libsmb/nmblib.c StrnCpy(out, in, len);
out 1267 source3/libsmb/nmblib.c out += len;
out 1268 source3/libsmb/nmblib.c *out=0;
out 44 source3/libsmb/ntlmssp.c DATA_BLOB in, DATA_BLOB *out);
out 303 source3/libsmb/ntlmssp.c *out = data_blob_null;
out 342 source3/libsmb/ntlmssp.c return ntlmssp_callbacks[i].fn(ntlmssp_state, input, out);
out 160 source3/libsmb/smb_share_modes.c memset(out, '\0', sizeof(struct share_mode_entry));
out 162 source3/libsmb/smb_share_modes.c out->pid = in->pid;
out 163 source3/libsmb/smb_share_modes.c out->share_file_id = (unsigned long)in->file_id;
out 164 source3/libsmb/smb_share_modes.c out->time.tv_sec = in->open_time.tv_sec;
out 165 source3/libsmb/smb_share_modes.c out->time.tv_usec = in->open_time.tv_usec;
out 166 source3/libsmb/smb_share_modes.c out->share_access = in->share_access;
out 167 source3/libsmb/smb_share_modes.c out->access_mask = in->access_mask;
out 168 source3/libsmb/smb_share_modes.c out->id.devid = in->dev;
out 169 source3/libsmb/smb_share_modes.c out->id.inode = in->ino;
out 170 source3/libsmb/smb_share_modes.c out->id.extid = in->extid;
out 171 source3/libsmb/smb_share_modes.c out->uid = (uint32)geteuid();
out 172 source3/libsmb/smb_share_modes.c out->flags = 0;
out 153 source3/libsmb/smbdes.c out[i] = in[p[i]-1];
out 158 source3/libsmb/smbdes.c char out[64];
out 161 source3/libsmb/smbdes.c out[i] = d[(i+count)%n];
out 163 source3/libsmb/smbdes.c d[i] = out[i];
out 169 source3/libsmb/smbdes.c *out++ = *in1++;
out 171 source3/libsmb/smbdes.c *out++ = *in2++;
out 178 source3/libsmb/smbdes.c out[i] = in1[i] ^ in2[i];
out 257 source3/libsmb/smbdes.c permute(out, rl, perm6, 64);
out 298 source3/libsmb/smbdes.c out[i] = 0;
out 303 source3/libsmb/smbdes.c out[i/8] |= (1<<(7-(i%8)));
out 323 source3/libsmb/smbdes.c des_crypt56(out, in, p14, 0);
out 324 source3/libsmb/smbdes.c des_crypt56(out+8, in+8, p14+7, 0);
out 329 source3/libsmb/smbdes.c des_crypt56(out, in, p14, 1);
out 330 source3/libsmb/smbdes.c des_crypt56(out+8, in+8, p14+7, 1);
out 339 source3/libsmb/smbdes.c des_crypt56(out, buf, key+9, 1);
out 351 source3/libsmb/smbdes.c des_crypt56(out, buf, key2, 1);
out 362 source3/libsmb/smbdes.c des_crypt56(out, buf, key+7, forw);
out 370 source3/libsmb/smbdes.c des_crypt56(out, in, key, forw);
out 372 source3/libsmb/smbdes.c des_crypt56(out + 8, in + 8, key2, forw);
out 381 source3/libsmb/smbdes.c des_crypt56(out, in, key, forw);
out 382 source3/libsmb/smbdes.c des_crypt56(out + 8, in + 8, key+7, forw);
out 419 source3/libsmb/smbdes.c des_crypt56(out, in, s, forw);
out 420 source3/libsmb/smbdes.c des_crypt56(out+8, in+8, s+7, forw);
out 629 source3/libsmb/smbencrypt.c memcpy(&out->data[i], bout, MIN(8, in->length-i));
out 329 source3/libsmb/spnego.c if (!spnego) goto out;
out 355 source3/libsmb/spnego.c out:
out 648 source3/modules/onefs_acl.c goto out;
out 663 source3/modules/onefs_acl.c goto out;
out 675 source3/modules/onefs_acl.c goto out;
out 687 source3/modules/onefs_acl.c goto out;
out 692 source3/modules/onefs_acl.c goto out;
out 706 source3/modules/onefs_acl.c goto out;
out 716 source3/modules/onefs_acl.c goto out;
out 726 source3/modules/onefs_acl.c goto out;
out 734 source3/modules/onefs_acl.c goto out;
out 750 source3/modules/onefs_acl.c goto out;
out 757 source3/modules/onefs_acl.c out:
out 916 source3/modules/onefs_acl.c goto out;
out 939 source3/modules/onefs_acl.c goto out;
out 949 source3/modules/onefs_acl.c goto out;
out 956 source3/modules/onefs_acl.c out:
out 176 source3/modules/onefs_shadow_copy.c goto out;
out 182 source3/modules/onefs_shadow_copy.c goto out;
out 189 source3/modules/onefs_shadow_copy.c out:
out 302 source3/modules/onefs_shadow_copy.c goto out;
out 306 source3/modules/onefs_shadow_copy.c goto out;
out 310 source3/modules/onefs_shadow_copy.c goto out;
out 313 source3/modules/onefs_shadow_copy.c goto out;
out 316 source3/modules/onefs_shadow_copy.c goto out;
out 320 source3/modules/onefs_shadow_copy.c out:
out 342 source3/modules/onefs_shadow_copy.c goto out;
out 345 source3/modules/onefs_shadow_copy.c goto out;
out 349 source3/modules/onefs_shadow_copy.c goto out;
out 370 source3/modules/onefs_shadow_copy.c out:
out 629 source3/modules/onefs_shadow_copy.c goto out;
out 637 source3/modules/onefs_shadow_copy.c out:
out 703 source3/modules/onefs_shadow_copy.c goto out;
out 716 source3/modules/onefs_shadow_copy.c goto out;
out 727 source3/modules/onefs_shadow_copy.c goto out;
out 741 source3/modules/onefs_shadow_copy.c goto out;
out 780 source3/modules/onefs_shadow_copy.c out:
out 553 source3/modules/onefs_streams.c goto out;
out 566 source3/modules/onefs_streams.c goto out;
out 625 source3/modules/onefs_streams.c out:
out 676 source3/modules/onefs_streams.c goto out;
out 710 source3/modules/onefs_streams.c out:
out 118 source3/modules/onefs_system.c goto out;
out 206 source3/modules/onefs_system.c out:
out 547 source3/modules/onefs_system.c goto out;
out 617 source3/modules/onefs_system.c goto out;
out 641 source3/modules/onefs_system.c goto out;
out 651 source3/modules/onefs_system.c out:
out 63 source3/modules/vfs_afsacl.c char *in, *out;
out 838 source3/modules/vfs_afsacl.c iob.in = iob.out = space;
out 978 source3/modules/vfs_afsacl.c iob.out = NULL;
out 556 source3/modules/vfs_cap.c char *out = NULL;
out 575 source3/modules/vfs_cap.c for (out = to; *from;) {
out 578 source3/modules/vfs_cap.c *out++ = hex_tag;
out 579 source3/modules/vfs_cap.c *out++ = bin2hex (((*from)>>4)&0x0f);
out 580 source3/modules/vfs_cap.c *out++ = bin2hex ((*from)&0x0f);
out 583 source3/modules/vfs_cap.c *out++ = *from++;
out 586 source3/modules/vfs_cap.c *out = '\0';
out 598 source3/modules/vfs_cap.c char *out = NULL;
out 615 source3/modules/vfs_cap.c for (out = to; *from;) {
out 617 source3/modules/vfs_cap.c *out++ = (hex2bin(from[1])<<4) | (hex2bin(from[2]));
out 620 source3/modules/vfs_cap.c *out++ = *from++;
out 623 source3/modules/vfs_cap.c *out = '\0';
out 629 source3/modules/vfs_default.c goto out;
out 643 source3/modules/vfs_default.c out:
out 93 source3/modules/vfs_onefs.c goto out;
out 104 source3/modules/vfs_onefs.c out:
out 5272 source3/param/loadparm.c goto out;
out 5285 source3/param/loadparm.c goto out;
out 5288 source3/param/loadparm.c goto out;
out 5300 source3/param/loadparm.c out:
out 3880 source3/passdb/pdb_ldap.c goto out;
out 3885 source3/passdb/pdb_ldap.c goto out;
out 3890 source3/passdb/pdb_ldap.c goto out;
out 3897 source3/passdb/pdb_ldap.c out:
out 5320 source3/printing/nt_printing.c goto out;
out 5351 source3/printing/nt_printing.c goto out;
out 5367 source3/printing/nt_printing.c goto out;
out 5385 source3/printing/nt_printing.c out:
out 177 source3/printing/print_cups.c goto out;
out 214 source3/printing/print_cups.c goto out;
out 242 source3/printing/print_cups.c goto out;
out 252 source3/printing/print_cups.c goto out;
out 267 source3/printing/print_cups.c goto out;
out 306 source3/printing/print_cups.c goto out;
out 334 source3/printing/print_cups.c goto out;
out 344 source3/printing/print_cups.c goto out;
out 359 source3/printing/print_cups.c goto out;
out 365 source3/printing/print_cups.c out:
out 632 source3/printing/print_cups.c goto out;
out 663 source3/printing/print_cups.c goto out;
out 685 source3/printing/print_cups.c out:
out 729 source3/printing/print_cups.c goto out;
out 760 source3/printing/print_cups.c goto out;
out 781 source3/printing/print_cups.c out:
out 825 source3/printing/print_cups.c goto out;
out 856 source3/printing/print_cups.c goto out;
out 877 source3/printing/print_cups.c out:
out 930 source3/printing/print_cups.c goto out;
out 958 source3/printing/print_cups.c goto out;
out 967 source3/printing/print_cups.c goto out;
out 982 source3/printing/print_cups.c goto out;
out 989 source3/printing/print_cups.c goto out;
out 1000 source3/printing/print_cups.c goto out;
out 1016 source3/printing/print_cups.c goto out;
out 1034 source3/printing/print_cups.c out:
out 1104 source3/printing/print_cups.c goto out;
out 1119 source3/printing/print_cups.c goto out;
out 1166 source3/printing/print_cups.c goto out;
out 1172 source3/printing/print_cups.c goto out;
out 1205 source3/printing/print_cups.c goto out;
out 1256 source3/printing/print_cups.c goto out;
out 1266 source3/printing/print_cups.c goto out;
out 1341 source3/printing/print_cups.c goto out;
out 1348 source3/printing/print_cups.c goto out;
out 1370 source3/printing/print_cups.c goto out;
out 1381 source3/printing/print_cups.c out:
out 1426 source3/printing/print_cups.c goto out;
out 1453 source3/printing/print_cups.c goto out;
out 1461 source3/printing/print_cups.c goto out;
out 1482 source3/printing/print_cups.c out:
out 1527 source3/printing/print_cups.c goto out;
out 1554 source3/printing/print_cups.c goto out;
out 1562 source3/printing/print_cups.c goto out;
out 1583 source3/printing/print_cups.c out:
out 1647 source3/printing/print_cups.c goto out;
out 1665 source3/printing/print_cups.c goto out;
out 1671 source3/printing/print_cups.c goto out;
out 1674 source3/printing/print_cups.c goto out;
out 1694 source3/printing/print_cups.c goto out;
out 1719 source3/printing/print_cups.c goto out;
out 1733 source3/printing/print_cups.c goto out;
out 1752 source3/printing/print_cups.c goto out;
out 1774 source3/printing/print_cups.c out:
out 186 source3/printing/print_generic.c goto out;
out 191 source3/printing/print_generic.c goto out;
out 206 source3/printing/print_generic.c out:
out 117 source3/printing/print_iprint.c goto out;
out 147 source3/printing/print_iprint.c out:
out 213 source3/printing/print_iprint.c goto out;
out 225 source3/printing/print_iprint.c goto out;
out 229 source3/printing/print_iprint.c goto out;
out 302 source3/printing/print_iprint.c out:
out 333 source3/printing/print_iprint.c goto out;
out 367 source3/printing/print_iprint.c goto out;
out 408 source3/printing/print_iprint.c out:
out 452 source3/printing/print_iprint.c goto out;
out 506 source3/printing/print_iprint.c out:
out 550 source3/printing/print_iprint.c goto out;
out 604 source3/printing/print_iprint.c out:
out 648 source3/printing/print_iprint.c goto out;
out 702 source3/printing/print_iprint.c out:
out 747 source3/printing/print_iprint.c goto out;
out 825 source3/printing/print_iprint.c out:
out 915 source3/printing/print_iprint.c goto out;
out 970 source3/printing/print_iprint.c goto out;
out 977 source3/printing/print_iprint.c goto out;
out 1044 source3/printing/print_iprint.c goto out;
out 1050 source3/printing/print_iprint.c goto out;
out 1083 source3/printing/print_iprint.c goto out;
out 1187 source3/printing/print_iprint.c out:
out 1902 source3/printing/printing.c goto out;
out 1909 source3/printing/printing.c goto out;
out 1921 source3/printing/printing.c goto out;
out 1927 source3/printing/printing.c out:
out 2664 source3/printing/printing.c goto out;
out 2667 source3/printing/printing.c goto out;
out 2732 source3/printing/printing.c out:
out 1157 source3/registry/regfio.c goto out;
out 1167 source3/registry/regfio.c goto out;
out 1173 source3/registry/regfio.c goto out;
out 1176 source3/registry/regfio.c out:
out 35 source3/rpc_server/srv_dfs_nt.c *r->out.version = DFS_MANAGER_VERSION_NT4;
out 37 source3/rpc_server/srv_dfs_nt.c *r->out.version = (enum dfs_ManagerVersion)0;
out 285 source3/rpc_server/srv_dfs_nt.c *r->out.total = num_jn;
out 291 source3/rpc_server/srv_dfs_nt.c if ((r->out.info->e.info1->s = TALLOC_ARRAY(ctx, struct dfs_Info1, num_jn)) == NULL) {
out 295 source3/rpc_server/srv_dfs_nt.c r->out.info->e.info1->s = NULL;
out 297 source3/rpc_server/srv_dfs_nt.c r->out.info->e.info1->count = num_jn;
out 301 source3/rpc_server/srv_dfs_nt.c if ((r->out.info->e.info2->s = TALLOC_ARRAY(ctx, struct dfs_Info2, num_jn)) == NULL) {
out 305 source3/rpc_server/srv_dfs_nt.c r->out.info->e.info2->s = NULL;
out 307 source3/rpc_server/srv_dfs_nt.c r->out.info->e.info2->count = num_jn;
out 311 source3/rpc_server/srv_dfs_nt.c if ((r->out.info->e.info3->s = TALLOC_ARRAY(ctx, struct dfs_Info3, num_jn)) == NULL) {
out 315 source3/rpc_server/srv_dfs_nt.c r->out.info->e.info3->s = NULL;
out 317 source3/rpc_server/srv_dfs_nt.c r->out.info->e.info3->count = num_jn;
out 326 source3/rpc_server/srv_dfs_nt.c init_reply_dfs_info_1(ctx, &jn[i], &r->out.info->e.info1->s[i]);
out 329 source3/rpc_server/srv_dfs_nt.c init_reply_dfs_info_2(ctx, &jn[i], &r->out.info->e.info2->s[i]);
out 332 source3/rpc_server/srv_dfs_nt.c init_reply_dfs_info_3(ctx, &jn[i], &r->out.info->e.info3->s[i]);
out 368 source3/rpc_server/srv_dfs_nt.c r->out.info->info1 = TALLOC_ZERO_P(ctx,struct dfs_Info1);
out 369 source3/rpc_server/srv_dfs_nt.c if (!r->out.info->info1) {
out 372 source3/rpc_server/srv_dfs_nt.c ret = init_reply_dfs_info_1(ctx, jn, r->out.info->info1);
out 375 source3/rpc_server/srv_dfs_nt.c r->out.info->info2 = TALLOC_ZERO_P(ctx,struct dfs_Info2);
out 376 source3/rpc_server/srv_dfs_nt.c if (!r->out.info->info2) {
out 379 source3/rpc_server/srv_dfs_nt.c ret = init_reply_dfs_info_2(ctx, jn, r->out.info->info2);
out 382 source3/rpc_server/srv_dfs_nt.c r->out.info->info3 = TALLOC_ZERO_P(ctx,struct dfs_Info3);
out 383 source3/rpc_server/srv_dfs_nt.c if (!r->out.info->info3) {
out 386 source3/rpc_server/srv_dfs_nt.c ret = init_reply_dfs_info_3(ctx, jn, r->out.info->info3);
out 389 source3/rpc_server/srv_dfs_nt.c r->out.info->info100 = TALLOC_ZERO_P(ctx,struct dfs_Info100);
out 390 source3/rpc_server/srv_dfs_nt.c if (!r->out.info->info100) {
out 393 source3/rpc_server/srv_dfs_nt.c ret = init_reply_dfs_info_100(ctx, jn, r->out.info->info100);
out 396 source3/rpc_server/srv_dfs_nt.c r->out.info->info1 = NULL;
out 111 source3/rpc_server/srv_dssetup_nt.c r->out.info->basic = *basic;
out 37 source3/rpc_server/srv_echo_nt.c *r->out.out_data = r->in.in_data + 1;
out 47 source3/rpc_server/srv_echo_nt.c r->out.out_data = NULL;
out 51 source3/rpc_server/srv_echo_nt.c r->out.out_data = TALLOC_ARRAY(p->mem_ctx, uint8, r->in.len);
out 52 source3/rpc_server/srv_echo_nt.c memcpy( r->out.out_data, r->in.in_data, r->in.len );
out 75 source3/rpc_server/srv_echo_nt.c r->out.data = NULL;
out 79 source3/rpc_server/srv_echo_nt.c r->out.data = TALLOC_ARRAY(p->mem_ctx, uint8, r->in.len );
out 82 source3/rpc_server/srv_echo_nt.c r->out.data[i] = i & 0xff;
out 369 source3/rpc_server/srv_eventlog_nt.c if ( !NT_STATUS_IS_OK( result = elog_open( p, r->in.logname->string, r->out.handle )) )
out 372 source3/rpc_server/srv_eventlog_nt.c if ( !(info = find_eventlog_info_by_hnd( p, r->out.handle )) ) {
out 375 source3/rpc_server/srv_eventlog_nt.c elog_close( p, r->out.handle );
out 452 source3/rpc_server/srv_eventlog_nt.c ZERO_STRUCTP(r->out.handle);
out 510 source3/rpc_server/srv_eventlog_nt.c *r->out.real_size = e->Length;
out 537 source3/rpc_server/srv_eventlog_nt.c *r->out.real_size = blob.length;
out 541 source3/rpc_server/srv_eventlog_nt.c if (*r->out.sent_size + blob.length > r->in.number_of_bytes) {
out 557 source3/rpc_server/srv_eventlog_nt.c memcpy(&r->out.data[*(r->out.sent_size)],
out 559 source3/rpc_server/srv_eventlog_nt.c *(r->out.sent_size) += blob.length;
out 564 source3/rpc_server/srv_eventlog_nt.c if (r->in.offset == 0 && record_number == 0 && *r->out.sent_size == 0) {
out 587 source3/rpc_server/srv_eventlog_nt.c *r->out.oldest_entry = info->oldest_entry;
out 608 source3/rpc_server/srv_eventlog_nt.c *r->out.number = info->num_records;
out 639 source3/rpc_server/srv_eventlog_nt.c *r->out.bytes_needed = 4;
out 658 source3/rpc_server/srv_eventlog_nt.c memcpy(r->out.buffer, blob.data, 4);
out 426 source3/rpc_server/srv_lsa_nt.c if (!create_policy_hnd(p, r->out.handle, info))
out 445 source3/rpc_server/srv_lsa_nt.c o.out.handle = r->out.handle;
out 525 source3/rpc_server/srv_lsa_nt.c *r->out.resume_handle = next_idx;
out 526 source3/rpc_server/srv_lsa_nt.c r->out.domains->count = num_thistime;
out 527 source3/rpc_server/srv_lsa_nt.c r->out.domains->domains = lsa_domains;
out 671 source3/rpc_server/srv_lsa_nt.c *r->out.info = info;
out 861 source3/rpc_server/srv_lsa_nt.c *r->out.domains = domains;
out 862 source3/rpc_server/srv_lsa_nt.c r->out.names->count = num_sids;
out 863 source3/rpc_server/srv_lsa_nt.c r->out.names->names = names_out;
out 864 source3/rpc_server/srv_lsa_nt.c *r->out.count = mapped_count;
out 927 source3/rpc_server/srv_lsa_nt.c *r->out.domains = domains;
out 928 source3/rpc_server/srv_lsa_nt.c r->out.names->count = num_sids;
out 929 source3/rpc_server/srv_lsa_nt.c r->out.names->names = names;
out 930 source3/rpc_server/srv_lsa_nt.c *r->out.count = mapped_count;
out 959 source3/rpc_server/srv_lsa_nt.c q.out.domains = r->out.domains;
out 960 source3/rpc_server/srv_lsa_nt.c q.out.names = r->out.names;
out 961 source3/rpc_server/srv_lsa_nt.c q.out.count = r->out.count;
out 1064 source3/rpc_server/srv_lsa_nt.c *r->out.count = mapped_count;
out 1065 source3/rpc_server/srv_lsa_nt.c *r->out.domains = domains;
out 1066 source3/rpc_server/srv_lsa_nt.c r->out.sids->sids = rids;
out 1067 source3/rpc_server/srv_lsa_nt.c r->out.sids->count = num_entries;
out 1100 source3/rpc_server/srv_lsa_nt.c q.out.domains = r->out.domains;
out 1101 source3/rpc_server/srv_lsa_nt.c q.out.sids = sid_array;
out 1102 source3/rpc_server/srv_lsa_nt.c q.out.count = r->out.count;
out 1119 source3/rpc_server/srv_lsa_nt.c r->out.sids = sid_array2;
out 1209 source3/rpc_server/srv_lsa_nt.c *r->out.count = mapped_count;
out 1210 source3/rpc_server/srv_lsa_nt.c *r->out.domains = domains;
out 1211 source3/rpc_server/srv_lsa_nt.c r->out.sids->sids = trans_sids;
out 1212 source3/rpc_server/srv_lsa_nt.c r->out.sids->count = num_entries;
out 1242 source3/rpc_server/srv_lsa_nt.c q.out.domains = r->out.domains;
out 1243 source3/rpc_server/srv_lsa_nt.c q.out.sids = r->out.sids;
out 1244 source3/rpc_server/srv_lsa_nt.c q.out.count = r->out.count;
out 1260 source3/rpc_server/srv_lsa_nt.c ZERO_STRUCTP(r->out.handle);
out 1395 source3/rpc_server/srv_lsa_nt.c *r->out.resume_handle = enum_context;
out 1396 source3/rpc_server/srv_lsa_nt.c r->out.privs->count = num_privs;
out 1397 source3/rpc_server/srv_lsa_nt.c r->out.privs->privs = entries;
out 1445 source3/rpc_server/srv_lsa_nt.c *r->out.returned_language_id = r->in.language_id;
out 1446 source3/rpc_server/srv_lsa_nt.c *r->out.disp_name = lsa_name;
out 1508 source3/rpc_server/srv_lsa_nt.c *r->out.resume_handle = num_entries;
out 1509 source3/rpc_server/srv_lsa_nt.c r->out.sids->num_sids = num_entries;
out 1510 source3/rpc_server/srv_lsa_nt.c r->out.sids->sids = sids;
out 1557 source3/rpc_server/srv_lsa_nt.c if (r->out.authority_name) {
out 1565 source3/rpc_server/srv_lsa_nt.c *r->out.account_name = account_name;
out 1566 source3/rpc_server/srv_lsa_nt.c if (r->out.authority_name) {
out 1567 source3/rpc_server/srv_lsa_nt.c *r->out.authority_name = authority_name;
out 1615 source3/rpc_server/srv_lsa_nt.c if (!create_policy_hnd(p, r->out.acct_handle, info))
out 1685 source3/rpc_server/srv_lsa_nt.c if (!create_policy_hnd(p, r->out.acct_handle, info))
out 1753 source3/rpc_server/srv_lsa_nt.c *r->out.privs = priv_set;
out 1794 source3/rpc_server/srv_lsa_nt.c e.out.privs = &privset;
out 1817 source3/rpc_server/srv_lsa_nt.c *r->out.access_mask = LSA_POLICY_MODE_INTERACTIVE |
out 1964 source3/rpc_server/srv_lsa_nt.c if((*r->out.sdbuf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL)
out 1969 source3/rpc_server/srv_lsa_nt.c if((*r->out.sdbuf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL)
out 2274 source3/rpc_server/srv_lsa_nt.c status = init_lsa_right_set(p->mem_ctx, r->out.rights, &privileges);
out 2317 source3/rpc_server/srv_lsa_nt.c r->out.luid->low = priv_luid.luid.low;
out 2318 source3/rpc_server/srv_lsa_nt.c r->out.luid->high = priv_luid.luid.high;
out 108 source3/rpc_server/srv_netlog_nt.c l.out.query = r->out.info;
out 137 source3/rpc_server/srv_netlog_nt.c l.out.query = r->out.query;
out 236 source3/rpc_server/srv_netlog_nt.c r->out.query->info1 = info1;
out 247 source3/rpc_server/srv_netlog_nt.c r->out.query->info2 = info2;
out 256 source3/rpc_server/srv_netlog_nt.c r->out.query->info3 = info3;
out 289 source3/rpc_server/srv_netlog_nt.c *r->out.trusted_domains_blob = trusted_domains_blob;
out 434 source3/rpc_server/srv_netlog_nt.c init_net_r_req_chal(r->out.return_credentials, &p->dc->srv_chal);
out 495 source3/rpc_server/srv_netlog_nt.c memcpy(r->out.return_credentials->data, &srv_chal_out.data,
out 496 source3/rpc_server/srv_netlog_nt.c sizeof(r->out.return_credentials->data));
out 563 source3/rpc_server/srv_netlog_nt.c goto out;
out 574 source3/rpc_server/srv_netlog_nt.c goto out;
out 580 source3/rpc_server/srv_netlog_nt.c r->out.rid);
out 587 source3/rpc_server/srv_netlog_nt.c goto out;
out 605 source3/rpc_server/srv_netlog_nt.c goto out;
out 608 source3/rpc_server/srv_netlog_nt.c memcpy(r->out.return_credentials->data, &srv_chal_out.data,
out 609 source3/rpc_server/srv_netlog_nt.c sizeof(r->out.return_credentials->data));
out 625 source3/rpc_server/srv_netlog_nt.c out:
out 627 source3/rpc_server/srv_netlog_nt.c *r->out.negotiate_flags = srv_flgs;
out 648 source3/rpc_server/srv_netlog_nt.c a.out.return_credentials = r->out.return_credentials;
out 649 source3/rpc_server/srv_netlog_nt.c a.out.rid = &rid;
out 650 source3/rpc_server/srv_netlog_nt.c a.out.negotiate_flags = r->out.negotiate_flags;
out 784 source3/rpc_server/srv_netlog_nt.c memcpy(r->out.return_authenticator, &cred_out,
out 785 source3/rpc_server/srv_netlog_nt.c sizeof(*(r->out.return_authenticator)));
out 829 source3/rpc_server/srv_netlog_nt.c if (!netlogon_creds_server_step(p->dc, r->in.credential, r->out.return_authenticator)) {
out 883 source3/rpc_server/srv_netlog_nt.c *r->out.authoritative = true; /* authoritative response */
out 896 source3/rpc_server/srv_netlog_nt.c r->out.validation->sam3 = sam3;
out 923 source3/rpc_server/srv_netlog_nt.c if (!netlogon_creds_server_step(p->dc, r->in.credential, r->out.return_authenticator)) {
out 1053 source3/rpc_server/srv_netlog_nt.c *r->out.authoritative = false; /* We are not authoritative */
out 1113 source3/rpc_server/srv_netlog_nt.c q.out.validation = r->out.validation;
out 1114 source3/rpc_server/srv_netlog_nt.c q.out.authoritative = r->out.authoritative;
out 41 source3/rpc_server/srv_ntsvcs_nt.c *r->out.version = 0x0400; /* no idea what this means */
out 63 source3/rpc_server/srv_ntsvcs_nt.c *r->out.size = strlen(devicepath) + 2;
out 114 source3/rpc_server/srv_ntsvcs_nt.c memcpy(r->out.buffer, multi_sz_buf, multi_sz_len);
out 153 source3/rpc_server/srv_ntsvcs_nt.c *r->out.needed = val->size;
out 154 source3/rpc_server/srv_ntsvcs_nt.c *r->out.buffer_size = 0;
out 159 source3/rpc_server/srv_ntsvcs_nt.c r->out.buffer = (uint8_t *)talloc_memdup(p->mem_ctx, val->data_p, val->size);
out 161 source3/rpc_server/srv_ntsvcs_nt.c if (!r->out.buffer) {
out 165 source3/rpc_server/srv_ntsvcs_nt.c *r->out.reg_data_type = REG_SZ; /* always 1...tested using a remove device manager connection */
out 166 source3/rpc_server/srv_ntsvcs_nt.c *r->out.buffer_size = val->size;
out 167 source3/rpc_server/srv_ntsvcs_nt.c *r->out.needed = val->size;
out 172 source3/rpc_server/srv_ntsvcs_nt.c *r->out.reg_data_type = 0x00437c98; /* ??? */
out 197 source3/rpc_server/srv_ntsvcs_nt.c r->out.info = r->in.info;
out 850 source3/rpc_server/srv_pipe_hnd.c goto out;
out 869 source3/rpc_server/srv_pipe_hnd.c goto out;
out 890 source3/rpc_server/srv_pipe_hnd.c out:
out 590 source3/rpc_server/srv_samr_nt.c ZERO_STRUCTP(r->out.handle);
out 659 source3/rpc_server/srv_samr_nt.c if (!create_policy_hnd(p, r->out.domain_handle, info))
out 724 source3/rpc_server/srv_samr_nt.c r->out.info->min_password_length = min_password_length;
out 725 source3/rpc_server/srv_samr_nt.c r->out.info->password_properties = password_properties;
out 915 source3/rpc_server/srv_samr_nt.c if ((*r->out.sdbuf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL)
out 1004 source3/rpc_server/srv_samr_nt.c *r->out.resume_handle = *r->in.resume_handle;
out 1013 source3/rpc_server/srv_samr_nt.c *r->out.sam = samr_array;
out 1047 source3/rpc_server/srv_samr_nt.c *r->out.resume_handle = *r->in.resume_handle;
out 1072 source3/rpc_server/srv_samr_nt.c *r->out.resume_handle = *r->in.resume_handle + num_account;
out 1073 source3/rpc_server/srv_samr_nt.c *r->out.num_entries = num_account;
out 1143 source3/rpc_server/srv_samr_nt.c *r->out.resume_handle = *r->in.resume_handle;
out 1186 source3/rpc_server/srv_samr_nt.c *r->out.sam = samr_array;
out 1187 source3/rpc_server/srv_samr_nt.c *r->out.num_entries = num_groups;
out 1188 source3/rpc_server/srv_samr_nt.c *r->out.resume_handle = num_groups + *r->in.resume_handle;
out 1261 source3/rpc_server/srv_samr_nt.c *r->out.sam = samr_array;
out 1262 source3/rpc_server/srv_samr_nt.c *r->out.num_entries = num_aliases;
out 1263 source3/rpc_server/srv_samr_nt.c *r->out.resume_handle = num_aliases + *r->in.resume_handle;
out 1481 source3/rpc_server/srv_samr_nt.c union samr_DispInfo *disp_info = r->out.info;
out 1682 source3/rpc_server/srv_samr_nt.c *r->out.total_size = total_data_size;
out 1683 source3/rpc_server/srv_samr_nt.c *r->out.returned_size = temp_size;
out 1703 source3/rpc_server/srv_samr_nt.c q.out.total_size = r->out.total_size;
out 1704 source3/rpc_server/srv_samr_nt.c q.out.returned_size = r->out.returned_size;
out 1705 source3/rpc_server/srv_samr_nt.c q.out.info = r->out.info;
out 1725 source3/rpc_server/srv_samr_nt.c q.out.total_size = r->out.total_size;
out 1726 source3/rpc_server/srv_samr_nt.c q.out.returned_size = r->out.returned_size;
out 1727 source3/rpc_server/srv_samr_nt.c q.out.info = r->out.info;
out 1792 source3/rpc_server/srv_samr_nt.c *r->out.info = alias_info;
out 1880 source3/rpc_server/srv_samr_nt.c *r->out.rids = rids;
out 1881 source3/rpc_server/srv_samr_nt.c *r->out.types = types;
out 1940 source3/rpc_server/srv_samr_nt.c goto out;
out 1954 source3/rpc_server/srv_samr_nt.c goto out;
out 1962 source3/rpc_server/srv_samr_nt.c goto out;
out 1970 source3/rpc_server/srv_samr_nt.c goto out;
out 1979 source3/rpc_server/srv_samr_nt.c goto out;
out 1989 source3/rpc_server/srv_samr_nt.c goto out;
out 1996 source3/rpc_server/srv_samr_nt.c goto out;
out 2000 source3/rpc_server/srv_samr_nt.c out:
out 2198 source3/rpc_server/srv_samr_nt.c *r->out.dominfo = dominfo;
out 2199 source3/rpc_server/srv_samr_nt.c *r->out.reject = reject;
out 2313 source3/rpc_server/srv_samr_nt.c *r->out.names = names_array;
out 2314 source3/rpc_server/srv_samr_nt.c *r->out.types = types_array;
out 2454 source3/rpc_server/srv_samr_nt.c if (!create_policy_hnd(p, r->out.user_handle, info))
out 3227 source3/rpc_server/srv_samr_nt.c *r->out.info = user_info;
out 3247 source3/rpc_server/srv_samr_nt.c u.out.info = r->out.info;
out 3379 source3/rpc_server/srv_samr_nt.c *r->out.rids = rids;
out 3692 source3/rpc_server/srv_samr_nt.c *r->out.info = dom_info;
out 3830 source3/rpc_server/srv_samr_nt.c r->out.rid);
out 3842 source3/rpc_server/srv_samr_nt.c sid_compose(&sid, get_global_sam_sid(), *r->out.rid);
out 3875 source3/rpc_server/srv_samr_nt.c if (!create_policy_hnd(p, r->out.user_handle, info)) {
out 3882 source3/rpc_server/srv_samr_nt.c *r->out.access_granted = acc_granted;
out 3900 source3/rpc_server/srv_samr_nt.c c.out.user_handle = r->out.user_handle;
out 3901 source3/rpc_server/srv_samr_nt.c c.out.access_granted = &access_granted;
out 3902 source3/rpc_server/srv_samr_nt.c c.out.rid = r->out.rid;
out 3940 source3/rpc_server/srv_samr_nt.c if (!create_policy_hnd(p, r->out.connect_handle, info))
out 4004 source3/rpc_server/srv_samr_nt.c if (!create_policy_hnd(p, r->out.connect_handle, info))
out 4023 source3/rpc_server/srv_samr_nt.c c.out.connect_handle = r->out.connect_handle;
out 4039 source3/rpc_server/srv_samr_nt.c c.out.connect_handle = r->out.connect_handle;
out 4060 source3/rpc_server/srv_samr_nt.c c.out.connect_handle = r->out.connect_handle;
out 4062 source3/rpc_server/srv_samr_nt.c *r->out.level_out = 1;
out 4069 source3/rpc_server/srv_samr_nt.c r->out.info_out->info1 = info1;
out 4120 source3/rpc_server/srv_samr_nt.c *r->out.sid = sid;
out 4169 source3/rpc_server/srv_samr_nt.c *r->out.sam = sam;
out 4170 source3/rpc_server/srv_samr_nt.c *r->out.num_entries = num_entries;
out 4254 source3/rpc_server/srv_samr_nt.c if (!create_policy_hnd(p, r->out.alias_handle, info))
out 4525 source3/rpc_server/srv_samr_nt.c DATA_BLOB in, out;
out 4528 source3/rpc_server/srv_samr_nt.c out = data_blob_talloc_zero(mem_ctx, 16);
out 4530 source3/rpc_server/srv_samr_nt.c sess_crypt_blob(&out, &in, session_key, false);
out 4532 source3/rpc_server/srv_samr_nt.c if (!pdb_set_nt_passwd(pwd, out.data, PDB_CHANGED)) {
out 4541 source3/rpc_server/srv_samr_nt.c DATA_BLOB in, out;
out 4544 source3/rpc_server/srv_samr_nt.c out = data_blob_talloc_zero(mem_ctx, 16);
out 4546 source3/rpc_server/srv_samr_nt.c sess_crypt_blob(&out, &in, session_key, false);
out 4548 source3/rpc_server/srv_samr_nt.c if (!pdb_set_lanman_passwd(pwd, out.data, PDB_CHANGED)) {
out 4604 source3/rpc_server/srv_samr_nt.c DATA_BLOB in, out;
out 4616 source3/rpc_server/srv_samr_nt.c out = data_blob_talloc_zero(mem_ctx, 16);
out 4618 source3/rpc_server/srv_samr_nt.c sess_crypt_blob(&out, &in, session_key, false);
out 4620 source3/rpc_server/srv_samr_nt.c pdb_set_nt_passwd(pwd, out.data, PDB_CHANGED);
out 4627 source3/rpc_server/srv_samr_nt.c DATA_BLOB in, out;
out 4639 source3/rpc_server/srv_samr_nt.c out = data_blob_talloc_zero(mem_ctx, 16);
out 4641 source3/rpc_server/srv_samr_nt.c sess_crypt_blob(&out, &in, session_key, false);
out 4643 source3/rpc_server/srv_samr_nt.c pdb_set_lanman_passwd(pwd, out.data, PDB_CHANGED);
out 5390 source3/rpc_server/srv_samr_nt.c r->out.rids->count = num_alias_rids;
out 5391 source3/rpc_server/srv_samr_nt.c r->out.rids->ids = alias_rids;
out 5450 source3/rpc_server/srv_samr_nt.c r->out.sids->num_sids = num_sids;
out 5451 source3/rpc_server/srv_samr_nt.c r->out.sids->sids = sids;
out 5526 source3/rpc_server/srv_samr_nt.c *r->out.rids = rids;
out 5773 source3/rpc_server/srv_samr_nt.c ZERO_STRUCTP(r->out.user_handle);
out 5857 source3/rpc_server/srv_samr_nt.c memcpy(r->out.alias_handle, r->in.alias_handle, sizeof(r->out.alias_handle));
out 5943 source3/rpc_server/srv_samr_nt.c status = pdb_create_dom_group(p->mem_ctx, name, r->out.rid);
out 5953 source3/rpc_server/srv_samr_nt.c sid_compose(&info_sid, get_global_sam_sid(), *r->out.rid);
out 5963 source3/rpc_server/srv_samr_nt.c if (!create_policy_hnd(p, r->out.group_handle, info))
out 6012 source3/rpc_server/srv_samr_nt.c result = pdb_create_alias(name, r->out.rid);
out 6024 source3/rpc_server/srv_samr_nt.c sid_append_rid(&info_sid, *r->out.rid);
out 6046 source3/rpc_server/srv_samr_nt.c if (!create_policy_hnd(p, r->out.alias_handle, info))
out 6154 source3/rpc_server/srv_samr_nt.c *r->out.info = info;
out 6342 source3/rpc_server/srv_samr_nt.c r->out.info->min_password_length = min_password_length;
out 6343 source3/rpc_server/srv_samr_nt.c r->out.info->password_properties = password_properties;
out 6418 source3/rpc_server/srv_samr_nt.c if (!create_policy_hnd(p, r->out.group_handle, info))
out 6499 source3/rpc_server/srv_samr_nt.c q.out.info = r->out.info;
out 6716 source3/rpc_server/srv_samr_nt.c *r->out.idx = i;
out 6722 source3/rpc_server/srv_samr_nt.c *r->out.idx = num_account;
out 6740 source3/rpc_server/srv_samr_nt.c q.out.idx = r->out.idx;
out 6763 source3/rpc_server/srv_samr_nt.c *r->out.sid = sid_dup_talloc(p->mem_ctx, &sid);
out 6764 source3/rpc_server/srv_samr_nt.c if (!*r->out.sid) {
out 41 source3/rpc_server/srv_spoolss_nt.c #define SPOOLSS_BUFFER_OK(val_true,val_false) ((r->in.offered >= *r->out.needed)?val_true:val_false)
out 80 source3/rpc_server/srv_spoolss_nt.c WERROR(*fn) (TALLOC_CTX *mem_ctx, NT_USER_TOKEN *token, DATA_BLOB *in, DATA_BLOB *out, uint32_t *needed);
out 1449 source3/rpc_server/srv_spoolss_nt.c e.out.handle = r->out.handle;
out 1557 source3/rpc_server/srv_spoolss_nt.c if (!open_printer_hnd(p, r->out.handle, r->in.printername, 0)) {
out 1558 source3/rpc_server/srv_spoolss_nt.c ZERO_STRUCTP(r->out.handle);
out 1562 source3/rpc_server/srv_spoolss_nt.c Printer = find_printer_index_by_hnd(p, r->out.handle);
out 1566 source3/rpc_server/srv_spoolss_nt.c close_printer_handle(p, r->out.handle);
out 1567 source3/rpc_server/srv_spoolss_nt.c ZERO_STRUCTP(r->out.handle);
out 1617 source3/rpc_server/srv_spoolss_nt.c close_printer_handle(p, r->out.handle);
out 1618 source3/rpc_server/srv_spoolss_nt.c ZERO_STRUCTP(r->out.handle);
out 1629 source3/rpc_server/srv_spoolss_nt.c close_printer_handle(p, r->out.handle);
out 1630 source3/rpc_server/srv_spoolss_nt.c ZERO_STRUCTP(r->out.handle);
out 1645 source3/rpc_server/srv_spoolss_nt.c close_printer_handle(p, r->out.handle);
out 1646 source3/rpc_server/srv_spoolss_nt.c ZERO_STRUCTP(r->out.handle);
out 1667 source3/rpc_server/srv_spoolss_nt.c if (!get_printer_snum(p, r->out.handle, &snum, NULL)) {
out 1668 source3/rpc_server/srv_spoolss_nt.c close_printer_handle(p, r->out.handle);
out 1669 source3/rpc_server/srv_spoolss_nt.c ZERO_STRUCTP(r->out.handle);
out 1695 source3/rpc_server/srv_spoolss_nt.c ZERO_STRUCTP(r->out.handle);
out 1704 source3/rpc_server/srv_spoolss_nt.c close_printer_handle(p, r->out.handle);
out 1705 source3/rpc_server/srv_spoolss_nt.c ZERO_STRUCTP(r->out.handle);
out 1711 source3/rpc_server/srv_spoolss_nt.c close_printer_handle(p, r->out.handle);
out 1712 source3/rpc_server/srv_spoolss_nt.c ZERO_STRUCTP(r->out.handle);
out 1728 source3/rpc_server/srv_spoolss_nt.c ZERO_STRUCTP(r->out.handle);
out 2044 source3/rpc_server/srv_spoolss_nt.c ZERO_STRUCTP(r->out.handle);
out 2510 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 2511 source3/rpc_server/srv_spoolss_nt.c *r->out.type = 0;
out 2525 source3/rpc_server/srv_spoolss_nt.c r->out.type,
out 2526 source3/rpc_server/srv_spoolss_nt.c r->out.data);
out 2541 source3/rpc_server/srv_spoolss_nt.c *r->out.type = REG_DWORD;
out 2542 source3/rpc_server/srv_spoolss_nt.c r->out.data->value = printer->info_2->changeid;
out 2556 source3/rpc_server/srv_spoolss_nt.c *r->out.type = v->type;
out 2561 source3/rpc_server/srv_spoolss_nt.c r->out.data,
out 2562 source3/rpc_server/srv_spoolss_nt.c *r->out.type);
out 2577 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = ndr_size_spoolss_PrinterData(r->out.data, *r->out.type, NULL, 0);
out 2578 source3/rpc_server/srv_spoolss_nt.c *r->out.type = SPOOLSS_BUFFER_OK(*r->out.type, REG_NONE);
out 2579 source3/rpc_server/srv_spoolss_nt.c r->out.data = SPOOLSS_BUFFER_OK(r->out.data, r->out.data);
out 3728 source3/rpc_server/srv_spoolss_nt.c *r->out.info = info;
out 4263 source3/rpc_server/srv_spoolss_nt.c goto out;
out 4269 source3/rpc_server/srv_spoolss_nt.c goto out;
out 4297 source3/rpc_server/srv_spoolss_nt.c goto out;
out 4302 source3/rpc_server/srv_spoolss_nt.c goto out;
out 4311 source3/rpc_server/srv_spoolss_nt.c out:
out 4540 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 4541 source3/rpc_server/srv_spoolss_nt.c *r->out.count = 0;
out 4542 source3/rpc_server/srv_spoolss_nt.c *r->out.info = NULL;
out 4563 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->out.count);
out 4567 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->out.count);
out 4571 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->out.count);
out 4575 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->out.count);
out 4579 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->out.count);
out 4589 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
out 4591 source3/rpc_server/srv_spoolss_nt.c *r->out.info, r->in.level,
out 4592 source3/rpc_server/srv_spoolss_nt.c *r->out.count);
out 4593 source3/rpc_server/srv_spoolss_nt.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 4594 source3/rpc_server/srv_spoolss_nt.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 4618 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 4633 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info0, snum);
out 4638 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info1, snum);
out 4642 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info2, snum);
out 4646 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info3, snum);
out 4650 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info4, snum);
out 4654 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info5, snum);
out 4658 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info6, snum);
out 4662 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info7, snum);
out 4666 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info8, snum);
out 4676 source3/rpc_server/srv_spoolss_nt.c TALLOC_FREE(r->out.info);
out 4680 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION(spoolss_PrinterInfo, NULL,
out 4681 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->in.level);
out 4682 source3/rpc_server/srv_spoolss_nt.c r->out.info = SPOOLSS_BUFFER_OK(r->out.info, NULL);
out 5481 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 5482 source3/rpc_server/srv_spoolss_nt.c *r->out.server_major_version = 0;
out 5483 source3/rpc_server/srv_spoolss_nt.c *r->out.server_minor_version = 0;
out 5494 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info1,
out 5502 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info2,
out 5510 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info3,
out 5518 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info6,
out 5526 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info101,
out 5538 source3/rpc_server/srv_spoolss_nt.c TALLOC_FREE(r->out.info);
out 5542 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION(spoolss_DriverInfo, NULL,
out 5543 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->in.level);
out 5544 source3/rpc_server/srv_spoolss_nt.c r->out.info = SPOOLSS_BUFFER_OK(r->out.info, NULL);
out 5629 source3/rpc_server/srv_spoolss_nt.c *r->out.job_id = 0;
out 5651 source3/rpc_server/srv_spoolss_nt.c *r->out.job_id = Printer->jobid;
out 5680 source3/rpc_server/srv_spoolss_nt.c *r->out.num_written = r->in._data_size;
out 5692 source3/rpc_server/srv_spoolss_nt.c *r->out.num_written = 0;
out 5699 source3/rpc_server/srv_spoolss_nt.c *r->out.num_written = r->in._data_size;
out 6513 source3/rpc_server/srv_spoolss_nt.c goto out;
out 6517 source3/rpc_server/srv_spoolss_nt.c out:
out 6556 source3/rpc_server/srv_spoolss_nt.c goto out;
out 6567 source3/rpc_server/srv_spoolss_nt.c goto out;
out 6571 source3/rpc_server/srv_spoolss_nt.c out:
out 6605 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 6606 source3/rpc_server/srv_spoolss_nt.c *r->out.count = 0;
out 6607 source3/rpc_server/srv_spoolss_nt.c *r->out.info = NULL;
out 6633 source3/rpc_server/srv_spoolss_nt.c ntprinter, r->out.info, r->out.count);
out 6637 source3/rpc_server/srv_spoolss_nt.c ntprinter, r->out.info, r->out.count);
out 6651 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
out 6653 source3/rpc_server/srv_spoolss_nt.c *r->out.info, r->in.level,
out 6654 source3/rpc_server/srv_spoolss_nt.c *r->out.count);
out 6655 source3/rpc_server/srv_spoolss_nt.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 6656 source3/rpc_server/srv_spoolss_nt.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 6745 source3/rpc_server/srv_spoolss_nt.c goto out;
out 6756 source3/rpc_server/srv_spoolss_nt.c goto out;
out 6766 source3/rpc_server/srv_spoolss_nt.c goto out;
out 6802 source3/rpc_server/srv_spoolss_nt.c goto out;
out 6811 source3/rpc_server/srv_spoolss_nt.c out:
out 6928 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 6929 source3/rpc_server/srv_spoolss_nt.c *r->out.count = 0;
out 6930 source3/rpc_server/srv_spoolss_nt.c *r->out.info = NULL;
out 6942 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->out.count);
out 6947 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->out.count);
out 6952 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->out.count);
out 6957 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->out.count);
out 6962 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->out.count);
out 6967 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->out.count);
out 6977 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
out 6979 source3/rpc_server/srv_spoolss_nt.c *r->out.info, r->in.level,
out 6980 source3/rpc_server/srv_spoolss_nt.c *r->out.count);
out 6981 source3/rpc_server/srv_spoolss_nt.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 6982 source3/rpc_server/srv_spoolss_nt.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 7035 source3/rpc_server/srv_spoolss_nt.c goto out;
out 7044 source3/rpc_server/srv_spoolss_nt.c goto out;
out 7048 source3/rpc_server/srv_spoolss_nt.c out:
out 7073 source3/rpc_server/srv_spoolss_nt.c *r->out.count = 0;
out 7074 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 7075 source3/rpc_server/srv_spoolss_nt.c *r->out.info = NULL;
out 7105 source3/rpc_server/srv_spoolss_nt.c r->out.info,
out 7106 source3/rpc_server/srv_spoolss_nt.c r->out.count);
out 7120 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
out 7122 source3/rpc_server/srv_spoolss_nt.c *r->out.info, r->in.level,
out 7123 source3/rpc_server/srv_spoolss_nt.c *r->out.count);
out 7124 source3/rpc_server/srv_spoolss_nt.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 7125 source3/rpc_server/srv_spoolss_nt.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 7190 source3/rpc_server/srv_spoolss_nt.c TALLOC_FREE(r->out.info);
out 7197 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info1,
out 7207 source3/rpc_server/srv_spoolss_nt.c TALLOC_FREE(r->out.info);
out 7211 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION(spoolss_FormInfo, NULL,
out 7212 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->in.level);
out 7213 source3/rpc_server/srv_spoolss_nt.c r->out.info = SPOOLSS_BUFFER_OK(r->out.info, NULL);
out 7332 source3/rpc_server/srv_spoolss_nt.c goto out;
out 7340 source3/rpc_server/srv_spoolss_nt.c goto out;
out 7347 source3/rpc_server/srv_spoolss_nt.c goto out;
out 7353 source3/rpc_server/srv_spoolss_nt.c out:
out 7384 source3/rpc_server/srv_spoolss_nt.c goto out;
out 7392 source3/rpc_server/srv_spoolss_nt.c goto out;
out 7399 source3/rpc_server/srv_spoolss_nt.c goto out;
out 7405 source3/rpc_server/srv_spoolss_nt.c out:
out 7437 source3/rpc_server/srv_spoolss_nt.c *r->out.count = 0;
out 7438 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 7439 source3/rpc_server/srv_spoolss_nt.c *r->out.info = NULL;
out 7443 source3/rpc_server/srv_spoolss_nt.c result = enumports_level_1(p->mem_ctx, r->out.info,
out 7444 source3/rpc_server/srv_spoolss_nt.c r->out.count);
out 7447 source3/rpc_server/srv_spoolss_nt.c result = enumports_level_2(p->mem_ctx, r->out.info,
out 7448 source3/rpc_server/srv_spoolss_nt.c r->out.count);
out 7458 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
out 7460 source3/rpc_server/srv_spoolss_nt.c *r->out.info, r->in.level,
out 7461 source3/rpc_server/srv_spoolss_nt.c *r->out.count);
out 7462 source3/rpc_server/srv_spoolss_nt.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 7463 source3/rpc_server/srv_spoolss_nt.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 7608 source3/rpc_server/srv_spoolss_nt.c r->out.handle);
out 7907 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 7914 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info1);
out 7916 source3/rpc_server/srv_spoolss_nt.c TALLOC_FREE(r->out.info);
out 7920 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION(spoolss_DriverDirectoryInfo, NULL,
out 7921 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->in.level);
out 7922 source3/rpc_server/srv_spoolss_nt.c r->out.info = SPOOLSS_BUFFER_OK(r->out.info, NULL);
out 7943 source3/rpc_server/srv_spoolss_nt.c *r->out.value_needed = 0;
out 7944 source3/rpc_server/srv_spoolss_nt.c *r->out.type = REG_NONE;
out 7945 source3/rpc_server/srv_spoolss_nt.c *r->out.data_needed = 0;
out 8002 source3/rpc_server/srv_spoolss_nt.c *r->out.value_needed = 2 * (1 + biggest_valuesize);
out 8003 source3/rpc_server/srv_spoolss_nt.c *r->out.data_needed = biggest_datasize;
out 8006 source3/rpc_server/srv_spoolss_nt.c *r->out.value_needed, *r->out.data_needed));
out 8027 source3/rpc_server/srv_spoolss_nt.c *r->out.value_needed = 1;
out 8028 source3/rpc_server/srv_spoolss_nt.c r->out.value_name = talloc_strdup(r, "");
out 8029 source3/rpc_server/srv_spoolss_nt.c if (!r->out.value_name) {
out 8034 source3/rpc_server/srv_spoolss_nt.c r->out.value_name = NULL;
out 8035 source3/rpc_server/srv_spoolss_nt.c *r->out.value_needed = 0;
out 8040 source3/rpc_server/srv_spoolss_nt.c *r->out.data_needed = r->in.data_offered;
out 8055 source3/rpc_server/srv_spoolss_nt.c r->out.value_name = talloc_strdup(r, regval_name(val));
out 8056 source3/rpc_server/srv_spoolss_nt.c if (!r->out.value_name) {
out 8060 source3/rpc_server/srv_spoolss_nt.c *r->out.value_needed = strlen_m(regval_name(val));
out 8062 source3/rpc_server/srv_spoolss_nt.c r->out.value_name = NULL;
out 8063 source3/rpc_server/srv_spoolss_nt.c *r->out.value_needed = 0;
out 8068 source3/rpc_server/srv_spoolss_nt.c *r->out.type = regval_type(val);
out 8072 source3/rpc_server/srv_spoolss_nt.c if (r->out.data && regval_size(val)) {
out 8073 source3/rpc_server/srv_spoolss_nt.c memcpy(r->out.data, regval_data_p(val), regval_size(val));
out 8076 source3/rpc_server/srv_spoolss_nt.c *r->out.data_needed = regval_size(val);
out 8525 source3/rpc_server/srv_spoolss_nt.c goto out;
out 8528 source3/rpc_server/srv_spoolss_nt.c out:
out 8564 source3/rpc_server/srv_spoolss_nt.c *r->out.count = 0;
out 8565 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 8566 source3/rpc_server/srv_spoolss_nt.c *r->out.info = NULL;
out 8570 source3/rpc_server/srv_spoolss_nt.c result = enumprintprocessors_level_1(p->mem_ctx, r->out.info,
out 8571 source3/rpc_server/srv_spoolss_nt.c r->out.count);
out 8581 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
out 8583 source3/rpc_server/srv_spoolss_nt.c *r->out.info, r->in.level,
out 8584 source3/rpc_server/srv_spoolss_nt.c *r->out.count);
out 8585 source3/rpc_server/srv_spoolss_nt.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 8586 source3/rpc_server/srv_spoolss_nt.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 8623 source3/rpc_server/srv_spoolss_nt.c goto out;
out 8626 source3/rpc_server/srv_spoolss_nt.c out:
out 8655 source3/rpc_server/srv_spoolss_nt.c *r->out.count = 0;
out 8656 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 8657 source3/rpc_server/srv_spoolss_nt.c *r->out.info = NULL;
out 8661 source3/rpc_server/srv_spoolss_nt.c result = enumprintprocdatatypes_level_1(p->mem_ctx, r->out.info,
out 8662 source3/rpc_server/srv_spoolss_nt.c r->out.count);
out 8668 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
out 8670 source3/rpc_server/srv_spoolss_nt.c *r->out.info, r->in.level,
out 8671 source3/rpc_server/srv_spoolss_nt.c *r->out.count);
out 8672 source3/rpc_server/srv_spoolss_nt.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 8673 source3/rpc_server/srv_spoolss_nt.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 8731 source3/rpc_server/srv_spoolss_nt.c goto out;
out 8737 source3/rpc_server/srv_spoolss_nt.c goto out;
out 8740 source3/rpc_server/srv_spoolss_nt.c out:
out 8773 source3/rpc_server/srv_spoolss_nt.c goto out;
out 8781 source3/rpc_server/srv_spoolss_nt.c goto out;
out 8784 source3/rpc_server/srv_spoolss_nt.c out:
out 8820 source3/rpc_server/srv_spoolss_nt.c *r->out.count = 0;
out 8821 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 8822 source3/rpc_server/srv_spoolss_nt.c *r->out.info = NULL;
out 8826 source3/rpc_server/srv_spoolss_nt.c result = enumprintmonitors_level_1(p->mem_ctx, r->out.info,
out 8827 source3/rpc_server/srv_spoolss_nt.c r->out.count);
out 8830 source3/rpc_server/srv_spoolss_nt.c result = enumprintmonitors_level_2(p->mem_ctx, r->out.info,
out 8831 source3/rpc_server/srv_spoolss_nt.c r->out.count);
out 8841 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(p->mem_ctx,
out 8843 source3/rpc_server/srv_spoolss_nt.c *r->out.info, r->in.level,
out 8844 source3/rpc_server/srv_spoolss_nt.c *r->out.count);
out 8845 source3/rpc_server/srv_spoolss_nt.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 8846 source3/rpc_server/srv_spoolss_nt.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 8961 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 8981 source3/rpc_server/srv_spoolss_nt.c r->in.job_id, &r->out.info->info1);
out 8986 source3/rpc_server/srv_spoolss_nt.c r->in.job_id, &r->out.info->info2);
out 8997 source3/rpc_server/srv_spoolss_nt.c TALLOC_FREE(r->out.info);
out 9001 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION(spoolss_JobInfo, NULL,
out 9002 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->in.level);
out 9003 source3/rpc_server/srv_spoolss_nt.c r->out.info = SPOOLSS_BUFFER_OK(r->out.info, NULL);
out 9032 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 9033 source3/rpc_server/srv_spoolss_nt.c *r->out.type = REG_NONE;
out 9082 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = regval_size(val);
out 9084 source3/rpc_server/srv_spoolss_nt.c if (*r->out.needed > r->in.offered) {
out 9089 source3/rpc_server/srv_spoolss_nt.c *r->out.type = regval_type(val);
out 9091 source3/rpc_server/srv_spoolss_nt.c memcpy(r->out.buffer, regval_data_p(val), regval_size(val));
out 9291 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 4;
out 9293 source3/rpc_server/srv_spoolss_nt.c array = talloc_zero_array(r->out.key_buffer, const char *, num_keys + 1);
out 9306 source3/rpc_server/srv_spoolss_nt.c *r->out.needed += strlen_m_term(keynames[i]) * 2;
out 9309 source3/rpc_server/srv_spoolss_nt.c if (r->in.offered < *r->out.needed) {
out 9316 source3/rpc_server/srv_spoolss_nt.c *r->out.key_buffer = array;
out 9321 source3/rpc_server/srv_spoolss_nt.c ZERO_STRUCTP(r->out.key_buffer);
out 9431 source3/rpc_server/srv_spoolss_nt.c *r->out.count = 0;
out 9432 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 9433 source3/rpc_server/srv_spoolss_nt.c *r->out.info = NULL;
out 9529 source3/rpc_server/srv_spoolss_nt.c *r->out.count = count;
out 9530 source3/rpc_server/srv_spoolss_nt.c *r->out.info = info;
out 9542 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_ARRAY(p->mem_ctx,
out 9544 source3/rpc_server/srv_spoolss_nt.c *r->out.info,
out 9545 source3/rpc_server/srv_spoolss_nt.c *r->out.count);
out 9546 source3/rpc_server/srv_spoolss_nt.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 9547 source3/rpc_server/srv_spoolss_nt.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, *r->out.count);
out 9597 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = 0;
out 9608 source3/rpc_server/srv_spoolss_nt.c &r->out.info->info1);
out 9610 source3/rpc_server/srv_spoolss_nt.c TALLOC_FREE(r->out.info);
out 9614 source3/rpc_server/srv_spoolss_nt.c *r->out.needed = SPOOLSS_BUFFER_UNION(spoolss_PrintProcessorDirectoryInfo, NULL,
out 9615 source3/rpc_server/srv_spoolss_nt.c r->out.info, r->in.level);
out 9616 source3/rpc_server/srv_spoolss_nt.c r->out.info = SPOOLSS_BUFFER_OK(r->out.info, NULL);
out 9652 source3/rpc_server/srv_spoolss_nt.c if (out->length < *needed) {
out 9656 source3/rpc_server/srv_spoolss_nt.c if (!push_monitorui_buf(mem_ctx, out, dllname)) {
out 9821 source3/rpc_server/srv_spoolss_nt.c if (out->length < *needed) {
out 9825 source3/rpc_server/srv_spoolss_nt.c if (!push_monitorui_buf(mem_ctx, out, dllname)) {
out 9912 source3/rpc_server/srv_spoolss_nt.c r->out.needed);
out 9919 source3/rpc_server/srv_spoolss_nt.c r->out.needed);
out 9929 source3/rpc_server/srv_spoolss_nt.c *r->out.status_code = 0;
out 9931 source3/rpc_server/srv_spoolss_nt.c memcpy(r->out.out_data, out_data.data, out_data.length);
out 1054 source3/rpc_server/srv_srvsvc_nt.c *r->out.totalentries = ctr3->count;
out 1055 source3/rpc_server/srv_srvsvc_nt.c r->out.info_ctr->ctr.ctr3->array = ctr3->array;
out 1056 source3/rpc_server/srv_srvsvc_nt.c r->out.info_ctr->ctr.ctr3->count = ctr3->count;
out 1109 source3/rpc_server/srv_srvsvc_nt.c r->out.info->info102 = info102;
out 1128 source3/rpc_server/srv_srvsvc_nt.c r->out.info->info101 = info101;
out 1142 source3/rpc_server/srv_srvsvc_nt.c r->out.info->info100 = info100;
out 1189 source3/rpc_server/srv_srvsvc_nt.c r->out.totalentries);
out 1194 source3/rpc_server/srv_srvsvc_nt.c r->out.totalentries);
out 1221 source3/rpc_server/srv_srvsvc_nt.c r->out.totalentries);
out 1227 source3/rpc_server/srv_srvsvc_nt.c r->out.totalentries);
out 1326 source3/rpc_server/srv_srvsvc_nt.c r->out.totalentries,
out 1354 source3/rpc_server/srv_srvsvc_nt.c r->out.totalentries,
out 1372 source3/rpc_server/srv_srvsvc_nt.c union srvsvc_NetShareInfo *info = r->out.info;
out 1507 source3/rpc_server/srv_srvsvc_nt.c if (r->out.parm_error) {
out 1508 source3/rpc_server/srv_srvsvc_nt.c *r->out.parm_error = 0;
out 1731 source3/rpc_server/srv_srvsvc_nt.c if (r->out.parm_error) {
out 1732 source3/rpc_server/srv_srvsvc_nt.c *r->out.parm_error = 0;
out 2018 source3/rpc_server/srv_srvsvc_nt.c *r->out.info = tod;
out 2133 source3/rpc_server/srv_srvsvc_nt.c *r->out.sd_buf = sd_buf;
out 2339 source3/rpc_server/srv_srvsvc_nt.c *r->out.totalentries = init_server_disk_enum(&resume);
out 2341 source3/rpc_server/srv_srvsvc_nt.c r->out.info->disks = TALLOC_ZERO_ARRAY(ctx, struct srvsvc_NetDiskInfo0,
out 2343 source3/rpc_server/srv_srvsvc_nt.c W_ERROR_HAVE_NO_MEMORY(r->out.info->disks);
out 2347 source3/rpc_server/srv_srvsvc_nt.c r->out.info->count = 0;
out 2351 source3/rpc_server/srv_srvsvc_nt.c r->out.info->count++;
out 2355 source3/rpc_server/srv_srvsvc_nt.c r->out.info->disks[i].disk = talloc_strdup(ctx, disk_name);
out 2356 source3/rpc_server/srv_srvsvc_nt.c W_ERROR_HAVE_NO_MEMORY(r->out.info->disks[i].disk);
out 2361 source3/rpc_server/srv_srvsvc_nt.c r->out.info->count++;
out 2363 source3/rpc_server/srv_srvsvc_nt.c r->out.info->disks[i].disk = talloc_strdup(ctx, "");
out 2364 source3/rpc_server/srv_srvsvc_nt.c W_ERROR_HAVE_NO_MEMORY(r->out.info->disks[i].disk);
out 2366 source3/rpc_server/srv_srvsvc_nt.c if (r->out.resume_handle) {
out 2367 source3/rpc_server/srv_srvsvc_nt.c *r->out.resume_handle = resume;
out 2425 source3/rpc_server/srv_srvsvc_nt.c r->out.result = ntstatus_to_werror(
out 2452 source3/rpc_server/srv_srvsvc_nt.c r->out.result = WERR_BADFILE;
out 2454 source3/rpc_server/srv_srvsvc_nt.c return r->out.result;
out 270 source3/rpc_server/srv_svcctl_nt.c return create_open_service_handle( p, r->out.handle, SVC_HANDLE_IS_SCM, NULL, access_granted );
out 308 source3/rpc_server/srv_svcctl_nt.c return create_open_service_handle( p, r->out.handle, SVC_HANDLE_IS_SERVICE, service, access_granted );
out 321 source3/rpc_server/srv_svcctl_nt.c ZERO_STRUCTP(r->out.handle);
out 350 source3/rpc_server/srv_svcctl_nt.c *r->out.display_name = display_name;
out 351 source3/rpc_server/srv_svcctl_nt.c *r->out.display_name_length = strlen(display_name);
out 375 source3/rpc_server/srv_svcctl_nt.c return info->ops->service_status( info->name, r->out.service_status );
out 468 source3/rpc_server/srv_svcctl_nt.c memcpy(r->out.service, blob.data, MIN(blob.length, r->in.offered));
out 471 source3/rpc_server/srv_svcctl_nt.c *r->out.needed = (buffer_size > r->in.offered) ? buffer_size : r->in.offered;
out 472 source3/rpc_server/srv_svcctl_nt.c *r->out.services_returned = (uint32)num_services;
out 473 source3/rpc_server/srv_svcctl_nt.c if (r->out.resume_handle) {
out 474 source3/rpc_server/srv_svcctl_nt.c *r->out.resume_handle = 0;
out 520 source3/rpc_server/srv_svcctl_nt.c r->out.service_status );
out 527 source3/rpc_server/srv_svcctl_nt.c r->out.service_status );
out 563 source3/rpc_server/srv_svcctl_nt.c *r->out.needed = r->in.offered;
out 566 source3/rpc_server/srv_svcctl_nt.c *r->out.services_returned = 0;
out 591 source3/rpc_server/srv_svcctl_nt.c *r->out.needed = r->in.offered;
out 612 source3/rpc_server/srv_svcctl_nt.c r->out.buffer = blob.data;
out 623 source3/rpc_server/srv_svcctl_nt.c *r->out.needed = (buffer_size > r->in.offered) ? buffer_size : r->in.offered;
out 708 source3/rpc_server/srv_svcctl_nt.c *r->out.needed = r->in.offered;
out 710 source3/rpc_server/srv_svcctl_nt.c wresult = fill_svc_config( p->mem_ctx, info->name, r->out.query,
out 715 source3/rpc_server/srv_svcctl_nt.c buffer_size = ndr_size_QUERY_SERVICE_CONFIG(r->out.query, NULL, 0);
out 716 source3/rpc_server/srv_svcctl_nt.c *r->out.needed = (buffer_size > r->in.offered) ? buffer_size : r->in.offered;
out 719 source3/rpc_server/srv_svcctl_nt.c ZERO_STRUCTP(r->out.query);
out 746 source3/rpc_server/srv_svcctl_nt.c *r->out.needed = r->in.offered;
out 769 source3/rpc_server/srv_svcctl_nt.c r->out.buffer = blob.data;
out 792 source3/rpc_server/srv_svcctl_nt.c r->out.buffer = blob.data;
out 803 source3/rpc_server/srv_svcctl_nt.c *r->out.needed = (buffer_size > r->in.offered) ? buffer_size : r->in.offered;
out 830 source3/rpc_server/srv_svcctl_nt.c return create_open_service_handle( p, r->out.lock, SVC_HANDLE_IS_DBLOCK, NULL, 0 );
out 846 source3/rpc_server/srv_svcctl_nt.c return close_policy_hnd( p, r->out.lock) ? WERR_OK : WERR_BADFID;
out 883 source3/rpc_server/srv_svcctl_nt.c *r->out.needed = ndr_size_security_descriptor( sec_desc, NULL, 0 );
out 885 source3/rpc_server/srv_svcctl_nt.c if ( *r->out.needed > r->in.offered) {
out 894 source3/rpc_server/srv_svcctl_nt.c *r->out.needed = len;
out 895 source3/rpc_server/srv_svcctl_nt.c r->out.buffer = buffer;
out 112 source3/rpc_server/srv_winreg_nt.c ZERO_STRUCTP(r->out.handle);
out 122 source3/rpc_server/srv_winreg_nt.c return open_registry_key(p, r->out.handle, NULL, KEY_HKLM, r->in.access_mask);
out 130 source3/rpc_server/srv_winreg_nt.c return open_registry_key(p, r->out.handle, NULL, KEY_HKPD, r->in.access_mask);
out 138 source3/rpc_server/srv_winreg_nt.c return open_registry_key(p, r->out.handle, NULL, KEY_HKPT, r->in.access_mask);
out 146 source3/rpc_server/srv_winreg_nt.c return open_registry_key(p, r->out.handle, NULL, KEY_HKCR, r->in.access_mask);
out 154 source3/rpc_server/srv_winreg_nt.c return open_registry_key(p, r->out.handle, NULL, KEY_HKU, r->in.access_mask);
out 162 source3/rpc_server/srv_winreg_nt.c return open_registry_key(p, r->out.handle, NULL, KEY_HKCU, r->in.access_mask);
out 170 source3/rpc_server/srv_winreg_nt.c return open_registry_key(p, r->out.handle, NULL, KEY_HKCC, r->in.access_mask);
out 178 source3/rpc_server/srv_winreg_nt.c return open_registry_key(p, r->out.handle, NULL, KEY_HKDD, r->in.access_mask);
out 186 source3/rpc_server/srv_winreg_nt.c return open_registry_key(p, r->out.handle, NULL, KEY_HKPN, r->in.access_mask);
out 200 source3/rpc_server/srv_winreg_nt.c return open_registry_key(p, r->out.handle, parent, r->in.keyname.name, r->in.access_mask);
out 223 source3/rpc_server/srv_winreg_nt.c if ((r->out.data_length == NULL) || (r->out.type == NULL)) {
out 227 source3/rpc_server/srv_winreg_nt.c *r->out.data_length = *r->out.type = REG_NONE;
out 272 source3/rpc_server/srv_winreg_nt.c *r->out.type = REG_BINARY;
out 280 source3/rpc_server/srv_winreg_nt.c if (r->out.data_size) {
out 281 source3/rpc_server/srv_winreg_nt.c *r->out.data_size = 0;
out 283 source3/rpc_server/srv_winreg_nt.c if (r->out.data_length) {
out 284 source3/rpc_server/srv_winreg_nt.c *r->out.data_length = 0;
out 296 source3/rpc_server/srv_winreg_nt.c *r->out.type = val->type;
out 299 source3/rpc_server/srv_winreg_nt.c *r->out.data_length = outbuf_size;
out 301 source3/rpc_server/srv_winreg_nt.c if ( *r->in.data_size == 0 || !r->out.data ) {
out 303 source3/rpc_server/srv_winreg_nt.c } else if ( *r->out.data_length > *r->in.data_size ) {
out 306 source3/rpc_server/srv_winreg_nt.c memcpy( r->out.data, outbuf, *r->out.data_length );
out 310 source3/rpc_server/srv_winreg_nt.c *r->out.data_size = *r->out.data_length;
out 330 source3/rpc_server/srv_winreg_nt.c r->out.classname->name = NULL;
out 332 source3/rpc_server/srv_winreg_nt.c status = reg_queryinfokey(regkey, r->out.num_subkeys, r->out.max_subkeylen,
out 333 source3/rpc_server/srv_winreg_nt.c r->out.max_classlen, r->out.num_values, r->out.max_valnamelen,
out 334 source3/rpc_server/srv_winreg_nt.c r->out.max_valbufsize, r->out.secdescsize,
out 335 source3/rpc_server/srv_winreg_nt.c r->out.last_changed_time);
out 345 source3/rpc_server/srv_winreg_nt.c *r->out.max_subkeylen *= 2;
out 347 source3/rpc_server/srv_winreg_nt.c *r->out.max_valnamelen += 1;
out 348 source3/rpc_server/srv_winreg_nt.c *r->out.max_valnamelen *= 2;
out 365 source3/rpc_server/srv_winreg_nt.c return reg_getversion(r->out.version);
out 386 source3/rpc_server/srv_winreg_nt.c err = reg_enumkey(p->mem_ctx, key, r->in.enum_index, (char **)&r->out.name->name,
out 387 source3/rpc_server/srv_winreg_nt.c r->out.last_changed_time);
out 391 source3/rpc_server/srv_winreg_nt.c r->out.keyclass->name = "";
out 426 source3/rpc_server/srv_winreg_nt.c if (r->out.name != NULL) {
out 427 source3/rpc_server/srv_winreg_nt.c r->out.name->name = valname;
out 430 source3/rpc_server/srv_winreg_nt.c if (r->out.type != NULL) {
out 431 source3/rpc_server/srv_winreg_nt.c *r->out.type = val->type;
out 434 source3/rpc_server/srv_winreg_nt.c if (r->out.value != NULL) {
out 435 source3/rpc_server/srv_winreg_nt.c if ((r->out.size == NULL) || (r->out.length == NULL)) {
out 439 source3/rpc_server/srv_winreg_nt.c if (value_blob.length > *r->out.size) {
out 443 source3/rpc_server/srv_winreg_nt.c memcpy( r->out.value, value_blob.data, value_blob.length );
out 446 source3/rpc_server/srv_winreg_nt.c if (r->out.length != NULL) {
out 447 source3/rpc_server/srv_winreg_nt.c *r->out.length = value_blob.length;
out 449 source3/rpc_server/srv_winreg_nt.c if (r->out.size != NULL) {
out 450 source3/rpc_server/srv_winreg_nt.c *r->out.size = value_blob.length;
out 743 source3/rpc_server/srv_winreg_nt.c &new_key, r->out.action_taken);
out 748 source3/rpc_server/srv_winreg_nt.c if (!create_policy_hnd(p, r->out.new_handle, new_key)) {
out 837 source3/rpc_server/srv_winreg_nt.c if (len > r->out.sd->size) {
out 838 source3/rpc_server/srv_winreg_nt.c r->out.sd->size = len;
out 842 source3/rpc_server/srv_winreg_nt.c r->out.sd->size = len;
out 843 source3/rpc_server/srv_winreg_nt.c r->out.sd->len = len;
out 844 source3/rpc_server/srv_winreg_nt.c r->out.sd->data = data;
out 69 source3/rpc_server/srv_wkssvc_nt.c r->out.info->info100 = wks100;
out 351 source3/rpc_server/srv_wkssvc_nt.c j->out.error_string ? j->out.error_string :
out 417 source3/rpc_server/srv_wkssvc_nt.c u->out.error_string ? u->out.error_string :
out 113 source3/rpcclient/cmd_drsuapi.c goto out;
out 125 source3/rpcclient/cmd_drsuapi.c out:
out 277 source3/rpcclient/cmd_drsuapi.c goto out;
out 281 source3/rpcclient/cmd_drsuapi.c goto out;
out 285 source3/rpcclient/cmd_drsuapi.c out:
out 487 source3/rpcclient/cmd_drsuapi.c goto out;
out 492 source3/rpcclient/cmd_drsuapi.c goto out;
out 560 source3/rpcclient/cmd_drsuapi.c out:
out 2645 source3/rpcclient/cmd_samr.c DATA_BLOB in,out;
out 2647 source3/rpcclient/cmd_samr.c out = data_blob_talloc_zero(mem_ctx, 16);
out 2648 source3/rpcclient/cmd_samr.c sess_crypt_blob(&out, &in, &session_key, true);
out 2649 source3/rpcclient/cmd_samr.c memcpy(nt_hash, out.data, out.length);
out 2652 source3/rpcclient/cmd_samr.c DATA_BLOB in,out;
out 2654 source3/rpcclient/cmd_samr.c out = data_blob_talloc_zero(mem_ctx, 16);
out 2655 source3/rpcclient/cmd_samr.c sess_crypt_blob(&out, &in, &session_key, true);
out 2656 source3/rpcclient/cmd_samr.c memcpy(lm_hash, out.data, out.length);
out 2685 source3/rpcclient/cmd_samr.c DATA_BLOB in,out;
out 2687 source3/rpcclient/cmd_samr.c out = data_blob_talloc_zero(mem_ctx, 16);
out 2688 source3/rpcclient/cmd_samr.c sess_crypt_blob(&out, &in, &session_key, true);
out 2690 source3/rpcclient/cmd_samr.c (uint16_t *)talloc_memdup(mem_ctx, out.data, 16);
out 2693 source3/rpcclient/cmd_samr.c DATA_BLOB in,out;
out 2695 source3/rpcclient/cmd_samr.c out = data_blob_talloc_zero(mem_ctx, 16);
out 2696 source3/rpcclient/cmd_samr.c sess_crypt_blob(&out, &in, &session_key, true);
out 2698 source3/rpcclient/cmd_samr.c (uint16_t *)talloc_memdup(mem_ctx, out.data, 16);
out 2791 source3/smbd/lanman.c goto out;
out 2797 source3/smbd/lanman.c goto out;
out 2820 source3/smbd/lanman.c out:
out 2868 source3/smbd/lanman.c goto out;
out 2888 source3/smbd/lanman.c out:
out 2976 source3/smbd/lanman.c goto out;
out 3002 source3/smbd/lanman.c out:
out 122 source3/smbd/mangle.c return mangle_fns->lookup_name_from_8_3(ctx, in, out, p);
out 137 source3/smbd/mangle.c memset(out,'\0',13);
out 142 source3/smbd/mangle.c strlcpy(out, in, 13);
out 147 source3/smbd/mangle.c out,
out 508 source3/smbd/mangle_hash.c *out = talloc_asprintf(ctx, "%s%s",
out 512 source3/smbd/mangle_hash.c *out = talloc_strdup(ctx, (char *)data_val.dptr);
out 519 source3/smbd/mangle_hash.c return *out ? True : False;
out 585 source3/smbd/mangle_hash.c memcpy(out, base, baselen);
out 586 source3/smbd/mangle_hash.c out[baselen] = magic_char;
out 587 source3/smbd/mangle_hash.c out[baselen+1] = mangle( csum/MANGLE_BASE );
out 588 source3/smbd/mangle_hash.c out[baselen+2] = mangle( csum );
out 591 source3/smbd/mangle_hash.c out[baselen+3] = '.';
out 592 source3/smbd/mangle_hash.c safe_strcpy(&out[baselen+4], extension, 3);
out 657 source3/smbd/mangle_hash.c safe_strcpy(out, in, 12);
out 662 source3/smbd/mangle_hash.c if (!to_8_3(magic_char, in, out, default_case)) {
out 666 source3/smbd/mangle_hash.c cache_mangled_name(out, in);
out 668 source3/smbd/mangle_hash.c DEBUG(5,("hash_name_to_8_3(%s) ==> [%s]\n", in, out));
out 748 source3/smbd/mangle_hash2.c memset(out, '\0', 13);
out 1373 source3/smbd/msdfs.c goto out;
out 1397 source3/smbd/msdfs.c goto out;
out 1410 source3/smbd/msdfs.c goto out;
out 1417 source3/smbd/msdfs.c goto out;
out 1423 source3/smbd/msdfs.c out:
out 1485 source3/smbd/msdfs.c goto out;
out 1491 source3/smbd/msdfs.c goto out;
out 1504 source3/smbd/msdfs.c out:
out 1556 source3/smbd/msdfs.c goto out;
out 1563 source3/smbd/msdfs.c goto out;
out 1579 source3/smbd/msdfs.c goto out;
out 1585 source3/smbd/msdfs.c goto out;
out 1591 source3/smbd/msdfs.c goto out;
out 1599 source3/smbd/msdfs.c goto out;
out 1616 source3/smbd/msdfs.c goto out;
out 1625 source3/smbd/msdfs.c out:
out 330 source3/smbd/notify_inotify.c uint32_t out=0;
out 333 source3/smbd/notify_inotify.c out |= inotify_mapping[i].inotify_mask;
out 337 source3/smbd/notify_inotify.c return out;
out 267 source3/smbd/open.c goto out;
out 275 source3/smbd/open.c goto out;
out 286 source3/smbd/open.c goto out;
out 298 source3/smbd/open.c goto out;
out 305 source3/smbd/open.c out:
out 52 source3/smbd/process.c goto out;
out 64 source3/smbd/process.c goto out;
out 71 source3/smbd/process.c out:
out 493 source3/smbd/quotas.c goto out;
out 504 source3/smbd/quotas.c goto out;
out 517 source3/smbd/quotas.c goto out;
out 558 source3/smbd/quotas.c out:
out 1050 source3/smbd/quotas.c goto out;
out 1061 source3/smbd/quotas.c goto out;
out 1074 source3/smbd/quotas.c goto out;
out 1120 source3/smbd/quotas.c out:
out 3551 source3/smbd/reply.c goto out;
out 3556 source3/smbd/reply.c out:
out 199 source3/smbd/sesssetup.c goto out;
out 208 source3/smbd/sesssetup.c goto out;
out 217 source3/smbd/sesssetup.c goto out;
out 224 source3/smbd/sesssetup.c out:
out 634 source3/smbd/sesssetup.c goto out;
out 650 source3/smbd/sesssetup.c goto out;
out 668 source3/smbd/sesssetup.c out:
out 646 source3/smbd/vfs.c goto out;
out 662 source3/smbd/vfs.c goto out;
out 666 source3/smbd/vfs.c goto out;
out 675 source3/smbd/vfs.c out:
out 700 source3/smbd/vfs.c return transfer_file_internal((void *)in, (void *)out, n,
out 227 source3/torture/pdbtest.c struct samu *out = NULL;
out 275 source3/torture/pdbtest.c if (!(out = samu_new(ctx))) {
out 285 source3/torture/pdbtest.c samu_set_unix(out, pwd);
out 287 source3/torture/pdbtest.c pdb_set_profile_path(out, "\\\\torture\\profile", PDB_SET);
out 288 source3/torture/pdbtest.c pdb_set_homedir(out, "\\\\torture\\home", PDB_SET);
out 289 source3/torture/pdbtest.c pdb_set_logon_script(out, "torture_script.cmd", PDB_SET);
out 304 source3/torture/pdbtest.c pdb_set_nt_passwd(out, buf, PDB_SET);
out 308 source3/torture/pdbtest.c pdb_set_lanman_passwd(out, buf, PDB_SET);
out 312 source3/torture/pdbtest.c pdb_set_pw_history(out, buf, history, PDB_SET);
out 316 source3/torture/pdbtest.c pdb_set_pass_last_set_time(out, time(NULL), PDB_SET);
out 319 source3/torture/pdbtest.c pdb_set_pass_must_change_time(out, get_time_t_max(), PDB_SET);
out 321 source3/torture/pdbtest.c pdb_set_pass_must_change_time(out, time(NULL)+expire, PDB_SET);
out 325 source3/torture/pdbtest.c pdb_set_pass_can_change_time(out, 0, PDB_SET);
out 327 source3/torture/pdbtest.c pdb_set_pass_can_change_time(out, time(NULL)+min_age, PDB_SET);
out 331 source3/torture/pdbtest.c if (!NT_STATUS_IS_OK(rv = pdb->add_sam_account(pdb, out))) {
out 343 source3/torture/pdbtest.c if (NT_STATUS_IS_ERR(pdb->getsampwnam(pdb, in, out->username))) {
out 345 source3/torture/pdbtest.c out->username);
out 346 source3/torture/pdbtest.c if (!NT_STATUS_IS_OK(rv = pdb->delete_sam_account(pdb, out))) {
out 354 source3/torture/pdbtest.c if (samu_correct(out, in)) {
out 362 source3/torture/pdbtest.c if (!NT_STATUS_IS_OK(rv = pdb->delete_sam_account(pdb, out))) {
out 175 source3/torture/smbiconv.c FILE *out = stdout;
out 208 source3/torture/smbiconv.c out = fopen(output, "w");
out 210 source3/torture/smbiconv.c if(!out) {
out 219 source3/torture/smbiconv.c if (out != stdout) fclose(out);
out 235 source3/torture/smbiconv.c process_fd(cd, fd, out);
out 241 source3/torture/smbiconv.c fclose(out);
out 4203 source3/torture/torture.c goto out;
out 4209 source3/torture/torture.c goto out;
out 4214 source3/torture/torture.c goto out;
out 4221 source3/torture/torture.c goto out;
out 4227 source3/torture/torture.c goto out;
out 4232 source3/torture/torture.c goto out;
out 4239 source3/torture/torture.c goto out;
out 4246 source3/torture/torture.c goto out;
out 4250 source3/torture/torture.c goto out;
out 4256 source3/torture/torture.c goto out;
out 4262 source3/torture/torture.c out:
out 5264 source3/torture/torture.c goto out;
out 5276 source3/torture/torture.c goto out;
out 5281 source3/torture/torture.c out:
out 5363 source3/torture/torture.c goto out;
out 5386 source3/torture/torture.c goto out;
out 5393 source3/torture/torture.c goto out;
out 5399 source3/torture/torture.c goto out;
out 5404 source3/torture/torture.c goto out;
out 5408 source3/torture/torture.c out:
out 131 source3/utils/log2pcaphex.c fwrite(&h, sizeof(struct tcpdump_file_header), 1, out);
out 143 source3/utils/log2pcaphex.c fwrite(&p, sizeof(struct tcpdump_packet), 1, out);
out 144 source3/utils/log2pcaphex.c fwrite(data, sizeof(unsigned char), caplen, out);
out 151 source3/utils/log2pcaphex.c fprintf(out, "%06lX ", cur);
out 153 source3/utils/log2pcaphex.c fprintf(out, "%02x ", data[i]);
out 157 source3/utils/log2pcaphex.c fprintf(out, "\n");
out 177 source3/utils/log2pcaphex.c print_pcap_packet(out, newdata, newlen, actual_length+offset);
out 297 source3/utils/log2pcaphex.c FILE *out, *in;
out 336 source3/utils/log2pcaphex.c out = fopen(outfile, "w+");
out 337 source3/utils/log2pcaphex.c if(!out) {
out 343 source3/utils/log2pcaphex.c if(!outfile) out = stdout;
out 345 source3/utils/log2pcaphex.c if(!hexformat)print_pcap_header(out);
out 358 source3/utils/log2pcaphex.c if(hexformat) print_hex_packet(out, curpacket, curpacket_len);
out 359 source3/utils/log2pcaphex.c else print_netbios_packet(out, curpacket, curpacket_len, data_bytes_read+data_offset);
out 371 source3/utils/log2pcaphex.c if (out != stdout) {
out 372 source3/utils/log2pcaphex.c fclose(out);
out 923 source3/utils/net_ads.c r->out.error_string ? r->out.error_string :
out 928 source3/utils/net_ads.c if (r->out.deleted_machine_account) {
out 930 source3/utils/net_ads.c r->in.machine_name, r->out.dns_domain_name);
out 935 source3/utils/net_ads.c if (r->out.disabled_machine_account) {
out 937 source3/utils/net_ads.c r->in.machine_name, r->out.dns_domain_name);
out 946 source3/utils/net_ads.c r->in.machine_name, r->out.dns_domain_name);
out 1292 source3/utils/net_ads.c if (!modify_config && !strequal(lp_workgroup(), r->out.netbios_domain_name)) {
out 1295 source3/utils/net_ads.c d_printf("Using the name [%s] from the server.\n", r->out.netbios_domain_name);
out 1297 source3/utils/net_ads.c r->out.netbios_domain_name, get_dyn_CONFIGFILE());
out 1300 source3/utils/net_ads.c d_printf("Using short domain name -- %s\n", r->out.netbios_domain_name);
out 1302 source3/utils/net_ads.c if (r->out.dns_domain_name) {
out 1304 source3/utils/net_ads.c r->out.dns_domain_name);
out 1307 source3/utils/net_ads.c r->out.netbios_domain_name);
out 1311 source3/utils/net_ads.c if (r->out.domain_is_ad) {
out 1323 source3/utils/net_ads.c r->out.netbios_domain_name, NULL, NULL );
out 1324 source3/utils/net_ads.c ads_dns->auth.realm = SMB_STRDUP( r->out.dns_domain_name );
out 1345 source3/utils/net_ads.c r && r->out.error_string ? r->out.error_string :
out 2303 source3/utils/net_ads.c goto out;
out 2322 source3/utils/net_ads.c goto out;
out 2333 source3/utils/net_ads.c out:
out 2353 source3/utils/net_ads.c goto out;
out 2372 source3/utils/net_ads.c out:
out 57 source3/utils/net_ads_gpo.c goto out;
out 63 source3/utils/net_ads_gpo.c goto out;
out 83 source3/utils/net_ads_gpo.c goto out;
out 91 source3/utils/net_ads_gpo.c goto out;
out 100 source3/utils/net_ads_gpo.c goto out;
out 111 source3/utils/net_ads_gpo.c goto out;
out 156 source3/utils/net_ads_gpo.c goto out;
out 194 source3/utils/net_ads_gpo.c out:
out 236 source3/utils/net_ads_gpo.c goto out;
out 248 source3/utils/net_ads_gpo.c goto out;
out 261 source3/utils/net_ads_gpo.c goto out;
out 269 source3/utils/net_ads_gpo.c goto out;
out 275 source3/utils/net_ads_gpo.c out:
out 307 source3/utils/net_ads_gpo.c goto out;
out 312 source3/utils/net_ads_gpo.c goto out;
out 317 source3/utils/net_ads_gpo.c goto out;
out 335 source3/utils/net_ads_gpo.c goto out;
out 340 source3/utils/net_ads_gpo.c goto out;
out 345 source3/utils/net_ads_gpo.c out:
out 378 source3/utils/net_ads_gpo.c goto out;
out 388 source3/utils/net_ads_gpo.c goto out;
out 395 source3/utils/net_ads_gpo.c goto out;
out 417 source3/utils/net_ads_gpo.c goto out;
out 422 source3/utils/net_ads_gpo.c goto out;
out 430 source3/utils/net_ads_gpo.c goto out;
out 433 source3/utils/net_ads_gpo.c out:
out 462 source3/utils/net_ads_gpo.c goto out;
out 469 source3/utils/net_ads_gpo.c goto out;
out 474 source3/utils/net_ads_gpo.c out:
out 510 source3/utils/net_ads_gpo.c goto out;
out 516 source3/utils/net_ads_gpo.c goto out;
out 519 source3/utils/net_ads_gpo.c out:
out 550 source3/utils/net_ads_gpo.c goto out;
out 556 source3/utils/net_ads_gpo.c goto out;
out 559 source3/utils/net_ads_gpo.c out:
out 590 source3/utils/net_ads_gpo.c goto out;
out 602 source3/utils/net_ads_gpo.c goto out;
out 607 source3/utils/net_ads_gpo.c out:
out 319 source3/utils/net_lookup.c struct addrinfo *out;
out 325 source3/utils/net_lookup.c NULL, &hints, &out);
out 327 source3/utils/net_lookup.c struct addrinfo *cur = out;
out 342 source3/utils/net_lookup.c freeaddrinfo(out);
out 171 source3/utils/net_rpc_printer.c goto out;
out 183 source3/utils/net_rpc_printer.c goto out;
out 199 source3/utils/net_rpc_printer.c goto out;
out 211 source3/utils/net_rpc_printer.c goto out;
out 221 source3/utils/net_rpc_printer.c goto out;
out 232 source3/utils/net_rpc_printer.c goto out;
out 243 source3/utils/net_rpc_printer.c goto out;
out 254 source3/utils/net_rpc_printer.c goto out;
out 261 source3/utils/net_rpc_printer.c goto out;
out 267 source3/utils/net_rpc_printer.c out:
out 314 source3/utils/net_rpc_printer.c goto out;
out 317 source3/utils/net_rpc_printer.c goto out;
out 332 source3/utils/net_rpc_printer.c goto out;
out 347 source3/utils/net_rpc_printer.c goto out;
out 354 source3/utils/net_rpc_printer.c goto out;
out 389 source3/utils/net_rpc_printer.c goto out;
out 411 source3/utils/net_rpc_printer.c goto out;
out 421 source3/utils/net_rpc_printer.c goto out;
out 428 source3/utils/net_rpc_printer.c goto out;
out 436 source3/utils/net_rpc_printer.c goto out;
out 441 source3/utils/net_rpc_printer.c out:
out 518 source3/utils/net_rpc_printer.c goto out;
out 522 source3/utils/net_rpc_printer.c out:
out 560 source3/utils/net_rpc_printer.c goto out;
out 565 source3/utils/net_rpc_printer.c out:
out 1057 source3/utils/net_rpc_printer.c goto out;
out 1076 source3/utils/net_rpc_printer.c out:
out 1097 source3/utils/net_rpc_registry.c goto out;
out 1105 source3/utils/net_rpc_registry.c goto out;
out 1113 source3/utils/net_rpc_registry.c out:
out 1171 source3/utils/net_rpc_registry.c goto out;
out 1186 source3/utils/net_rpc_registry.c goto out;
out 1196 source3/utils/net_rpc_registry.c goto out;
out 1202 source3/utils/net_rpc_registry.c out:
out 393 source3/utils/net_rpc_samsync.c goto out;
out 400 source3/utils/net_rpc_samsync.c out:
out 448 source3/utils/net_rpc_samsync.c goto out;
out 455 source3/utils/net_rpc_samsync.c out:
out 1670 source3/utils/ntlm_auth.c goto out;
out 1676 source3/utils/ntlm_auth.c goto out;
out 1711 source3/utils/ntlm_auth.c goto out;
out 1717 source3/utils/ntlm_auth.c goto out;
out 1724 source3/utils/ntlm_auth.c goto out;
out 1734 source3/utils/ntlm_auth.c out:
out 144 source3/utils/pdbedit.c status = out->getsampwnam(out, account, user->username);
out 147 source3/utils/pdbedit.c status = out->update_sam_account( out, user );
out 149 source3/utils/pdbedit.c status = out->add_sam_account(out, user);
out 186 source3/utils/pdbedit.c out->add_group_mapping_entry(out, &(maps[i]));
out 237 source3/utils/pdbedit.c status = out->set_account_policy(out, i, policy_value);
out 240 source3/utils/pdbedit.c fprintf(stderr, "Unable to migrate account policy to %s\n", out->name);
out 209 source3/utils/smbcacls.c goto out;
out 216 source3/utils/smbcacls.c goto out;
out 223 source3/utils/smbcacls.c goto out;
out 230 source3/utils/smbcacls.c goto out;
out 237 source3/utils/smbcacls.c goto out;
out 244 source3/utils/smbcacls.c goto out;
out 260 source3/utils/smbcacls.c out:
out 473 source3/winbindd/winbindd_group.c goto out;
out 487 source3/winbindd/winbindd_group.c goto out;
out 501 source3/winbindd/winbindd_group.c goto out;
out 514 source3/winbindd/winbindd_group.c out:
out 40 source3/winbindd/winbindd_user.c if (out == NULL)
out 62 source3/winbindd/winbindd_user.c safe_strcpy(out, templ, sizeof(fstring) - 1);
out 222 source4/auth/gensec/cyrus_sasl.c *out = data_blob_talloc(out_mem_ctx, out_data, out_len);
out 246 source4/auth/gensec/cyrus_sasl.c *out = data_blob_talloc(out_mem_ctx, out_data, out_len);
out 270 source4/auth/gensec/cyrus_sasl.c *out = data_blob_talloc(out_mem_ctx, out_data, out_len);
out 921 source4/auth/gensec/gensec.c return gensec_security->ops->wrap(gensec_security, mem_ctx, in, out);
out 932 source4/auth/gensec/gensec.c return gensec_security->ops->unwrap(gensec_security, mem_ctx, in, out);
out 981 source4/auth/gensec/gensec.c return gensec_security->ops->update(gensec_security, out_mem_ctx, in, out);
out 988 source4/auth/gensec/gensec.c req->status = req->gensec_security->ops->update(req->gensec_security, req, req->in, &req->out);
out 1013 source4/auth/gensec/gensec.c req->out = data_blob(NULL, 0);
out 1044 source4/auth/gensec/gensec.c *out = req->out;
out 1045 source4/auth/gensec/gensec.c talloc_steal(out_mem_ctx, out->data);
out 77 source4/auth/gensec/gensec.h DATA_BLOB out;
out 104 source4/auth/gensec/gensec.h const DATA_BLOB in, DATA_BLOB *out);
out 127 source4/auth/gensec/gensec.h DATA_BLOB *out);
out 131 source4/auth/gensec/gensec.h DATA_BLOB *out);
out 135 source4/auth/gensec/gensec.h DATA_BLOB *out,
out 140 source4/auth/gensec/gensec.h DATA_BLOB *out,
out 496 source4/auth/gensec/gensec_gssapi.c *out = data_blob_talloc(out_mem_ctx, output_token.value, output_token.length);
out 517 source4/auth/gensec/gensec_gssapi.c if (!out->data) {
out 518 source4/auth/gensec/gensec_gssapi.c out->data = (uint8_t *)talloc_strdup(out_mem_ctx, "\0");
out 537 source4/auth/gensec/gensec_gssapi.c *out = data_blob_talloc(out_mem_ctx, output_token.value, output_token.length);
out 652 source4/auth/gensec/gensec_gssapi.c *out = data_blob_talloc(out_mem_ctx, output_token.value, output_token.length);
out 717 source4/auth/gensec/gensec_gssapi.c *out = data_blob_talloc(out_mem_ctx, output_token.value, output_token.length);
out 791 source4/auth/gensec/gensec_gssapi.c *out = data_blob(NULL, 0);
out 825 source4/auth/gensec/gensec_gssapi.c *out = data_blob_talloc(mem_ctx, output_token.value, output_token.length);
out 830 source4/auth/gensec/gensec_gssapi.c if (max_wrapped_size < out->length) {
out 833 source4/auth/gensec/gensec_gssapi.c (unsigned)out->length,
out 880 source4/auth/gensec/gensec_gssapi.c *out = data_blob_talloc(mem_ctx, output_token.value, output_token.length);
out 391 source4/auth/gensec/gensec_krb5.c *out = gensec_gssapi_gen_krb5_wrap(out_mem_ctx, &unwrapped_out, TOK_ID_KRB_AP_REQ);
out 393 source4/auth/gensec/gensec_krb5.c *out = data_blob_talloc(out_mem_ctx, gensec_krb5_state->enc_ticket.data, gensec_krb5_state->enc_ticket.length);
out 429 source4/auth/gensec/gensec_krb5.c *out = data_blob(NULL, 0);
out 494 source4/auth/gensec/gensec_krb5.c *out = gensec_gssapi_gen_krb5_wrap(out_mem_ctx, &unwrapped_out, TOK_ID_KRB_AP_REP);
out 496 source4/auth/gensec/gensec_krb5.c *out = data_blob_talloc(out_mem_ctx, outbuf.data, outbuf.length);
out 715 source4/auth/gensec/gensec_krb5.c *out = data_blob_talloc(mem_ctx, output.data, output.length);
out 746 source4/auth/gensec/gensec_krb5.c *out = data_blob_talloc(mem_ctx, output.data, output.length);
out 59 source4/auth/gensec/schannel.c *out = data_blob(NULL, 0);
out 87 source4/auth/gensec/schannel.c ndr_err = ndr_push_struct_blob(out, out_mem_ctx,
out 146 source4/auth/gensec/schannel.c ndr_err = ndr_push_struct_blob(out, out_mem_ctx,
out 84 source4/auth/gensec/socket.c *out = data_blob_talloc(mem_ctx, NULL, 4);
out 85 source4/auth/gensec/socket.c if (!out->data) {
out 88 source4/auth/gensec/socket.c RSIVAL(out->data, 0, wrapped.length);
out 90 source4/auth/gensec/socket.c if (!data_blob_append(mem_ctx, out, wrapped.data, wrapped.length)) {
out 96 source4/auth/gensec/socket.c return gensec_security->ops->wrap_packets(gensec_security, mem_ctx, in, out,
out 130 source4/auth/gensec/socket.c &wrapped, out);
out 138 source4/auth/gensec/socket.c return gensec_security->ops->unwrap_packets(gensec_security, mem_ctx, in, out,
out 188 source4/auth/gensec/spnego.c mem_ctx, in, out);
out 205 source4/auth/gensec/spnego.c mem_ctx, in, out);
out 223 source4/auth/gensec/spnego.c mem_ctx, in, out,
out 257 source4/auth/gensec/spnego.c mem_ctx, in, out,
out 383 source4/auth/gensec/spnego.c out_mem_ctx, in, out);
out 649 source4/auth/gensec/spnego.c if (spnego_write_data(out_mem_ctx, out, &spnego_out) == -1) {
out 710 source4/auth/gensec/spnego.c if (spnego_write_data(out_mem_ctx, out, &spnego_out) == -1) {
out 733 source4/auth/gensec/spnego.c *out = data_blob(NULL, 0);
out 744 source4/auth/gensec/spnego.c out_mem_ctx, in, out);
out 753 source4/auth/gensec/spnego.c out_mem_ctx, in, out);
out 779 source4/auth/gensec/spnego.c out);
out 786 source4/auth/gensec/spnego.c out_mem_ctx, in, out);
out 803 source4/auth/gensec/spnego.c out_mem_ctx, in, out);
out 851 source4/auth/gensec/spnego.c if (spnego_write_data(out_mem_ctx, out, &spnego_out) == -1) {
out 937 source4/auth/gensec/spnego.c out);
out 1072 source4/auth/gensec/spnego.c if (spnego_write_data(out_mem_ctx, out, &spnego_out) == -1) {
out 1082 source4/auth/gensec/spnego.c *out = null_data_blob;
out 350 source4/auth/gensec/spnego_parse.c if (!spnego) goto out;
out 373 source4/auth/gensec/spnego_parse.c out:
out 52 source4/auth/kerberos/kerberos_heimdal.c krb5_rd_req_out_ctx out = NULL;
out 73 source4/auth/kerberos/kerberos_heimdal.c in, &out);
out 82 source4/auth/kerberos/kerberos_heimdal.c kret = krb5_rd_req_out_get_ticket(context, out,
out 85 source4/auth/kerberos/kerberos_heimdal.c kret = krb5_rd_req_out_get_keyblock(context, out,
out 88 source4/auth/kerberos/kerberos_heimdal.c krb5_rd_req_out_ctx_free(context, out);
out 93 source4/auth/ntlm/auth_server.c *_blob = io.out.tree->session->transport->negotiate.secblob;
out 94 source4/auth/ntlm/auth_server.c ctx->private_data = talloc_steal(ctx, io.out.tree->session);
out 244 source4/auth/ntlm/auth_winbind.c &s->req.out.validation,
out 45 source4/auth/ntlmssp/ntlmssp.c DATA_BLOB in, DATA_BLOB *out);
out 209 source4/auth/ntlmssp/ntlmssp.c *out = data_blob(NULL, 0);
out 220 source4/auth/ntlmssp/ntlmssp.c status = ntlmssp_callbacks[i].sync_fn(gensec_security, out_mem_ctx, input, out);
out 76 source4/auth/ntlmssp/ntlmssp_client.c out, "CddAA",
out 258 source4/auth/ntlmssp/ntlmssp_client.c out, auth_gen_string,
out 275 source4/auth/ntlmssp/ntlmssp_client.c talloc_steal(out_mem_ctx, out->data);
out 228 source4/auth/ntlmssp/ntlmssp_server.c out, gen_string,
out 567 source4/auth/ntlmssp/ntlmssp_server.c *out = data_blob_talloc(out_mem_ctx, NULL, 0);
out 461 source4/auth/ntlmssp/ntlmssp_sign.c *out = data_blob_talloc(sig_mem_ctx, NULL, in->length + NTLMSSP_SIG_SIZE);
out 462 source4/auth/ntlmssp/ntlmssp_sign.c if (!out->data) {
out 465 source4/auth/ntlmssp/ntlmssp_sign.c memcpy(out->data + NTLMSSP_SIG_SIZE, in->data, in->length);
out 468 source4/auth/ntlmssp/ntlmssp_sign.c out->data + NTLMSSP_SIG_SIZE,
out 469 source4/auth/ntlmssp/ntlmssp_sign.c out->length - NTLMSSP_SIG_SIZE,
out 470 source4/auth/ntlmssp/ntlmssp_sign.c out->data + NTLMSSP_SIG_SIZE,
out 471 source4/auth/ntlmssp/ntlmssp_sign.c out->length - NTLMSSP_SIG_SIZE,
out 475 source4/auth/ntlmssp/ntlmssp_sign.c memcpy(out->data, sig.data, NTLMSSP_SIG_SIZE);
out 481 source4/auth/ntlmssp/ntlmssp_sign.c *out = data_blob_talloc(sig_mem_ctx, NULL, in->length + NTLMSSP_SIG_SIZE);
out 482 source4/auth/ntlmssp/ntlmssp_sign.c if (!out->data) {
out 485 source4/auth/ntlmssp/ntlmssp_sign.c memcpy(out->data + NTLMSSP_SIG_SIZE, in->data, in->length);
out 488 source4/auth/ntlmssp/ntlmssp_sign.c out->data + NTLMSSP_SIG_SIZE,
out 489 source4/auth/ntlmssp/ntlmssp_sign.c out->length - NTLMSSP_SIG_SIZE,
out 490 source4/auth/ntlmssp/ntlmssp_sign.c out->data + NTLMSSP_SIG_SIZE,
out 491 source4/auth/ntlmssp/ntlmssp_sign.c out->length - NTLMSSP_SIG_SIZE,
out 495 source4/auth/ntlmssp/ntlmssp_sign.c memcpy(out->data, sig.data, NTLMSSP_SIG_SIZE);
out 500 source4/auth/ntlmssp/ntlmssp_sign.c *out = *in;
out 520 source4/auth/ntlmssp/ntlmssp_sign.c *out = data_blob_talloc(sig_mem_ctx, in->data + NTLMSSP_SIG_SIZE, in->length - NTLMSSP_SIG_SIZE);
out 523 source4/auth/ntlmssp/ntlmssp_sign.c out->data, out->length,
out 524 source4/auth/ntlmssp/ntlmssp_sign.c out->data, out->length,
out 534 source4/auth/ntlmssp/ntlmssp_sign.c *out = data_blob_talloc(sig_mem_ctx, in->data + NTLMSSP_SIG_SIZE, in->length - NTLMSSP_SIG_SIZE);
out 537 source4/auth/ntlmssp/ntlmssp_sign.c out->data, out->length,
out 538 source4/auth/ntlmssp/ntlmssp_sign.c out->data, out->length,
out 541 source4/auth/ntlmssp/ntlmssp_sign.c *out = *in;
out 345 source4/client/cifsdd.c (unsigned long long)dd_stats.out.fblocks,
out 346 source4/client/cifsdd.c (unsigned long long)dd_stats.out.pblocks,
out 347 source4/client/cifsdd.c (unsigned long long)dd_stats.out.bytes);
out 352 source4/client/cifsdd.c (unsigned long long)dd_stats.out.fblocks,
out 353 source4/client/cifsdd.c (unsigned long long)dd_stats.out.pblocks);
out 71 source4/client/cifsdd.h } out;
out 173 source4/client/cifsddio.c r.readx.out.data = buf;
out 187 source4/client/cifsddio.c SMB_ASSERT((smbh->offset + r.readx.out.nread) >= smbh->offset);
out 189 source4/client/cifsddio.c *actual = r.readx.out.nread;
out 190 source4/client/cifsddio.c smbh->offset += r.readx.out.nread;
out 218 source4/client/cifsddio.c *actual = w.writex.out.nwritten;
out 219 source4/client/cifsddio.c smbh->offset += w.writex.out.nwritten;
out 302 source4/client/cifsddio.c return(o.ntcreatex.out.file.fnum);
out 471 source4/client/cifsddio.c dd_stats.out.bytes += write_size;
out 472 source4/client/cifsddio.c dd_stats.out.pblocks++;
out 489 source4/client/cifsddio.c dd_stats.out.fblocks++;
out 491 source4/client/cifsddio.c dd_stats.out.pblocks++;
out 495 source4/client/cifsddio.c dd_stats.out.bytes += write_size;
out 1631 source4/client/client.c (unsigned short) fsinfo.dskattr.out.units_total);
out 1633 source4/client/client.c (unsigned short) fsinfo.dskattr.out.blocks_per_unit);
out 1635 source4/client/client.c (unsigned short) fsinfo.dskattr.out.block_size);
out 1637 source4/client/client.c (unsigned short) fsinfo.dskattr.out.units_free);
out 1641 source4/client/client.c (unsigned long) fsinfo.allocation.out.fs_id);
out 1643 source4/client/client.c (unsigned long) fsinfo.allocation.out.sectors_per_unit);
out 1645 source4/client/client.c (unsigned long) fsinfo.allocation.out.total_alloc_units);
out 1647 source4/client/client.c (unsigned long) fsinfo.allocation.out.avail_alloc_units);
out 1649 source4/client/client.c (unsigned short) fsinfo.allocation.out.bytes_per_sector);
out 1653 source4/client/client.c (unsigned long) fsinfo.volume.out.serial_number);
out 1654 source4/client/client.c d_printf("\tvolume_name: %s\n", fsinfo.volume.out.volume_name.s);
out 1659 source4/client/client.c nt_time_string(ctx,fsinfo.volume_info.out.create_time));
out 1661 source4/client/client.c (unsigned long) fsinfo.volume_info.out.serial_number);
out 1662 source4/client/client.c d_printf("\tvolume_name: %s\n", fsinfo.volume_info.out.volume_name.s);
out 1667 source4/client/client.c (unsigned long long) fsinfo.size_info.out.total_alloc_units);
out 1669 source4/client/client.c (unsigned long long) fsinfo.size_info.out.avail_alloc_units);
out 1671 source4/client/client.c (unsigned long) fsinfo.size_info.out.sectors_per_unit);
out 1673 source4/client/client.c (unsigned long) fsinfo.size_info.out.bytes_per_sector);
out 1678 source4/client/client.c (unsigned long) fsinfo.device_info.out.device_type);
out 1680 source4/client/client.c (unsigned long) fsinfo.device_info.out.characteristics);
out 1685 source4/client/client.c (unsigned long) fsinfo.attribute_info.out.fs_attr);
out 1687 source4/client/client.c (unsigned long) fsinfo.attribute_info.out.max_file_component_length);
out 1688 source4/client/client.c d_printf("\tfs_type: %s\n", fsinfo.attribute_info.out.fs_type.s);
out 1692 source4/client/client.c (unsigned short) fsinfo.unix_info.out.major_version);
out 1694 source4/client/client.c (unsigned short) fsinfo.unix_info.out.minor_version);
out 1696 source4/client/client.c (unsigned long long) fsinfo.unix_info.out.capability);
out 1700 source4/client/client.c (unsigned long long) fsinfo.quota_information.out.unknown[0],
out 1701 source4/client/client.c (unsigned long long) fsinfo.quota_information.out.unknown[1],
out 1702 source4/client/client.c (unsigned long long) fsinfo.quota_information.out.unknown[2]);
out 1704 source4/client/client.c (unsigned long long) fsinfo.quota_information.out.quota_soft);
out 1706 source4/client/client.c (unsigned long long) fsinfo.quota_information.out.quota_hard);
out 1708 source4/client/client.c (unsigned long long) fsinfo.quota_information.out.quota_flags);
out 1712 source4/client/client.c (unsigned long long) fsinfo.full_size_information.out.total_alloc_units);
out 1714 source4/client/client.c (unsigned long long) fsinfo.full_size_information.out.call_avail_alloc_units);
out 1716 source4/client/client.c (unsigned long long) fsinfo.full_size_information.out.actual_avail_alloc_units);
out 1718 source4/client/client.c (unsigned long) fsinfo.full_size_information.out.sectors_per_unit);
out 1720 source4/client/client.c (unsigned long) fsinfo.full_size_information.out.bytes_per_sector);
out 1724 source4/client/client.c GUID_string(ctx,&fsinfo.objectid_information.out.guid));
out 1726 source4/client/client.c (unsigned long long) fsinfo.objectid_information.out.unknown[0],
out 1727 source4/client/client.c (unsigned long long) fsinfo.objectid_information.out.unknown[1],
out 1728 source4/client/client.c (unsigned long long) fsinfo.objectid_information.out.unknown[2],
out 1729 source4/client/client.c (unsigned long long) fsinfo.objectid_information.out.unknown[3],
out 1730 source4/client/client.c (unsigned long long) fsinfo.objectid_information.out.unknown[4],
out 1731 source4/client/client.c (unsigned long long) fsinfo.objectid_information.out.unknown[5] );
out 1766 source4/client/client.c d_printf("\tcreate_time: %s\n", nt_time_string(ctx, finfo.all_info.out.create_time));
out 1767 source4/client/client.c d_printf("\taccess_time: %s\n", nt_time_string(ctx, finfo.all_info.out.access_time));
out 1768 source4/client/client.c d_printf("\twrite_time: %s\n", nt_time_string(ctx, finfo.all_info.out.write_time));
out 1769 source4/client/client.c d_printf("\tchange_time: %s\n", nt_time_string(ctx, finfo.all_info.out.change_time));
out 1770 source4/client/client.c d_printf("\tattrib: 0x%x\n", finfo.all_info.out.attrib);
out 1771 source4/client/client.c d_printf("\talloc_size: %lu\n", (unsigned long)finfo.all_info.out.alloc_size);
out 1772 source4/client/client.c d_printf("\tsize: %lu\n", (unsigned long)finfo.all_info.out.size);
out 1773 source4/client/client.c d_printf("\tnlink: %u\n", finfo.all_info.out.nlink);
out 1774 source4/client/client.c d_printf("\tdelete_pending: %u\n", finfo.all_info.out.delete_pending);
out 1775 source4/client/client.c d_printf("\tdirectory: %u\n", finfo.all_info.out.directory);
out 1776 source4/client/client.c d_printf("\tea_size: %u\n", finfo.all_info.out.ea_size);
out 1777 source4/client/client.c d_printf("\tfname: '%s'\n", finfo.all_info.out.fname.s);
out 1783 source4/client/client.c d_printf("\talt_name: %s\n", finfo.alt_name_info.out.fname.s);
out 1791 source4/client/client.c (double)finfo.internal_information.out.file_id);
out 1799 source4/client/client.c for (i=0;i<finfo.all_eas.out.num_eas;i++) {
out 1801 source4/client/client.c finfo.all_eas.out.eas[i].flags,
out 1802 source4/client/client.c (int)finfo.all_eas.out.eas[i].value.length,
out 1803 source4/client/client.c finfo.all_eas.out.eas[i].name.s);
out 1812 source4/client/client.c for (i=0;i<finfo.stream_info.out.num_streams;i++) {
out 1815 source4/client/client.c (long)finfo.stream_info.out.streams[i].size);
out 1817 source4/client/client.c (long)finfo.stream_info.out.streams[i].alloc_size);
out 1818 source4/client/client.c d_printf("\t\tname %s\n", finfo.stream_info.out.streams[i].stream_name.s);
out 1826 source4/client/client.c d_printf("\tcompressed size %ld\n", (long)finfo.compression_info.out.compressed_size);
out 1827 source4/client/client.c d_printf("\tformat %ld\n", (long)finfo.compression_info.out.format);
out 1828 source4/client/client.c d_printf("\tunit_shift %ld\n", (long)finfo.compression_info.out.unit_shift);
out 1829 source4/client/client.c d_printf("\tchunk_shift %ld\n", (long)finfo.compression_info.out.chunk_shift);
out 1830 source4/client/client.c d_printf("\tcluster_shift %ld\n", (long)finfo.compression_info.out.cluster_shift);
out 1843 source4/client/client.c info.out.num_volumes, info.out.num_names);
out 1844 source4/client/client.c for (i=0;i<info.out.num_names;i++) {
out 1845 source4/client/client.c d_printf("\t%s\n", info.out.names[i]);
out 1848 source4/client/client.c info.out.names[i], fname);
out 1860 source4/client/client.c d_printf("\t\tcreate_time: %s\n", nt_time_string(ctx, finfo.all_info.out.create_time));
out 1861 source4/client/client.c d_printf("\t\twrite_time: %s\n", nt_time_string(ctx, finfo.all_info.out.write_time));
out 1862 source4/client/client.c d_printf("\t\tchange_time: %s\n", nt_time_string(ctx, finfo.all_info.out.change_time));
out 1863 source4/client/client.c d_printf("\t\tsize: %lu\n", (unsigned long)finfo.all_info.out.size);
out 1897 source4/client/client.c d_printf("%s has %d EAs\n", fname, finfo.all_eas.out.num_eas);
out 1899 source4/client/client.c for (i=0;i<finfo.all_eas.out.num_eas;i++) {
out 1901 source4/client/client.c finfo.all_eas.out.eas[i].flags,
out 1902 source4/client/client.c (int)finfo.all_eas.out.eas[i].value.length,
out 1903 source4/client/client.c finfo.all_eas.out.eas[i].name.s);
out 1906 source4/client/client.c finfo.all_eas.out.eas[i].value.data,
out 1907 source4/client/client.c finfo.all_eas.out.eas[i].value.length);
out 1953 source4/client/client.c NDR_PRINT_DEBUG(security_descriptor, query.query_secdesc.out.sd);
out 2593 source4/client/client.c r.out.resume_handle = &resume_handle;
out 2594 source4/client/client.c r.out.totalentries = &totalentries;
out 2595 source4/client/client.c r.out.info_ctr = &info_ctr;
out 2605 source4/client/client.c (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA) ||
out 2606 source4/client/client.c W_ERROR_IS_OK(r.out.result)) &&
out 2607 source4/client/client.c r.out.info_ctr->ctr.ctr1) {
out 2608 source4/client/client.c display_share_result(r.out.info_ctr->ctr.ctr1);
out 2609 source4/client/client.c resume_handle += r.out.info_ctr->ctr.ctr1->count;
out 2611 source4/client/client.c } while (NT_STATUS_IS_OK(status) && W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA));
out 2615 source4/client/client.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
out 2617 source4/client/client.c binding, nt_errstr(status), win_errstr(r.out.result));
out 117 source4/dsdb/repl/drepl_out_helpers.c st->bind_r.out.bind_handle = &st->drsuapi->bind_handle;
out 132 source4/dsdb/repl/drepl_out_helpers.c if (!W_ERROR_IS_OK(st->bind_r.out.result)) {
out 133 source4/dsdb/repl/drepl_out_helpers.c composite_error(c, werror_to_ntstatus(st->bind_r.out.result));
out 138 source4/dsdb/repl/drepl_out_helpers.c if (st->bind_r.out.bind_info) {
out 139 source4/dsdb/repl/drepl_out_helpers.c switch (st->bind_r.out.bind_info->length) {
out 142 source4/dsdb/repl/drepl_out_helpers.c info24 = &st->bind_r.out.bind_info->info.info24;
out 151 source4/dsdb/repl/drepl_out_helpers.c info48 = &st->bind_r.out.bind_info->info.info48;
out 159 source4/dsdb/repl/drepl_out_helpers.c st->drsuapi->remote_info28 = st->bind_r.out.bind_info->info.info28;
out 249 source4/dsdb/repl/drepl_out_helpers.c r->out.level_out = talloc(r, int32_t);
out 250 source4/dsdb/repl/drepl_out_helpers.c if (composite_nomem(r->out.level_out, c)) return;
out 253 source4/dsdb/repl/drepl_out_helpers.c r->out.ctr = talloc(r, union drsuapi_DsGetNCChangesCtr);
out 254 source4/dsdb/repl/drepl_out_helpers.c if (composite_nomem(r->out.ctr, c)) return;
out 311 source4/dsdb/repl/drepl_out_helpers.c if (!W_ERROR_IS_OK(r->out.result)) {
out 312 source4/dsdb/repl/drepl_out_helpers.c composite_error(c, werror_to_ntstatus(r->out.result));
out 316 source4/dsdb/repl/drepl_out_helpers.c if (*r->out.level_out == 1) {
out 318 source4/dsdb/repl/drepl_out_helpers.c ctr1 = &r->out.ctr->ctr1;
out 319 source4/dsdb/repl/drepl_out_helpers.c } else if (*r->out.level_out == 2 &&
out 320 source4/dsdb/repl/drepl_out_helpers.c r->out.ctr->ctr2.mszip1.ts) {
out 322 source4/dsdb/repl/drepl_out_helpers.c ctr1 = &r->out.ctr->ctr2.mszip1.ts->ctr1;
out 323 source4/dsdb/repl/drepl_out_helpers.c } else if (*r->out.level_out == 6) {
out 325 source4/dsdb/repl/drepl_out_helpers.c ctr6 = &r->out.ctr->ctr6;
out 326 source4/dsdb/repl/drepl_out_helpers.c } else if (*r->out.level_out == 7 &&
out 327 source4/dsdb/repl/drepl_out_helpers.c r->out.ctr->ctr7.level == 6 &&
out 328 source4/dsdb/repl/drepl_out_helpers.c r->out.ctr->ctr7.type == DRSUAPI_COMPRESSION_TYPE_MSZIP &&
out 329 source4/dsdb/repl/drepl_out_helpers.c r->out.ctr->ctr7.ctr.mszip6.ts) {
out 331 source4/dsdb/repl/drepl_out_helpers.c ctr6 = &r->out.ctr->ctr7.ctr.mszip6.ts->ctr6;
out 332 source4/dsdb/repl/drepl_out_helpers.c } else if (*r->out.level_out == 7 &&
out 333 source4/dsdb/repl/drepl_out_helpers.c r->out.ctr->ctr7.level == 6 &&
out 334 source4/dsdb/repl/drepl_out_helpers.c r->out.ctr->ctr7.type == DRSUAPI_COMPRESSION_TYPE_XPRESS &&
out 335 source4/dsdb/repl/drepl_out_helpers.c r->out.ctr->ctr7.ctr.xpress6.ts) {
out 337 source4/dsdb/repl/drepl_out_helpers.c ctr6 = &r->out.ctr->ctr7.ctr.xpress6.ts->ctr6;
out 128 source4/dsdb/repl/replicated_objects.c *out = plain_buffer;
out 335 source4/dsdb/repl/replicated_objects.c out->msg = msg;
out 336 source4/dsdb/repl/replicated_objects.c out->guid_value = guid_value;
out 337 source4/dsdb/repl/replicated_objects.c out->when_changed = whenChanged_s;
out 338 source4/dsdb/repl/replicated_objects.c out->meta_data = md;
out 357 source4/dsdb/repl/replicated_objects.c struct dsdb_extended_replicated_objects *out;
out 371 source4/dsdb/repl/replicated_objects.c out = talloc_zero(mem_ctx, struct dsdb_extended_replicated_objects);
out 372 source4/dsdb/repl/replicated_objects.c W_ERROR_HAVE_NO_MEMORY(out);
out 373 source4/dsdb/repl/replicated_objects.c out->version = DSDB_EXTENDED_REPLICATED_OBJECTS_VERSION;
out 375 source4/dsdb/repl/replicated_objects.c out->partition_dn = ldb_dn_new(out, ldb, partition_dn);
out 376 source4/dsdb/repl/replicated_objects.c W_ERROR_HAVE_NO_MEMORY(out->partition_dn);
out 378 source4/dsdb/repl/replicated_objects.c out->source_dsa = source_dsa;
out 379 source4/dsdb/repl/replicated_objects.c out->uptodateness_vector= uptodateness_vector;
out 381 source4/dsdb/repl/replicated_objects.c out->num_objects = object_count;
out 382 source4/dsdb/repl/replicated_objects.c out->objects = talloc_array(out,
out 384 source4/dsdb/repl/replicated_objects.c out->num_objects);
out 385 source4/dsdb/repl/replicated_objects.c W_ERROR_HAVE_NO_MEMORY(out->objects);
out 388 source4/dsdb/repl/replicated_objects.c if (i == out->num_objects) {
out 392 source4/dsdb/repl/replicated_objects.c status = dsdb_convert_object(ldb, schema, out, cur, gensec_skey, out->objects, &out->objects[i]);
out 395 source4/dsdb/repl/replicated_objects.c if (i != out->num_objects) {
out 401 source4/dsdb/repl/replicated_objects.c ret = ldb_extended(ldb, DSDB_EXTENDED_REPLICATED_OBJECTS_OID, out, &ext_res);
out 405 source4/dsdb/repl/replicated_objects.c talloc_free(out);
out 411 source4/dsdb/repl/replicated_objects.c *_out = out;
out 413 source4/dsdb/repl/replicated_objects.c talloc_free(out);
out 118 source4/dsdb/samdb/ldb_modules/samba3sam.c struct ldb_val out = data_blob(NULL, 0);
out 119 source4/dsdb/samdb/ldb_modules/samba3sam.c out = ldb_val_dup(ctx, val);
out 121 source4/dsdb/samdb/ldb_modules/samba3sam.c return out;
out 182 source4/dsdb/samdb/ldb_modules/samba3sam.c struct ldb_val out = data_blob(NULL, 0);
out 188 source4/dsdb/samdb/ldb_modules/samba3sam.c return out;
out 191 source4/dsdb/samdb/ldb_modules/samba3sam.c ndr_err = ndr_push_struct_blob(&out, ctx,
out 196 source4/dsdb/samdb/ldb_modules/samba3sam.c return out;
out 199 source4/dsdb/samdb/ldb_modules/samba3sam.c return out;
out 205 source4/dsdb/samdb/ldb_modules/samba3sam.c struct ldb_val out = data_blob(NULL, 0);
out 211 source4/dsdb/samdb/ldb_modules/samba3sam.c return out;
out 220 source4/dsdb/samdb/ldb_modules/samba3sam.c out.data = (uint8_t *)dom_sid_string(ctx, sid);
out 221 source4/dsdb/samdb/ldb_modules/samba3sam.c if (out.data == NULL) {
out 224 source4/dsdb/samdb/ldb_modules/samba3sam.c out.length = strlen((const char *)out.data);
out 228 source4/dsdb/samdb/ldb_modules/samba3sam.c return out;
out 234 source4/dsdb/samdb/ldb_modules/samba3sam.c struct ldb_val out;
out 240 source4/dsdb/samdb/ldb_modules/samba3sam.c out = data_blob_string_const(smbpasswd_sethexpwd(ctx, &pwd, 0));
out 241 source4/dsdb/samdb/ldb_modules/samba3sam.c if (!out.data) {
out 244 source4/dsdb/samdb/ldb_modules/samba3sam.c return out;
out 250 source4/dsdb/samdb/ldb_modules/samba3sam.c struct ldb_val out;
out 256 source4/dsdb/samdb/ldb_modules/samba3sam.c out = data_blob_talloc(ctx, pwd->hash, sizeof(pwd->hash));
out 257 source4/dsdb/samdb/ldb_modules/samba3sam.c return out;
out 47 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c struct ldb_val out = data_blob(NULL, 0);
out 50 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 52 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c ndr_err = ndr_push_struct_blob(&out, ctx, NULL, &guid,
out 55 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 58 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 63 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c struct ldb_val out = data_blob(NULL, 0);
out 67 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 77 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c struct ldb_val out = data_blob(NULL, 0);
out 80 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 82 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c ndr_err = ndr_push_struct_blob(&out, ctx, NULL, &guid,
out 85 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 88 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 93 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c struct ldb_val out = data_blob(NULL, 0);
out 97 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 105 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c struct ldb_val out = data_blob(NULL, 0);
out 106 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c out = ldb_val_dup(ctx, val);
out 108 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 115 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c struct ldb_val out = data_blob(NULL, 0);
out 118 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c if (a->syntax->canonicalise_fn(ldb, ctx, val, &out) != LDB_SUCCESS) {
out 122 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 130 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c struct ldb_val out = data_blob(NULL, 0);
out 140 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c if (a->syntax->canonicalise_fn(ldb, ctx, val, &out) != LDB_SUCCESS) {
out 144 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 158 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c struct ldb_val out = data_blob_string_const(talloc_asprintf(ctx, "%d", u.signed_int));
out 159 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 166 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c struct ldb_val out;
out 169 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c out = data_blob_string_const(talloc_asprintf(ctx, "%s#%06x#00#000000", ldb_timestring(ctx, t), (unsigned int)(usn & 0xFFFFFF)));
out 170 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 208 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c struct ldb_val out;
out 210 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c out = data_blob_string_const(talloc_asprintf(ctx, "%lld", usn));
out 211 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 216 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c struct ldb_val out;
out 219 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c out = data_blob_string_const(ldb_timestring(ctx, t));
out 220 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 225 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c struct ldb_val out;
out 233 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c out = data_blob_string_const(talloc_asprintf(ctx, "%lld", usn));
out 234 source4/dsdb/samdb/ldb_modules/simple_ldap_map.c return out;
out 45 source4/dsdb/schema/schema.h struct ldb_message_element *out);
out 51 source4/dsdb/schema/schema.h struct drsuapi_DsReplicaAttribute *out);
out 270 source4/dsdb/schema/schema_init.c return dsdb_find_prefix_for_oid(schema->num_prefixes, schema->prefixes, in, out);
out 289 source4/dsdb/schema/schema_init.c *out = val;
out 305 source4/dsdb/schema/schema_init.c uint32_t out;
out 320 source4/dsdb/schema/schema_init.c status = dsdb_find_prefix_for_oid( num_prefixes, prefixes, full_oid, &out );
out 441 source4/dsdb/schema/schema_init.c *out = prefixes[i].id | val;
out 43 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 44 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 45 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 47 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 48 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 49 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 51 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 58 source4/dsdb/schema/schema_syntax.c str = talloc_asprintf(out->values, "%s: not implemented",
out 62 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_string_const(str);
out 87 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 88 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 89 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 91 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 92 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 93 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 95 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 110 source4/dsdb/schema/schema_syntax.c str = talloc_strdup(out->values, "TRUE");
out 113 source4/dsdb/schema/schema_syntax.c str = talloc_strdup(out->values, "FALSE");
out 117 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_string_const(str);
out 137 source4/dsdb/schema/schema_syntax.c out->attid = attr->attributeID_id;
out 138 source4/dsdb/schema/schema_syntax.c out->value_ctr.num_values = in->num_values;
out 139 source4/dsdb/schema/schema_syntax.c out->value_ctr.values = talloc_array(mem_ctx,
out 142 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->value_ctr.values);
out 148 source4/dsdb/schema/schema_syntax.c out->value_ctr.values[i].blob = &blobs[i];
out 174 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 175 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 176 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 178 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 179 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 180 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 182 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 196 source4/dsdb/schema/schema_syntax.c str = talloc_asprintf(out->values, "%d", v);
out 199 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_string_const(str);
out 219 source4/dsdb/schema/schema_syntax.c out->attid = attr->attributeID_id;
out 220 source4/dsdb/schema/schema_syntax.c out->value_ctr.num_values = in->num_values;
out 221 source4/dsdb/schema/schema_syntax.c out->value_ctr.values = talloc_array(mem_ctx,
out 224 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->value_ctr.values);
out 232 source4/dsdb/schema/schema_syntax.c out->value_ctr.values[i].blob = &blobs[i];
out 254 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 255 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 256 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 258 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 259 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 260 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 262 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 276 source4/dsdb/schema/schema_syntax.c str = talloc_asprintf(out->values, "%lld", (long long int)v);
out 279 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_string_const(str);
out 299 source4/dsdb/schema/schema_syntax.c out->attid = attr->attributeID_id;
out 300 source4/dsdb/schema/schema_syntax.c out->value_ctr.num_values = in->num_values;
out 301 source4/dsdb/schema/schema_syntax.c out->value_ctr.values = talloc_array(mem_ctx,
out 304 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->value_ctr.values);
out 312 source4/dsdb/schema/schema_syntax.c out->value_ctr.values[i].blob = &blobs[i];
out 334 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 335 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 336 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 338 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 339 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 340 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 342 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 368 source4/dsdb/schema/schema_syntax.c str = ldb_timestring_utc(out->values, t);
out 370 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_string_const(str);
out 390 source4/dsdb/schema/schema_syntax.c out->attid = attr->attributeID_id;
out 391 source4/dsdb/schema/schema_syntax.c out->value_ctr.num_values = in->num_values;
out 392 source4/dsdb/schema/schema_syntax.c out->value_ctr.values = talloc_array(mem_ctx,
out 395 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->value_ctr.values);
out 404 source4/dsdb/schema/schema_syntax.c out->value_ctr.values[i].blob = &blobs[i];
out 428 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 429 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 430 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 432 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 433 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 434 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 436 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 453 source4/dsdb/schema/schema_syntax.c str = ldb_timestring(out->values, t);
out 456 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_string_const(str);
out 476 source4/dsdb/schema/schema_syntax.c out->attid = attr->attributeID_id;
out 477 source4/dsdb/schema/schema_syntax.c out->value_ctr.num_values = in->num_values;
out 478 source4/dsdb/schema/schema_syntax.c out->value_ctr.values = talloc_array(mem_ctx,
out 481 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->value_ctr.values);
out 490 source4/dsdb/schema/schema_syntax.c out->value_ctr.values[i].blob = &blobs[i];
out 514 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 515 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 516 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 518 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 519 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 520 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 522 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 531 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_dup_talloc(out->values,
out 533 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values[i].data);
out 553 source4/dsdb/schema/schema_syntax.c out->attid = attr->attributeID_id;
out 554 source4/dsdb/schema/schema_syntax.c out->value_ctr.num_values = in->num_values;
out 555 source4/dsdb/schema/schema_syntax.c out->value_ctr.values = talloc_array(mem_ctx,
out 558 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->value_ctr.values);
out 564 source4/dsdb/schema/schema_syntax.c out->value_ctr.values[i].blob = &blobs[i];
out 582 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 583 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 584 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 586 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 587 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 588 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 590 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 610 source4/dsdb/schema/schema_syntax.c str = talloc_strdup(out->values, c->lDAPDisplayName);
out 614 source4/dsdb/schema/schema_syntax.c out->values[out->num_values - (i + 1)] = data_blob_string_const(str);
out 629 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 630 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 631 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 633 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 634 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 635 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 637 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 652 source4/dsdb/schema/schema_syntax.c status = dsdb_map_int2oid(schema, v, out->values, &str);
out 655 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_string_const(str);
out 672 source4/dsdb/schema/schema_syntax.c return _dsdb_syntax_OID_obj_drsuapi_to_ldb(ldb, schema, attr, in, mem_ctx, out);
out 676 source4/dsdb/schema/schema_syntax.c return _dsdb_syntax_OID_oid_drsuapi_to_ldb(ldb, schema, attr, in, mem_ctx, out);
out 679 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 680 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 681 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 683 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 684 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 685 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 687 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 707 source4/dsdb/schema/schema_syntax.c str = talloc_strdup(out->values, name);
out 710 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_string_const(str);
out 735 source4/dsdb/schema/schema_syntax.c return dsdb_syntax_FOOBAR_ldb_to_drsuapi(ldb, schema, attr, in, mem_ctx, out);
out 738 source4/dsdb/schema/schema_syntax.c out->attid = attr->attributeID_id;
out 739 source4/dsdb/schema/schema_syntax.c out->value_ctr.num_values = in->num_values;
out 740 source4/dsdb/schema/schema_syntax.c out->value_ctr.values = talloc_array(mem_ctx,
out 743 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->value_ctr.values);
out 751 source4/dsdb/schema/schema_syntax.c out->value_ctr.values[i].blob = &blobs[i];
out 773 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 774 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 775 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 777 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 778 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 779 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 781 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 792 source4/dsdb/schema/schema_syntax.c if (!convert_string_talloc_convenience(out->values,
out 801 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_string_const(str);
out 821 source4/dsdb/schema/schema_syntax.c out->attid = attr->attributeID_id;
out 822 source4/dsdb/schema/schema_syntax.c out->value_ctr.num_values = in->num_values;
out 823 source4/dsdb/schema/schema_syntax.c out->value_ctr.values = talloc_array(mem_ctx,
out 826 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->value_ctr.values);
out 834 source4/dsdb/schema/schema_syntax.c out->value_ctr.values[i].blob = &blobs[i];
out 858 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 859 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 860 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 862 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 863 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 864 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 866 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 937 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_string_const(ldb_dn_get_extended_linearized(out->values, dn, 1));
out 958 source4/dsdb/schema/schema_syntax.c out->attid = attr->attributeID_id;
out 959 source4/dsdb/schema/schema_syntax.c out->value_ctr.num_values = in->num_values;
out 960 source4/dsdb/schema/schema_syntax.c out->value_ctr.values = talloc_array(mem_ctx,
out 963 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->value_ctr.values);
out 976 source4/dsdb/schema/schema_syntax.c out->value_ctr.values[i].blob = &blobs[i];
out 1033 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 1034 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 1035 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 1037 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 1038 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 1039 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 1041 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 1056 source4/dsdb/schema/schema_syntax.c out->values, schema->iconv_convenience, &id3b,
out 1064 source4/dsdb/schema/schema_syntax.c binary = data_blob_hex_string(out->values, &id3b.binary);
out 1067 source4/dsdb/schema/schema_syntax.c str = talloc_asprintf(out->values, "B:%u:%s:%s",
out 1074 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_string_const(str);
out 1094 source4/dsdb/schema/schema_syntax.c out->attid = attr->attributeID_id;
out 1095 source4/dsdb/schema/schema_syntax.c out->value_ctr.num_values = in->num_values;
out 1096 source4/dsdb/schema/schema_syntax.c out->value_ctr.values = talloc_array(mem_ctx,
out 1099 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->value_ctr.values);
out 1108 source4/dsdb/schema/schema_syntax.c out->value_ctr.values[i].blob = &blobs[i];
out 1135 source4/dsdb/schema/schema_syntax.c out->flags = 0;
out 1136 source4/dsdb/schema/schema_syntax.c out->name = talloc_strdup(mem_ctx, attr->lDAPDisplayName);
out 1137 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->name);
out 1139 source4/dsdb/schema/schema_syntax.c out->num_values = in->value_ctr.num_values;
out 1140 source4/dsdb/schema/schema_syntax.c out->values = talloc_array(mem_ctx, struct ldb_val, out->num_values);
out 1141 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->values);
out 1143 source4/dsdb/schema/schema_syntax.c for (i=0; i < out->num_values; i++) {
out 1161 source4/dsdb/schema/schema_syntax.c if (!convert_string_talloc_convenience(out->values, schema->iconv_convenience, CH_UTF16, CH_UNIX,
out 1168 source4/dsdb/schema/schema_syntax.c out->values[i] = data_blob_string_const(str);
out 1188 source4/dsdb/schema/schema_syntax.c out->attid = attr->attributeID_id;
out 1189 source4/dsdb/schema/schema_syntax.c out->value_ctr.num_values = in->num_values;
out 1190 source4/dsdb/schema/schema_syntax.c out->value_ctr.values = talloc_array(mem_ctx,
out 1193 source4/dsdb/schema/schema_syntax.c W_ERROR_HAVE_NO_MEMORY(out->value_ctr.values);
out 1202 source4/dsdb/schema/schema_syntax.c out->value_ctr.values[i].blob = &blobs[i];
out 1521 source4/dsdb/schema/schema_syntax.c return sa->syntax->drsuapi_to_ldb(ldb, schema, sa, in, mem_ctx, out);
out 1537 source4/dsdb/schema/schema_syntax.c return sa->syntax->ldb_to_drsuapi(ldb, schema, sa, in, mem_ctx, out);
out 314 source4/heimdal/kdc/524.c goto out;
out 319 source4/heimdal/kdc/524.c goto out;
out 326 source4/heimdal/kdc/524.c goto out;
out 332 source4/heimdal/kdc/524.c goto out;
out 343 source4/heimdal/kdc/524.c goto out;
out 351 source4/heimdal/kdc/524.c goto out;
out 357 source4/heimdal/kdc/524.c goto out;
out 363 source4/heimdal/kdc/524.c goto out;
out 369 source4/heimdal/kdc/524.c goto out;
out 376 source4/heimdal/kdc/524.c out:
out 243 source4/heimdal/kdc/digest.c goto out;
out 254 source4/heimdal/kdc/digest.c goto out;
out 263 source4/heimdal/kdc/digest.c goto out;
out 270 source4/heimdal/kdc/digest.c goto out;
out 274 source4/heimdal/kdc/digest.c goto out;
out 280 source4/heimdal/kdc/digest.c goto out;
out 285 source4/heimdal/kdc/digest.c goto out;
out 289 source4/heimdal/kdc/digest.c goto out;
out 296 source4/heimdal/kdc/digest.c goto out;
out 307 source4/heimdal/kdc/digest.c goto out;
out 312 source4/heimdal/kdc/digest.c goto out;
out 319 source4/heimdal/kdc/digest.c goto out;
out 329 source4/heimdal/kdc/digest.c goto out;
out 339 source4/heimdal/kdc/digest.c goto out;
out 343 source4/heimdal/kdc/digest.c goto out;
out 349 source4/heimdal/kdc/digest.c goto out;
out 357 source4/heimdal/kdc/digest.c goto out;
out 363 source4/heimdal/kdc/digest.c goto out;
out 391 source4/heimdal/kdc/digest.c goto out;
out 398 source4/heimdal/kdc/digest.c goto out;
out 403 source4/heimdal/kdc/digest.c goto out;
out 416 source4/heimdal/kdc/digest.c goto out;
out 425 source4/heimdal/kdc/digest.c goto out;
out 434 source4/heimdal/kdc/digest.c goto out;
out 441 source4/heimdal/kdc/digest.c goto out;
out 451 source4/heimdal/kdc/digest.c goto out;
out 458 source4/heimdal/kdc/digest.c goto out;
out 463 source4/heimdal/kdc/digest.c goto out;
out 476 source4/heimdal/kdc/digest.c goto out;
out 483 source4/heimdal/kdc/digest.c goto out;
out 493 source4/heimdal/kdc/digest.c goto out;
out 506 source4/heimdal/kdc/digest.c goto out;
out 511 source4/heimdal/kdc/digest.c goto out;
out 520 source4/heimdal/kdc/digest.c goto out;
out 529 source4/heimdal/kdc/digest.c goto out;
out 536 source4/heimdal/kdc/digest.c goto out;
out 544 source4/heimdal/kdc/digest.c goto out;
out 550 source4/heimdal/kdc/digest.c goto out;
out 558 source4/heimdal/kdc/digest.c goto out;
out 573 source4/heimdal/kdc/digest.c goto out;
out 580 source4/heimdal/kdc/digest.c goto out;
out 588 source4/heimdal/kdc/digest.c goto out;
out 598 source4/heimdal/kdc/digest.c goto out;
out 605 source4/heimdal/kdc/digest.c goto out;
out 617 source4/heimdal/kdc/digest.c goto out;
out 624 source4/heimdal/kdc/digest.c goto out;
out 630 source4/heimdal/kdc/digest.c goto out;
out 637 source4/heimdal/kdc/digest.c goto out;
out 649 source4/heimdal/kdc/digest.c goto out;
out 673 source4/heimdal/kdc/digest.c goto out;
out 677 source4/heimdal/kdc/digest.c goto out;
out 679 source4/heimdal/kdc/digest.c goto out;
out 681 source4/heimdal/kdc/digest.c goto out;
out 683 source4/heimdal/kdc/digest.c goto out;
out 768 source4/heimdal/kdc/digest.c goto out;
out 828 source4/heimdal/kdc/digest.c goto out;
out 837 source4/heimdal/kdc/digest.c goto out;
out 884 source4/heimdal/kdc/digest.c goto out;
out 930 source4/heimdal/kdc/digest.c goto out;
out 938 source4/heimdal/kdc/digest.c goto out;
out 955 source4/heimdal/kdc/digest.c goto out;
out 961 source4/heimdal/kdc/digest.c goto out;
out 972 source4/heimdal/kdc/digest.c goto out;
out 1026 source4/heimdal/kdc/digest.c goto out;
out 1032 source4/heimdal/kdc/digest.c goto out;
out 1040 source4/heimdal/kdc/digest.c goto out;
out 1047 source4/heimdal/kdc/digest.c goto out;
out 1057 source4/heimdal/kdc/digest.c goto out;
out 1068 source4/heimdal/kdc/digest.c goto out;
out 1075 source4/heimdal/kdc/digest.c goto out;
out 1080 source4/heimdal/kdc/digest.c goto out;
out 1086 source4/heimdal/kdc/digest.c goto out;
out 1091 source4/heimdal/kdc/digest.c goto out;
out 1099 source4/heimdal/kdc/digest.c goto out;
out 1154 source4/heimdal/kdc/digest.c goto out;
out 1161 source4/heimdal/kdc/digest.c goto out;
out 1166 source4/heimdal/kdc/digest.c goto out;
out 1173 source4/heimdal/kdc/digest.c goto out;
out 1180 source4/heimdal/kdc/digest.c goto out;
out 1190 source4/heimdal/kdc/digest.c goto out;
out 1199 source4/heimdal/kdc/digest.c goto out;
out 1321 source4/heimdal/kdc/digest.c goto out;
out 1328 source4/heimdal/kdc/digest.c goto out;
out 1368 source4/heimdal/kdc/digest.c goto out;
out 1379 source4/heimdal/kdc/digest.c goto out;
out 1389 source4/heimdal/kdc/digest.c goto out;
out 1398 source4/heimdal/kdc/digest.c goto out;
out 1405 source4/heimdal/kdc/digest.c goto out;
out 1410 source4/heimdal/kdc/digest.c goto out;
out 1420 source4/heimdal/kdc/digest.c goto out;
out 1426 source4/heimdal/kdc/digest.c out:
out 465 source4/heimdal/kdc/kaserver.c goto out;
out 483 source4/heimdal/kdc/kaserver.c goto out;
out 493 source4/heimdal/kdc/kaserver.c goto out;
out 502 source4/heimdal/kdc/kaserver.c goto out;
out 510 source4/heimdal/kdc/kaserver.c goto out;
out 518 source4/heimdal/kdc/kaserver.c goto out;
out 542 source4/heimdal/kdc/kaserver.c goto out;
out 551 source4/heimdal/kdc/kaserver.c goto out;
out 576 source4/heimdal/kdc/kaserver.c out:
out 686 source4/heimdal/kdc/kaserver.c goto out;
out 699 source4/heimdal/kdc/kaserver.c goto out;
out 710 source4/heimdal/kdc/kaserver.c goto out;
out 718 source4/heimdal/kdc/kaserver.c goto out;
out 726 source4/heimdal/kdc/kaserver.c goto out;
out 745 source4/heimdal/kdc/kaserver.c goto out;
out 756 source4/heimdal/kdc/kaserver.c goto out;
out 765 source4/heimdal/kdc/kaserver.c goto out;
out 783 source4/heimdal/kdc/kaserver.c goto out;
out 790 source4/heimdal/kdc/kaserver.c goto out;
out 799 source4/heimdal/kdc/kaserver.c goto out;
out 851 source4/heimdal/kdc/kaserver.c out:
out 893 source4/heimdal/kdc/kaserver.c goto out;
out 909 source4/heimdal/kdc/kaserver.c goto out;
out 916 source4/heimdal/kdc/kaserver.c goto out;
out 921 source4/heimdal/kdc/kaserver.c goto out;
out 948 source4/heimdal/kdc/kaserver.c out:
out 160 source4/heimdal/kdc/kerberos4.c RCHECK(krb5_ret_int8(sp, &pvno), out);
out 166 source4/heimdal/kdc/kerberos4.c goto out;
out 168 source4/heimdal/kdc/kerberos4.c RCHECK(krb5_ret_int8(sp, &msg_type), out);
out 623 source4/heimdal/kdc/kerberos4.c out:
out 1013 source4/heimdal/kdc/kerberos5.c goto out;
out 1028 source4/heimdal/kdc/kerberos5.c goto out;
out 1033 source4/heimdal/kdc/kerberos5.c goto out;
out 1040 source4/heimdal/kdc/kerberos5.c goto out;
out 1047 source4/heimdal/kdc/kerberos5.c goto out;
out 1059 source4/heimdal/kdc/kerberos5.c goto out;
out 1069 source4/heimdal/kdc/kerberos5.c goto out;
out 1074 source4/heimdal/kdc/kerberos5.c goto out;
out 1081 source4/heimdal/kdc/kerberos5.c goto out;
out 1133 source4/heimdal/kdc/kerberos5.c goto out;
out 1169 source4/heimdal/kdc/kerberos5.c goto out;
out 1274 source4/heimdal/kdc/kerberos5.c goto out;
out 1298 source4/heimdal/kdc/kerberos5.c goto out;
out 1362 source4/heimdal/kdc/kerberos5.c goto out;
out 1377 source4/heimdal/kdc/kerberos5.c goto out;
out 1384 source4/heimdal/kdc/kerberos5.c goto out;
out 1437 source4/heimdal/kdc/kerberos5.c goto out;
out 1447 source4/heimdal/kdc/kerberos5.c goto out;
out 1476 source4/heimdal/kdc/kerberos5.c goto out;
out 1484 source4/heimdal/kdc/kerberos5.c goto out;
out 1492 source4/heimdal/kdc/kerberos5.c goto out;
out 1500 source4/heimdal/kdc/kerberos5.c goto out;
out 1505 source4/heimdal/kdc/kerberos5.c goto out;
out 1585 source4/heimdal/kdc/kerberos5.c goto out;
out 1647 source4/heimdal/kdc/kerberos5.c goto out;
out 1653 source4/heimdal/kdc/kerberos5.c goto out;
out 1675 source4/heimdal/kdc/kerberos5.c goto out;
out 1683 source4/heimdal/kdc/kerberos5.c goto out;
out 1693 source4/heimdal/kdc/kerberos5.c goto out;
out 1699 source4/heimdal/kdc/kerberos5.c goto out;
out 1708 source4/heimdal/kdc/kerberos5.c goto out;
out 1725 source4/heimdal/kdc/kerberos5.c goto out;
out 1737 source4/heimdal/kdc/kerberos5.c goto out;
out 1745 source4/heimdal/kdc/kerberos5.c goto out;
out 1761 source4/heimdal/kdc/kerberos5.c goto out;
out 1770 source4/heimdal/kdc/kerberos5.c goto out;
out 1779 source4/heimdal/kdc/kerberos5.c out:
out 699 source4/heimdal/kdc/krb5tgs.c goto out;
out 732 source4/heimdal/kdc/krb5tgs.c goto out;
out 785 source4/heimdal/kdc/krb5tgs.c goto out;
out 803 source4/heimdal/kdc/krb5tgs.c goto out;
out 807 source4/heimdal/kdc/krb5tgs.c goto out;
out 833 source4/heimdal/kdc/krb5tgs.c goto out;
out 838 source4/heimdal/kdc/krb5tgs.c goto out;
out 848 source4/heimdal/kdc/krb5tgs.c goto out;
out 875 source4/heimdal/kdc/krb5tgs.c goto out;
out 883 source4/heimdal/kdc/krb5tgs.c goto out;
out 887 source4/heimdal/kdc/krb5tgs.c goto out;
out 915 source4/heimdal/kdc/krb5tgs.c out:
out 951 source4/heimdal/kdc/krb5tgs.c goto out;
out 966 source4/heimdal/kdc/krb5tgs.c goto out;
out 974 source4/heimdal/kdc/krb5tgs.c goto out;
out 981 source4/heimdal/kdc/krb5tgs.c goto out;
out 988 source4/heimdal/kdc/krb5tgs.c goto out;
out 1003 source4/heimdal/kdc/krb5tgs.c out:
out 1081 source4/heimdal/kdc/krb5tgs.c goto out;
out 1088 source4/heimdal/kdc/krb5tgs.c goto out;
out 1110 source4/heimdal/kdc/krb5tgs.c goto out;
out 1129 source4/heimdal/kdc/krb5tgs.c goto out;
out 1148 source4/heimdal/kdc/krb5tgs.c goto out;
out 1170 source4/heimdal/kdc/krb5tgs.c goto out;
out 1182 source4/heimdal/kdc/krb5tgs.c goto out;
out 1189 source4/heimdal/kdc/krb5tgs.c goto out;
out 1200 source4/heimdal/kdc/krb5tgs.c goto out;
out 1215 source4/heimdal/kdc/krb5tgs.c goto out;
out 1224 source4/heimdal/kdc/krb5tgs.c goto out;
out 1232 source4/heimdal/kdc/krb5tgs.c goto out;
out 1239 source4/heimdal/kdc/krb5tgs.c goto out;
out 1252 source4/heimdal/kdc/krb5tgs.c goto out;
out 1259 source4/heimdal/kdc/krb5tgs.c goto out;
out 1268 source4/heimdal/kdc/krb5tgs.c goto out;
out 1274 source4/heimdal/kdc/krb5tgs.c out:
out 1414 source4/heimdal/kdc/krb5tgs.c goto out;
out 1421 source4/heimdal/kdc/krb5tgs.c goto out;
out 1431 source4/heimdal/kdc/krb5tgs.c goto out;
out 1438 source4/heimdal/kdc/krb5tgs.c goto out;
out 1443 source4/heimdal/kdc/krb5tgs.c goto out;
out 1447 source4/heimdal/kdc/krb5tgs.c goto out;
out 1456 source4/heimdal/kdc/krb5tgs.c goto out;
out 1460 source4/heimdal/kdc/krb5tgs.c goto out;
out 1498 source4/heimdal/kdc/krb5tgs.c goto out;
out 1518 source4/heimdal/kdc/krb5tgs.c goto out;
out 1534 source4/heimdal/kdc/krb5tgs.c goto out;
out 1557 source4/heimdal/kdc/krb5tgs.c goto out;
out 1603 source4/heimdal/kdc/krb5tgs.c goto out;
out 1628 source4/heimdal/kdc/krb5tgs.c goto out;
out 1638 source4/heimdal/kdc/krb5tgs.c goto out;
out 1648 source4/heimdal/kdc/krb5tgs.c goto out;
out 1662 source4/heimdal/kdc/krb5tgs.c goto out;
out 1688 source4/heimdal/kdc/krb5tgs.c goto out;
out 1693 source4/heimdal/kdc/krb5tgs.c goto out;
out 1701 source4/heimdal/kdc/krb5tgs.c goto out;
out 1717 source4/heimdal/kdc/krb5tgs.c goto out;
out 1726 source4/heimdal/kdc/krb5tgs.c goto out;
out 1730 source4/heimdal/kdc/krb5tgs.c goto out;
out 1743 source4/heimdal/kdc/krb5tgs.c goto out;
out 1786 source4/heimdal/kdc/krb5tgs.c goto out;
out 1795 source4/heimdal/kdc/krb5tgs.c goto out;
out 1803 source4/heimdal/kdc/krb5tgs.c goto out;
out 1812 source4/heimdal/kdc/krb5tgs.c goto out;
out 1820 source4/heimdal/kdc/krb5tgs.c goto out;
out 1828 source4/heimdal/kdc/krb5tgs.c goto out;
out 1832 source4/heimdal/kdc/krb5tgs.c goto out;
out 1837 source4/heimdal/kdc/krb5tgs.c goto out;
out 1858 source4/heimdal/kdc/krb5tgs.c goto out;
out 1875 source4/heimdal/kdc/krb5tgs.c goto out;
out 1883 source4/heimdal/kdc/krb5tgs.c goto out;
out 1890 source4/heimdal/kdc/krb5tgs.c goto out;
out 1906 source4/heimdal/kdc/krb5tgs.c goto out;
out 1914 source4/heimdal/kdc/krb5tgs.c goto out;
out 1923 source4/heimdal/kdc/krb5tgs.c goto out;
out 1953 source4/heimdal/kdc/krb5tgs.c out:
out 2009 source4/heimdal/kdc/krb5tgs.c goto out;
out 2019 source4/heimdal/kdc/krb5tgs.c goto out;
out 2033 source4/heimdal/kdc/krb5tgs.c goto out;
out 2052 source4/heimdal/kdc/krb5tgs.c goto out;
out 2062 source4/heimdal/kdc/krb5tgs.c out:
out 161 source4/heimdal/kdc/kx509.c goto out;
out 166 source4/heimdal/kdc/kx509.c goto out;
out 177 source4/heimdal/kdc/kx509.c goto out;
out 182 source4/heimdal/kdc/kx509.c goto out;
out 194 source4/heimdal/kdc/kx509.c goto out;
out 200 source4/heimdal/kdc/kx509.c goto out;
out 221 source4/heimdal/kdc/kx509.c goto out;
out 233 source4/heimdal/kdc/kx509.c goto out;
out 240 source4/heimdal/kdc/kx509.c goto out;
out 249 source4/heimdal/kdc/kx509.c goto out;
out 260 source4/heimdal/kdc/kx509.c goto out;
out 267 source4/heimdal/kdc/kx509.c goto out;
out 272 source4/heimdal/kdc/kx509.c out:
out 320 source4/heimdal/kdc/kx509.c goto out;
out 331 source4/heimdal/kdc/kx509.c goto out;
out 335 source4/heimdal/kdc/kx509.c goto out;
out 339 source4/heimdal/kdc/kx509.c goto out;
out 346 source4/heimdal/kdc/kx509.c goto out;
out 353 source4/heimdal/kdc/kx509.c goto out;
out 362 source4/heimdal/kdc/kx509.c goto out;
out 371 source4/heimdal/kdc/kx509.c goto out;
out 376 source4/heimdal/kdc/kx509.c goto out;
out 386 source4/heimdal/kdc/kx509.c goto out;
out 394 source4/heimdal/kdc/kx509.c goto out;
out 398 source4/heimdal/kdc/kx509.c goto out;
out 405 source4/heimdal/kdc/kx509.c goto out;
out 409 source4/heimdal/kdc/kx509.c goto out;
out 422 source4/heimdal/kdc/kx509.c goto out;
out 430 source4/heimdal/kdc/kx509.c goto out;
out 440 source4/heimdal/kdc/kx509.c out:
out 143 source4/heimdal/kdc/pkinit.c goto out;
out 151 source4/heimdal/kdc/pkinit.c out:
out 192 source4/heimdal/kdc/pkinit.c goto out;
out 197 source4/heimdal/kdc/pkinit.c goto out;
out 209 source4/heimdal/kdc/pkinit.c goto out;
out 219 source4/heimdal/kdc/pkinit.c goto out;
out 228 source4/heimdal/kdc/pkinit.c out:
out 284 source4/heimdal/kdc/pkinit.c goto out;
out 292 source4/heimdal/kdc/pkinit.c goto out;
out 301 source4/heimdal/kdc/pkinit.c goto out;
out 308 source4/heimdal/kdc/pkinit.c goto out;
out 313 source4/heimdal/kdc/pkinit.c goto out;
out 316 source4/heimdal/kdc/pkinit.c goto out;
out 319 source4/heimdal/kdc/pkinit.c goto out;
out 340 source4/heimdal/kdc/pkinit.c goto out;
out 348 source4/heimdal/kdc/pkinit.c out:
out 384 source4/heimdal/kdc/pkinit.c goto out;
out 399 source4/heimdal/kdc/pkinit.c goto out;
out 410 source4/heimdal/kdc/pkinit.c goto out;
out 424 source4/heimdal/kdc/pkinit.c goto out;
out 438 source4/heimdal/kdc/pkinit.c goto out;
out 454 source4/heimdal/kdc/pkinit.c goto out;
out 491 source4/heimdal/kdc/pkinit.c goto out;
out 497 source4/heimdal/kdc/pkinit.c goto out;
out 505 source4/heimdal/kdc/pkinit.c goto out;
out 512 source4/heimdal/kdc/pkinit.c goto out;
out 532 source4/heimdal/kdc/pkinit.c goto out;
out 539 source4/heimdal/kdc/pkinit.c goto out;
out 548 source4/heimdal/kdc/pkinit.c goto out;
out 560 source4/heimdal/kdc/pkinit.c goto out;
out 568 source4/heimdal/kdc/pkinit.c goto out;
out 577 source4/heimdal/kdc/pkinit.c goto out;
out 591 source4/heimdal/kdc/pkinit.c goto out;
out 599 source4/heimdal/kdc/pkinit.c goto out;
out 610 source4/heimdal/kdc/pkinit.c goto out;
out 619 source4/heimdal/kdc/pkinit.c goto out;
out 627 source4/heimdal/kdc/pkinit.c goto out;
out 636 source4/heimdal/kdc/pkinit.c out:
out 722 source4/heimdal/kdc/pkinit.c goto out;
out 738 source4/heimdal/kdc/pkinit.c goto out;
out 744 source4/heimdal/kdc/pkinit.c goto out;
out 752 source4/heimdal/kdc/pkinit.c goto out;
out 758 source4/heimdal/kdc/pkinit.c goto out;
out 766 source4/heimdal/kdc/pkinit.c goto out;
out 777 source4/heimdal/kdc/pkinit.c goto out;
out 788 source4/heimdal/kdc/pkinit.c goto out;
out 806 source4/heimdal/kdc/pkinit.c goto out;
out 813 source4/heimdal/kdc/pkinit.c goto out;
out 825 source4/heimdal/kdc/pkinit.c goto out;
out 831 source4/heimdal/kdc/pkinit.c out:
out 886 source4/heimdal/kdc/pkinit.c goto out;
out 902 source4/heimdal/kdc/pkinit.c goto out;
out 913 source4/heimdal/kdc/pkinit.c goto out;
out 929 source4/heimdal/kdc/pkinit.c goto out;
out 936 source4/heimdal/kdc/pkinit.c goto out;
out 938 source4/heimdal/kdc/pkinit.c out:
out 986 source4/heimdal/kdc/pkinit.c goto out;
out 1011 source4/heimdal/kdc/pkinit.c goto out;
out 1022 source4/heimdal/kdc/pkinit.c goto out;
out 1032 source4/heimdal/kdc/pkinit.c goto out;
out 1065 source4/heimdal/kdc/pkinit.c goto out;
out 1073 source4/heimdal/kdc/pkinit.c goto out;
out 1081 source4/heimdal/kdc/pkinit.c goto out;
out 1095 source4/heimdal/kdc/pkinit.c goto out;
out 1107 source4/heimdal/kdc/pkinit.c goto out;
out 1118 source4/heimdal/kdc/pkinit.c goto out;
out 1128 source4/heimdal/kdc/pkinit.c goto out;
out 1138 source4/heimdal/kdc/pkinit.c goto out;
out 1151 source4/heimdal/kdc/pkinit.c goto out;
out 1225 source4/heimdal/kdc/pkinit.c goto out;
out 1230 source4/heimdal/kdc/pkinit.c out:
out 1256 source4/heimdal/kdc/pkinit.c goto out;
out 1286 source4/heimdal/kdc/pkinit.c out:
out 1317 source4/heimdal/kdc/pkinit.c goto out;
out 1322 source4/heimdal/kdc/pkinit.c goto out;
out 1328 source4/heimdal/kdc/pkinit.c goto out;
out 1337 source4/heimdal/kdc/pkinit.c goto out;
out 1349 source4/heimdal/kdc/pkinit.c out:
out 194 source4/heimdal/kdc/process.c goto out;
out 216 source4/heimdal/kdc/process.c out:
out 266 source4/heimdal/kuser/kinit.c krb5_creds in, *out = NULL;
out 279 source4/heimdal/kuser/kinit.c goto out;
out 287 source4/heimdal/kuser/kinit.c krb5_get_credentials(context, KRB5_GC_CACHED, cache, &in, &out);
out 296 source4/heimdal/kuser/kinit.c else if (out)
out 297 source4/heimdal/kuser/kinit.c flags.b.forwardable = out->flags.b.forwardable;
out 301 source4/heimdal/kuser/kinit.c else if (out)
out 302 source4/heimdal/kuser/kinit.c flags.b.proxiable = out->flags.b.proxiable;
out 309 source4/heimdal/kuser/kinit.c if (out) {
out 310 source4/heimdal/kuser/kinit.c krb5_free_creds (context, out);
out 311 source4/heimdal/kuser/kinit.c out = NULL;
out 321 source4/heimdal/kuser/kinit.c &out);
out 324 source4/heimdal/kuser/kinit.c goto out;
out 328 source4/heimdal/kuser/kinit.c krb5_free_creds (context, out);
out 330 source4/heimdal/kuser/kinit.c goto out;
out 332 source4/heimdal/kuser/kinit.c ret = krb5_cc_store_cred(context, cache, out);
out 338 source4/heimdal/kuser/kinit.c do_524init(context, cache, out, NULL);
out 344 source4/heimdal/kuser/kinit.c krb5_free_creds (context, out);
out 347 source4/heimdal/kuser/kinit.c goto out;
out 349 source4/heimdal/kuser/kinit.c out:
out 143 source4/heimdal/lib/gssapi/krb5/accept_sec_context.c goto out;
out 149 source4/heimdal/lib/gssapi/krb5/accept_sec_context.c goto out;
out 167 source4/heimdal/lib/gssapi/krb5/accept_sec_context.c goto out;
out 179 source4/heimdal/lib/gssapi/krb5/accept_sec_context.c goto out;
out 188 source4/heimdal/lib/gssapi/krb5/accept_sec_context.c out:
out 362 source4/heimdal/lib/gssapi/krb5/accept_sec_context.c krb5_rd_req_out_ctx out = NULL;
out 382 source4/heimdal/lib/gssapi/krb5/accept_sec_context.c in, &out);
out 401 source4/heimdal/lib/gssapi/krb5/accept_sec_context.c kret = krb5_rd_req_out_get_ap_req_options(context, out,
out 404 source4/heimdal/lib/gssapi/krb5/accept_sec_context.c kret = krb5_rd_req_out_get_ticket(context, out,
out 407 source4/heimdal/lib/gssapi/krb5/accept_sec_context.c kret = krb5_rd_req_out_get_keyblock(context, out,
out 411 source4/heimdal/lib/gssapi/krb5/accept_sec_context.c krb5_rd_req_out_ctx_free(context, out);
out 55 source4/heimdal/lib/gssapi/krb5/copy_ccache.c kret = krb5_cc_copy_cache(context, cred->ccache, out);
out 135 source4/heimdal/lib/gssapi/krb5/copy_ccache.c goto out;
out 140 source4/heimdal/lib/gssapi/krb5/copy_ccache.c goto out;
out 154 source4/heimdal/lib/gssapi/krb5/copy_ccache.c goto out;
out 159 source4/heimdal/lib/gssapi/krb5/copy_ccache.c goto out;
out 164 source4/heimdal/lib/gssapi/krb5/copy_ccache.c goto out;
out 175 source4/heimdal/lib/gssapi/krb5/copy_ccache.c goto out;
out 183 source4/heimdal/lib/gssapi/krb5/copy_ccache.c out:
out 98 source4/heimdal/lib/gssapi/krb5/import_name.c ret = krb5_copy_principal(context, p, out);
out 100 source4/heimdal/lib/gssapi/krb5/import_name.c ret = krb5_copy_principal(context, p, out);
out 102 source4/heimdal/lib/gssapi/krb5/import_name.c krb5_principal_set_type(context, *out, KRB5_NT_SRV_HST);
out 115 source4/heimdal/lib/gssapi/krb5/import_name.c out);
out 297 source4/heimdal/lib/gssapi/krb5/init_sec_context.c goto out;
out 307 source4/heimdal/lib/gssapi/krb5/init_sec_context.c goto out;
out 317 source4/heimdal/lib/gssapi/krb5/init_sec_context.c goto out;
out 327 source4/heimdal/lib/gssapi/krb5/init_sec_context.c out:
out 108 source4/heimdal/lib/gssapi/krb5/inquire_cred.c goto out;
out 116 source4/heimdal/lib/gssapi/krb5/inquire_cred.c goto out;
out 125 source4/heimdal/lib/gssapi/krb5/inquire_cred.c goto out;
out 141 source4/heimdal/lib/gssapi/krb5/inquire_cred.c goto out;
out 157 source4/heimdal/lib/gssapi/krb5/inquire_cred.c goto out;
out 167 source4/heimdal/lib/gssapi/krb5/inquire_cred.c goto out;
out 170 source4/heimdal/lib/gssapi/krb5/inquire_cred.c out:
out 125 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c goto out;
out 146 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c goto out;
out 150 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c goto out;
out 156 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c goto out;
out 160 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c goto out;
out 173 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c out:
out 291 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c goto out;
out 295 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 297 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 299 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 304 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 306 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 311 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 313 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 315 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 318 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 346 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 348 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 351 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 357 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 360 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 364 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 368 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c if (ret) goto out;
out 379 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c goto out;
out 382 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c out:
out 460 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c goto out;
out 464 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c goto out;
out 477 source4/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c out:
out 81 source4/heimdal/lib/gssapi/krb5/set_cred_option.c goto out;
out 88 source4/heimdal/lib/gssapi/krb5/set_cred_option.c goto out;
out 101 source4/heimdal/lib/gssapi/krb5/set_cred_option.c goto out;
out 111 source4/heimdal/lib/gssapi/krb5/set_cred_option.c goto out;
out 118 source4/heimdal/lib/gssapi/krb5/set_cred_option.c goto out;
out 126 source4/heimdal/lib/gssapi/krb5/set_cred_option.c out:
out 165 source4/heimdal/lib/gssapi/krb5/set_cred_option.c goto out;
out 173 source4/heimdal/lib/gssapi/krb5/set_cred_option.c goto out;
out 180 source4/heimdal/lib/gssapi/krb5/set_cred_option.c goto out;
out 190 source4/heimdal/lib/gssapi/krb5/set_cred_option.c goto out;
out 204 source4/heimdal/lib/gssapi/krb5/set_cred_option.c out:
out 83 source4/heimdal/lib/gssapi/mech/gss_krb5.c kret = krb5_cc_copy_cache(context, id, out);
out 121 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 135 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 149 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 164 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 171 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 182 source4/heimdal/lib/gssapi/mech/gss_krb5.c out:
out 301 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 306 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 313 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 317 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 320 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 325 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 328 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 331 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 334 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 338 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 341 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 345 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 351 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 354 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 357 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 360 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 366 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 369 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 372 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 376 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 379 source4/heimdal/lib/gssapi/mech/gss_krb5.c if (ret) goto out;
out 383 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 388 source4/heimdal/lib/gssapi/mech/gss_krb5.c out:
out 451 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 459 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 467 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 478 source4/heimdal/lib/gssapi/mech/gss_krb5.c out:
out 746 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 752 source4/heimdal/lib/gssapi/mech/gss_krb5.c goto out;
out 757 source4/heimdal/lib/gssapi/mech/gss_krb5.c out:
out 677 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c goto out;
out 723 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c goto out;
out 725 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c out:
out 886 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c goto out;
out 925 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c goto out;
out 928 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c out:
out 579 source4/heimdal/lib/gssapi/spnego/context_stubs.c goto out;
out 597 source4/heimdal/lib/gssapi/spnego/context_stubs.c out:
out 131 source4/heimdal/lib/gssapi/spnego/cred_stubs.c goto out;
out 146 source4/heimdal/lib/gssapi/spnego/cred_stubs.c goto out;
out 155 source4/heimdal/lib/gssapi/spnego/cred_stubs.c goto out;
out 159 source4/heimdal/lib/gssapi/spnego/cred_stubs.c out:
out 47 source4/heimdal/lib/gssapi/spnego/init_sec_context.c gss_buffer_desc out;
out 59 source4/heimdal/lib/gssapi/spnego/init_sec_context.c &out,
out 66 source4/heimdal/lib/gssapi/spnego/init_sec_context.c gss_release_buffer(&min_stat, &out);
out 70 source4/heimdal/lib/hcrypto/aes.c rijndaelEncrypt(key->key, key->rounds, in, out);
out 76 source4/heimdal/lib/hcrypto/aes.c rijndaelDecrypt(key->key, key->rounds, in, out);
out 91 source4/heimdal/lib/hcrypto/aes.c AES_encrypt(tmp, out, key);
out 92 source4/heimdal/lib/hcrypto/aes.c memcpy(iv, out, AES_BLOCK_SIZE);
out 95 source4/heimdal/lib/hcrypto/aes.c out += AES_BLOCK_SIZE;
out 102 source4/heimdal/lib/hcrypto/aes.c AES_encrypt(tmp, out, key);
out 103 source4/heimdal/lib/hcrypto/aes.c memcpy(iv, out, AES_BLOCK_SIZE);
out 108 source4/heimdal/lib/hcrypto/aes.c AES_decrypt(tmp, out, key);
out 110 source4/heimdal/lib/hcrypto/aes.c out[i] ^= iv[i];
out 114 source4/heimdal/lib/hcrypto/aes.c out += AES_BLOCK_SIZE;
out 118 source4/heimdal/lib/hcrypto/aes.c AES_decrypt(tmp, out, key);
out 120 source4/heimdal/lib/hcrypto/aes.c out[i] ^= iv[i];
out 64 source4/heimdal/lib/hcrypto/camellia.c Camellia_EncryptBlock(key->bits, in, key->key, out);
out 72 source4/heimdal/lib/hcrypto/camellia.c Camellia_DecryptBlock(key->bits, in, key->key, out);
out 87 source4/heimdal/lib/hcrypto/camellia.c CAMELLIA_encrypt(tmp, out, key);
out 88 source4/heimdal/lib/hcrypto/camellia.c memcpy(iv, out, CAMELLIA_BLOCK_SIZE);
out 91 source4/heimdal/lib/hcrypto/camellia.c out += CAMELLIA_BLOCK_SIZE;
out 98 source4/heimdal/lib/hcrypto/camellia.c CAMELLIA_encrypt(tmp, out, key);
out 99 source4/heimdal/lib/hcrypto/camellia.c memcpy(iv, out, CAMELLIA_BLOCK_SIZE);
out 104 source4/heimdal/lib/hcrypto/camellia.c CAMELLIA_decrypt(tmp, out, key);
out 106 source4/heimdal/lib/hcrypto/camellia.c out[i] ^= iv[i];
out 110 source4/heimdal/lib/hcrypto/camellia.c out += CAMELLIA_BLOCK_SIZE;
out 114 source4/heimdal/lib/hcrypto/camellia.c CAMELLIA_decrypt(tmp, out, key);
out 116 source4/heimdal/lib/hcrypto/camellia.c out[i] ^= iv[i];
out 416 source4/heimdal/lib/hcrypto/des.c unsigned char *output = out;
out 492 source4/heimdal/lib/hcrypto/des.c unsigned char *output = out;
out 621 source4/heimdal/lib/hcrypto/des.c unsigned char *output = out;
out 699 source4/heimdal/lib/hcrypto/des.c unsigned char *output = out;
out 272 source4/heimdal/lib/hcrypto/dh.c goto out;
out 281 source4/heimdal/lib/hcrypto/dh.c goto out;
out 284 source4/heimdal/lib/hcrypto/dh.c goto out;
out 291 source4/heimdal/lib/hcrypto/dh.c goto out;
out 304 source4/heimdal/lib/hcrypto/dh.c goto out;
out 316 source4/heimdal/lib/hcrypto/dh.c goto out;
out 321 source4/heimdal/lib/hcrypto/dh.c out:
out 109 source4/heimdal/lib/hcrypto/evp-aes-cts.c AES_encrypt(tmp, out, key);
out 110 source4/heimdal/lib/hcrypto/evp-aes-cts.c memcpy(ivec, out, AES_BLOCK_SIZE);
out 113 source4/heimdal/lib/hcrypto/evp-aes-cts.c out += AES_BLOCK_SIZE;
out 121 source4/heimdal/lib/hcrypto/evp-aes-cts.c AES_encrypt(tmp, out - AES_BLOCK_SIZE, key);
out 123 source4/heimdal/lib/hcrypto/evp-aes-cts.c memcpy(out, ivec, len);
out 124 source4/heimdal/lib/hcrypto/evp-aes-cts.c memcpy(ivec, out - AES_BLOCK_SIZE, AES_BLOCK_SIZE);
out 132 source4/heimdal/lib/hcrypto/evp-aes-cts.c AES_decrypt(in, out, key);
out 134 source4/heimdal/lib/hcrypto/evp-aes-cts.c out[i] ^= ivec[i];
out 138 source4/heimdal/lib/hcrypto/evp-aes-cts.c out += AES_BLOCK_SIZE;
out 150 source4/heimdal/lib/hcrypto/evp-aes-cts.c out[i + AES_BLOCK_SIZE] = tmp2[i] ^ tmp3[i];
out 152 source4/heimdal/lib/hcrypto/evp-aes-cts.c AES_decrypt(tmp3, out, key);
out 154 source4/heimdal/lib/hcrypto/evp-aes-cts.c out[i] ^= ivec[i];
out 171 source4/heimdal/lib/hcrypto/evp-aes-cts.c AES_encrypt(in, out, k);
out 173 source4/heimdal/lib/hcrypto/evp-aes-cts.c AES_decrypt(in, out, k);
out 175 source4/heimdal/lib/hcrypto/evp-aes-cts.c _krb5_aes_cts_encrypt(in, out, len, k, ctx->iv, ctx->encrypt);
out 79 source4/heimdal/lib/hcrypto/evp-hcrypto.c AES_cbc_encrypt(in, out, size, k, ctx->iv, ctx->encrypt);
out 846 source4/heimdal/lib/hcrypto/evp.c ret = (*ctx->cipher->do_cipher)(ctx, out, in, inlen);
out 870 source4/heimdal/lib/hcrypto/evp.c ret = (*ctx->cipher->do_cipher)(ctx, out, ctx->buf, blocksize);
out 878 source4/heimdal/lib/hcrypto/evp.c out = ((unsigned char *)out) + blocksize;
out 886 source4/heimdal/lib/hcrypto/evp.c ret = (*ctx->cipher->do_cipher)(ctx, out, in, inlen);
out 931 source4/heimdal/lib/hcrypto/evp.c ret = (*ctx->cipher->do_cipher)(ctx, out, ctx->buf, blocksize);
out 956 source4/heimdal/lib/hcrypto/evp.c return ctx->cipher->do_cipher(ctx, out, in, size);
out 978 source4/heimdal/lib/hcrypto/evp.c memmove(out, in, size);
out 1048 source4/heimdal/lib/hcrypto/evp.c RC2_cbc_encrypt(in, out, size, &k->key, ctx->iv, ctx->encrypt);
out 1202 source4/heimdal/lib/hcrypto/evp.c DES_cbc_encrypt(in, out, size,
out 1282 source4/heimdal/lib/hcrypto/evp.c DES_ede3_cbc_encrypt(in, out, size,
out 1385 source4/heimdal/lib/hcrypto/evp.c CAMELLIA_cbc_encrypt(in, out, size, k, ctx->iv, ctx->encrypt);
out 342 source4/heimdal/lib/hcrypto/imath/imath.c mp_int out = malloc(sizeof(mpz_t));
out 344 source4/heimdal/lib/hcrypto/imath/imath.c if(out != NULL)
out 345 source4/heimdal/lib/hcrypto/imath/imath.c mp_int_init(out);
out 347 source4/heimdal/lib/hcrypto/imath/imath.c return out;
out 715 source4/heimdal/lib/hcrypto/imath/imath.c mp_digit *out;
out 740 source4/heimdal/lib/hcrypto/imath/imath.c if((out = s_alloc(p)) == NULL)
out 747 source4/heimdal/lib/hcrypto/imath/imath.c out = MP_DIGITS(c);
out 749 source4/heimdal/lib/hcrypto/imath/imath.c ZERO(out, osize);
out 751 source4/heimdal/lib/hcrypto/imath/imath.c if(!s_kmul(MP_DIGITS(a), MP_DIGITS(b), out, ua, ub))
out 757 source4/heimdal/lib/hcrypto/imath/imath.c if(out != MP_DIGITS(c)) {
out 760 source4/heimdal/lib/hcrypto/imath/imath.c MP_DIGITS(c) = out;
out 809 source4/heimdal/lib/hcrypto/imath/imath.c mp_digit *out;
out 820 source4/heimdal/lib/hcrypto/imath/imath.c if((out = s_alloc(p)) == NULL)
out 827 source4/heimdal/lib/hcrypto/imath/imath.c out = MP_DIGITS(c);
out 829 source4/heimdal/lib/hcrypto/imath/imath.c ZERO(out, osize);
out 831 source4/heimdal/lib/hcrypto/imath/imath.c s_ksqr(MP_DIGITS(a), out, MP_USED(a));
out 836 source4/heimdal/lib/hcrypto/imath/imath.c if(out != MP_DIGITS(c)) {
out 839 source4/heimdal/lib/hcrypto/imath/imath.c MP_DIGITS(c) = out;
out 963 source4/heimdal/lib/hcrypto/imath/imath.c mp_int out;
out 967 source4/heimdal/lib/hcrypto/imath/imath.c out = &tmp;
out 970 source4/heimdal/lib/hcrypto/imath/imath.c out = c;
out 973 source4/heimdal/lib/hcrypto/imath/imath.c if((res = mp_int_div(a, m, NULL, out)) != MP_OK)
out 976 source4/heimdal/lib/hcrypto/imath/imath.c if(CMPZ(out) < 0)
out 977 source4/heimdal/lib/hcrypto/imath/imath.c res = mp_int_add(out, m, c);
out 979 source4/heimdal/lib/hcrypto/imath/imath.c res = mp_int_copy(out, c);
out 982 source4/heimdal/lib/hcrypto/imath/imath.c if(out != c)
out 1727 source4/heimdal/lib/hcrypto/imath/imath.c if(out)
out 1728 source4/heimdal/lib/hcrypto/imath/imath.c *out = (sz == MP_NEG) ? -(mp_small)uv : (mp_small)uv;
out 1760 source4/heimdal/lib/hcrypto/imath/imath.c if(out)
out 1761 source4/heimdal/lib/hcrypto/imath/imath.c *out = uv;
out 2120 source4/heimdal/lib/hcrypto/imath/imath.c mp_digit *out = malloc(num * sizeof(mp_digit));
out 2122 source4/heimdal/lib/hcrypto/imath/imath.c assert(out != NULL); /* for debugging */
out 2129 source4/heimdal/lib/hcrypto/imath/imath.c out[ix] = v;
out 2133 source4/heimdal/lib/hcrypto/imath/imath.c return out;
out 3218 source4/heimdal/lib/hcrypto/imath/imath.c int out;
out 3221 source4/heimdal/lib/hcrypto/imath/imath.c out = c - '0';
out 3223 source4/heimdal/lib/hcrypto/imath/imath.c out = toupper(c) - 'A' + 10;
out 3227 source4/heimdal/lib/hcrypto/imath/imath.c return (out >= r) ? -1 : out;
out 3241 source4/heimdal/lib/hcrypto/imath/imath.c char out = (v - 10) + 'a';
out 3244 source4/heimdal/lib/hcrypto/imath/imath.c return toupper(out);
out 3246 source4/heimdal/lib/hcrypto/imath/imath.c return out;
out 59 source4/heimdal/lib/hcrypto/pkcs12.c unsigned char *outp = out;
out 143 source4/heimdal/lib/hcrypto/rand-fortuna.c AES_encrypt(in, out, ctx);
out 149 source4/heimdal/lib/hcrypto/rc2.c out[0] = w0 & 0xff;
out 150 source4/heimdal/lib/hcrypto/rc2.c out[1] = (w0 >> 8) & 0xff;
out 151 source4/heimdal/lib/hcrypto/rc2.c out[2] = w1 & 0xff;
out 152 source4/heimdal/lib/hcrypto/rc2.c out[3] = (w1 >> 8) & 0xff;
out 153 source4/heimdal/lib/hcrypto/rc2.c out[4] = w2 & 0xff;
out 154 source4/heimdal/lib/hcrypto/rc2.c out[5] = (w2 >> 8) & 0xff;
out 155 source4/heimdal/lib/hcrypto/rc2.c out[6] = w3 & 0xff;
out 156 source4/heimdal/lib/hcrypto/rc2.c out[7] = (w3 >> 8) & 0xff;
out 191 source4/heimdal/lib/hcrypto/rc2.c out[0] = w0 & 0xff;
out 192 source4/heimdal/lib/hcrypto/rc2.c out[1] = (w0 >> 8) & 0xff;
out 193 source4/heimdal/lib/hcrypto/rc2.c out[2] = w1 & 0xff;
out 194 source4/heimdal/lib/hcrypto/rc2.c out[3] = (w1 >> 8) & 0xff;
out 195 source4/heimdal/lib/hcrypto/rc2.c out[4] = w2 & 0xff;
out 196 source4/heimdal/lib/hcrypto/rc2.c out[5] = (w2 >> 8) & 0xff;
out 197 source4/heimdal/lib/hcrypto/rc2.c out[6] = w3 & 0xff;
out 198 source4/heimdal/lib/hcrypto/rc2.c out[7] = (w3 >> 8) & 0xff;
out 212 source4/heimdal/lib/hcrypto/rc2.c RC2_encryptc(tmp, out, key);
out 213 source4/heimdal/lib/hcrypto/rc2.c memcpy(iv, out, RC2_BLOCK_SIZE);
out 216 source4/heimdal/lib/hcrypto/rc2.c out += RC2_BLOCK_SIZE;
out 223 source4/heimdal/lib/hcrypto/rc2.c RC2_encryptc(tmp, out, key);
out 224 source4/heimdal/lib/hcrypto/rc2.c memcpy(iv, out, RC2_BLOCK_SIZE);
out 229 source4/heimdal/lib/hcrypto/rc2.c RC2_decryptc(tmp, out, key);
out 231 source4/heimdal/lib/hcrypto/rc2.c out[i] ^= iv[i];
out 235 source4/heimdal/lib/hcrypto/rc2.c out += RC2_BLOCK_SIZE;
out 239 source4/heimdal/lib/hcrypto/rc2.c RC2_decryptc(tmp, out, key);
out 241 source4/heimdal/lib/hcrypto/rc2.c out[i] ^= iv[i];
out 78 source4/heimdal/lib/hcrypto/rc4.c *out++ = key->state[t] ^ *in++;
out 113 source4/heimdal/lib/hcrypto/rsa-imath.c mp_int_mul(out, bi, out);
out 114 source4/heimdal/lib/hcrypto/rsa-imath.c mp_int_mod(out, n, out);
out 142 source4/heimdal/lib/hcrypto/rsa-imath.c mp_int_add(&u, &vq, out);
out 303 source4/heimdal/lib/hcrypto/rsa-imath.c mpz_t in, out, n, e, b, bi;
out 328 source4/heimdal/lib/hcrypto/rsa-imath.c mp_int_init(&out);
out 335 source4/heimdal/lib/hcrypto/rsa-imath.c goto out;
out 352 source4/heimdal/lib/hcrypto/rsa-imath.c res = rsa_private_calculate(&in, &p, &q, &dmp1, &dmq1, &iqmp, &out);
out 363 source4/heimdal/lib/hcrypto/rsa-imath.c res = mp_int_exptmod(&in, &d, &n, &out);
out 367 source4/heimdal/lib/hcrypto/rsa-imath.c goto out;
out 372 source4/heimdal/lib/hcrypto/rsa-imath.c unblind(&out, &bi, &n);
out 379 source4/heimdal/lib/hcrypto/rsa-imath.c ssize = mp_int_unsigned_len(&out);
out 381 source4/heimdal/lib/hcrypto/rsa-imath.c mp_int_to_unsigned(&out, to, size);
out 385 source4/heimdal/lib/hcrypto/rsa-imath.c out:
out 389 source4/heimdal/lib/hcrypto/rsa-imath.c mp_int_clear(&out);
out 401 source4/heimdal/lib/hcrypto/rsa-imath.c mpz_t in, out, n, e, b, bi;
out 412 source4/heimdal/lib/hcrypto/rsa-imath.c mp_int_init(&out);
out 420 source4/heimdal/lib/hcrypto/rsa-imath.c goto out;
out 426 source4/heimdal/lib/hcrypto/rsa-imath.c goto out;
out 443 source4/heimdal/lib/hcrypto/rsa-imath.c res = rsa_private_calculate(&in, &p, &q, &dmp1, &dmq1, &iqmp, &out);
out 458 source4/heimdal/lib/hcrypto/rsa-imath.c res = mp_int_exptmod(&in, &d, &n, &out);
out 462 source4/heimdal/lib/hcrypto/rsa-imath.c goto out;
out 467 source4/heimdal/lib/hcrypto/rsa-imath.c unblind(&out, &bi, &n);
out 475 source4/heimdal/lib/hcrypto/rsa-imath.c ssize = mp_int_unsigned_len(&out);
out 477 source4/heimdal/lib/hcrypto/rsa-imath.c mp_int_to_unsigned(&out, ptr, ssize);
out 494 source4/heimdal/lib/hcrypto/rsa-imath.c out:
out 498 source4/heimdal/lib/hcrypto/rsa-imath.c mp_int_clear(&out);
out 524 source4/heimdal/lib/hcrypto/rsa-imath.c #define CHECK(f, v) if ((f) != (v)) { goto out; }
out 611 source4/heimdal/lib/hcrypto/rsa-imath.c out:
out 334 source4/heimdal/lib/hdb/keys.c goto out;
out 344 source4/heimdal/lib/hdb/keys.c out:
out 230 source4/heimdal/lib/hdb/keytab.c goto out;
out 232 source4/heimdal/lib/hdb/keytab.c goto out;
out 237 source4/heimdal/lib/hdb/keytab.c goto out;
out 255 source4/heimdal/lib/hdb/keytab.c out:
out 128 source4/heimdal/lib/hdb/mkey.c goto out;
out 135 source4/heimdal/lib/hdb/mkey.c goto out;
out 143 source4/heimdal/lib/hdb/mkey.c out:
out 182 source4/heimdal/lib/hdb/mkey.c goto out;
out 187 source4/heimdal/lib/hdb/mkey.c goto out;
out 191 source4/heimdal/lib/hdb/mkey.c out:
out 498 source4/heimdal/lib/hx509/ca.c goto out;
out 527 source4/heimdal/lib/hx509/ca.c goto out;
out 537 source4/heimdal/lib/hx509/ca.c goto out;
out 547 source4/heimdal/lib/hx509/ca.c goto out;
out 550 source4/heimdal/lib/hx509/ca.c out:
out 626 source4/heimdal/lib/hx509/ca.c goto out;
out 637 source4/heimdal/lib/hx509/ca.c goto out;
out 646 source4/heimdal/lib/hx509/ca.c goto out;
out 652 source4/heimdal/lib/hx509/ca.c goto out;
out 668 source4/heimdal/lib/hx509/ca.c goto out;
out 678 source4/heimdal/lib/hx509/ca.c out:
out 707 source4/heimdal/lib/hx509/ca.c goto out;
out 717 source4/heimdal/lib/hx509/ca.c out:
out 882 source4/heimdal/lib/hx509/ca.c goto out;
out 890 source4/heimdal/lib/hx509/ca.c goto out;
out 895 source4/heimdal/lib/hx509/ca.c goto out;
out 900 source4/heimdal/lib/hx509/ca.c goto out;
out 902 source4/heimdal/lib/hx509/ca.c out:
out 1032 source4/heimdal/lib/hx509/ca.c goto out;
out 1040 source4/heimdal/lib/hx509/ca.c goto out;
out 1048 source4/heimdal/lib/hx509/ca.c goto out;
out 1058 source4/heimdal/lib/hx509/ca.c goto out;
out 1067 source4/heimdal/lib/hx509/ca.c goto out;
out 1078 source4/heimdal/lib/hx509/ca.c goto out;
out 1084 source4/heimdal/lib/hx509/ca.c goto out;
out 1091 source4/heimdal/lib/hx509/ca.c goto out;
out 1100 source4/heimdal/lib/hx509/ca.c goto out;
out 1116 source4/heimdal/lib/hx509/ca.c goto out;
out 1127 source4/heimdal/lib/hx509/ca.c goto out;
out 1135 source4/heimdal/lib/hx509/ca.c goto out;
out 1144 source4/heimdal/lib/hx509/ca.c goto out;
out 1152 source4/heimdal/lib/hx509/ca.c goto out;
out 1161 source4/heimdal/lib/hx509/ca.c goto out;
out 1170 source4/heimdal/lib/hx509/ca.c goto out;
out 1179 source4/heimdal/lib/hx509/ca.c goto out;
out 1188 source4/heimdal/lib/hx509/ca.c goto out;
out 1212 source4/heimdal/lib/hx509/ca.c goto out;
out 1221 source4/heimdal/lib/hx509/ca.c goto out;
out 1244 source4/heimdal/lib/hx509/ca.c goto out;
out 1254 source4/heimdal/lib/hx509/ca.c goto out;
out 1269 source4/heimdal/lib/hx509/ca.c goto out;
out 1279 source4/heimdal/lib/hx509/ca.c goto out;
out 1287 source4/heimdal/lib/hx509/ca.c goto out;
out 1296 source4/heimdal/lib/hx509/ca.c goto out;
out 1305 source4/heimdal/lib/hx509/ca.c goto out;
out 1314 source4/heimdal/lib/hx509/ca.c goto out;
out 1320 source4/heimdal/lib/hx509/ca.c goto out;
out 1333 source4/heimdal/lib/hx509/ca.c goto out;
out 1337 source4/heimdal/lib/hx509/ca.c goto out;
out 1343 source4/heimdal/lib/hx509/ca.c out:
out 1363 source4/heimdal/lib/hx509/ca.c goto out;
out 1369 source4/heimdal/lib/hx509/ca.c goto out;
out 1385 source4/heimdal/lib/hx509/ca.c goto out;
out 1392 source4/heimdal/lib/hx509/ca.c goto out;
out 1405 source4/heimdal/lib/hx509/ca.c goto out;
out 1417 source4/heimdal/lib/hx509/ca.c goto out;
out 1428 source4/heimdal/lib/hx509/ca.c goto out;
out 1431 source4/heimdal/lib/hx509/ca.c out:
out 1478 source4/heimdal/lib/hx509/ca.c goto out;
out 1487 source4/heimdal/lib/hx509/ca.c out:
out 928 source4/heimdal/lib/hx509/cert.c goto out;
out 930 source4/heimdal/lib/hx509/cert.c goto out;
out 934 source4/heimdal/lib/hx509/cert.c goto out;
out 937 source4/heimdal/lib/hx509/cert.c goto out;
out 974 source4/heimdal/lib/hx509/cert.c goto out;
out 976 source4/heimdal/lib/hx509/cert.c out:
out 1603 source4/heimdal/lib/hx509/cert.c goto out;
out 1609 source4/heimdal/lib/hx509/cert.c goto out;
out 1613 source4/heimdal/lib/hx509/cert.c out:
out 1922 source4/heimdal/lib/hx509/cert.c goto out;
out 1933 source4/heimdal/lib/hx509/cert.c goto out;
out 1971 source4/heimdal/lib/hx509/cert.c goto out;
out 1980 source4/heimdal/lib/hx509/cert.c goto out;
out 2000 source4/heimdal/lib/hx509/cert.c goto out;
out 2011 source4/heimdal/lib/hx509/cert.c goto out;
out 2020 source4/heimdal/lib/hx509/cert.c goto out;
out 2034 source4/heimdal/lib/hx509/cert.c goto out;
out 2040 source4/heimdal/lib/hx509/cert.c goto out;
out 2049 source4/heimdal/lib/hx509/cert.c goto out;
out 2063 source4/heimdal/lib/hx509/cert.c goto out;
out 2072 source4/heimdal/lib/hx509/cert.c goto out;
out 2078 source4/heimdal/lib/hx509/cert.c goto out;
out 2104 source4/heimdal/lib/hx509/cert.c goto out;
out 2109 source4/heimdal/lib/hx509/cert.c goto out;
out 2117 source4/heimdal/lib/hx509/cert.c goto out;
out 2127 source4/heimdal/lib/hx509/cert.c goto out;
out 2139 source4/heimdal/lib/hx509/cert.c goto out;
out 2145 source4/heimdal/lib/hx509/cert.c goto out;
out 2168 source4/heimdal/lib/hx509/cert.c goto out;
out 2174 source4/heimdal/lib/hx509/cert.c goto out;
out 2179 source4/heimdal/lib/hx509/cert.c goto out;
out 2195 source4/heimdal/lib/hx509/cert.c goto out;
out 2201 source4/heimdal/lib/hx509/cert.c goto out;
out 2207 source4/heimdal/lib/hx509/cert.c goto out;
out 2221 source4/heimdal/lib/hx509/cert.c goto out;
out 2245 source4/heimdal/lib/hx509/cert.c goto out;
out 2264 source4/heimdal/lib/hx509/cert.c goto out;
out 2268 source4/heimdal/lib/hx509/cert.c out:
out 3042 source4/heimdal/lib/hx509/cert.c fprintf(out, "No statistic file %s: %s.\n",
out 3096 source4/heimdal/lib/hx509/cert.c rtbl_format(t, out);
out 3099 source4/heimdal/lib/hx509/cert.c fprintf(out, "\nQueries: multi %lu total %lu\n",
out 3282 source4/heimdal/lib/hx509/cert.c goto out;
out 3287 source4/heimdal/lib/hx509/cert.c goto out;
out 3292 source4/heimdal/lib/hx509/cert.c goto out;
out 3298 source4/heimdal/lib/hx509/cert.c goto out;
out 3303 source4/heimdal/lib/hx509/cert.c goto out;
out 3308 source4/heimdal/lib/hx509/cert.c goto out;
out 3313 source4/heimdal/lib/hx509/cert.c goto out;
out 3321 source4/heimdal/lib/hx509/cert.c goto out;
out 3332 source4/heimdal/lib/hx509/cert.c goto out;
out 3339 source4/heimdal/lib/hx509/cert.c goto out;
out 3347 source4/heimdal/lib/hx509/cert.c goto out;
out 3353 source4/heimdal/lib/hx509/cert.c goto out;
out 3357 source4/heimdal/lib/hx509/cert.c out:
out 140 source4/heimdal/lib/hx509/cms.c memset(out, 0, sizeof(*out));
out 152 source4/heimdal/lib/hx509/cms.c ret = der_copy_octet_string(ci.content, out);
out 159 source4/heimdal/lib/hx509/cms.c memset(out, 0, sizeof(*out));
out 389 source4/heimdal/lib/hx509/cms.c goto out;
out 398 source4/heimdal/lib/hx509/cms.c goto out;
out 405 source4/heimdal/lib/hx509/cms.c goto out;
out 445 source4/heimdal/lib/hx509/cms.c goto out;
out 452 source4/heimdal/lib/hx509/cms.c goto out;
out 459 source4/heimdal/lib/hx509/cms.c goto out;
out 475 source4/heimdal/lib/hx509/cms.c goto out;
out 481 source4/heimdal/lib/hx509/cms.c goto out;
out 491 source4/heimdal/lib/hx509/cms.c goto out;
out 503 source4/heimdal/lib/hx509/cms.c goto out;
out 507 source4/heimdal/lib/hx509/cms.c out:
out 572 source4/heimdal/lib/hx509/cms.c goto out;
out 576 source4/heimdal/lib/hx509/cms.c goto out;
out 582 source4/heimdal/lib/hx509/cms.c goto out;
out 589 source4/heimdal/lib/hx509/cms.c goto out;
out 600 source4/heimdal/lib/hx509/cms.c goto out;
out 611 source4/heimdal/lib/hx509/cms.c goto out;
out 619 source4/heimdal/lib/hx509/cms.c goto out;
out 627 source4/heimdal/lib/hx509/cms.c goto out;
out 637 source4/heimdal/lib/hx509/cms.c goto out;
out 648 source4/heimdal/lib/hx509/cms.c goto out;
out 659 source4/heimdal/lib/hx509/cms.c goto out;
out 674 source4/heimdal/lib/hx509/cms.c goto out;
out 684 source4/heimdal/lib/hx509/cms.c goto out;
out 689 source4/heimdal/lib/hx509/cms.c out:
out 785 source4/heimdal/lib/hx509/cms.c goto out;
out 792 source4/heimdal/lib/hx509/cms.c goto out;
out 798 source4/heimdal/lib/hx509/cms.c goto out;
out 806 source4/heimdal/lib/hx509/cms.c goto out;
out 811 source4/heimdal/lib/hx509/cms.c goto out;
out 817 source4/heimdal/lib/hx509/cms.c goto out;
out 822 source4/heimdal/lib/hx509/cms.c goto out;
out 1001 source4/heimdal/lib/hx509/cms.c goto out;
out 1007 source4/heimdal/lib/hx509/cms.c goto out;
out 1014 source4/heimdal/lib/hx509/cms.c goto out;
out 1019 source4/heimdal/lib/hx509/cms.c out:
out 1136 source4/heimdal/lib/hx509/cms.c goto out;
out 1151 source4/heimdal/lib/hx509/cms.c goto out;
out 1158 source4/heimdal/lib/hx509/cms.c goto out;
out 1168 source4/heimdal/lib/hx509/cms.c goto out;
out 1178 source4/heimdal/lib/hx509/cms.c goto out;
out 1188 source4/heimdal/lib/hx509/cms.c goto out;
out 1202 source4/heimdal/lib/hx509/cms.c goto out;
out 1212 source4/heimdal/lib/hx509/cms.c goto out;
out 1223 source4/heimdal/lib/hx509/cms.c goto out;
out 1234 source4/heimdal/lib/hx509/cms.c goto out;
out 1245 source4/heimdal/lib/hx509/cms.c goto out;
out 1255 source4/heimdal/lib/hx509/cms.c goto out;
out 1269 source4/heimdal/lib/hx509/cms.c goto out;
out 1286 source4/heimdal/lib/hx509/cms.c goto out;
out 1296 source4/heimdal/lib/hx509/cms.c goto out;
out 1303 source4/heimdal/lib/hx509/cms.c goto out;
out 1309 source4/heimdal/lib/hx509/cms.c goto out;
out 1335 source4/heimdal/lib/hx509/cms.c goto out;
out 1341 source4/heimdal/lib/hx509/cms.c goto out;
out 1349 source4/heimdal/lib/hx509/cms.c goto out;
out 1359 source4/heimdal/lib/hx509/cms.c goto out;
out 1364 source4/heimdal/lib/hx509/cms.c out:
out 1401 source4/heimdal/lib/hx509/cms.c goto out;
out 1407 source4/heimdal/lib/hx509/cms.c goto out;
out 1414 source4/heimdal/lib/hx509/cms.c goto out;
out 1423 source4/heimdal/lib/hx509/cms.c goto out;
out 1427 source4/heimdal/lib/hx509/cms.c out:
out 142 source4/heimdal/lib/hx509/collector.c goto out;
out 151 source4/heimdal/lib/hx509/collector.c goto out;
out 158 source4/heimdal/lib/hx509/collector.c goto out;
out 166 source4/heimdal/lib/hx509/collector.c out:
out 222 source4/heimdal/lib/hx509/crypto.c goto out;
out 233 source4/heimdal/lib/hx509/crypto.c goto out;
out 241 source4/heimdal/lib/hx509/crypto.c goto out;
out 251 source4/heimdal/lib/hx509/crypto.c goto out;
out 261 source4/heimdal/lib/hx509/crypto.c goto out;
out 268 source4/heimdal/lib/hx509/crypto.c goto out;
out 277 source4/heimdal/lib/hx509/crypto.c goto out;
out 287 source4/heimdal/lib/hx509/crypto.c goto out;
out 301 source4/heimdal/lib/hx509/crypto.c goto out;
out 306 source4/heimdal/lib/hx509/crypto.c out:
out 600 source4/heimdal/lib/hx509/crypto.c goto out;
out 609 source4/heimdal/lib/hx509/crypto.c goto out;
out 615 source4/heimdal/lib/hx509/crypto.c goto out;
out 624 source4/heimdal/lib/hx509/crypto.c goto out;
out 636 source4/heimdal/lib/hx509/crypto.c goto out;
out 652 source4/heimdal/lib/hx509/crypto.c out:
out 2123 source4/heimdal/lib/hx509/crypto.c goto out;
out 2129 source4/heimdal/lib/hx509/crypto.c goto out;
out 2142 source4/heimdal/lib/hx509/crypto.c goto out;
out 2159 source4/heimdal/lib/hx509/crypto.c goto out;
out 2163 source4/heimdal/lib/hx509/crypto.c out:
out 2230 source4/heimdal/lib/hx509/crypto.c goto out;
out 2238 source4/heimdal/lib/hx509/crypto.c goto out;
out 2244 source4/heimdal/lib/hx509/crypto.c goto out;
out 2251 source4/heimdal/lib/hx509/crypto.c out:
out 2290 source4/heimdal/lib/hx509/crypto.c goto out;
out 2302 source4/heimdal/lib/hx509/crypto.c goto out;
out 2308 source4/heimdal/lib/hx509/crypto.c goto out;
out 2313 source4/heimdal/lib/hx509/crypto.c goto out;
out 2318 source4/heimdal/lib/hx509/crypto.c goto out;
out 2322 source4/heimdal/lib/hx509/crypto.c out:
out 2409 source4/heimdal/lib/hx509/crypto.c goto out;
out 2417 source4/heimdal/lib/hx509/crypto.c goto out;
out 2425 source4/heimdal/lib/hx509/crypto.c goto out;
out 2445 source4/heimdal/lib/hx509/crypto.c goto out;
out 2454 source4/heimdal/lib/hx509/crypto.c goto out;
out 2457 source4/heimdal/lib/hx509/crypto.c out:
out 2657 source4/heimdal/lib/hx509/crypto.c goto out;
out 2662 source4/heimdal/lib/hx509/crypto.c goto out;
out 2676 source4/heimdal/lib/hx509/crypto.c goto out;
out 2681 source4/heimdal/lib/hx509/crypto.c goto out;
out 2689 source4/heimdal/lib/hx509/crypto.c out:
out 262 source4/heimdal/lib/hx509/file.c goto out;
out 276 source4/heimdal/lib/hx509/file.c out:
out 105 source4/heimdal/lib/hx509/ks_file.c goto out;
out 126 source4/heimdal/lib/hx509/ks_file.c out:
out 358 source4/heimdal/lib/hx509/ks_file.c goto out;
out 370 source4/heimdal/lib/hx509/ks_file.c goto out;
out 377 source4/heimdal/lib/hx509/ks_file.c goto out;
out 392 source4/heimdal/lib/hx509/ks_file.c goto out;
out 399 source4/heimdal/lib/hx509/ks_file.c goto out;
out 408 source4/heimdal/lib/hx509/ks_file.c goto out;
out 418 source4/heimdal/lib/hx509/ks_file.c goto out;
out 424 source4/heimdal/lib/hx509/ks_file.c goto out;
out 435 source4/heimdal/lib/hx509/ks_file.c out:
out 449 source4/heimdal/lib/hx509/ks_keychain.c goto out;
out 473 source4/heimdal/lib/hx509/ks_keychain.c goto out;
out 480 source4/heimdal/lib/hx509/ks_keychain.c goto out;
out 483 source4/heimdal/lib/hx509/ks_keychain.c goto out;
out 488 source4/heimdal/lib/hx509/ks_keychain.c out:
out 359 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 362 source4/heimdal/lib/hx509/ks_p11.c out:
out 530 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 537 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 542 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 550 source4/heimdal/lib/hx509/ks_p11.c out:
out 772 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 780 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 784 source4/heimdal/lib/hx509/ks_p11.c out:
out 836 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 845 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 853 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 861 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 869 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 876 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 888 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 898 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 907 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 919 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 922 source4/heimdal/lib/hx509/ks_p11.c goto out;
out 929 source4/heimdal/lib/hx509/ks_p11.c out:
out 347 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 354 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 362 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 368 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 376 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 384 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 392 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 405 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 414 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 432 source4/heimdal/lib/hx509/ks_p12.c out:
out 508 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 512 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 518 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 557 source4/heimdal/lib/hx509/ks_p12.c out:
out 577 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 588 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 599 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 603 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 608 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 623 source4/heimdal/lib/hx509/ks_p12.c goto out;
out 632 source4/heimdal/lib/hx509/ks_p12.c out:
out 576 source4/heimdal/lib/hx509/name.c goto out;
out 582 source4/heimdal/lib/hx509/name.c goto out;
out 588 source4/heimdal/lib/hx509/name.c goto out;
out 596 source4/heimdal/lib/hx509/name.c goto out;
out 609 source4/heimdal/lib/hx509/name.c goto out;
out 618 source4/heimdal/lib/hx509/name.c goto out;
out 626 source4/heimdal/lib/hx509/name.c out:
out 193 source4/heimdal/lib/hx509/req.c goto out;
out 197 source4/heimdal/lib/hx509/req.c goto out;
out 202 source4/heimdal/lib/hx509/req.c goto out;
out 208 source4/heimdal/lib/hx509/req.c goto out;
out 220 source4/heimdal/lib/hx509/req.c goto out;
out 227 source4/heimdal/lib/hx509/req.c goto out;
out 233 source4/heimdal/lib/hx509/req.c out:
out 207 source4/heimdal/lib/hx509/revoke.c goto out;
out 223 source4/heimdal/lib/hx509/revoke.c goto out;
out 234 source4/heimdal/lib/hx509/revoke.c goto out;
out 240 source4/heimdal/lib/hx509/revoke.c goto out;
out 251 source4/heimdal/lib/hx509/revoke.c goto out;
out 256 source4/heimdal/lib/hx509/revoke.c out:
out 517 source4/heimdal/lib/hx509/revoke.c goto out;
out 539 source4/heimdal/lib/hx509/revoke.c goto out;
out 554 source4/heimdal/lib/hx509/revoke.c goto out;
out 558 source4/heimdal/lib/hx509/revoke.c out:
out 894 source4/heimdal/lib/hx509/revoke.c goto out;
out 902 source4/heimdal/lib/hx509/revoke.c goto out;
out 911 source4/heimdal/lib/hx509/revoke.c goto out;
out 920 source4/heimdal/lib/hx509/revoke.c goto out;
out 933 source4/heimdal/lib/hx509/revoke.c goto out;
out 938 source4/heimdal/lib/hx509/revoke.c goto out;
out 941 source4/heimdal/lib/hx509/revoke.c out:
out 996 source4/heimdal/lib/hx509/revoke.c goto out;
out 1003 source4/heimdal/lib/hx509/revoke.c goto out;
out 1011 source4/heimdal/lib/hx509/revoke.c goto out;
out 1024 source4/heimdal/lib/hx509/revoke.c goto out;
out 1032 source4/heimdal/lib/hx509/revoke.c goto out;
out 1037 source4/heimdal/lib/hx509/revoke.c goto out;
out 1045 source4/heimdal/lib/hx509/revoke.c goto out;
out 1051 source4/heimdal/lib/hx509/revoke.c out:
out 1083 source4/heimdal/lib/hx509/revoke.c if (out == NULL)
out 1084 source4/heimdal/lib/hx509/revoke.c out = stdout;
out 1098 source4/heimdal/lib/hx509/revoke.c fprintf(out, "signer: ");
out 1107 source4/heimdal/lib/hx509/revoke.c fprintf(out, " byName: %s\n", s);
out 1116 source4/heimdal/lib/hx509/revoke.c fprintf(out, " byKey: %s\n", s);
out 1125 source4/heimdal/lib/hx509/revoke.c fprintf(out, "producedAt: %s\n",
out 1128 source4/heimdal/lib/hx509/revoke.c fprintf(out, "replies: %d\n", ocsp.ocsp.tbsResponseData.responses.len);
out 1146 source4/heimdal/lib/hx509/revoke.c fprintf(out, "\t%d. status: %s\n", i, status);
out 1148 source4/heimdal/lib/hx509/revoke.c fprintf(out, "\tthisUpdate: %s\n",
out 1151 source4/heimdal/lib/hx509/revoke.c fprintf(out, "\tproducedAt: %s\n",
out 1156 source4/heimdal/lib/hx509/revoke.c fprintf(out, "appended certs:\n");
out 1158 source4/heimdal/lib/hx509/revoke.c ret = hx509_certs_iter(context, ocsp.certs, hx509_ci_print_names, out);
out 1257 source4/heimdal/lib/hx509/revoke.c goto out;
out 1263 source4/heimdal/lib/hx509/revoke.c goto out;
out 1271 source4/heimdal/lib/hx509/revoke.c out:
out 1453 source4/heimdal/lib/hx509/revoke.c goto out;
out 1460 source4/heimdal/lib/hx509/revoke.c goto out;
out 1470 source4/heimdal/lib/hx509/revoke.c goto out;
out 1487 source4/heimdal/lib/hx509/revoke.c goto out;
out 1493 source4/heimdal/lib/hx509/revoke.c goto out;
out 1505 source4/heimdal/lib/hx509/revoke.c goto out;
out 1520 source4/heimdal/lib/hx509/revoke.c goto out;
out 1527 source4/heimdal/lib/hx509/revoke.c goto out;
out 1536 source4/heimdal/lib/hx509/revoke.c out:
out 180 source4/heimdal/lib/krb5/auth_context.c goto out;
out 183 source4/heimdal/lib/krb5/auth_context.c if(ret) goto out;
out 197 source4/heimdal/lib/krb5/auth_context.c goto out;
out 200 source4/heimdal/lib/krb5/auth_context.c if(ret) goto out;
out 211 source4/heimdal/lib/krb5/auth_context.c out:
out 272 source4/heimdal/lib/krb5/auth_context.c return krb5_copy_keyblock(context, in, out);
out 273 source4/heimdal/lib/krb5/auth_context.c *out = NULL; /* is this right? */
out 1242 source4/heimdal/lib/krb5/cache.c goto out;
out 1247 source4/heimdal/lib/krb5/cache.c goto out;
out 1255 source4/heimdal/lib/krb5/cache.c goto out;
out 1259 source4/heimdal/lib/krb5/cache.c out:
out 1291 source4/heimdal/lib/krb5/cache.c goto out;
out 1295 source4/heimdal/lib/krb5/cache.c goto out;
out 1299 source4/heimdal/lib/krb5/cache.c out:
out 541 source4/heimdal/lib/krb5/changepw.c goto out;
out 577 source4/heimdal/lib/krb5/changepw.c goto out;
out 584 source4/heimdal/lib/krb5/changepw.c goto out;
out 604 source4/heimdal/lib/krb5/changepw.c goto out;
out 613 source4/heimdal/lib/krb5/changepw.c goto out;
out 624 source4/heimdal/lib/krb5/changepw.c goto out;
out 647 source4/heimdal/lib/krb5/changepw.c out:
out 806 source4/heimdal/lib/krb5/changepw.c goto out;
out 811 source4/heimdal/lib/krb5/changepw.c goto out;
out 818 source4/heimdal/lib/krb5/changepw.c goto out;
out 831 source4/heimdal/lib/krb5/changepw.c out:
out 315 source4/heimdal/lib/krb5/context.c goto out;
out 319 source4/heimdal/lib/krb5/context.c goto out;
out 326 source4/heimdal/lib/krb5/context.c out:
out 354 source4/heimdal/lib/krb5/context.c *out = NULL;
out 379 source4/heimdal/lib/krb5/context.c goto out;
out 384 source4/heimdal/lib/krb5/context.c goto out;
out 391 source4/heimdal/lib/krb5/context.c goto out;
out 396 source4/heimdal/lib/krb5/context.c goto out;
out 410 source4/heimdal/lib/krb5/context.c goto out;
out 413 source4/heimdal/lib/krb5/context.c goto out;
out 417 source4/heimdal/lib/krb5/context.c goto out;
out 419 source4/heimdal/lib/krb5/context.c *out = p;
out 423 source4/heimdal/lib/krb5/context.c out:
out 109 source4/heimdal/lib/krb5/convert_creds.c goto out;
out 113 source4/heimdal/lib/krb5/convert_creds.c goto out;
out 123 source4/heimdal/lib/krb5/convert_creds.c goto out;
out 132 source4/heimdal/lib/krb5/convert_creds.c goto out;
out 140 source4/heimdal/lib/krb5/convert_creds.c out:
out 583 source4/heimdal/lib/krb5/crypto.c goto out;
out 592 source4/heimdal/lib/krb5/crypto.c goto out;
out 600 source4/heimdal/lib/krb5/crypto.c goto out;
out 607 source4/heimdal/lib/krb5/crypto.c goto out;
out 623 source4/heimdal/lib/krb5/crypto.c goto out;
out 627 source4/heimdal/lib/krb5/crypto.c out:
out 2344 source4/heimdal/lib/krb5/crypto.c ret = krb5_data_alloc(out, crypto->et->blocksize);
out 2354 source4/heimdal/lib/krb5/crypto.c EVP_Cipher(&ctx, out->data, result.checksum.data, 16);
out 517 source4/heimdal/lib/krb5/fcache.c goto out;
out 531 source4/heimdal/lib/krb5/fcache.c goto out;
out 538 source4/heimdal/lib/krb5/fcache.c goto out;
out 545 source4/heimdal/lib/krb5/fcache.c goto out;
out 559 source4/heimdal/lib/krb5/fcache.c goto out;
out 572 source4/heimdal/lib/krb5/fcache.c goto out;
out 581 source4/heimdal/lib/krb5/fcache.c goto out;
out 592 source4/heimdal/lib/krb5/fcache.c goto out;
out 601 source4/heimdal/lib/krb5/fcache.c goto out;
out 613 source4/heimdal/lib/krb5/fcache.c goto out;
out 632 source4/heimdal/lib/krb5/fcache.c goto out;
out 638 source4/heimdal/lib/krb5/fcache.c out:
out 58 source4/heimdal/lib/krb5/get_cred.c goto out;
out 68 source4/heimdal/lib/krb5/get_cred.c out:
out 448 source4/heimdal/lib/krb5/get_cred.c goto out;
out 455 source4/heimdal/lib/krb5/get_cred.c goto out;
out 469 source4/heimdal/lib/krb5/get_cred.c goto out;
out 476 source4/heimdal/lib/krb5/get_cred.c goto out;
out 482 source4/heimdal/lib/krb5/get_cred.c goto out;
out 497 source4/heimdal/lib/krb5/get_cred.c goto out;
out 501 source4/heimdal/lib/krb5/get_cred.c goto out;
out 525 source4/heimdal/lib/krb5/get_cred.c goto out;
out 572 source4/heimdal/lib/krb5/get_cred.c out:
out 957 source4/heimdal/lib/krb5/get_cred.c goto out;
out 1014 source4/heimdal/lib/krb5/get_cred.c goto out;
out 1025 source4/heimdal/lib/krb5/get_cred.c goto out;
out 1030 source4/heimdal/lib/krb5/get_cred.c out:
out 1414 source4/heimdal/lib/krb5/get_cred.c krb5_creds in, *template, *out = NULL;
out 1454 source4/heimdal/lib/krb5/get_cred.c ret = krb5_get_kdc_cred(context, ccache, flags, NULL, NULL, &in, &out);
out 1460 source4/heimdal/lib/krb5/get_cred.c ret = krb5_copy_creds_contents(context, out, creds);
out 1461 source4/heimdal/lib/krb5/get_cred.c krb5_free_creds(context, out);
out 372 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 384 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 402 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 413 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 425 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 435 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 451 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 460 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 490 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 497 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 511 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 522 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 544 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 551 source4/heimdal/lib/krb5/get_in_tkt.c out:
out 1009 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 1014 source4/heimdal/lib/krb5/get_in_tkt.c goto out;
out 1037 source4/heimdal/lib/krb5/get_in_tkt.c out:
out 81 source4/heimdal/lib/krb5/init_creds.c *out = NULL;
out 99 source4/heimdal/lib/krb5/init_creds.c *out = opt;
out 148 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 170 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 177 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 181 source4/heimdal/lib/krb5/init_creds_pw.c out:
out 411 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 435 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 452 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 469 source4/heimdal/lib/krb5/init_creds_pw.c out:
out 504 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 510 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 534 source4/heimdal/lib/krb5/init_creds_pw.c out:
out 712 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 714 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 741 source4/heimdal/lib/krb5/init_creds_pw.c out:
out 761 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 763 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 793 source4/heimdal/lib/krb5/init_creds_pw.c out:
out 1242 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1276 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1284 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1291 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1308 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1334 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1343 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1364 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1379 source4/heimdal/lib/krb5/init_creds_pw.c out:
out 1414 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1437 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1443 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1454 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1458 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1469 source4/heimdal/lib/krb5/init_creds_pw.c out:
out 1581 source4/heimdal/lib/krb5/init_creds_pw.c goto out;
out 1601 source4/heimdal/lib/krb5/init_creds_pw.c out:
out 407 source4/heimdal/lib/krb5/keytab.c memset(out, 0, sizeof(*out));
out 408 source4/heimdal/lib/krb5/keytab.c out->vno = in->vno;
out 410 source4/heimdal/lib/krb5/keytab.c ret = krb5_copy_principal (context, in->principal, &out->principal);
out 415 source4/heimdal/lib/krb5/keytab.c &out->keyblock);
out 418 source4/heimdal/lib/krb5/keytab.c out->timestamp = in->timestamp;
out 421 source4/heimdal/lib/krb5/keytab.c krb5_kt_free_entry (context, out);
out 205 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 215 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 222 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 228 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 238 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 252 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 257 source4/heimdal/lib/krb5/keytab_file.c out:
out 461 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 465 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 468 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 472 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 485 source4/heimdal/lib/krb5/keytab_file.c out:
out 557 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 581 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 590 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 598 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 612 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 621 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 630 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 639 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 644 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 654 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 665 source4/heimdal/lib/krb5/keytab_file.c goto out;
out 694 source4/heimdal/lib/krb5/keytab_file.c out:
out 714 source4/heimdal/lib/krb5/keytab_file.c goto out; /* return other error here? */
out 734 source4/heimdal/lib/krb5/keytab_file.c out:
out 250 source4/heimdal/lib/krb5/keytab_keyfile.c goto out;
out 255 source4/heimdal/lib/krb5/keytab_keyfile.c goto out;
out 268 source4/heimdal/lib/krb5/keytab_keyfile.c goto out;
out 279 source4/heimdal/lib/krb5/keytab_keyfile.c out:
out 373 source4/heimdal/lib/krb5/keytab_keyfile.c goto out;
out 380 source4/heimdal/lib/krb5/keytab_keyfile.c goto out;
out 384 source4/heimdal/lib/krb5/keytab_keyfile.c goto out;
out 396 source4/heimdal/lib/krb5/keytab_keyfile.c goto out;
out 411 source4/heimdal/lib/krb5/keytab_keyfile.c goto out;
out 418 source4/heimdal/lib/krb5/keytab_keyfile.c goto out;
out 429 source4/heimdal/lib/krb5/keytab_keyfile.c goto out;
out 432 source4/heimdal/lib/krb5/keytab_keyfile.c out:
out 57 source4/heimdal/lib/krb5/misc.c goto out;
out 63 source4/heimdal/lib/krb5/misc.c goto out;
out 70 source4/heimdal/lib/krb5/misc.c goto out;
out 76 source4/heimdal/lib/krb5/misc.c goto out;
out 83 source4/heimdal/lib/krb5/misc.c out:
out 70 source4/heimdal/lib/krb5/mk_req_ext.c goto out;
out 76 source4/heimdal/lib/krb5/mk_req_ext.c goto out;
out 110 source4/heimdal/lib/krb5/mk_req_ext.c goto out;
out 126 source4/heimdal/lib/krb5/mk_req_ext.c goto out;
out 139 source4/heimdal/lib/krb5/mk_req_ext.c goto out;
out 143 source4/heimdal/lib/krb5/mk_req_ext.c out:
out 122 source4/heimdal/lib/krb5/n-fold.c goto out;
out 131 source4/heimdal/lib/krb5/n-fold.c out:
out 97 source4/heimdal/lib/krb5/pac.c goto out;
out 104 source4/heimdal/lib/krb5/pac.c goto out;
out 108 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_ret_uint32(sp, &tmp), out);
out 109 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_ret_uint32(sp, &tmp2), out);
out 113 source4/heimdal/lib/krb5/pac.c goto out;
out 120 source4/heimdal/lib/krb5/pac.c goto out;
out 128 source4/heimdal/lib/krb5/pac.c goto out;
out 137 source4/heimdal/lib/krb5/pac.c goto out;
out 141 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_ret_uint32(sp, &p->pac->buffers[i].type), out);
out 142 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_ret_uint32(sp, &p->pac->buffers[i].buffersize), out);
out 143 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_ret_uint32(sp, &p->pac->buffers[i].offset_lo), out);
out 144 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_ret_uint32(sp, &p->pac->buffers[i].offset_hi), out);
out 151 source4/heimdal/lib/krb5/pac.c goto out;
out 157 source4/heimdal/lib/krb5/pac.c goto out;
out 163 source4/heimdal/lib/krb5/pac.c goto out;
out 171 source4/heimdal/lib/krb5/pac.c goto out;
out 176 source4/heimdal/lib/krb5/pac.c goto out;
out 185 source4/heimdal/lib/krb5/pac.c goto out;
out 193 source4/heimdal/lib/krb5/pac.c goto out;
out 201 source4/heimdal/lib/krb5/pac.c goto out;
out 209 source4/heimdal/lib/krb5/pac.c goto out;
out 216 source4/heimdal/lib/krb5/pac.c out:
out 433 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_ret_uint32(sp, &type), out);
out 441 source4/heimdal/lib/krb5/pac.c goto out;
out 447 source4/heimdal/lib/krb5/pac.c goto out;
out 454 source4/heimdal/lib/krb5/pac.c goto out;
out 459 source4/heimdal/lib/krb5/pac.c goto out;
out 469 source4/heimdal/lib/krb5/pac.c out:
out 549 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_ret_uint32(sp, &time1), out);
out 550 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_ret_uint32(sp, &time2), out);
out 562 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_ret_uint16(sp, &len), out);
out 631 source4/heimdal/lib/krb5/pac.c out:
out 662 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_store_uint32(sp, t & 0xffffffff), out);
out 663 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_store_uint32(sp, t >> 32), out);
out 668 source4/heimdal/lib/krb5/pac.c goto out;
out 672 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_store_uint16(sp, len * 2), out);
out 679 source4/heimdal/lib/krb5/pac.c goto out;
out 694 source4/heimdal/lib/krb5/pac.c goto out;
out 698 source4/heimdal/lib/krb5/pac.c goto out;
out 702 source4/heimdal/lib/krb5/pac.c out:
out 919 source4/heimdal/lib/krb5/pac.c goto out;
out 924 source4/heimdal/lib/krb5/pac.c goto out;
out 927 source4/heimdal/lib/krb5/pac.c goto out;
out 945 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_store_uint32(sp, p->pac->numbuffers), out);
out 946 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_store_uint32(sp, p->pac->version), out);
out 960 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_store_uint32(spdata, server_cksumtype), out);
out 961 source4/heimdal/lib/krb5/pac.c CHECK(ret, fill_zeros(context, spdata, server_size), out);
out 965 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_store_uint32(spdata, priv_cksumtype), out);
out 966 source4/heimdal/lib/krb5/pac.c CHECK(ret, fill_zeros(context, spdata, priv_size), out);
out 971 source4/heimdal/lib/krb5/pac.c goto out;
out 981 source4/heimdal/lib/krb5/pac.c goto out;
out 987 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_store_uint32(sp, p->pac->buffers[i].type), out);
out 988 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_store_uint32(sp, len), out);
out 989 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_store_uint32(sp, end), out);
out 990 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_store_uint32(sp, 0), out);
out 999 source4/heimdal/lib/krb5/pac.c CHECK(ret, fill_zeros(context, spdata, e - end), out);
out 1012 source4/heimdal/lib/krb5/pac.c goto out;
out 1019 source4/heimdal/lib/krb5/pac.c goto out;
out 1026 source4/heimdal/lib/krb5/pac.c goto out;
out 1036 source4/heimdal/lib/krb5/pac.c goto out;
out 1044 source4/heimdal/lib/krb5/pac.c goto out;
out 1055 source4/heimdal/lib/krb5/pac.c out:
out 523 source4/heimdal/lib/krb5/pkinit.c goto out;
out 529 source4/heimdal/lib/krb5/pkinit.c goto out;
out 544 source4/heimdal/lib/krb5/pkinit.c goto out;
out 558 source4/heimdal/lib/krb5/pkinit.c goto out;
out 567 source4/heimdal/lib/krb5/pkinit.c goto out;
out 580 source4/heimdal/lib/krb5/pkinit.c goto out;
out 587 source4/heimdal/lib/krb5/pkinit.c goto out;
out 619 source4/heimdal/lib/krb5/pkinit.c goto out;
out 628 source4/heimdal/lib/krb5/pkinit.c goto out;
out 642 source4/heimdal/lib/krb5/pkinit.c goto out;
out 654 source4/heimdal/lib/krb5/pkinit.c out:
out 757 source4/heimdal/lib/krb5/pkinit.c goto out;
out 764 source4/heimdal/lib/krb5/pkinit.c goto out;
out 767 source4/heimdal/lib/krb5/pkinit.c out:
out 1042 source4/heimdal/lib/krb5/pkinit.c heim_octet_string out;
out 1044 source4/heimdal/lib/krb5/pkinit.c ret = hx509_cms_unwrap_ContentInfo(&content, &type, &out, NULL);
out 1050 source4/heimdal/lib/krb5/pkinit.c der_free_octet_string(&out);
out 1051 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1055 source4/heimdal/lib/krb5/pkinit.c ret = krb5_data_copy(&content, out.data, out.length);
out 1056 source4/heimdal/lib/krb5/pkinit.c der_free_octet_string(&out);
out 1060 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1072 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1077 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1085 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1091 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1107 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1111 source4/heimdal/lib/krb5/pkinit.c out:
out 1161 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1166 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1172 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1184 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1191 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1200 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1207 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1215 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1231 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1238 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1251 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1261 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1269 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1282 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1285 source4/heimdal/lib/krb5/pkinit.c out:
out 1537 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1550 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1557 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1564 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1572 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1582 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1592 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1602 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1613 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1619 source4/heimdal/lib/krb5/pkinit.c out:
out 1764 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1770 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1778 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1786 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1791 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1794 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1797 source4/heimdal/lib/krb5/pkinit.c goto out;
out 1802 source4/heimdal/lib/krb5/pkinit.c out:
out 195 source4/heimdal/lib/krb5/plugin.c goto out;
out 225 source4/heimdal/lib/krb5/plugin.c goto out;
out 248 source4/heimdal/lib/krb5/plugin.c out:
out 351 source4/heimdal/lib/krb5/principal.c add_char(out, idx, len, replace_chars[q - quotable_chars]);
out 353 source4/heimdal/lib/krb5/principal.c add_char(out, idx, len, '\\');
out 354 source4/heimdal/lib/krb5/principal.c add_char(out, idx, len, replace_chars[q - quotable_chars]);
out 356 source4/heimdal/lib/krb5/principal.c add_char(out, idx, len, *p);
out 359 source4/heimdal/lib/krb5/principal.c out[idx] = '\0';
out 1140 source4/heimdal/lib/krb5/principal.c *out = l->name;
out 1160 source4/heimdal/lib/krb5/principal.c if(l && check_list(l, name, out))
out 1168 source4/heimdal/lib/krb5/principal.c if(l && check_list(l, name, out))
out 1177 source4/heimdal/lib/krb5/principal.c if(l && check_list(l, name, out))
out 1185 source4/heimdal/lib/krb5/principal.c if(l && check_list(l, name, out))
out 1193 source4/heimdal/lib/krb5/principal.c *out = q->from;
out 91 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 97 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 116 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 138 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 149 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 160 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 173 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 182 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 196 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 204 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 211 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 227 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 253 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 265 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 272 source4/heimdal/lib/krb5/rd_cred.c goto out;
out 312 source4/heimdal/lib/krb5/rd_cred.c out:
out 59 source4/heimdal/lib/krb5/rd_rep.c goto out;
out 64 source4/heimdal/lib/krb5/rd_rep.c goto out;
out 69 source4/heimdal/lib/krb5/rd_rep.c goto out;
out 77 source4/heimdal/lib/krb5/rd_rep.c goto out;
out 83 source4/heimdal/lib/krb5/rd_rep.c goto out;
out 101 source4/heimdal/lib/krb5/rd_rep.c goto out;
out 110 source4/heimdal/lib/krb5/rd_rep.c out:
out 261 source4/heimdal/lib/krb5/rd_req.c if(out)
out 262 source4/heimdal/lib/krb5/rd_req.c *out = t;
out 295 source4/heimdal/lib/krb5/rd_req.c goto out;
out 303 source4/heimdal/lib/krb5/rd_req.c out:
out 362 source4/heimdal/lib/krb5/rd_req.c goto out;
out 379 source4/heimdal/lib/krb5/rd_req.c goto out;
out 385 source4/heimdal/lib/krb5/rd_req.c if (ret) goto out;
out 390 source4/heimdal/lib/krb5/rd_req.c if (ret) goto out;
out 398 source4/heimdal/lib/krb5/rd_req.c goto out;
out 418 source4/heimdal/lib/krb5/rd_req.c goto out;
out 431 source4/heimdal/lib/krb5/rd_req.c goto out;
out 443 source4/heimdal/lib/krb5/rd_req.c goto out;
out 457 source4/heimdal/lib/krb5/rd_req.c goto out;
out 462 source4/heimdal/lib/krb5/rd_req.c goto out;
out 479 source4/heimdal/lib/krb5/rd_req.c if (ret) goto out;
out 502 source4/heimdal/lib/krb5/rd_req.c out:
out 588 source4/heimdal/lib/krb5/rd_req.c *ap_req_options = out->ap_req_options;
out 597 source4/heimdal/lib/krb5/rd_req.c return krb5_copy_ticket(context, out->ticket, ticket);
out 605 source4/heimdal/lib/krb5/rd_req.c return krb5_copy_keyblock(context, out->keyblock, keyblock);
out 648 source4/heimdal/lib/krb5/rd_req.c krb5_rd_req_out_ctx out;
out 660 source4/heimdal/lib/krb5/rd_req.c ret = krb5_rd_req_ctx(context, auth_context, inbuf, server, in, &out);
out 666 source4/heimdal/lib/krb5/rd_req.c *ap_req_options = out->ap_req_options;
out 668 source4/heimdal/lib/krb5/rd_req.c ret = krb5_copy_ticket(context, out->ticket, ticket);
out 670 source4/heimdal/lib/krb5/rd_req.c goto out;
out 673 source4/heimdal/lib/krb5/rd_req.c out:
out 674 source4/heimdal/lib/krb5/rd_req.c krb5_rd_req_out_ctx_free(context, out);
out 693 source4/heimdal/lib/krb5/rd_req.c krb5_rd_req_out_ctx out;
out 705 source4/heimdal/lib/krb5/rd_req.c ret = krb5_rd_req_ctx(context, auth_context, inbuf, server, in, &out);
out 711 source4/heimdal/lib/krb5/rd_req.c *ap_req_options = out->ap_req_options;
out 713 source4/heimdal/lib/krb5/rd_req.c ret = krb5_copy_ticket(context, out->ticket, ticket);
out 715 source4/heimdal/lib/krb5/rd_req.c goto out;
out 718 source4/heimdal/lib/krb5/rd_req.c out:
out 719 source4/heimdal/lib/krb5/rd_req.c krb5_rd_req_out_ctx_free(context, out);
out 757 source4/heimdal/lib/krb5/rd_req.c goto out;
out 760 source4/heimdal/lib/krb5/rd_req.c out:
out 786 source4/heimdal/lib/krb5/rd_req.c goto out;
out 791 source4/heimdal/lib/krb5/rd_req.c goto out;
out 796 source4/heimdal/lib/krb5/rd_req.c goto out;
out 804 source4/heimdal/lib/krb5/rd_req.c goto out;
out 813 source4/heimdal/lib/krb5/rd_req.c goto out;
out 821 source4/heimdal/lib/krb5/rd_req.c goto out;
out 827 source4/heimdal/lib/krb5/rd_req.c goto out;
out 841 source4/heimdal/lib/krb5/rd_req.c goto out;
out 855 source4/heimdal/lib/krb5/rd_req.c goto out;
out 870 source4/heimdal/lib/krb5/rd_req.c goto out;
out 880 source4/heimdal/lib/krb5/rd_req.c goto out;
out 884 source4/heimdal/lib/krb5/rd_req.c out:
out 390 source4/heimdal/lib/krb5/send_to_kdc.c goto out;
out 397 source4/heimdal/lib/krb5/send_to_kdc.c goto out;
out 404 source4/heimdal/lib/krb5/send_to_kdc.c goto out;
out 438 source4/heimdal/lib/krb5/send_to_kdc.c goto out;
out 445 source4/heimdal/lib/krb5/send_to_kdc.c out:
out 144 source4/heimdal/lib/krb5/ticket.c goto out;
out 158 source4/heimdal/lib/krb5/ticket.c goto out;
out 175 source4/heimdal/lib/krb5/ticket.c goto out;
out 181 source4/heimdal/lib/krb5/ticket.c goto out;
out 197 source4/heimdal/lib/krb5/ticket.c goto out;
out 209 source4/heimdal/lib/krb5/ticket.c goto out;
out 219 source4/heimdal/lib/krb5/ticket.c goto out;
out 225 source4/heimdal/lib/krb5/ticket.c goto out;
out 232 source4/heimdal/lib/krb5/ticket.c goto out;
out 244 source4/heimdal/lib/krb5/ticket.c goto out;
out 253 source4/heimdal/lib/krb5/ticket.c goto out;
out 256 source4/heimdal/lib/krb5/ticket.c out:
out 110 source4/heimdal/lib/ntlm/ntlm.c do { ret = f ; if (ret != (e)) { ret = EINVAL; goto out; } } while(0)
out 173 source4/heimdal/lib/ntlm/ntlm.c out:
out 184 source4/heimdal/lib/ntlm/ntlm.c out:
out 225 source4/heimdal/lib/ntlm/ntlm.c out:
out 250 source4/heimdal/lib/ntlm/ntlm.c out:
out 268 source4/heimdal/lib/ntlm/ntlm.c out:
out 278 source4/heimdal/lib/ntlm/ntlm.c out:
out 304 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint16(out, type), 0);
out 305 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint16(out, len_string(ucs2, s)), 0);
out 306 source4/heimdal/lib/ntlm/ntlm.c CHECK(put_string(out, ucs2, s), 0);
out 307 source4/heimdal/lib/ntlm/ntlm.c out:
out 331 source4/heimdal/lib/ntlm/ntlm.c krb5_storage *out;
out 336 source4/heimdal/lib/ntlm/ntlm.c out = krb5_storage_emem();
out 337 source4/heimdal/lib/ntlm/ntlm.c if (out == NULL)
out 341 source4/heimdal/lib/ntlm/ntlm.c CHECK(encode_ti_blob(out, 1, ucs2, ti->servername), 0);
out 343 source4/heimdal/lib/ntlm/ntlm.c CHECK(encode_ti_blob(out, 2, ucs2, ti->domainname), 0);
out 345 source4/heimdal/lib/ntlm/ntlm.c CHECK(encode_ti_blob(out, 3, ucs2, ti->dnsservername), 0);
out 347 source4/heimdal/lib/ntlm/ntlm.c CHECK(encode_ti_blob(out, 4, ucs2, ti->dnsdomainname), 0);
out 350 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_int16(out, 0), 0);
out 351 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_int16(out, 0), 0);
out 355 source4/heimdal/lib/ntlm/ntlm.c ret = krb5_storage_to_data(out, &d);
out 359 source4/heimdal/lib/ntlm/ntlm.c out:
out 360 source4/heimdal/lib/ntlm/ntlm.c krb5_storage_free(out);
out 418 source4/heimdal/lib/ntlm/ntlm.c goto out;
out 442 source4/heimdal/lib/ntlm/ntlm.c out:
out 468 source4/heimdal/lib/ntlm/ntlm.c krb5_storage *out;
out 496 source4/heimdal/lib/ntlm/ntlm.c out = krb5_storage_emem();
out 497 source4/heimdal/lib/ntlm/ntlm.c if (out == NULL)
out 500 source4/heimdal/lib/ntlm/ntlm.c krb5_storage_set_byteorder(out, KRB5_STORAGE_BYTEORDER_LE);
out 501 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_storage_write(out, ntlmsigature, sizeof(ntlmsigature)),
out 503 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, 1), 0);
out 504 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, flags), 0);
out 507 source4/heimdal/lib/ntlm/ntlm.c CHECK(store_sec_buffer(out, &domain), 0);
out 509 source4/heimdal/lib/ntlm/ntlm.c CHECK(store_sec_buffer(out, &hostname), 0);
out 511 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, type1->os[0]), 0);
out 512 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, type1->os[1]), 0);
out 515 source4/heimdal/lib/ntlm/ntlm.c CHECK(put_string(out, 0, type1->domain), 0);
out 517 source4/heimdal/lib/ntlm/ntlm.c CHECK(put_string(out, 0, type1->hostname), 0);
out 521 source4/heimdal/lib/ntlm/ntlm.c ret = krb5_storage_to_data(out, &d);
out 525 source4/heimdal/lib/ntlm/ntlm.c out:
out 526 source4/heimdal/lib/ntlm/ntlm.c krb5_storage_free(out);
out 563 source4/heimdal/lib/ntlm/ntlm.c goto out;
out 591 source4/heimdal/lib/ntlm/ntlm.c out:
out 617 source4/heimdal/lib/ntlm/ntlm.c krb5_storage *out = NULL;
out 637 source4/heimdal/lib/ntlm/ntlm.c out = krb5_storage_emem();
out 638 source4/heimdal/lib/ntlm/ntlm.c if (out == NULL)
out 641 source4/heimdal/lib/ntlm/ntlm.c krb5_storage_set_byteorder(out, KRB5_STORAGE_BYTEORDER_LE);
out 642 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_storage_write(out, ntlmsigature, sizeof(ntlmsigature)),
out 644 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, 2), 0);
out 645 source4/heimdal/lib/ntlm/ntlm.c CHECK(store_sec_buffer(out, &targetname), 0);
out 646 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, type2->flags), 0);
out 647 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_storage_write(out, type2->challange, sizeof(type2->challange)),
out 649 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, 0), 0); /* context */
out 650 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, 0), 0);
out 651 source4/heimdal/lib/ntlm/ntlm.c CHECK(store_sec_buffer(out, &targetinfo), 0);
out 654 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, type2->os[0]), 0);
out 655 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, type2->os[1]), 0);
out 657 source4/heimdal/lib/ntlm/ntlm.c CHECK(put_string(out, ucs2, type2->targetname), 0);
out 658 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_storage_write(out, type2->targetinfo.data,
out 664 source4/heimdal/lib/ntlm/ntlm.c ret = krb5_storage_to_data(out, &d);
out 669 source4/heimdal/lib/ntlm/ntlm.c out:
out 670 source4/heimdal/lib/ntlm/ntlm.c krb5_storage_free(out);
out 719 source4/heimdal/lib/ntlm/ntlm.c goto out;
out 750 source4/heimdal/lib/ntlm/ntlm.c out:
out 776 source4/heimdal/lib/ntlm/ntlm.c krb5_storage *out = NULL;
out 823 source4/heimdal/lib/ntlm/ntlm.c out = krb5_storage_emem();
out 824 source4/heimdal/lib/ntlm/ntlm.c if (out == NULL)
out 827 source4/heimdal/lib/ntlm/ntlm.c krb5_storage_set_byteorder(out, KRB5_STORAGE_BYTEORDER_LE);
out 828 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_storage_write(out, ntlmsigature, sizeof(ntlmsigature)),
out 830 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, 3), 0);
out 832 source4/heimdal/lib/ntlm/ntlm.c CHECK(store_sec_buffer(out, &lm), 0);
out 833 source4/heimdal/lib/ntlm/ntlm.c CHECK(store_sec_buffer(out, &ntlm), 0);
out 834 source4/heimdal/lib/ntlm/ntlm.c CHECK(store_sec_buffer(out, &target), 0);
out 835 source4/heimdal/lib/ntlm/ntlm.c CHECK(store_sec_buffer(out, &username), 0);
out 836 source4/heimdal/lib/ntlm/ntlm.c CHECK(store_sec_buffer(out, &ws), 0);
out 839 source4/heimdal/lib/ntlm/ntlm.c CHECK(store_sec_buffer(out, &sessionkey), 0);
out 840 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, type3->flags), 0);
out 843 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, 0), 0); /* os0 */
out 844 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(out, 0), 0); /* os1 */
out 847 source4/heimdal/lib/ntlm/ntlm.c CHECK(put_buf(out, &type3->lm), 0);
out 848 source4/heimdal/lib/ntlm/ntlm.c CHECK(put_buf(out, &type3->ntlm), 0);
out 849 source4/heimdal/lib/ntlm/ntlm.c CHECK(put_string(out, ucs2, type3->targetname), 0);
out 850 source4/heimdal/lib/ntlm/ntlm.c CHECK(put_string(out, ucs2, type3->username), 0);
out 851 source4/heimdal/lib/ntlm/ntlm.c CHECK(put_string(out, ucs2, type3->ws), 0);
out 852 source4/heimdal/lib/ntlm/ntlm.c CHECK(put_buf(out, &type3->sessionkey), 0);
out 856 source4/heimdal/lib/ntlm/ntlm.c ret = krb5_storage_to_data(out, &d);
out 861 source4/heimdal/lib/ntlm/ntlm.c out:
out 862 source4/heimdal/lib/ntlm/ntlm.c krb5_storage_free(out);
out 1192 source4/heimdal/lib/ntlm/ntlm.c out:
out 1276 source4/heimdal/lib/ntlm/ntlm.c goto out;
out 1289 source4/heimdal/lib/ntlm/ntlm.c goto out;
out 1310 source4/heimdal/lib/ntlm/ntlm.c out:
out 77 source4/heimdal/lib/roken/dumpdata.c goto out;
out 82 source4/heimdal/lib/roken/dumpdata.c goto out;
out 96 source4/heimdal/lib/roken/dumpdata.c out:
out 122 source4/heimdal/lib/roken/roken_gethostby.c goto out;
out 126 source4/heimdal/lib/roken/roken_gethostby.c out:
out 109 source4/heimdal/lib/roken/simple_exec.c goto out;
out 121 source4/heimdal/lib/roken/simple_exec.c goto out;
out 136 source4/heimdal/lib/roken/simple_exec.c out:
out 42 source4/heimdal/lib/wind/ldap.c out[*o] = c;
out 60 source4/heimdal/lib/wind/ldap.c if (put_char(out, &o, 0x20, *out_len))
out 67 source4/heimdal/lib/wind/ldap.c if (put_char(out, &o, 0x20, *out_len) ||
out 68 source4/heimdal/lib/wind/ldap.c put_char(out, &o, 0x20, *out_len))
out 73 source4/heimdal/lib/wind/ldap.c if (put_char(out, &o, tmp[i++], *out_len))
out 80 source4/heimdal/lib/wind/ldap.c if (o == 1 && out[0] == 0x20)
out 82 source4/heimdal/lib/wind/ldap.c else if (out[o - 1] == 0x20) {
out 83 source4/heimdal/lib/wind/ldap.c if (out[o - 2] == 0x20)
out 86 source4/heimdal/lib/wind/ldap.c put_char(out, &o, 0x20, *out_len);
out 76 source4/heimdal/lib/wind/map.c out[o++] = _wind_map_table_val[s->val_offset + j];
out 81 source4/heimdal/lib/wind/map.c out[o++] = in[i];
out 86 source4/heimdal/lib/wind/normalize.c out[0] = l;
out 87 source4/heimdal/lib/wind/normalize.c out[1] = v;
out 89 source4/heimdal/lib/wind/normalize.c out[2] = t;
out 134 source4/heimdal/lib/wind/normalize.c out + o, &sub_len);
out 150 source4/heimdal/lib/wind/normalize.c out + o, &sub_len);
out 157 source4/heimdal/lib/wind/normalize.c out[o++] = in[i];
out 242 source4/heimdal/lib/wind/normalize.c out[o++] = in[i++];
out 248 source4/heimdal/lib/wind/normalize.c out[o++] = in[i++];
out 255 source4/heimdal/lib/wind/normalize.c v[0] = out[ostarter];
out 260 source4/heimdal/lib/wind/normalize.c out[ostarter] = comb;
out 266 source4/heimdal/lib/wind/normalize.c out[o++] = in[i];
out 298 source4/heimdal/lib/wind/normalize.c ret = combine(tmp, tmp_len, out, out_len);
out 95 source4/heimdal/lib/wind/stringprep.c ret = _wind_ldap_case_exact_attribute(tmp, olen, out, out_len);
out 102 source4/heimdal/lib/wind/stringprep.c memcpy(out, tmp, sizeof(out[0]) * olen);
out 51 source4/heimdal/lib/wind/utf8.c *out = ((c & 0x1F) << 6)
out 61 source4/heimdal/lib/wind/utf8.c *out = ((c & 0x0F) << 12)
out 77 source4/heimdal/lib/wind/utf8.c *out = ((c & 0x07) << 18)
out 94 source4/heimdal/lib/wind/utf8.c *out = c;
out 132 source4/heimdal/lib/wind/utf8.c if (out) {
out 135 source4/heimdal/lib/wind/utf8.c out[o] = u;
out 204 source4/heimdal/lib/wind/utf8.c if (out) {
out 210 source4/heimdal/lib/wind/utf8.c out[3] = (ch | 0x80) & 0xbf;
out 213 source4/heimdal/lib/wind/utf8.c out[2] = (ch | 0x80) & 0xbf;
out 216 source4/heimdal/lib/wind/utf8.c out[1] = (ch | 0x80) & 0xbf;
out 219 source4/heimdal/lib/wind/utf8.c out[0] = ch | first_char[len - 1];
out 222 source4/heimdal/lib/wind/utf8.c out += len;
out 224 source4/heimdal/lib/wind/utf8.c if (out) {
out 227 source4/heimdal/lib/wind/utf8.c *out = '\0';
out 305 source4/heimdal/lib/wind/utf8.c *out = (p[1] << 8) + p[0];
out 307 source4/heimdal/lib/wind/utf8.c *out = (p[0] << 8) + p[1];
out 308 source4/heimdal/lib/wind/utf8.c out++; p += 2; len -= 2; olen--;
out 416 source4/heimdal/lib/wind/utf8.c if (out) {
out 419 source4/heimdal/lib/wind/utf8.c out[o] = u;
out 479 source4/heimdal/lib/wind/utf8.c if (out) {
out 485 source4/heimdal/lib/wind/utf8.c out[2] = (ch | 0x80) & 0xbf;
out 488 source4/heimdal/lib/wind/utf8.c out[1] = (ch | 0x80) & 0xbf;
out 491 source4/heimdal/lib/wind/utf8.c out[0] = ch | first_char[len - 1];
out 493 source4/heimdal/lib/wind/utf8.c out += len;
out 496 source4/heimdal/lib/wind/utf8.c if (out) {
out 499 source4/heimdal/lib/wind/utf8.c *out = '\0';
out 243 source4/kdc/hdb-samba4.c goto out;
out 249 source4/kdc/hdb-samba4.c goto out;
out 283 source4/kdc/hdb-samba4.c goto out;
out 293 source4/kdc/hdb-samba4.c goto out;
out 300 source4/kdc/hdb-samba4.c goto out;
out 307 source4/kdc/hdb-samba4.c goto out;
out 331 source4/kdc/hdb-samba4.c goto out;
out 345 source4/kdc/hdb-samba4.c goto out;
out 383 source4/kdc/hdb-samba4.c goto out;
out 392 source4/kdc/hdb-samba4.c goto out;
out 409 source4/kdc/hdb-samba4.c goto out;
out 446 source4/kdc/hdb-samba4.c goto out;
out 455 source4/kdc/hdb-samba4.c goto out;
out 470 source4/kdc/hdb-samba4.c goto out;
out 478 source4/kdc/hdb-samba4.c out:
out 531 source4/kdc/hdb-samba4.c goto out;
out 537 source4/kdc/hdb-samba4.c goto out;
out 558 source4/kdc/hdb-samba4.c goto out;
out 567 source4/kdc/hdb-samba4.c goto out;
out 581 source4/kdc/hdb-samba4.c goto out;
out 611 source4/kdc/hdb-samba4.c goto out;
out 628 source4/kdc/hdb-samba4.c goto out;
out 643 source4/kdc/hdb-samba4.c goto out;
out 661 source4/kdc/hdb-samba4.c goto out;
out 668 source4/kdc/hdb-samba4.c goto out;
out 675 source4/kdc/hdb-samba4.c goto out;
out 686 source4/kdc/hdb-samba4.c out:
out 723 source4/kdc/hdb-samba4.c goto out;
out 756 source4/kdc/hdb-samba4.c goto out;
out 763 source4/kdc/hdb-samba4.c goto out;
out 803 source4/kdc/hdb-samba4.c goto out;
out 820 source4/kdc/hdb-samba4.c goto out;
out 834 source4/kdc/hdb-samba4.c goto out;
out 857 source4/kdc/hdb-samba4.c goto out;
out 864 source4/kdc/hdb-samba4.c goto out;
out 875 source4/kdc/hdb-samba4.c out:
out 579 source4/kdc/kdc.c r->out.generic_reply = data_blob(NULL, 0);
out 287 source4/lib/com/dcom/main.c r.out.that = &that;
out 288 source4/lib/com/dcom/main.c r.out.pOxid = &oxid;
out 289 source4/lib/com/dcom/main.c r.out.pdsaOxidBindings = &pds;
out 290 source4/lib/com/dcom/main.c r.out.ipidRemUnknown = &ipidRemUnknown;
out 291 source4/lib/com/dcom/main.c r.out.AuthnHint = &AuthnHint;
out 292 source4/lib/com/dcom/main.c r.out.ServerVersion = &ServerVersion;
out 293 source4/lib/com/dcom/main.c r.out.hr = &hr;
out 294 source4/lib/com/dcom/main.c r.out.ifaces = ifaces;
out 295 source4/lib/com/dcom/main.c r.out.results = results;
out 306 source4/lib/com/dcom/main.c if(!W_ERROR_IS_OK(r.out.result)) {
out 307 source4/lib/com/dcom/main.c hr = r.out.result;
out 322 source4/lib/com/dcom/main.c status = dcom_IUnknown_from_OBJREF(ctx, &(*ip)[i], &r.out.ifaces[i]->obj);
out 636 source4/lib/com/dcom/main.c struct IUnknown_Release_out *out;
out 643 source4/lib/com/dcom/main.c out = talloc_zero(c, struct IUnknown_Release_out);
out 644 source4/lib/com/dcom/main.c out->result = W_ERROR_V(r);
out 645 source4/lib/com/dcom/main.c c->private_data = out;
out 46 source4/lib/ldb-samba/ldif_handlers.c ndr_err = ndr_push_struct_blob(out, mem_ctx, NULL, sid,
out 74 source4/lib/ldb-samba/ldif_handlers.c *out = data_blob_string_const(dom_sid_string(mem_ctx, sid));
out 76 source4/lib/ldb-samba/ldif_handlers.c if (out->data == NULL) {
out 134 source4/lib/ldb-samba/ldif_handlers.c if (ldif_read_objectSid(ldb, mem_ctx, in, out) != 0) {
out 136 source4/lib/ldb-samba/ldif_handlers.c return ldb_handler_copy(ldb, mem_ctx, in, out);
out 140 source4/lib/ldb-samba/ldif_handlers.c return ldb_handler_copy(ldb, mem_ctx, in, out);
out 149 source4/lib/ldb-samba/ldif_handlers.c if (ldif_read_objectSid(ldb, mem_ctx, in, out) == 0) {
out 155 source4/lib/ldb-samba/ldif_handlers.c *out = data_blob_talloc(mem_ctx, NULL, in->length/2+1);
out 157 source4/lib/ldb-samba/ldif_handlers.c if (!out->data) {
out 161 source4/lib/ldb-samba/ldif_handlers.c (*out).length = strhex_to_str((char *)out->data, out->length,
out 165 source4/lib/ldb-samba/ldif_handlers.c ndr_err = ndr_pull_struct_blob_all(out, mem_ctx, NULL, &sid,
out 188 source4/lib/ldb-samba/ldif_handlers.c ndr_err = ndr_push_struct_blob(out, mem_ctx, NULL, &guid,
out 209 source4/lib/ldb-samba/ldif_handlers.c out->data = (uint8_t *)GUID_string(mem_ctx, &guid);
out 210 source4/lib/ldb-samba/ldif_handlers.c if (out->data == NULL) {
out 213 source4/lib/ldb-samba/ldif_handlers.c out->length = strlen((const char *)out->data);
out 230 source4/lib/ldb-samba/ldif_handlers.c if (in->length == 36 && ldif_read_objectGUID(ldb, mem_ctx, in, out) == 0) {
out 239 source4/lib/ldb-samba/ldif_handlers.c *out = data_blob_talloc(mem_ctx, NULL, in->length/2+1);
out 241 source4/lib/ldb-samba/ldif_handlers.c if (!out->data) {
out 245 source4/lib/ldb-samba/ldif_handlers.c (*out).length = strhex_to_str((char *)out->data, out->length,
out 249 source4/lib/ldb-samba/ldif_handlers.c ndr_err = ndr_pull_struct_blob_all(out, mem_ctx, NULL, &guid,
out 298 source4/lib/ldb-samba/ldif_handlers.c if (ldif_read_objectGUID(ldb, mem_ctx, in, out) != 0) {
out 300 source4/lib/ldb-samba/ldif_handlers.c return ldb_handler_copy(ldb, mem_ctx, in, out);
out 304 source4/lib/ldb-samba/ldif_handlers.c return ldb_handler_copy(ldb, mem_ctx, in, out);
out 321 source4/lib/ldb-samba/ldif_handlers.c ndr_err = ndr_push_struct_blob(out, mem_ctx, NULL, sd,
out 350 source4/lib/ldb-samba/ldif_handlers.c out->data = (uint8_t *)sddl_encode(mem_ctx, sd, NULL);
out 352 source4/lib/ldb-samba/ldif_handlers.c if (out->data == NULL) {
out 355 source4/lib/ldb-samba/ldif_handlers.c out->length = strlen((const char *)out->data);
out 376 source4/lib/ldb-samba/ldif_handlers.c *out = data_blob_talloc(mem_ctx, in->data, in->length);
out 377 source4/lib/ldb-samba/ldif_handlers.c if (in->data && !out->data) {
out 389 source4/lib/ldb-samba/ldif_handlers.c *out = data_blob_string_const(ldb_dn_alloc_casefold(mem_ctx, dn));
out 392 source4/lib/ldb-samba/ldif_handlers.c if (!out->data) {
out 397 source4/lib/ldb-samba/ldif_handlers.c *out = data_blob_talloc(mem_ctx, in->data, in->length);
out 400 source4/lib/ldb-samba/ldif_handlers.c if (in->data && !out->data) {
out 406 source4/lib/ldb-samba/ldif_handlers.c *out = data_blob_string_const(ldb_dn_alloc_casefold(mem_ctx, dn1));
out 409 source4/lib/ldb-samba/ldif_handlers.c if (!out->data) {
out 519 source4/lib/ldb-samba/ldif_handlers.c ndr_err = ndr_push_struct_blob(out, mem_ctx,
out 574 source4/lib/ldb-samba/ldif_handlers.c *out = data_blob_string_const(string);
out 598 source4/lib/ldb-samba/ldif_handlers.c return ldif_read_prefixMap(ldb, mem_ctx, in, out);
out 600 source4/lib/ldb-samba/ldif_handlers.c return ldb_handler_copy(ldb, mem_ctx, in, out);
out 632 source4/lib/ldb-samba/ldif_handlers.c *out = data_blob_string_const(data_blob_hex_string(mem_ctx, in));
out 633 source4/lib/ldb-samba/ldif_handlers.c if (!out->data) {
out 38 source4/lib/ldb/common/attrib_handlers.c *out = ldb_val_dup(mem_ctx, in);
out 39 source4/lib/ldb/common/attrib_handlers.c if (in->length > 0 && out->data == NULL) {
out 59 source4/lib/ldb/common/attrib_handlers.c if (!in || !out || !(in->data)) {
out 63 source4/lib/ldb/common/attrib_handlers.c out->data = (uint8_t *)ldb_casefold(ldb, mem_ctx, (const char *)(in->data), in->length);
out 64 source4/lib/ldb/common/attrib_handlers.c if (out->data == NULL) {
out 69 source4/lib/ldb/common/attrib_handlers.c s = (char *)(out->data);
out 98 source4/lib/ldb/common/attrib_handlers.c out->length = strlen((char *)out->data);
out 116 source4/lib/ldb/common/attrib_handlers.c out->data = (uint8_t *)talloc_asprintf(mem_ctx, "%lld", i);
out 117 source4/lib/ldb/common/attrib_handlers.c if (out->data == NULL) {
out 120 source4/lib/ldb/common/attrib_handlers.c out->length = strlen((char *)out->data);
out 240 source4/lib/ldb/common/attrib_handlers.c out->length = 0;
out 241 source4/lib/ldb/common/attrib_handlers.c out->data = NULL;
out 248 source4/lib/ldb/common/attrib_handlers.c out->data = (uint8_t *)ldb_dn_alloc_casefold(mem_ctx, dn);
out 249 source4/lib/ldb/common/attrib_handlers.c if (out->data == NULL) {
out 252 source4/lib/ldb/common/attrib_handlers.c out->length = strlen((char *)out->data);
out 306 source4/lib/ldb/common/attrib_handlers.c out->data = (uint8_t *)ldb_timestring(mem_ctx, t);
out 307 source4/lib/ldb/common/attrib_handlers.c if (out->data == NULL) {
out 310 source4/lib/ldb/common/attrib_handlers.c out->length = strlen((char *)out->data);
out 159 source4/lib/ldb/common/ldb_ldif.c char *out;
out 161 source4/lib/ldb/common/ldb_ldif.c out = talloc_array(mem_ctx, char, bytes+pad_bytes+1);
out 162 source4/lib/ldb/common/ldb_ldif.c if (!out) return NULL;
out 175 source4/lib/ldb/common/ldb_ldif.c out[i] = b64[idx];
out 179 source4/lib/ldb/common/ldb_ldif.c out[i] = '=';
out 180 source4/lib/ldb/common/ldb_ldif.c out[i] = 0;
out 182 source4/lib/ldb/common/ldb_ldif.c return out;
out 370 source4/lib/ldb/common/ldb_modules.c *out = module;
out 113 source4/lib/messaging/messaging.c *r->out.start_time = timeval_to_nttime(&ctx->start_time);
out 45 source4/lib/messaging/tests/irpc.c *r->out.out_data = r->in.in_data + 1;
out 48 source4/lib/messaging/tests/irpc.c r->in.in_data, r->in.in_data+1, *r->out.out_data);
out 61 source4/lib/messaging/tests/irpc.c r->out.out_data = talloc_memdup(r, r->in.in_data, r->in.len);
out 62 source4/lib/messaging/tests/irpc.c if (r->out.out_data == NULL) {
out 102 source4/lib/messaging/tests/irpc.c torture_assert(test, *r.out.out_data == r.in.in_data + 1,
out 105 source4/lib/messaging/tests/irpc.c torture_comment(test, "%u + 1 = %u\n", r.in.in_data, *r.out.out_data);
out 131 source4/lib/messaging/tests/irpc.c if (memcmp(r.out.out_data, r.in.in_data, r.in.len) != 0) {
out 140 source4/lib/messaging/tests/irpc.c r.out.out_data);
out 153 source4/lib/messaging/tests/irpc.c if (*r->out.out_data != r->in.in_data + 1) {
out 155 source4/lib/messaging/tests/irpc.c r->in.in_data, *r->out.out_data, r->in.in_data+1);
out 62 source4/lib/registry/rpc.c r.out.handle = hnd;\
out 71 source4/lib/registry/rpc.c return r.out.result;\
out 145 source4/lib/registry/rpc.c r.out.handle = &mykeydata->pol;
out 150 source4/lib/registry/rpc.c return r.out.result;
out 175 source4/lib/registry/rpc.c r.out.handle = &mykeydata->pol;
out 184 source4/lib/registry/rpc.c return r.out.result;
out 219 source4/lib/registry/rpc.c r.out.name = &name;
out 220 source4/lib/registry/rpc.c r.out.type = type;
out 221 source4/lib/registry/rpc.c r.out.value = &value;
out 222 source4/lib/registry/rpc.c r.out.size = &val_size;
out 223 source4/lib/registry/rpc.c r.out.length = &zero;
out 232 source4/lib/registry/rpc.c *value_name = talloc_reference(mem_ctx, r.out.name->name);
out 233 source4/lib/registry/rpc.c *type = *(r.out.type);
out 234 source4/lib/registry/rpc.c *data = data_blob_talloc(mem_ctx, r.out.value, *r.out.length);
out 236 source4/lib/registry/rpc.c return r.out.result;
out 268 source4/lib/registry/rpc.c r.out.type = type;
out 269 source4/lib/registry/rpc.c r.out.data = &value;
out 270 source4/lib/registry/rpc.c r.out.data_size = &val_size;
out 271 source4/lib/registry/rpc.c r.out.data_length = &zero;
out 280 source4/lib/registry/rpc.c *type = *(r.out.type);
out 281 source4/lib/registry/rpc.c *data = data_blob_talloc(mem_ctx, r.out.data, *r.out.data_length);
out 283 source4/lib/registry/rpc.c return r.out.result;
out 310 source4/lib/registry/rpc.c r.out.name = &namebuf;
out 311 source4/lib/registry/rpc.c r.out.keyclass = &classbuf;
out 312 source4/lib/registry/rpc.c r.out.last_changed_time = &change_time;
out 322 source4/lib/registry/rpc.c *name = talloc_reference(mem_ctx, r.out.name->name);
out 324 source4/lib/registry/rpc.c *keyclass = talloc_reference(mem_ctx, r.out.keyclass->name);
out 326 source4/lib/registry/rpc.c *last_changed_time = *(r.out.last_changed_time);
out 328 source4/lib/registry/rpc.c return r.out.result;
out 351 source4/lib/registry/rpc.c r.out.new_handle = &rpck->pol;
out 352 source4/lib/registry/rpc.c r.out.action_taken = NULL;
out 365 source4/lib/registry/rpc.c return r.out.result;
out 380 source4/lib/registry/rpc.c r.out.classname = &classname;
out 381 source4/lib/registry/rpc.c r.out.num_subkeys = &mykeydata->num_subkeys;
out 382 source4/lib/registry/rpc.c r.out.max_subkeylen = &mykeydata->max_subkeylen;
out 383 source4/lib/registry/rpc.c r.out.max_classlen = &mykeydata->max_classlen;
out 384 source4/lib/registry/rpc.c r.out.num_values = &mykeydata->num_values;
out 385 source4/lib/registry/rpc.c r.out.max_valnamelen = &mykeydata->max_valnamelen;
out 386 source4/lib/registry/rpc.c r.out.max_valbufsize = &mykeydata->max_valbufsize;
out 387 source4/lib/registry/rpc.c r.out.secdescsize = &mykeydata->secdescsize;
out 388 source4/lib/registry/rpc.c r.out.last_changed_time = &mykeydata->last_changed_time;
out 397 source4/lib/registry/rpc.c mykeydata->classname = talloc_reference(mem_ctx, r.out.classname->name);
out 399 source4/lib/registry/rpc.c return r.out.result;
out 422 source4/lib/registry/rpc.c return r.out.result;
out 140 source4/lib/wmi/tools/wmis.c struct IWbemClassObject *out = NULL;
out 165 source4/lib/wmi/tools/wmis.c result = IWbemServices_ExecMethod(pWS, ctx, objectPath, methodName, 0, NULL, in, &out,
out 170 source4/lib/wmi/tools/wmis.c result = WbemClassObject_Get(out->object_data, ctx, "ReturnValue", 0, &v, 0, 0);
out 143 source4/lib/wmi/wbemdata.c if (out) dcom_IWbemClassObject_from_WbemClassObject(d->ctx, out, wco->obj_methods->method[i].out);
out 52 source4/libcli/auth/session.c memcpy(&out->data[i], bout, MIN(8, in->length-i));
out 102 source4/libcli/auth/session.c DATA_BLOB out;
out 110 source4/libcli/auth/session.c out = data_blob_talloc(mem_ctx, NULL, blob->length);
out 111 source4/libcli/auth/session.c if (!out.data) {
out 115 source4/libcli/auth/session.c sess_crypt_blob(&out, blob, session_key, false);
out 117 source4/libcli/auth/session.c if (IVAL(out.data, 4) != 1) {
out 119 source4/libcli/auth/session.c IVAL(out.data, 4)));
out 120 source4/libcli/auth/session.c data_blob_free(&out);
out 124 source4/libcli/auth/session.c slen = IVAL(out.data, 0);
out 127 source4/libcli/auth/session.c data_blob_free(&out);
out 131 source4/libcli/auth/session.c ret = talloc_strndup(mem_ctx, (const char *)(out.data+8), slen);
out 133 source4/libcli/auth/session.c data_blob_free(&out);
out 182 source4/libcli/auth/session.c DATA_BLOB out;
out 191 source4/libcli/auth/session.c out = data_blob_talloc(mem_ctx, NULL, blob->length);
out 192 source4/libcli/auth/session.c if (!out.data) {
out 196 source4/libcli/auth/session.c sess_crypt_blob(&out, blob, session_key, false);
out 198 source4/libcli/auth/session.c if (IVAL(out.data, 4) != 1) {
out 200 source4/libcli/auth/session.c IVAL(out.data, 4)));
out 204 source4/libcli/auth/session.c slen = IVAL(out.data, 0);
out 210 source4/libcli/auth/session.c *ret = data_blob_talloc(mem_ctx, out.data+8, slen);
out 215 source4/libcli/auth/session.c data_blob_free(&out);
out 152 source4/libcli/auth/smbdes.c out[i] = in[p[i]-1];
out 157 source4/libcli/auth/smbdes.c char out[64];
out 160 source4/libcli/auth/smbdes.c out[i] = d[(i+count)%n];
out 162 source4/libcli/auth/smbdes.c d[i] = out[i];
out 168 source4/libcli/auth/smbdes.c *out++ = *in1++;
out 170 source4/libcli/auth/smbdes.c *out++ = *in2++;
out 177 source4/libcli/auth/smbdes.c out[i] = in1[i] ^ in2[i];
out 256 source4/libcli/auth/smbdes.c permute(out, rl, perm6, 64);
out 298 source4/libcli/auth/smbdes.c out[i] = 0;
out 303 source4/libcli/auth/smbdes.c out[i/8] |= (1<<(7-(i%8)));
out 323 source4/libcli/auth/smbdes.c des_crypt56(out, in, p14, 0);
out 324 source4/libcli/auth/smbdes.c des_crypt56(out+8, in+8, p14+7, 0);
out 329 source4/libcli/auth/smbdes.c des_crypt56(out, in, p14, 1);
out 330 source4/libcli/auth/smbdes.c des_crypt56(out+8, in+8, p14+7, 1);
out 338 source4/libcli/auth/smbdes.c des_crypt56(out, buf, key+9, 1);
out 349 source4/libcli/auth/smbdes.c des_crypt56(out, buf, key2, forw);
out 357 source4/libcli/auth/smbdes.c des_crypt56(out, buf, key+7, forw);
out 363 source4/libcli/auth/smbdes.c des_crypt56(out, in, key, forw);
out 364 source4/libcli/auth/smbdes.c des_crypt56(out + 8, in + 8, key+7, forw);
out 379 source4/libcli/auth/smbdes.c des_crypt56(out, in, s, forw);
out 380 source4/libcli/auth/smbdes.c des_crypt56(out+8, in+8, s+7, forw);
out 473 source4/libcli/cldap/cldap.c ZERO_STRUCT(io->out);
out 477 source4/libcli/cldap/cldap.c io->out.response = talloc(mem_ctx, struct ldap_SearchResEntry);
out 478 source4/libcli/cldap/cldap.c NT_STATUS_HAVE_NO_MEMORY(io->out.response);
out 479 source4/libcli/cldap/cldap.c *io->out.response = ldap_msg->r.SearchResultEntry;
out 495 source4/libcli/cldap/cldap.c io->out.result = talloc(mem_ctx, struct ldap_Result);
out 496 source4/libcli/cldap/cldap.c NT_STATUS_HAVE_NO_MEMORY(io->out.result);
out 497 source4/libcli/cldap/cldap.c *io->out.result = ldap_msg->r.SearchResultDone;
out 501 source4/libcli/cldap/cldap.c if (io->out.result->resultcode != LDAP_SUCCESS) {
out 502 source4/libcli/cldap/cldap.c return NT_STATUS_LDAP(io->out.result->resultcode);
out 607 source4/libcli/cldap/cldap.c if (search.out.response == NULL) {
out 611 source4/libcli/cldap/cldap.c if (search.out.response->num_attributes != 1 ||
out 612 source4/libcli/cldap/cldap.c strcasecmp(search.out.response->attributes[0].name, "netlogon") != 0 ||
out 613 source4/libcli/cldap/cldap.c search.out.response->attributes[0].num_values != 1 ||
out 614 source4/libcli/cldap/cldap.c search.out.response->attributes[0].values->length < 2) {
out 617 source4/libcli/cldap/cldap.c data = search.out.response->attributes[0].values;
out 620 source4/libcli/cldap/cldap.c &io->out.netlogon);
out 626 source4/libcli/cldap/cldap.c map_netlogon_samlogon_response(&io->out.netlogon);
out 111 source4/libcli/cldap/cldap.h } out;
out 168 source4/libcli/cldap/cldap.h } out;
out 94 source4/libcli/cliconnect.c cli->session->vuid = setup.out.vuid;
out 134 source4/libcli/cliconnect.c cli->tree->tid = tcon.tconx.out.tid;
out 259 source4/libcli/clifile.c return open_parms.ntcreatex.out.file.fnum;
out 326 source4/libcli/clifile.c return open_parms.openx.out.file.fnum;
out 516 source4/libcli/clifile.c *size = parms.getattre.out.size;
out 520 source4/libcli/clifile.c *attr = parms.getattre.out.attrib;
out 524 source4/libcli/clifile.c *c_time = parms.getattre.out.create_time;
out 528 source4/libcli/clifile.c *a_time = parms.getattre.out.access_time;
out 532 source4/libcli/clifile.c *m_time = parms.getattre.out.write_time;
out 557 source4/libcli/clifile.c *size = parms.getattr.out.size;
out 561 source4/libcli/clifile.c *t = parms.getattr.out.write_time;
out 565 source4/libcli/clifile.c *attr = parms.getattr.out.attrib;
out 665 source4/libcli/clifile.c *bsize = fsinfo_parms.size_info.out.bytes_per_sector * fsinfo_parms.size_info.out.sectors_per_unit;
out 666 source4/libcli/clifile.c *total = fsinfo_parms.size_info.out.total_alloc_units;
out 667 source4/libcli/clifile.c *avail = fsinfo_parms.size_info.out.avail_alloc_units;
out 695 source4/libcli/clifile.c *tmp_path = strdup(open_parms.ctemp.out.name);
out 699 source4/libcli/clifile.c return open_parms.ctemp.out.file.fnum;
out 156 source4/libcli/clilist.c ff_dir_handle = first_parms.t2ffirst.out.handle;
out 157 source4/libcli/clilist.c ff_searchcount = first_parms.t2ffirst.out.count;
out 158 source4/libcli/clilist.c ff_eos = first_parms.t2ffirst.out.end_of_search;
out 160 source4/libcli/clilist.c received = first_parms.t2ffirst.out.count;
out 184 source4/libcli/clilist.c ff_searchcount = next_parms.t2fnext.out.count;
out 185 source4/libcli/clilist.c ff_eos = next_parms.t2fnext.out.end_of_search;
out 186 source4/libcli/clilist.c received = next_parms.t2fnext.out.count;
out 305 source4/libcli/clilist.c received = first_parms.search_first.out.count;
out 329 source4/libcli/clilist.c received = next_parms.search_next.out.count;
out 60 source4/libcli/climessage.c SSVAL(req->out.vwv, VWV(0), grp);
out 83 source4/libcli/climessage.c SSVAL(req->out.vwv, VWV(0), grp);
out 61 source4/libcli/clireadwrite.c parms.readx.out.data = buf + total;
out 69 source4/libcli/clireadwrite.c total += parms.readx.out.nread;
out 70 source4/libcli/clireadwrite.c offset += parms.readx.out.nread;
out 73 source4/libcli/clireadwrite.c if (parms.readx.out.nread < readsize)
out 124 source4/libcli/clireadwrite.c offset += parms.writex.out.nwritten;
out 125 source4/libcli/clireadwrite.c total += parms.writex.out.nwritten;
out 126 source4/libcli/clireadwrite.c buf += parms.writex.out.nwritten;
out 157 source4/libcli/clireadwrite.c size = parms.write.out.nwritten;
out 47 source4/libcli/clitrans2.c *c_time = parms.standard.out.create_time;
out 50 source4/libcli/clitrans2.c *a_time = parms.standard.out.access_time;
out 53 source4/libcli/clitrans2.c *m_time = parms.standard.out.write_time;
out 56 source4/libcli/clitrans2.c *size = parms.standard.out.size;
out 59 source4/libcli/clitrans2.c *mode = parms.standard.out.attrib;
out 89 source4/libcli/clitrans2.c *c_time = nt_time_to_unix(parms.all_info.out.create_time);
out 92 source4/libcli/clitrans2.c *a_time = nt_time_to_unix(parms.all_info.out.access_time);
out 95 source4/libcli/clitrans2.c *m_time = nt_time_to_unix(parms.all_info.out.change_time);
out 98 source4/libcli/clitrans2.c *w_time = nt_time_to_unix(parms.all_info.out.write_time);
out 101 source4/libcli/clitrans2.c *size = parms.all_info.out.size;
out 104 source4/libcli/clitrans2.c *mode = parms.all_info.out.attrib;
out 133 source4/libcli/clitrans2.c *name = strdup(parms.name_info.out.fname.s);
out 167 source4/libcli/clitrans2.c *c_time = nt_time_to_unix(parms.all_info.out.create_time);
out 170 source4/libcli/clitrans2.c *a_time = nt_time_to_unix(parms.all_info.out.access_time);
out 173 source4/libcli/clitrans2.c *m_time = nt_time_to_unix(parms.all_info.out.change_time);
out 176 source4/libcli/clitrans2.c *w_time = nt_time_to_unix(parms.all_info.out.write_time);
out 179 source4/libcli/clitrans2.c *mode = parms.all_info.out.attrib;
out 182 source4/libcli/clitrans2.c *size = (size_t)parms.all_info.out.size;
out 215 source4/libcli/clitrans2.c if (!parms.alt_name_info.out.fname.s) {
out 218 source4/libcli/clitrans2.c *alt_name = strdup(parms.alt_name_info.out.fname.s);
out 182 source4/libcli/finddcs.c state->dcs[0].name = talloc_steal(state->dcs, state->r.out.dcname);
out 223 source4/libcli/finddcs.c for (i=0; i < state->node_status.out.status.num_names; i++) {
out 225 source4/libcli/finddcs.c if (state->node_status.out.status.names[i].type == NBT_NAME_SERVER) {
out 226 source4/libcli/finddcs.c char *name = talloc_strndup(state->dcs, state->node_status.out.status.names[0].name, 15);
out 31 source4/libcli/ldap/ldap_controls.c void **out = (void **)_out;
out 70 source4/libcli/ldap/ldap_controls.c *out = lsrc;
out 77 source4/libcli/ldap/ldap_controls.c void **out = (void **)_out;
out 150 source4/libcli/ldap/ldap_controls.c *out = lssc;
out 157 source4/libcli/ldap/ldap_controls.c void **out = (void **)_out;
out 163 source4/libcli/ldap/ldap_controls.c *out = NULL;
out 191 source4/libcli/ldap/ldap_controls.c *out = ledc;
out 198 source4/libcli/ldap/ldap_controls.c void **out = (void **)_out;
out 225 source4/libcli/ldap/ldap_controls.c *out = lsdfc;
out 232 source4/libcli/ldap/ldap_controls.c void **out = (void **)_out;
out 259 source4/libcli/ldap/ldap_controls.c *out = lsoc;
out 266 source4/libcli/ldap/ldap_controls.c void **out = (void **)_out;
out 308 source4/libcli/ldap/ldap_controls.c *out = lprc;
out 315 source4/libcli/ldap/ldap_controls.c void **out = (void **)_out;
out 361 source4/libcli/ldap/ldap_controls.c *out = ldc;
out 371 source4/libcli/ldap/ldap_controls.c void **out = (void **)_out;
out 425 source4/libcli/ldap/ldap_controls.c *out = lac;
out 477 source4/libcli/ldap/ldap_controls.c void **out = (void **)_out;
out 583 source4/libcli/ldap/ldap_controls.c *out = lvrc;
out 590 source4/libcli/ldap/ldap_controls.c void **out = (void **)_out;
out 640 source4/libcli/ldap/ldap_controls.c *out = lvrc;
out 670 source4/libcli/ldap/ldap_controls.c *out = data_blob_talloc(mem_ctx, data->data, data->length);
out 671 source4/libcli/ldap/ldap_controls.c if (out->data == NULL) {
out 721 source4/libcli/ldap/ldap_controls.c *out = data_blob_talloc(mem_ctx, data->data, data->length);
out 722 source4/libcli/ldap/ldap_controls.c if (out->data == NULL) {
out 736 source4/libcli/ldap/ldap_controls.c *out = data_blob(NULL, 0);
out 756 source4/libcli/ldap/ldap_controls.c *out = data_blob_talloc(mem_ctx, data->data, data->length);
out 757 source4/libcli/ldap/ldap_controls.c if (out->data == NULL) {
out 784 source4/libcli/ldap/ldap_controls.c *out = data_blob_talloc(mem_ctx, data->data, data->length);
out 785 source4/libcli/ldap/ldap_controls.c if (out->data == NULL) {
out 812 source4/libcli/ldap/ldap_controls.c *out = data_blob_talloc(mem_ctx, data->data, data->length);
out 813 source4/libcli/ldap/ldap_controls.c if (out->data == NULL) {
out 844 source4/libcli/ldap/ldap_controls.c *out = data_blob_talloc(mem_ctx, data->data, data->length);
out 845 source4/libcli/ldap/ldap_controls.c if (out->data == NULL) {
out 882 source4/libcli/ldap/ldap_controls.c *out = data_blob_talloc(mem_ctx, data->data, data->length);
out 883 source4/libcli/ldap/ldap_controls.c if (out->data == NULL) {
out 918 source4/libcli/ldap/ldap_controls.c *out = data_blob_talloc(mem_ctx, data->data, data->length);
out 919 source4/libcli/ldap/ldap_controls.c if (out->data == NULL) {
out 933 source4/libcli/ldap/ldap_controls.c *out = data_blob(NULL, 0);
out 943 source4/libcli/ldap/ldap_controls.c *out = data_blob(NULL, 0);
out 953 source4/libcli/ldap/ldap_controls.c *out = data_blob(NULL, 0);
out 963 source4/libcli/ldap/ldap_controls.c *out = data_blob(NULL, 0);
out 973 source4/libcli/ldap/ldap_controls.c *out = data_blob(NULL, 0);
out 1044 source4/libcli/ldap/ldap_controls.c *out = data_blob_talloc(mem_ctx, data->data, data->length);
out 1045 source4/libcli/ldap/ldap_controls.c if (out->data == NULL) {
out 1086 source4/libcli/ldap/ldap_controls.c *out = data_blob_talloc(mem_ctx, data->data, data->length);
out 1087 source4/libcli/ldap/ldap_controls.c if (out->data == NULL) {
out 1131 source4/libcli/ldap/ldap_controls.c *out = data_blob_talloc(mem_ctx, data->data, data->length);
out 1132 source4/libcli/ldap/ldap_controls.c if (out->data == NULL) {
out 1141 source4/libcli/ldap/ldap_controls.c void **out = (void **)_out;
out 1204 source4/libcli/ldap/ldap_controls.c *out = control;
out 309 source4/libcli/rap/rap.h } out;
out 343 source4/libcli/rap/rap.h } out;
out 357 source4/libcli/rap/rap.h } out;
out 34 source4/libcli/raw/clioplock.c SSVAL(req->out.vwv,VWV(0),0xFF);
out 35 source4/libcli/raw/clioplock.c SSVAL(req->out.vwv,VWV(1),0);
out 36 source4/libcli/raw/clioplock.c SSVAL(req->out.vwv,VWV(2),fnum);
out 37 source4/libcli/raw/clioplock.c SCVAL(req->out.vwv,VWV(3),LOCKING_ANDX_OPLOCK_RELEASE);
out 38 source4/libcli/raw/clioplock.c SCVAL(req->out.vwv,VWV(3)+1,ack_level);
out 39 source4/libcli/raw/clioplock.c SIVAL(req->out.vwv,VWV(4),0);
out 40 source4/libcli/raw/clioplock.c SSVAL(req->out.vwv,VWV(6),0);
out 41 source4/libcli/raw/clioplock.c SSVAL(req->out.vwv,VWV(7),0);
out 91 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 92 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(1), 0);
out 93 source4/libcli/raw/clisession.c SSVAL(req->out.vwv,VWV(2),parms->old.in.bufsize);
out 94 source4/libcli/raw/clisession.c SSVAL(req->out.vwv,VWV(3),parms->old.in.mpx_max);
out 95 source4/libcli/raw/clisession.c SSVAL(req->out.vwv,VWV(4),parms->old.in.vc_num);
out 96 source4/libcli/raw/clisession.c SIVAL(req->out.vwv,VWV(5),parms->old.in.sesskey);
out 97 source4/libcli/raw/clisession.c SSVAL(req->out.vwv,VWV(7),parms->old.in.password.length);
out 98 source4/libcli/raw/clisession.c SIVAL(req->out.vwv,VWV(8), 0); /* reserved */
out 108 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 109 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(1), 0);
out 110 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(2), parms->nt1.in.bufsize);
out 111 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(3), parms->nt1.in.mpx_max);
out 112 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(4), parms->nt1.in.vc_num);
out 113 source4/libcli/raw/clisession.c SIVAL(req->out.vwv, VWV(5), parms->nt1.in.sesskey);
out 114 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(7), parms->nt1.in.password1.length);
out 115 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(8), parms->nt1.in.password2.length);
out 116 source4/libcli/raw/clisession.c SIVAL(req->out.vwv, VWV(9), 0); /* reserved */
out 117 source4/libcli/raw/clisession.c SIVAL(req->out.vwv, VWV(11), parms->nt1.in.capabilities);
out 128 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 129 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(1), 0);
out 130 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(2), parms->spnego.in.bufsize);
out 131 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(3), parms->spnego.in.mpx_max);
out 132 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(4), parms->spnego.in.vc_num);
out 133 source4/libcli/raw/clisession.c SIVAL(req->out.vwv, VWV(5), parms->spnego.in.sesskey);
out 134 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(7), parms->spnego.in.secblob.length);
out 135 source4/libcli/raw/clisession.c SIVAL(req->out.vwv, VWV(8), 0); /* reserved */
out 136 source4/libcli/raw/clisession.c SIVAL(req->out.vwv, VWV(10), parms->spnego.in.capabilities);
out 178 source4/libcli/raw/clisession.c ZERO_STRUCT(parms->old.out);
out 179 source4/libcli/raw/clisession.c parms->old.out.vuid = SVAL(req->in.hdr, HDR_UID);
out 180 source4/libcli/raw/clisession.c parms->old.out.action = SVAL(req->in.vwv, VWV(2));
out 183 source4/libcli/raw/clisession.c p += smbcli_req_pull_string(&req->in.bufinfo, mem_ctx, &parms->old.out.os, p, -1, STR_TERMINATE);
out 184 source4/libcli/raw/clisession.c p += smbcli_req_pull_string(&req->in.bufinfo, mem_ctx, &parms->old.out.lanman, p, -1, STR_TERMINATE);
out 185 source4/libcli/raw/clisession.c p += smbcli_req_pull_string(&req->in.bufinfo, mem_ctx, &parms->old.out.domain, p, -1, STR_TERMINATE);
out 191 source4/libcli/raw/clisession.c ZERO_STRUCT(parms->nt1.out);
out 192 source4/libcli/raw/clisession.c parms->nt1.out.vuid = SVAL(req->in.hdr, HDR_UID);
out 193 source4/libcli/raw/clisession.c parms->nt1.out.action = SVAL(req->in.vwv, VWV(2));
out 196 source4/libcli/raw/clisession.c p += smbcli_req_pull_string(&req->in.bufinfo, mem_ctx, &parms->nt1.out.os, p, -1, STR_TERMINATE);
out 197 source4/libcli/raw/clisession.c p += smbcli_req_pull_string(&req->in.bufinfo, mem_ctx, &parms->nt1.out.lanman, p, -1, STR_TERMINATE);
out 199 source4/libcli/raw/clisession.c p += smbcli_req_pull_string(&req->in.bufinfo, mem_ctx, &parms->nt1.out.domain, p, -1, STR_TERMINATE);
out 206 source4/libcli/raw/clisession.c ZERO_STRUCT(parms->spnego.out);
out 207 source4/libcli/raw/clisession.c parms->spnego.out.vuid = SVAL(req->in.hdr, HDR_UID);
out 208 source4/libcli/raw/clisession.c parms->spnego.out.action = SVAL(req->in.vwv, VWV(2));
out 215 source4/libcli/raw/clisession.c parms->spnego.out.secblob = smbcli_req_pull_blob(&req->in.bufinfo, mem_ctx, p, len);
out 216 source4/libcli/raw/clisession.c p += parms->spnego.out.secblob.length;
out 217 source4/libcli/raw/clisession.c p += smbcli_req_pull_string(&req->in.bufinfo, mem_ctx, &parms->spnego.out.os, p, -1, STR_TERMINATE);
out 218 source4/libcli/raw/clisession.c p += smbcli_req_pull_string(&req->in.bufinfo, mem_ctx, &parms->spnego.out.lanman, p, -1, STR_TERMINATE);
out 219 source4/libcli/raw/clisession.c p += smbcli_req_pull_string(&req->in.bufinfo, mem_ctx, &parms->spnego.out.workgroup, p, -1, STR_TERMINATE);
out 252 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 253 source4/libcli/raw/clisession.c SSVAL(req->out.vwv, VWV(1), 0);
out 187 source4/libcli/raw/clitransport.c p = req->out.buffer + NBT_HDR_SIZE;
out 194 source4/libcli/raw/clitransport.c _smb_setlen(req->out.buffer, PTR_DIFF(p, req->out.buffer) - NBT_HDR_SIZE);
out 195 source4/libcli/raw/clitransport.c SCVAL(req->out.buffer,0,0x81);
out 587 source4/libcli/raw/clitransport.c blob = data_blob_const(req->out.buffer, req->out.size);
out 626 source4/libcli/raw/clitransport.c SSVAL(req->out.vwv, VWV(0), p->in.repeat_count);
out 628 source4/libcli/raw/clitransport.c memcpy(req->out.data, p->in.data, p->in.size);
out 630 source4/libcli/raw/clitransport.c ZERO_STRUCT(p->out);
out 652 source4/libcli/raw/clitransport.c p->out.count++;
out 653 source4/libcli/raw/clitransport.c p->out.sequence_number = SVAL(req->in.vwv, VWV(0));
out 654 source4/libcli/raw/clitransport.c p->out.size = req->in.data_size;
out 655 source4/libcli/raw/clitransport.c talloc_free(p->out.data);
out 656 source4/libcli/raw/clitransport.c p->out.data = talloc_array(mem_ctx, uint8_t, p->out.size);
out 657 source4/libcli/raw/clitransport.c NT_STATUS_HAVE_NO_MEMORY(p->out.data);
out 659 source4/libcli/raw/clitransport.c if (!smbcli_raw_pull_data(&req->in.bufinfo, req->in.data, p->out.size, p->out.data)) {
out 663 source4/libcli/raw/clitransport.c if (p->out.count == p->in.repeat_count) {
out 74 source4/libcli/raw/clitree.c SSVAL(req->out.vwv, VWV(0), 0xFF);
out 75 source4/libcli/raw/clitree.c SSVAL(req->out.vwv, VWV(1), 0);
out 76 source4/libcli/raw/clitree.c SSVAL(req->out.vwv, VWV(2), parms->tconx.in.flags);
out 77 source4/libcli/raw/clitree.c SSVAL(req->out.vwv, VWV(3), parms->tconx.in.password.length);
out 111 source4/libcli/raw/clitree.c parms->tcon.out.max_xmit = SVAL(req->in.vwv, VWV(0));
out 112 source4/libcli/raw/clitree.c parms->tcon.out.tid = SVAL(req->in.vwv, VWV(1));
out 116 source4/libcli/raw/clitree.c ZERO_STRUCT(parms->tconx.out);
out 117 source4/libcli/raw/clitree.c parms->tconx.out.tid = SVAL(req->in.hdr, HDR_TID);
out 119 source4/libcli/raw/clitree.c parms->tconx.out.options = SVAL(req->in.vwv, VWV(3));
out 126 source4/libcli/raw/clitree.c p += smbcli_req_pull_string(&req->in.bufinfo, mem_ctx, &parms->tconx.out.dev_type,
out 128 source4/libcli/raw/clitree.c p += smbcli_req_pull_string(&req->in.bufinfo, mem_ctx, &parms->tconx.out.fs_type,
out 212 source4/libcli/raw/clitree.c *ret_tree = io.out.tree;
out 120 source4/libcli/raw/interfaces.h } out;
out 247 source4/libcli/raw/interfaces.h } out;
out 265 source4/libcli/raw/interfaces.h } out;
out 291 source4/libcli/raw/interfaces.h } out;
out 326 source4/libcli/raw/interfaces.h } out;
out 352 source4/libcli/raw/interfaces.h } out;
out 378 source4/libcli/raw/interfaces.h } out;
out 407 source4/libcli/raw/interfaces.h } out;
out 501 source4/libcli/raw/interfaces.h } out;
out 516 source4/libcli/raw/interfaces.h } out;
out 532 source4/libcli/raw/interfaces.h } out;
out 549 source4/libcli/raw/interfaces.h } out;
out 566 source4/libcli/raw/interfaces.h } out;
out 577 source4/libcli/raw/interfaces.h struct smb_ea_list out;
out 601 source4/libcli/raw/interfaces.h } out;
out 617 source4/libcli/raw/interfaces.h } out;
out 628 source4/libcli/raw/interfaces.h } out;
out 639 source4/libcli/raw/interfaces.h } out;
out 661 source4/libcli/raw/interfaces.h } out;
out 690 source4/libcli/raw/interfaces.h } out;
out 701 source4/libcli/raw/interfaces.h } out;
out 713 source4/libcli/raw/interfaces.h } out;
out 728 source4/libcli/raw/interfaces.h } out;
out 751 source4/libcli/raw/interfaces.h } out;
out 777 source4/libcli/raw/interfaces.h } out;
out 788 source4/libcli/raw/interfaces.h } out;
out 799 source4/libcli/raw/interfaces.h } out;
out 810 source4/libcli/raw/interfaces.h } out;
out 821 source4/libcli/raw/interfaces.h } out;
out 832 source4/libcli/raw/interfaces.h } out;
out 843 source4/libcli/raw/interfaces.h } out;
out 860 source4/libcli/raw/interfaces.h } out;
out 873 source4/libcli/raw/interfaces.h } out;
out 885 source4/libcli/raw/interfaces.h } out;
out 1184 source4/libcli/raw/interfaces.h } out;
out 1196 source4/libcli/raw/interfaces.h } out;
out 1209 source4/libcli/raw/interfaces.h } out;
out 1219 source4/libcli/raw/interfaces.h } out;
out 1231 source4/libcli/raw/interfaces.h } out;
out 1244 source4/libcli/raw/interfaces.h } out;
out 1255 source4/libcli/raw/interfaces.h } out;
out 1268 source4/libcli/raw/interfaces.h } out;
out 1280 source4/libcli/raw/interfaces.h } out;
out 1293 source4/libcli/raw/interfaces.h } out;
out 1307 source4/libcli/raw/interfaces.h } out;
out 1318 source4/libcli/raw/interfaces.h } out;
out 1350 source4/libcli/raw/interfaces.h file = &op->openold.out.file; \
out 1353 source4/libcli/raw/interfaces.h file = &op->openx.out.file; \
out 1356 source4/libcli/raw/interfaces.h file = &op->mknew.out.file; \
out 1359 source4/libcli/raw/interfaces.h file = &op->create.out.file; \
out 1362 source4/libcli/raw/interfaces.h file = &op->ctemp.out.file; \
out 1365 source4/libcli/raw/interfaces.h file = &op->splopen.out.file; \
out 1368 source4/libcli/raw/interfaces.h file = &op->ntcreatex.out.file; \
out 1371 source4/libcli/raw/interfaces.h file = &op->t2open.out.file; \
out 1374 source4/libcli/raw/interfaces.h file = &op->nttrans.out.file; \
out 1377 source4/libcli/raw/interfaces.h file = &op->openxreadx.out.file; \
out 1380 source4/libcli/raw/interfaces.h file = &op->smb2.out.file; \
out 1433 source4/libcli/raw/interfaces.h } out;
out 1462 source4/libcli/raw/interfaces.h } out;
out 1479 source4/libcli/raw/interfaces.h } out;
out 1510 source4/libcli/raw/interfaces.h } out;
out 1523 source4/libcli/raw/interfaces.h } out;
out 1538 source4/libcli/raw/interfaces.h } out;
out 1551 source4/libcli/raw/interfaces.h } out;
out 1595 source4/libcli/raw/interfaces.h } out;
out 1672 source4/libcli/raw/interfaces.h } out;
out 1710 source4/libcli/raw/interfaces.h } out;
out 1726 source4/libcli/raw/interfaces.h } out;
out 1742 source4/libcli/raw/interfaces.h } out;
out 1757 source4/libcli/raw/interfaces.h } out;
out 1792 source4/libcli/raw/interfaces.h } out;
out 1825 source4/libcli/raw/interfaces.h } out;
out 1840 source4/libcli/raw/interfaces.h } out;
out 1855 source4/libcli/raw/interfaces.h } out;
out 1870 source4/libcli/raw/interfaces.h } out;
out 1907 source4/libcli/raw/interfaces.h } out;
out 1981 source4/libcli/raw/interfaces.h } out;
out 1995 source4/libcli/raw/interfaces.h } in, out;
out 2029 source4/libcli/raw/interfaces.h } out;
out 2072 source4/libcli/raw/interfaces.h } out;
out 2108 source4/libcli/raw/interfaces.h } out;
out 2140 source4/libcli/raw/interfaces.h } out;
out 2157 source4/libcli/raw/interfaces.h } out;
out 2180 source4/libcli/raw/interfaces.h DATA_BLOB out;
out 2200 source4/libcli/raw/interfaces.h DATA_BLOB out;
out 2201 source4/libcli/raw/interfaces.h } out;
out 2235 source4/libcli/raw/interfaces.h } out;
out 2250 source4/libcli/raw/interfaces.h } out;
out 2274 source4/libcli/raw/interfaces.h } out;
out 2295 source4/libcli/raw/interfaces.h } out;
out 2321 source4/libcli/raw/interfaces.h } out;
out 2350 source4/libcli/raw/interfaces.h } out;
out 2398 source4/libcli/raw/interfaces.h } out;
out 2421 source4/libcli/raw/interfaces.h } out;
out 2468 source4/libcli/raw/interfaces.h } out;
out 2498 source4/libcli/raw/interfaces.h } out;
out 2520 source4/libcli/raw/interfaces.h } out;
out 2748 source4/libcli/raw/interfaces.h } out;
out 2763 source4/libcli/raw/interfaces.h } out;
out 278 source4/libcli/raw/libcliraw.h struct smb_request_buffer out;
out 73 source4/libcli/raw/rawacl.c if (nt.out.params.length != 4 ||
out 74 source4/libcli/raw/rawacl.c IVAL(nt.out.params.data, 0) > nt.out.data.length) {
out 78 source4/libcli/raw/rawacl.c nt.out.data.length = IVAL(nt.out.params.data, 0);
out 80 source4/libcli/raw/rawacl.c ndr = ndr_pull_init_blob(&nt.out.data, mem_ctx, NULL);
out 85 source4/libcli/raw/rawacl.c io->query_secdesc.out.sd = talloc(mem_ctx, struct security_descriptor);
out 86 source4/libcli/raw/rawacl.c if (!io->query_secdesc.out.sd) {
out 90 source4/libcli/raw/rawacl.c io->query_secdesc.out.sd);
out 92 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->rename.in.attrib);
out 99 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->ntrename.in.attrib);
out 100 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(1), parms->ntrename.in.flags);
out 101 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(2), parms->ntrename.in.cluster_size);
out 160 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->unlink.in.attrib);
out 303 source4/libcli/raw/rawfile.c if (nt.out.params.length < 69) {
out 307 source4/libcli/raw/rawfile.c params = nt.out.params.data;
out 309 source4/libcli/raw/rawfile.c parms->ntcreatex.out.oplock_level = CVAL(params, 0);
out 310 source4/libcli/raw/rawfile.c parms->ntcreatex.out.file.fnum = SVAL(params, 2);
out 311 source4/libcli/raw/rawfile.c parms->ntcreatex.out.create_action = IVAL(params, 4);
out 312 source4/libcli/raw/rawfile.c parms->ntcreatex.out.create_time = smbcli_pull_nttime(params, 12);
out 313 source4/libcli/raw/rawfile.c parms->ntcreatex.out.access_time = smbcli_pull_nttime(params, 20);
out 314 source4/libcli/raw/rawfile.c parms->ntcreatex.out.write_time = smbcli_pull_nttime(params, 28);
out 315 source4/libcli/raw/rawfile.c parms->ntcreatex.out.change_time = smbcli_pull_nttime(params, 36);
out 316 source4/libcli/raw/rawfile.c parms->ntcreatex.out.attrib = IVAL(params, 44);
out 317 source4/libcli/raw/rawfile.c parms->ntcreatex.out.alloc_size = BVAL(params, 48);
out 318 source4/libcli/raw/rawfile.c parms->ntcreatex.out.size = BVAL(params, 56);
out 319 source4/libcli/raw/rawfile.c parms->ntcreatex.out.file_type = SVAL(params, 64);
out 320 source4/libcli/raw/rawfile.c parms->ntcreatex.out.ipc_state = SVAL(params, 66);
out 321 source4/libcli/raw/rawfile.c parms->ntcreatex.out.is_directory = CVAL(params, 68);
out 478 source4/libcli/raw/rawfile.c if (t2.out.params.length < 30) {
out 482 source4/libcli/raw/rawfile.c parms->t2open.out.file.fnum = SVAL(t2.out.params.data, VWV(0));
out 483 source4/libcli/raw/rawfile.c parms->t2open.out.attrib = SVAL(t2.out.params.data, VWV(1));
out 484 source4/libcli/raw/rawfile.c parms->t2open.out.write_time = raw_pull_dos_date3(transport, t2.out.params.data + VWV(2));
out 485 source4/libcli/raw/rawfile.c parms->t2open.out.size = IVAL(t2.out.params.data, VWV(4));
out 486 source4/libcli/raw/rawfile.c parms->t2open.out.access = SVAL(t2.out.params.data, VWV(6));
out 487 source4/libcli/raw/rawfile.c parms->t2open.out.ftype = SVAL(t2.out.params.data, VWV(7));
out 488 source4/libcli/raw/rawfile.c parms->t2open.out.devstate = SVAL(t2.out.params.data, VWV(8));
out 489 source4/libcli/raw/rawfile.c parms->t2open.out.action = SVAL(t2.out.params.data, VWV(9));
out 490 source4/libcli/raw/rawfile.c parms->t2open.out.file_id = SVAL(t2.out.params.data, VWV(10));
out 510 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->openold.in.open_mode);
out 511 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(1), parms->openold.in.search_attrs);
out 517 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 518 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(1), 0);
out 519 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(2), parms->openx.in.flags);
out 520 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(3), parms->openx.in.open_mode);
out 521 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(4), parms->openx.in.search_attrs);
out 522 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(5), parms->openx.in.file_attrs);
out 524 source4/libcli/raw/rawfile.c req->out.vwv, VWV(6), parms->openx.in.write_time);
out 525 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(8), parms->openx.in.open_func);
out 526 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(9), parms->openx.in.size);
out 527 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(11),parms->openx.in.timeout);
out 528 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(13),0); /* reserved */
out 534 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->mknew.in.attrib);
out 536 source4/libcli/raw/rawfile.c req->out.vwv, VWV(1), parms->mknew.in.write_time);
out 542 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->create.in.attrib);
out 544 source4/libcli/raw/rawfile.c req->out.vwv, VWV(1), parms->create.in.write_time);
out 550 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->ctemp.in.attrib);
out 552 source4/libcli/raw/rawfile.c req->out.vwv, VWV(1), parms->ctemp.in.write_time);
out 558 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->splopen.in.setup_length);
out 559 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(1), parms->splopen.in.mode);
out 564 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0),SMB_CHAIN_NONE);
out 565 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(1),0);
out 566 source4/libcli/raw/rawfile.c SCVAL(req->out.vwv, VWV(2),0); /* padding */
out 567 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, 7, parms->ntcreatex.in.flags);
out 568 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, 11, parms->ntcreatex.in.root_fid);
out 569 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, 15, parms->ntcreatex.in.access_mask);
out 570 source4/libcli/raw/rawfile.c SBVAL(req->out.vwv, 19, parms->ntcreatex.in.alloc_size);
out 571 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, 27, parms->ntcreatex.in.file_attr);
out 572 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, 31, parms->ntcreatex.in.share_access);
out 573 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, 35, parms->ntcreatex.in.open_disposition);
out 574 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, 39, parms->ntcreatex.in.create_options);
out 575 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, 43, parms->ntcreatex.in.impersonation);
out 576 source4/libcli/raw/rawfile.c SCVAL(req->out.vwv, 47, parms->ntcreatex.in.security_flags);
out 579 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, 5, len);
out 588 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 589 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(1), 0);
out 590 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(2), parms->openxreadx.in.flags);
out 591 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(3), parms->openxreadx.in.open_mode);
out 592 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(4), parms->openxreadx.in.search_attrs);
out 593 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(5), parms->openxreadx.in.file_attrs);
out 595 source4/libcli/raw/rawfile.c req->out.vwv, VWV(6), parms->openxreadx.in.write_time);
out 596 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(8), parms->openxreadx.in.open_func);
out 597 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(9), parms->openxreadx.in.size);
out 598 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(11),parms->openxreadx.in.timeout);
out 599 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(13),0);
out 608 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 609 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(1), 0);
out 610 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(2), 0);
out 611 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(3), parms->openxreadx.in.offset);
out 612 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(5), parms->openxreadx.in.maxcnt & 0xFFFF);
out 613 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(6), parms->openxreadx.in.mincnt);
out 614 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(7), parms->openxreadx.in.maxcnt >> 16);
out 615 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(9), parms->openxreadx.in.remaining);
out 617 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(10),parms->openxreadx.in.offset>>32);
out 650 source4/libcli/raw/rawfile.c parms->openold.out.file.fnum = SVAL(req->in.vwv, VWV(0));
out 651 source4/libcli/raw/rawfile.c parms->openold.out.attrib = SVAL(req->in.vwv, VWV(1));
out 652 source4/libcli/raw/rawfile.c parms->openold.out.write_time = raw_pull_dos_date3(req->transport,
out 654 source4/libcli/raw/rawfile.c parms->openold.out.size = IVAL(req->in.vwv, VWV(4));
out 655 source4/libcli/raw/rawfile.c parms->openold.out.rmode = SVAL(req->in.vwv, VWV(6));
out 660 source4/libcli/raw/rawfile.c parms->openx.out.file.fnum = SVAL(req->in.vwv, VWV(2));
out 661 source4/libcli/raw/rawfile.c parms->openx.out.attrib = SVAL(req->in.vwv, VWV(3));
out 662 source4/libcli/raw/rawfile.c parms->openx.out.write_time = raw_pull_dos_date3(req->transport,
out 664 source4/libcli/raw/rawfile.c parms->openx.out.size = IVAL(req->in.vwv, VWV(6));
out 665 source4/libcli/raw/rawfile.c parms->openx.out.access = SVAL(req->in.vwv, VWV(8));
out 666 source4/libcli/raw/rawfile.c parms->openx.out.ftype = SVAL(req->in.vwv, VWV(9));
out 667 source4/libcli/raw/rawfile.c parms->openx.out.devstate = SVAL(req->in.vwv, VWV(10));
out 668 source4/libcli/raw/rawfile.c parms->openx.out.action = SVAL(req->in.vwv, VWV(11));
out 669 source4/libcli/raw/rawfile.c parms->openx.out.unique_fid = IVAL(req->in.vwv, VWV(12));
out 671 source4/libcli/raw/rawfile.c parms->openx.out.access_mask = IVAL(req->in.vwv, VWV(15));
out 672 source4/libcli/raw/rawfile.c parms->openx.out.unknown = IVAL(req->in.vwv, VWV(17));
out 674 source4/libcli/raw/rawfile.c parms->openx.out.access_mask = 0;
out 675 source4/libcli/raw/rawfile.c parms->openx.out.unknown = 0;
out 681 source4/libcli/raw/rawfile.c parms->mknew.out.file.fnum = SVAL(req->in.vwv, VWV(0));
out 686 source4/libcli/raw/rawfile.c parms->create.out.file.fnum = SVAL(req->in.vwv, VWV(0));
out 691 source4/libcli/raw/rawfile.c parms->ctemp.out.file.fnum = SVAL(req->in.vwv, VWV(0));
out 692 source4/libcli/raw/rawfile.c smbcli_req_pull_string(&req->in.bufinfo, mem_ctx, &parms->ctemp.out.name, req->in.data, -1, STR_TERMINATE | STR_ASCII);
out 697 source4/libcli/raw/rawfile.c parms->splopen.out.file.fnum = SVAL(req->in.vwv, VWV(0));
out 702 source4/libcli/raw/rawfile.c parms->ntcreatex.out.oplock_level = CVAL(req->in.vwv, 4);
out 703 source4/libcli/raw/rawfile.c parms->ntcreatex.out.file.fnum = SVAL(req->in.vwv, 5);
out 704 source4/libcli/raw/rawfile.c parms->ntcreatex.out.create_action = IVAL(req->in.vwv, 7);
out 705 source4/libcli/raw/rawfile.c parms->ntcreatex.out.create_time = smbcli_pull_nttime(req->in.vwv, 11);
out 706 source4/libcli/raw/rawfile.c parms->ntcreatex.out.access_time = smbcli_pull_nttime(req->in.vwv, 19);
out 707 source4/libcli/raw/rawfile.c parms->ntcreatex.out.write_time = smbcli_pull_nttime(req->in.vwv, 27);
out 708 source4/libcli/raw/rawfile.c parms->ntcreatex.out.change_time = smbcli_pull_nttime(req->in.vwv, 35);
out 709 source4/libcli/raw/rawfile.c parms->ntcreatex.out.attrib = IVAL(req->in.vwv, 43);
out 710 source4/libcli/raw/rawfile.c parms->ntcreatex.out.alloc_size = BVAL(req->in.vwv, 47);
out 711 source4/libcli/raw/rawfile.c parms->ntcreatex.out.size = BVAL(req->in.vwv, 55);
out 712 source4/libcli/raw/rawfile.c parms->ntcreatex.out.file_type = SVAL(req->in.vwv, 63);
out 713 source4/libcli/raw/rawfile.c parms->ntcreatex.out.ipc_state = SVAL(req->in.vwv, 65);
out 714 source4/libcli/raw/rawfile.c parms->ntcreatex.out.is_directory = CVAL(req->in.vwv, 67);
out 722 source4/libcli/raw/rawfile.c parms->openxreadx.out.file.fnum = SVAL(req->in.vwv, VWV(2));
out 723 source4/libcli/raw/rawfile.c parms->openxreadx.out.attrib = SVAL(req->in.vwv, VWV(3));
out 724 source4/libcli/raw/rawfile.c parms->openxreadx.out.write_time = raw_pull_dos_date3(req->transport,
out 726 source4/libcli/raw/rawfile.c parms->openxreadx.out.size = IVAL(req->in.vwv, VWV(6));
out 727 source4/libcli/raw/rawfile.c parms->openxreadx.out.access = SVAL(req->in.vwv, VWV(8));
out 728 source4/libcli/raw/rawfile.c parms->openxreadx.out.ftype = SVAL(req->in.vwv, VWV(9));
out 729 source4/libcli/raw/rawfile.c parms->openxreadx.out.devstate = SVAL(req->in.vwv, VWV(10));
out 730 source4/libcli/raw/rawfile.c parms->openxreadx.out.action = SVAL(req->in.vwv, VWV(11));
out 731 source4/libcli/raw/rawfile.c parms->openxreadx.out.unique_fid = IVAL(req->in.vwv, VWV(12));
out 733 source4/libcli/raw/rawfile.c parms->openxreadx.out.access_mask = IVAL(req->in.vwv, VWV(15));
out 734 source4/libcli/raw/rawfile.c parms->openxreadx.out.unknown = IVAL(req->in.vwv, VWV(17));
out 736 source4/libcli/raw/rawfile.c parms->openxreadx.out.access_mask = 0;
out 737 source4/libcli/raw/rawfile.c parms->openxreadx.out.unknown = 0;
out 746 source4/libcli/raw/rawfile.c parms->openxreadx.out.remaining = SVAL(req->in.vwv, VWV(2));
out 747 source4/libcli/raw/rawfile.c parms->openxreadx.out.compaction_mode = SVAL(req->in.vwv, VWV(3));
out 748 source4/libcli/raw/rawfile.c parms->openxreadx.out.nread = SVAL(req->in.vwv, VWV(5));
out 749 source4/libcli/raw/rawfile.c if (parms->openxreadx.out.nread >
out 752 source4/libcli/raw/rawfile.c parms->openxreadx.out.nread,
out 753 source4/libcli/raw/rawfile.c parms->openxreadx.out.data)) {
out 787 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->close.in.file.fnum);
out 789 source4/libcli/raw/rawfile.c req->out.vwv, VWV(1), parms->close.in.write_time);
out 794 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->splclose.in.file.fnum);
out 795 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(1), 0); /* reserved */
out 833 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->lock.in.file.fnum);
out 834 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(1), parms->lock.in.count);
out 835 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(3), parms->lock.in.offset);
out 840 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->unlock.in.file.fnum);
out 841 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(1), parms->unlock.in.count);
out 842 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(3), parms->unlock.in.offset);
out 852 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 853 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(1), 0);
out 854 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(2), parms->lockx.in.file.fnum);
out 855 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(3), parms->lockx.in.mode);
out 856 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(4), parms->lockx.in.timeout);
out 857 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(6), parms->lockx.in.ulock_cnt);
out 858 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(7), parms->lockx.in.lock_cnt);
out 863 source4/libcli/raw/rawfile.c uint8_t *p = req->out.data + lck_size * i;
out 949 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), fnum);
out 980 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(0), parms->lseek.in.file.fnum);
out 981 source4/libcli/raw/rawfile.c SSVAL(req->out.vwv, VWV(1), parms->lseek.in.mode);
out 982 source4/libcli/raw/rawfile.c SIVALS(req->out.vwv, VWV(2), parms->lseek.in.offset);
out 1003 source4/libcli/raw/rawfile.c parms->lseek.out.offset = IVAL(req->in.vwv, VWV(0));
out 99 source4/libcli/raw/rawfileinfo.c parms->basic_info.out.create_time = smbcli_pull_nttime(blob->data, 0);
out 100 source4/libcli/raw/rawfileinfo.c parms->basic_info.out.access_time = smbcli_pull_nttime(blob->data, 8);
out 101 source4/libcli/raw/rawfileinfo.c parms->basic_info.out.write_time = smbcli_pull_nttime(blob->data, 16);
out 102 source4/libcli/raw/rawfileinfo.c parms->basic_info.out.change_time = smbcli_pull_nttime(blob->data, 24);
out 103 source4/libcli/raw/rawfileinfo.c parms->basic_info.out.attrib = IVAL(blob->data, 32);
out 108 source4/libcli/raw/rawfileinfo.c parms->standard_info.out.alloc_size = BVAL(blob->data, 0);
out 109 source4/libcli/raw/rawfileinfo.c parms->standard_info.out.size = BVAL(blob->data, 8);
out 110 source4/libcli/raw/rawfileinfo.c parms->standard_info.out.nlink = IVAL(blob->data, 16);
out 111 source4/libcli/raw/rawfileinfo.c parms->standard_info.out.delete_pending = CVAL(blob->data, 20);
out 112 source4/libcli/raw/rawfileinfo.c parms->standard_info.out.directory = CVAL(blob->data, 21);
out 117 source4/libcli/raw/rawfileinfo.c parms->ea_info.out.ea_size = IVAL(blob->data, 0);
out 123 source4/libcli/raw/rawfileinfo.c &parms->name_info.out.fname, 0, 4, STR_UNICODE);
out 128 source4/libcli/raw/rawfileinfo.c parms->all_info.out.create_time = smbcli_pull_nttime(blob->data, 0);
out 129 source4/libcli/raw/rawfileinfo.c parms->all_info.out.access_time = smbcli_pull_nttime(blob->data, 8);
out 130 source4/libcli/raw/rawfileinfo.c parms->all_info.out.write_time = smbcli_pull_nttime(blob->data, 16);
out 131 source4/libcli/raw/rawfileinfo.c parms->all_info.out.change_time = smbcli_pull_nttime(blob->data, 24);
out 132 source4/libcli/raw/rawfileinfo.c parms->all_info.out.attrib = IVAL(blob->data, 32);
out 133 source4/libcli/raw/rawfileinfo.c parms->all_info.out.alloc_size = BVAL(blob->data, 40);
out 134 source4/libcli/raw/rawfileinfo.c parms->all_info.out.size = BVAL(blob->data, 48);
out 135 source4/libcli/raw/rawfileinfo.c parms->all_info.out.nlink = IVAL(blob->data, 56);
out 136 source4/libcli/raw/rawfileinfo.c parms->all_info.out.delete_pending = CVAL(blob->data, 60);
out 137 source4/libcli/raw/rawfileinfo.c parms->all_info.out.directory = CVAL(blob->data, 61);
out 139 source4/libcli/raw/rawfileinfo.c parms->all_info.out.ea_size = IVAL(blob->data, 64);
out 141 source4/libcli/raw/rawfileinfo.c &parms->all_info.out.fname, 68, 72, STR_UNICODE);
out 147 source4/libcli/raw/rawfileinfo.c parms->all_info.out.ea_size = IVAL(blob->data, 72);
out 154 source4/libcli/raw/rawfileinfo.c &parms->all_info.out.fname, 96, 100, STR_UNICODE);
out 161 source4/libcli/raw/rawfileinfo.c &parms->alt_name_info.out.fname, 0, 4, STR_UNICODE);
out 165 source4/libcli/raw/rawfileinfo.c return smbcli_parse_stream_info(*blob, mem_ctx, &parms->stream_info.out);
out 169 source4/libcli/raw/rawfileinfo.c parms->internal_information.out.file_id = BVAL(blob->data, 0);
out 174 source4/libcli/raw/rawfileinfo.c parms->access_information.out.access_flags = IVAL(blob->data, 0);
out 179 source4/libcli/raw/rawfileinfo.c parms->position_information.out.position = BVAL(blob->data, 0);
out 184 source4/libcli/raw/rawfileinfo.c parms->mode_information.out.mode = IVAL(blob->data, 0);
out 189 source4/libcli/raw/rawfileinfo.c parms->alignment_information.out.alignment_requirement
out 195 source4/libcli/raw/rawfileinfo.c parms->compression_info.out.compressed_size = BVAL(blob->data, 0);
out 196 source4/libcli/raw/rawfileinfo.c parms->compression_info.out.format = SVAL(blob->data, 8);
out 197 source4/libcli/raw/rawfileinfo.c parms->compression_info.out.unit_shift = CVAL(blob->data, 10);
out 198 source4/libcli/raw/rawfileinfo.c parms->compression_info.out.chunk_shift = CVAL(blob->data, 11);
out 199 source4/libcli/raw/rawfileinfo.c parms->compression_info.out.cluster_shift = CVAL(blob->data, 12);
out 205 source4/libcli/raw/rawfileinfo.c parms->network_open_information.out.create_time = smbcli_pull_nttime(blob->data, 0);
out 206 source4/libcli/raw/rawfileinfo.c parms->network_open_information.out.access_time = smbcli_pull_nttime(blob->data, 8);
out 207 source4/libcli/raw/rawfileinfo.c parms->network_open_information.out.write_time = smbcli_pull_nttime(blob->data, 16);
out 208 source4/libcli/raw/rawfileinfo.c parms->network_open_information.out.change_time = smbcli_pull_nttime(blob->data, 24);
out 209 source4/libcli/raw/rawfileinfo.c parms->network_open_information.out.alloc_size = BVAL(blob->data, 32);
out 210 source4/libcli/raw/rawfileinfo.c parms->network_open_information.out.size = BVAL(blob->data, 40);
out 211 source4/libcli/raw/rawfileinfo.c parms->network_open_information.out.attrib = IVAL(blob->data, 48);
out 216 source4/libcli/raw/rawfileinfo.c parms->attribute_tag_information.out.attrib = IVAL(blob->data, 0);
out 217 source4/libcli/raw/rawfileinfo.c parms->attribute_tag_information.out.reparse_tag = IVAL(blob->data, 4);
out 223 source4/libcli/raw/rawfileinfo.c &parms->all_eas.out.num_eas,
out 224 source4/libcli/raw/rawfileinfo.c &parms->all_eas.out.eas);
out 228 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.create_time = smbcli_pull_nttime(blob->data, 0x00);
out 229 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.access_time = smbcli_pull_nttime(blob->data, 0x08);
out 230 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.write_time = smbcli_pull_nttime(blob->data, 0x10);
out 231 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.change_time = smbcli_pull_nttime(blob->data, 0x18);
out 232 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.attrib = IVAL(blob->data, 0x20);
out 233 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.unknown1 = IVAL(blob->data, 0x24);
out 234 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.alloc_size = BVAL(blob->data, 0x28);
out 235 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.size = BVAL(blob->data, 0x30);
out 236 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.nlink = IVAL(blob->data, 0x38);
out 237 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.delete_pending = CVAL(blob->data, 0x3C);
out 238 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.directory = CVAL(blob->data, 0x3D);
out 240 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.file_id = BVAL(blob->data, 0x40);
out 241 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.ea_size = IVAL(blob->data, 0x48);
out 242 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.access_mask = IVAL(blob->data, 0x4C);
out 243 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.position = BVAL(blob->data, 0x50);
out 244 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.mode = IVAL(blob->data, 0x58);
out 245 source4/libcli/raw/rawfileinfo.c parms->all_info2.out.alignment_requirement = IVAL(blob->data, 0x5C);
out 247 source4/libcli/raw/rawfileinfo.c &parms->all_info2.out.fname, 0x60, 0x64, STR_UNICODE);
out 253 source4/libcli/raw/rawfileinfo.c parms->query_secdesc.out.sd = talloc(mem_ctx, struct security_descriptor);
out 254 source4/libcli/raw/rawfileinfo.c NT_STATUS_HAVE_NO_MEMORY(parms->query_secdesc.out.sd);
out 257 source4/libcli/raw/rawfileinfo.c parms->query_secdesc.out.sd,
out 292 source4/libcli/raw/rawfileinfo.c parms->standard.out.create_time = raw_pull_dos_date2(session->transport,
out 294 source4/libcli/raw/rawfileinfo.c parms->standard.out.access_time = raw_pull_dos_date2(session->transport,
out 296 source4/libcli/raw/rawfileinfo.c parms->standard.out.write_time = raw_pull_dos_date2(session->transport,
out 298 source4/libcli/raw/rawfileinfo.c parms->standard.out.size = IVAL(blob->data, 12);
out 299 source4/libcli/raw/rawfileinfo.c parms->standard.out.alloc_size = IVAL(blob->data, 16);
out 300 source4/libcli/raw/rawfileinfo.c parms->standard.out.attrib = SVAL(blob->data, 20);
out 305 source4/libcli/raw/rawfileinfo.c parms->ea_size.out.create_time = raw_pull_dos_date2(session->transport,
out 307 source4/libcli/raw/rawfileinfo.c parms->ea_size.out.access_time = raw_pull_dos_date2(session->transport,
out 309 source4/libcli/raw/rawfileinfo.c parms->ea_size.out.write_time = raw_pull_dos_date2(session->transport,
out 311 source4/libcli/raw/rawfileinfo.c parms->ea_size.out.size = IVAL(blob->data, 12);
out 312 source4/libcli/raw/rawfileinfo.c parms->ea_size.out.alloc_size = IVAL(blob->data, 16);
out 313 source4/libcli/raw/rawfileinfo.c parms->ea_size.out.attrib = SVAL(blob->data, 20);
out 314 source4/libcli/raw/rawfileinfo.c parms->ea_size.out.ea_size = IVAL(blob->data, 22);
out 320 source4/libcli/raw/rawfileinfo.c &parms->ea_list.out.num_eas,
out 321 source4/libcli/raw/rawfileinfo.c &parms->ea_list.out.eas);
out 326 source4/libcli/raw/rawfileinfo.c &parms->all_eas.out.num_eas,
out 327 source4/libcli/raw/rawfileinfo.c &parms->all_eas.out.eas);
out 396 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.end_of_file = BVAL(blob->data, 0);
out 397 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.num_bytes = BVAL(blob->data, 8);
out 398 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.status_change_time = smbcli_pull_nttime(blob->data, 16);
out 399 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.access_time = smbcli_pull_nttime(blob->data, 24);
out 400 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.change_time = smbcli_pull_nttime(blob->data, 32);
out 401 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.uid = BVAL(blob->data, 40);
out 402 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.gid = BVAL(blob->data, 48);
out 403 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.file_type = IVAL(blob->data, 52);
out 404 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.dev_major = BVAL(blob->data, 60);
out 405 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.dev_minor = BVAL(blob->data, 68);
out 406 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.unique_id = BVAL(blob->data, 76);
out 407 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.permissions = BVAL(blob->data, 84);
out 408 source4/libcli/raw/rawfileinfo.c parms->unix_basic_info.out.nlink = BVAL(blob->data, 92);
out 413 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.end_of_file = BVAL(blob->data, 0);
out 414 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.num_bytes = BVAL(blob->data, 8);
out 415 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.status_change_time = smbcli_pull_nttime(blob->data, 16);
out 416 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.access_time = smbcli_pull_nttime(blob->data, 24);
out 417 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.change_time = smbcli_pull_nttime(blob->data, 32);
out 418 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.uid = BVAL(blob->data, 40);
out 419 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.gid = BVAL(blob->data, 48);
out 420 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.file_type = IVAL(blob->data, 52);
out 421 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.dev_major = BVAL(blob->data, 60);
out 422 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.dev_minor = BVAL(blob->data, 68);
out 423 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.unique_id = BVAL(blob->data, 76);
out 424 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.permissions = BVAL(blob->data, 84);
out 425 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.nlink = BVAL(blob->data, 92);
out 426 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.create_time = smbcli_pull_nttime(blob->data, 100);
out 427 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.file_flags = IVAL(blob->data, 108);
out 428 source4/libcli/raw/rawfileinfo.c parms->unix_info2.out.flags_mask = IVAL(blob->data, 112);
out 433 source4/libcli/raw/rawfileinfo.c &parms->unix_link_info.out.link_dest, 0, 4, STR_UNICODE);
out 507 source4/libcli/raw/rawfileinfo.c *blob = tp.out.data;
out 585 source4/libcli/raw/rawfileinfo.c parms->getattr.out.attrib = SVAL(req->in.vwv, VWV(0));
out 586 source4/libcli/raw/rawfileinfo.c parms->getattr.out.write_time = raw_pull_dos_date3(req->transport,
out 588 source4/libcli/raw/rawfileinfo.c parms->getattr.out.size = IVAL(req->in.vwv, VWV(3));
out 606 source4/libcli/raw/rawfileinfo.c SSVAL(req->out.vwv, VWV(0), parms->getattre.in.file.fnum);
out 627 source4/libcli/raw/rawfileinfo.c parms->getattre.out.create_time = raw_pull_dos_date2(req->transport,
out 629 source4/libcli/raw/rawfileinfo.c parms->getattre.out.access_time = raw_pull_dos_date2(req->transport,
out 631 source4/libcli/raw/rawfileinfo.c parms->getattre.out.write_time = raw_pull_dos_date2(req->transport,
out 633 source4/libcli/raw/rawfileinfo.c parms->getattre.out.size = IVAL(req->in.vwv, VWV(6));
out 634 source4/libcli/raw/rawfileinfo.c parms->getattre.out.alloc_size = IVAL(req->in.vwv, VWV(8));
out 635 source4/libcli/raw/rawfileinfo.c parms->getattre.out.attrib = SVAL(req->in.vwv, VWV(10));
out 57 source4/libcli/raw/rawfsinfo.c fsinfo->dskattr.out.units_total = SVAL(req->in.vwv, VWV(0));
out 58 source4/libcli/raw/rawfsinfo.c fsinfo->dskattr.out.blocks_per_unit = SVAL(req->in.vwv, VWV(1));
out 59 source4/libcli/raw/rawfsinfo.c fsinfo->dskattr.out.block_size = SVAL(req->in.vwv, VWV(2));
out 60 source4/libcli/raw/rawfsinfo.c fsinfo->dskattr.out.units_free = SVAL(req->in.vwv, VWV(3));
out 109 source4/libcli/raw/rawfsinfo.c (*blob) = tp.out.data;
out 169 source4/libcli/raw/rawfsinfo.c fsinfo->volume_info.out.create_time = smbcli_pull_nttime(blob.data, 0);
out 170 source4/libcli/raw/rawfsinfo.c fsinfo->volume_info.out.serial_number = IVAL(blob.data, 8);
out 172 source4/libcli/raw/rawfsinfo.c &fsinfo->volume_info.out.volume_name,
out 178 source4/libcli/raw/rawfsinfo.c fsinfo->size_info.out.total_alloc_units = BVAL(blob.data, 0);
out 179 source4/libcli/raw/rawfsinfo.c fsinfo->size_info.out.avail_alloc_units = BVAL(blob.data, 8);
out 180 source4/libcli/raw/rawfsinfo.c fsinfo->size_info.out.sectors_per_unit = IVAL(blob.data, 16);
out 181 source4/libcli/raw/rawfsinfo.c fsinfo->size_info.out.bytes_per_sector = IVAL(blob.data, 20);
out 186 source4/libcli/raw/rawfsinfo.c fsinfo->device_info.out.device_type = IVAL(blob.data, 0);
out 187 source4/libcli/raw/rawfsinfo.c fsinfo->device_info.out.characteristics = IVAL(blob.data, 4);
out 192 source4/libcli/raw/rawfsinfo.c fsinfo->attribute_info.out.fs_attr = IVAL(blob.data, 0);
out 193 source4/libcli/raw/rawfsinfo.c fsinfo->attribute_info.out.max_file_component_length = IVAL(blob.data, 4);
out 195 source4/libcli/raw/rawfsinfo.c &fsinfo->attribute_info.out.fs_type,
out 201 source4/libcli/raw/rawfsinfo.c fsinfo->quota_information.out.unknown[0] = BVAL(blob.data, 0);
out 202 source4/libcli/raw/rawfsinfo.c fsinfo->quota_information.out.unknown[1] = BVAL(blob.data, 8);
out 203 source4/libcli/raw/rawfsinfo.c fsinfo->quota_information.out.unknown[2] = BVAL(blob.data, 16);
out 204 source4/libcli/raw/rawfsinfo.c fsinfo->quota_information.out.quota_soft = BVAL(blob.data, 24);
out 205 source4/libcli/raw/rawfsinfo.c fsinfo->quota_information.out.quota_hard = BVAL(blob.data, 32);
out 206 source4/libcli/raw/rawfsinfo.c fsinfo->quota_information.out.quota_flags = BVAL(blob.data, 40);
out 211 source4/libcli/raw/rawfsinfo.c fsinfo->full_size_information.out.total_alloc_units = BVAL(blob.data, 0);
out 212 source4/libcli/raw/rawfsinfo.c fsinfo->full_size_information.out.call_avail_alloc_units = BVAL(blob.data, 8);
out 213 source4/libcli/raw/rawfsinfo.c fsinfo->full_size_information.out.actual_avail_alloc_units = BVAL(blob.data, 16);
out 214 source4/libcli/raw/rawfsinfo.c fsinfo->full_size_information.out.sectors_per_unit = IVAL(blob.data, 24);
out 215 source4/libcli/raw/rawfsinfo.c fsinfo->full_size_information.out.bytes_per_sector = IVAL(blob.data, 28);
out 220 source4/libcli/raw/rawfsinfo.c ndr_err = ndr_pull_struct_blob(&blob, mem_ctx, NULL, &fsinfo->objectid_information.out.guid,
out 226 source4/libcli/raw/rawfsinfo.c fsinfo->objectid_information.out.unknown[i] = BVAL(blob.data, 16 + i*8);
out 268 source4/libcli/raw/rawfsinfo.c fsinfo->allocation.out.fs_id = IVAL(blob.data, 0);
out 269 source4/libcli/raw/rawfsinfo.c fsinfo->allocation.out.sectors_per_unit = IVAL(blob.data, 4);
out 270 source4/libcli/raw/rawfsinfo.c fsinfo->allocation.out.total_alloc_units = IVAL(blob.data, 8);
out 271 source4/libcli/raw/rawfsinfo.c fsinfo->allocation.out.avail_alloc_units = IVAL(blob.data, 12);
out 272 source4/libcli/raw/rawfsinfo.c fsinfo->allocation.out.bytes_per_sector = SVAL(blob.data, 16);
out 277 source4/libcli/raw/rawfsinfo.c fsinfo->volume.out.serial_number = IVAL(blob.data, 0);
out 279 source4/libcli/raw/rawfsinfo.c &fsinfo->volume.out.volume_name,
out 305 source4/libcli/raw/rawfsinfo.c fsinfo->unix_info.out.major_version = SVAL(blob.data, 0);
out 306 source4/libcli/raw/rawfsinfo.c fsinfo->unix_info.out.minor_version = SVAL(blob.data, 2);
out 307 source4/libcli/raw/rawfsinfo.c fsinfo->unix_info.out.capability = SVAL(blob.data, 4);
out 40 source4/libcli/raw/rawioctl.c SSVAL(req->out.vwv, VWV(0), parms->ioctl.in.file.fnum);
out 41 source4/libcli/raw/rawioctl.c SIVAL(req->out.vwv, VWV(1), parms->ioctl.in.request);
out 63 source4/libcli/raw/rawioctl.c parms->ioctl.out.blob = smbcli_req_pull_blob(&req->in.bufinfo, mem_ctx, req->in.data, -1);
out 111 source4/libcli/raw/rawioctl.c parms->ntioctl.out.blob = nt.out.data;
out 112 source4/libcli/raw/rawioctl.c talloc_steal(mem_ctx, parms->ntioctl.out.blob.data);
out 77 source4/libcli/raw/rawnegotiate.c SSVAL(req->out.hdr,HDR_FLG2, flags2);
out 72 source4/libcli/raw/rawnotify.c parms->nttrans.out.changes = NULL;
out 73 source4/libcli/raw/rawnotify.c parms->nttrans.out.num_changes = 0;
out 76 source4/libcli/raw/rawnotify.c for (ofs=0; nt.out.params.length - ofs > 12; ) {
out 77 source4/libcli/raw/rawnotify.c uint32_t next = IVAL(nt.out.params.data, ofs);
out 78 source4/libcli/raw/rawnotify.c parms->nttrans.out.num_changes++;
out 80 source4/libcli/raw/rawnotify.c ofs + next >= nt.out.params.length) break;
out 85 source4/libcli/raw/rawnotify.c parms->nttrans.out.changes = talloc_array(mem_ctx, struct notify_changes, parms->nttrans.out.num_changes);
out 86 source4/libcli/raw/rawnotify.c if (!parms->nttrans.out.changes) {
out 90 source4/libcli/raw/rawnotify.c for (i=ofs=0; i<parms->nttrans.out.num_changes; i++) {
out 91 source4/libcli/raw/rawnotify.c parms->nttrans.out.changes[i].action = IVAL(nt.out.params.data, ofs+4);
out 92 source4/libcli/raw/rawnotify.c smbcli_blob_pull_string(session, mem_ctx, &nt.out.params,
out 93 source4/libcli/raw/rawnotify.c &parms->nttrans.out.changes[i].name,
out 95 source4/libcli/raw/rawnotify.c ofs += IVAL(nt.out.params.data, ofs);
out 144 source4/libcli/raw/rawnotify.c SSVAL(req->out.hdr, HDR_MID, SVAL(oldreq->out.hdr, HDR_MID));
out 145 source4/libcli/raw/rawnotify.c SSVAL(req->out.hdr, HDR_PID, SVAL(oldreq->out.hdr, HDR_PID));
out 146 source4/libcli/raw/rawnotify.c SSVAL(req->out.hdr, HDR_TID, SVAL(oldreq->out.hdr, HDR_TID));
out 147 source4/libcli/raw/rawnotify.c SSVAL(req->out.hdr, HDR_UID, SVAL(oldreq->out.hdr, HDR_UID));
out 44 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(0), parms->readbraw.in.file.fnum);
out 45 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(1), parms->readbraw.in.offset);
out 46 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(3), parms->readbraw.in.maxcnt);
out 47 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(4), parms->readbraw.in.mincnt);
out 48 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(5), parms->readbraw.in.timeout);
out 49 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(7), 0); /* reserved */
out 51 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(8),parms->readbraw.in.offset>>32);
out 57 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(0), parms->lockread.in.file.fnum);
out 58 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(1), parms->lockread.in.count);
out 59 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(2), parms->lockread.in.offset);
out 60 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(4), parms->lockread.in.remaining);
out 65 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(0), parms->read.in.file.fnum);
out 66 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(1), parms->read.in.count);
out 67 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(2), parms->read.in.offset);
out 68 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(4), parms->read.in.remaining);
out 76 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 77 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(1), 0);
out 78 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(2), parms->readx.in.file.fnum);
out 79 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(3), parms->readx.in.offset);
out 80 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(5), parms->readx.in.maxcnt & 0xFFFF);
out 81 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(6), parms->readx.in.mincnt);
out 82 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(7), parms->readx.in.maxcnt >> 16);
out 83 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(9), parms->readx.in.remaining);
out 89 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(10),parms->readx.in.offset>>32);
out 92 source4/libcli/raw/rawreadwrite.c uint16_t flags2 = SVAL(req->out.hdr, HDR_FLG2);
out 94 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.hdr, HDR_FLG2, flags2);
out 128 source4/libcli/raw/rawreadwrite.c parms->readbraw.out.nread = req->in.size - NBT_HDR_SIZE;
out 129 source4/libcli/raw/rawreadwrite.c if (parms->readbraw.out.nread >
out 134 source4/libcli/raw/rawreadwrite.c memcpy(parms->readbraw.out.data, req->in.buffer + NBT_HDR_SIZE, parms->readbraw.out.nread);
out 139 source4/libcli/raw/rawreadwrite.c parms->lockread.out.nread = SVAL(req->in.vwv, VWV(0));
out 140 source4/libcli/raw/rawreadwrite.c if (parms->lockread.out.nread > parms->lockread.in.count ||
out 142 source4/libcli/raw/rawreadwrite.c parms->lockread.out.nread, parms->lockread.out.data)) {
out 150 source4/libcli/raw/rawreadwrite.c parms->read.out.nread = SVAL(req->in.vwv, VWV(0));
out 151 source4/libcli/raw/rawreadwrite.c if (parms->read.out.nread > parms->read.in.count ||
out 153 source4/libcli/raw/rawreadwrite.c parms->read.out.nread, parms->read.out.data)) {
out 161 source4/libcli/raw/rawreadwrite.c parms->readx.out.remaining = SVAL(req->in.vwv, VWV(2));
out 162 source4/libcli/raw/rawreadwrite.c parms->readx.out.compaction_mode = SVAL(req->in.vwv, VWV(3));
out 163 source4/libcli/raw/rawreadwrite.c parms->readx.out.nread = SVAL(req->in.vwv, VWV(5));
out 170 source4/libcli/raw/rawreadwrite.c parms->readx.out.nread += (SVAL(req->in.vwv, VWV(7)) << 16);
out 172 source4/libcli/raw/rawreadwrite.c parms->readx.out.nread <=
out 181 source4/libcli/raw/rawreadwrite.c if (parms->readx.out.nread > MAX(parms->readx.in.mincnt, parms->readx.in.maxcnt) ||
out 183 source4/libcli/raw/rawreadwrite.c parms->readx.out.nread,
out 184 source4/libcli/raw/rawreadwrite.c parms->readx.out.data)) {
out 219 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(0), parms->writeunlock.in.file.fnum);
out 220 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(1), parms->writeunlock.in.count);
out 221 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(2), parms->writeunlock.in.offset);
out 222 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(4), parms->writeunlock.in.remaining);
out 223 source4/libcli/raw/rawreadwrite.c SCVAL(req->out.data, 0, SMB_DATA_BLOCK);
out 224 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.data, 1, parms->writeunlock.in.count);
out 226 source4/libcli/raw/rawreadwrite.c memcpy(req->out.data+3, parms->writeunlock.in.data,
out 233 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(0), parms->write.in.file.fnum);
out 234 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(1), parms->write.in.count);
out 235 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(2), parms->write.in.offset);
out 236 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(4), parms->write.in.remaining);
out 237 source4/libcli/raw/rawreadwrite.c SCVAL(req->out.data, 0, SMB_DATA_BLOCK);
out 238 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.data, 1, parms->write.in.count);
out 240 source4/libcli/raw/rawreadwrite.c memcpy(req->out.data+3, parms->write.in.data, parms->write.in.count);
out 246 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(0), parms->writeclose.in.file.fnum);
out 247 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(1), parms->writeclose.in.count);
out 248 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(2), parms->writeclose.in.offset);
out 250 source4/libcli/raw/rawreadwrite.c req->out.vwv, VWV(4), parms->writeclose.in.mtime);
out 251 source4/libcli/raw/rawreadwrite.c SCVAL(req->out.data, 0, 0);
out 253 source4/libcli/raw/rawreadwrite.c memcpy(req->out.data+1, parms->writeclose.in.data,
out 263 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 264 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(1), 0);
out 265 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(2), parms->writex.in.file.fnum);
out 266 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(3), parms->writex.in.offset);
out 267 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(5), 0); /* reserved */
out 268 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(7), parms->writex.in.wmode);
out 269 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(8), parms->writex.in.remaining);
out 270 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(9), parms->writex.in.count>>16);
out 271 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(10), parms->writex.in.count);
out 272 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(11), PTR_DIFF(req->out.data, req->out.hdr));
out 274 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv,VWV(12),parms->writex.in.offset>>32);
out 277 source4/libcli/raw/rawreadwrite.c memcpy(req->out.data, parms->writex.in.data, parms->writex.in.count);
out 283 source4/libcli/raw/rawreadwrite.c SSVAL(req->out.vwv, VWV(0), parms->splwrite.in.file.fnum);
out 285 source4/libcli/raw/rawreadwrite.c memcpy(req->out.data, parms->splwrite.in.data, parms->splwrite.in.count);
out 315 source4/libcli/raw/rawreadwrite.c parms->writeunlock.out.nwritten = SVAL(req->in.vwv, VWV(0));
out 319 source4/libcli/raw/rawreadwrite.c parms->write.out.nwritten = SVAL(req->in.vwv, VWV(0));
out 323 source4/libcli/raw/rawreadwrite.c parms->writeclose.out.nwritten = SVAL(req->in.vwv, VWV(0));
out 327 source4/libcli/raw/rawreadwrite.c parms->writex.out.nwritten = SVAL(req->in.vwv, VWV(2));
out 328 source4/libcli/raw/rawreadwrite.c parms->writex.out.nwritten += (CVAL(req->in.vwv, VWV(4)) << 16);
out 329 source4/libcli/raw/rawreadwrite.c parms->writex.out.remaining = SVAL(req->in.vwv, VWV(3));
out 102 source4/libcli/raw/rawrequest.c req->out.size = size;
out 105 source4/libcli/raw/rawrequest.c req->out.allocated = req->out.size + REQ_OVER_ALLOCATION;
out 107 source4/libcli/raw/rawrequest.c req->out.buffer = talloc_array(req, uint8_t, req->out.allocated);
out 108 source4/libcli/raw/rawrequest.c if (!req->out.buffer) {
out 112 source4/libcli/raw/rawrequest.c SIVAL(req->out.buffer, 0, 0);
out 130 source4/libcli/raw/rawrequest.c req->out.hdr = req->out.buffer + NBT_HDR_SIZE;
out 131 source4/libcli/raw/rawrequest.c req->out.vwv = req->out.hdr + HDR_VWV;
out 132 source4/libcli/raw/rawrequest.c req->out.wct = wct;
out 133 source4/libcli/raw/rawrequest.c req->out.data = req->out.vwv + VWV(wct) + 2;
out 134 source4/libcli/raw/rawrequest.c req->out.data_size = buflen;
out 135 source4/libcli/raw/rawrequest.c req->out.ptr = req->out.data;
out 137 source4/libcli/raw/rawrequest.c SCVAL(req->out.hdr, HDR_WCT, wct);
out 138 source4/libcli/raw/rawrequest.c SSVAL(req->out.vwv, VWV(wct), buflen);
out 140 source4/libcli/raw/rawrequest.c memcpy(req->out.hdr, "\377SMB", 4);
out 141 source4/libcli/raw/rawrequest.c SCVAL(req->out.hdr,HDR_COM,command);
out 143 source4/libcli/raw/rawrequest.c SCVAL(req->out.hdr,HDR_FLG, FLAG_CASELESS_PATHNAMES);
out 144 source4/libcli/raw/rawrequest.c SSVAL(req->out.hdr,HDR_FLG2, 0);
out 152 source4/libcli/raw/rawrequest.c SSVAL(req->out.hdr, HDR_PID, 0);
out 153 source4/libcli/raw/rawrequest.c SSVAL(req->out.hdr, HDR_UID, 0);
out 154 source4/libcli/raw/rawrequest.c SSVAL(req->out.hdr, HDR_MID, req->mid);
out 155 source4/libcli/raw/rawrequest.c SSVAL(req->out.hdr, HDR_TID,0);
out 156 source4/libcli/raw/rawrequest.c SSVAL(req->out.hdr, HDR_PIDHIGH,0);
out 157 source4/libcli/raw/rawrequest.c SIVAL(req->out.hdr, HDR_RCLS, 0);
out 158 source4/libcli/raw/rawrequest.c memset(req->out.hdr+HDR_SS_FIELD, 0, 10);
out 180 source4/libcli/raw/rawrequest.c SSVAL(req->out.hdr, HDR_FLG2, session->flags2);
out 181 source4/libcli/raw/rawrequest.c SSVAL(req->out.hdr, HDR_PID, session->pid & 0xFFFF);
out 182 source4/libcli/raw/rawrequest.c SSVAL(req->out.hdr, HDR_PIDHIGH, session->pid >> 16);
out 183 source4/libcli/raw/rawrequest.c SSVAL(req->out.hdr, HDR_UID, session->vuid);
out 200 source4/libcli/raw/rawrequest.c SSVAL(req->out.hdr,HDR_TID,tree->tid);
out 219 source4/libcli/raw/rawrequest.c delta = new_size - req->out.data_size;
out 220 source4/libcli/raw/rawrequest.c if (delta + req->out.size <= req->out.allocated) {
out 226 source4/libcli/raw/rawrequest.c req->out.allocated = req->out.size + delta + REQ_OVER_ALLOCATION;
out 227 source4/libcli/raw/rawrequest.c buf2 = talloc_realloc(req, req->out.buffer, uint8_t, req->out.allocated);
out 232 source4/libcli/raw/rawrequest.c if (buf2 == req->out.buffer) {
out 238 source4/libcli/raw/rawrequest.c req->out.data = buf2 + PTR_DIFF(req->out.data, req->out.buffer);
out 239 source4/libcli/raw/rawrequest.c req->out.ptr = buf2 + PTR_DIFF(req->out.ptr, req->out.buffer);
out 240 source4/libcli/raw/rawrequest.c req->out.vwv = buf2 + PTR_DIFF(req->out.vwv, req->out.buffer);
out 241 source4/libcli/raw/rawrequest.c req->out.hdr = buf2 + PTR_DIFF(req->out.hdr, req->out.buffer);
out 243 source4/libcli/raw/rawrequest.c req->out.buffer = buf2;
out 261 source4/libcli/raw/rawrequest.c delta = new_size - req->out.data_size;
out 263 source4/libcli/raw/rawrequest.c req->out.size += delta;
out 264 source4/libcli/raw/rawrequest.c req->out.data_size += delta;
out 267 source4/libcli/raw/rawrequest.c SSVAL(req->out.vwv, VWV(req->out.wct), new_size);
out 281 source4/libcli/raw/rawrequest.c SSVAL(req->out.vwv, VWV(0), command);
out 282 source4/libcli/raw/rawrequest.c SSVAL(req->out.vwv, VWV(1), req->out.size - NBT_HDR_SIZE);
out 284 source4/libcli/raw/rawrequest.c smbcli_req_grow_allocation(req, req->out.data_size + new_size);
out 286 source4/libcli/raw/rawrequest.c req->out.vwv = req->out.buffer + req->out.size + 1;
out 287 source4/libcli/raw/rawrequest.c SCVAL(req->out.vwv, -1, wct);
out 288 source4/libcli/raw/rawrequest.c SSVAL(req->out.vwv, VWV(wct), buflen);
out 290 source4/libcli/raw/rawrequest.c req->out.size += new_size;
out 291 source4/libcli/raw/rawrequest.c req->out.data_size += new_size;
out 338 source4/libcli/raw/rawrequest.c if (IVAL(req->out.buffer, 0) == 0) {
out 339 source4/libcli/raw/rawrequest.c _smb_setlen(req->out.buffer, req->out.size - NBT_HDR_SIZE);
out 430 source4/libcli/raw/rawrequest.c smbcli_req_grow_allocation(req, len + req->out.data_size);
out 432 source4/libcli/raw/rawrequest.c len = push_string(req->out.data + req->out.data_size, str, len, flags);
out 434 source4/libcli/raw/rawrequest.c smbcli_req_grow_data(req, len + req->out.data_size);
out 463 source4/libcli/raw/rawrequest.c diff = ucs2_align(NULL, req->out.data + req->out.data_size, flags);
out 509 source4/libcli/raw/rawrequest.c smbcli_req_grow_allocation(req, req->out.data_size + blob->length);
out 510 source4/libcli/raw/rawrequest.c memcpy(req->out.data + req->out.data_size, blob->data, blob->length);
out 511 source4/libcli/raw/rawrequest.c smbcli_req_grow_data(req, req->out.data_size + blob->length);
out 521 source4/libcli/raw/rawrequest.c smbcli_req_grow_allocation(req, byte_len + req->out.data_size);
out 522 source4/libcli/raw/rawrequest.c memcpy(req->out.data + req->out.data_size, bytes, byte_len);
out 523 source4/libcli/raw/rawrequest.c smbcli_req_grow_data(req, byte_len + req->out.data_size);
out 533 source4/libcli/raw/rawrequest.c smbcli_req_grow_allocation(req, byte_len + 3 + req->out.data_size);
out 534 source4/libcli/raw/rawrequest.c SCVAL(req->out.data + req->out.data_size, 0, 5);
out 535 source4/libcli/raw/rawrequest.c SSVAL(req->out.data + req->out.data_size, 1, byte_len); /* add field length */
out 537 source4/libcli/raw/rawrequest.c memcpy(req->out.data + req->out.data_size + 3, bytes, byte_len);
out 539 source4/libcli/raw/rawrequest.c smbcli_req_grow_data(req, byte_len + 3 + req->out.data_size);
out 90 source4/libcli/raw/rawsearch.c SSVAL(req->out.vwv, VWV(0), io->search_first.in.max_count);
out 91 source4/libcli/raw/rawsearch.c SSVAL(req->out.vwv, VWV(1), io->search_first.in.search_attrib);
out 101 source4/libcli/raw/rawsearch.c io->search_first.out.count = SVAL(req->in.vwv, VWV(0));
out 102 source4/libcli/raw/rawsearch.c smb_raw_search_backend(req, mem_ctx, io->search_first.out.count, private_data, callback);
out 130 source4/libcli/raw/rawsearch.c SSVAL(req->out.vwv, VWV(0), io->search_next.in.max_count);
out 131 source4/libcli/raw/rawsearch.c SSVAL(req->out.vwv, VWV(1), io->search_next.in.search_attrib);
out 148 source4/libcli/raw/rawsearch.c io->search_next.out.count = SVAL(req->in.vwv, VWV(0));
out 149 source4/libcli/raw/rawsearch.c smb_raw_search_backend(req, mem_ctx, io->search_next.out.count, private_data, callback);
out 170 source4/libcli/raw/rawsearch.c SSVAL(req->out.vwv, VWV(0), io->fclose.in.max_count);
out 171 source4/libcli/raw/rawsearch.c SSVAL(req->out.vwv, VWV(1), io->fclose.in.search_attrib);
out 250 source4/libcli/raw/rawsearch.c out_param_blob->length = tp.out.params.length;
out 251 source4/libcli/raw/rawsearch.c out_param_blob->data = tp.out.params.data;
out 252 source4/libcli/raw/rawsearch.c out_data_blob->length = tp.out.data.length;
out 253 source4/libcli/raw/rawsearch.c out_data_blob->data = tp.out.data.data;
out 319 source4/libcli/raw/rawsearch.c out_param_blob->length = tp.out.params.length;
out 320 source4/libcli/raw/rawsearch.c out_param_blob->data = tp.out.params.data;
out 321 source4/libcli/raw/rawsearch.c out_data_blob->length = tp.out.data.length;
out 322 source4/libcli/raw/rawsearch.c out_data_blob->data = tp.out.data.data;
out 756 source4/libcli/raw/rawsearch.c io->t2ffirst.out.handle = SVAL(p_blob.data, 0);
out 757 source4/libcli/raw/rawsearch.c io->t2ffirst.out.count = SVAL(p_blob.data, 2);
out 758 source4/libcli/raw/rawsearch.c io->t2ffirst.out.end_of_search = SVAL(p_blob.data, 4);
out 762 source4/libcli/raw/rawsearch.c io->t2ffirst.in.flags, io->t2ffirst.out.count,
out 806 source4/libcli/raw/rawsearch.c io->t2fnext.out.count = SVAL(p_blob.data, 0);
out 807 source4/libcli/raw/rawsearch.c io->t2fnext.out.end_of_search = SVAL(p_blob.data, 2);
out 811 source4/libcli/raw/rawsearch.c io->t2fnext.in.flags, io->t2fnext.out.count,
out 834 source4/libcli/raw/rawsearch.c SSVAL(req->out.vwv, VWV(0), io->findclose.in.handle);
out 356 source4/libcli/raw/rawsetfileinfo.c SSVAL(req->out.vwv, VWV(0), parms->setattr.in.attrib);
out 358 source4/libcli/raw/rawsetfileinfo.c req->out.vwv, VWV(1), parms->setattr.in.write_time);
out 359 source4/libcli/raw/rawsetfileinfo.c memset(req->out.vwv + VWV(3), 0, 10); /* reserved */
out 382 source4/libcli/raw/rawsetfileinfo.c SSVAL(req->out.vwv, VWV(0), parms->setattre.in.file.fnum);
out 384 source4/libcli/raw/rawsetfileinfo.c req->out.vwv, VWV(1), parms->setattre.in.create_time);
out 386 source4/libcli/raw/rawsetfileinfo.c req->out.vwv, VWV(3), parms->setattre.in.access_time);
out 388 source4/libcli/raw/rawsetfileinfo.c req->out.vwv, VWV(5), parms->setattre.in.write_time);
out 53 source4/libcli/raw/rawshadow.c blob = nt.ntioctl.out.blob;
out 59 source4/libcli/raw/rawshadow.c info->out.num_volumes = IVAL(blob.data, 0);
out 60 source4/libcli/raw/rawshadow.c info->out.num_names = IVAL(blob.data, 4);
out 66 source4/libcli/raw/rawshadow.c info->out.names = talloc_array(mem_ctx, const char *, info->out.num_names);
out 67 source4/libcli/raw/rawshadow.c NT_STATUS_HAVE_NO_MEMORY(info->out.names);
out 70 source4/libcli/raw/rawshadow.c for (i=0;i<info->out.num_names;i++) {
out 72 source4/libcli/raw/rawshadow.c len = smbcli_blob_pull_ucs2(info->out.names,
out 73 source4/libcli/raw/rawshadow.c &blob, &info->out.names[i],
out 54 source4/libcli/raw/rawtrans.c if (req->transport->negotiate.max_xmit <= req->out.size) {
out 58 source4/libcli/raw/rawtrans.c return req->transport->negotiate.max_xmit - req->out.size;
out 87 source4/libcli/raw/rawtrans.c parms->out = state->io.out;
out 88 source4/libcli/raw/rawtrans.c talloc_steal(mem_ctx, parms->out.setup);
out 89 source4/libcli/raw/rawtrans.c talloc_steal(mem_ctx, parms->out.params.data);
out 90 source4/libcli/raw/rawtrans.c talloc_steal(mem_ctx, parms->out.data.data);
out 143 source4/libcli/raw/rawtrans.c state->io.out.params = data_blob_talloc(state, NULL, total_param);
out 144 source4/libcli/raw/rawtrans.c if (!state->io.out.params.data) {
out 150 source4/libcli/raw/rawtrans.c state->io.out.data = data_blob_talloc(state, NULL, total_data);
out 151 source4/libcli/raw/rawtrans.c if (!state->io.out.data.data) {
out 161 source4/libcli/raw/rawtrans.c state->io.out.setup_count = setup_count;
out 162 source4/libcli/raw/rawtrans.c state->io.out.setup = talloc_array(state, uint16_t, setup_count);
out 163 source4/libcli/raw/rawtrans.c if (!state->io.out.setup) {
out 167 source4/libcli/raw/rawtrans.c state->io.out.setup[i] = SVAL(req->in.vwv, VWV(10+i));
out 174 source4/libcli/raw/rawtrans.c if (total_data > state->io.out.data.length ||
out 175 source4/libcli/raw/rawtrans.c total_param > state->io.out.params.length) {
out 182 source4/libcli/raw/rawtrans.c state->io.out.data.length = total_data;
out 183 source4/libcli/raw/rawtrans.c state->io.out.params.length = total_param;
out 201 source4/libcli/raw/rawtrans.c memcpy(state->io.out.data.data + data_disp,
out 207 source4/libcli/raw/rawtrans.c memcpy(state->io.out.params.data + param_disp,
out 292 source4/libcli/raw/rawtrans.c memset(req->out.data, 0, padding);
out 300 source4/libcli/raw/rawtrans.c ofs = PTR_DIFF(req->out.data,req->out.hdr)+padding+namelen;
out 354 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv,VWV(0),parms->in.params.length);
out 355 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv,VWV(1),parms->in.data.length);
out 356 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv,VWV(2),parms->in.max_param);
out 357 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv,VWV(3),parms->in.max_data);
out 358 source4/libcli/raw/rawtrans.c SCVAL(req->out.vwv,VWV(4),parms->in.max_setup);
out 359 source4/libcli/raw/rawtrans.c SCVAL(req->out.vwv,VWV(4)+1,0); /* reserved */
out 360 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv,VWV(5),parms->in.flags);
out 361 source4/libcli/raw/rawtrans.c SIVAL(req->out.vwv,VWV(6),parms->in.timeout);
out 362 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv,VWV(8),0); /* reserved */
out 363 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv,VWV(9),params_chunk.length);
out 364 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv,VWV(10),params_ofs);
out 365 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv,VWV(11),data_chunk.length);
out 366 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv,VWV(12),data_ofs);
out 367 source4/libcli/raw/rawtrans.c SCVAL(req->out.vwv,VWV(13),parms->in.setup_count);
out 368 source4/libcli/raw/rawtrans.c SCVAL(req->out.vwv,VWV(13)+1,0); /* reserved */
out 370 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv,VWV(14)+VWV(i),parms->in.setup[i]);
out 413 source4/libcli/raw/rawtrans.c SSVAL(req2->out.hdr, HDR_MID, req2->mid);
out 415 source4/libcli/raw/rawtrans.c ofs = PTR_DIFF(req2->out.data,req2->out.hdr);
out 443 source4/libcli/raw/rawtrans.c SSVAL(req2->out.vwv,VWV(0), state->params_total);
out 444 source4/libcli/raw/rawtrans.c SSVAL(req2->out.vwv,VWV(1), state->data_total);
out 445 source4/libcli/raw/rawtrans.c SSVAL(req2->out.vwv,VWV(2), params_chunk.length);
out 446 source4/libcli/raw/rawtrans.c SSVAL(req2->out.vwv,VWV(3), params_ofs);
out 447 source4/libcli/raw/rawtrans.c SSVAL(req2->out.vwv,VWV(4), params_disp);
out 448 source4/libcli/raw/rawtrans.c SSVAL(req2->out.vwv,VWV(5), data_chunk.length);
out 449 source4/libcli/raw/rawtrans.c SSVAL(req2->out.vwv,VWV(6), data_ofs);
out 450 source4/libcli/raw/rawtrans.c SSVAL(req2->out.vwv,VWV(7), data_disp);
out 452 source4/libcli/raw/rawtrans.c SSVAL(req2->out.vwv,VWV(8), 0xFFFF);
out 564 source4/libcli/raw/rawtrans.c parms->out = state->io.out;
out 565 source4/libcli/raw/rawtrans.c talloc_steal(mem_ctx, parms->out.setup);
out 566 source4/libcli/raw/rawtrans.c talloc_steal(mem_ctx, parms->out.params.data);
out 567 source4/libcli/raw/rawtrans.c talloc_steal(mem_ctx, parms->out.data.data);
out 630 source4/libcli/raw/rawtrans.c state->io.out.params = data_blob_talloc(state, NULL, total_param);
out 631 source4/libcli/raw/rawtrans.c if (!state->io.out.params.data) {
out 637 source4/libcli/raw/rawtrans.c state->io.out.data = data_blob_talloc(state, NULL, total_data);
out 638 source4/libcli/raw/rawtrans.c if (!state->io.out.data.data) {
out 646 source4/libcli/raw/rawtrans.c state->io.out.setup_count = setup_count;
out 647 source4/libcli/raw/rawtrans.c state->io.out.setup = talloc_array(state, uint8_t,
out 649 source4/libcli/raw/rawtrans.c if (!state->io.out.setup) {
out 652 source4/libcli/raw/rawtrans.c memcpy(state->io.out.setup, (uint8_t *)req->out.vwv + VWV(18),
out 659 source4/libcli/raw/rawtrans.c if (total_data > state->io.out.data.length ||
out 660 source4/libcli/raw/rawtrans.c total_param > state->io.out.params.length) {
out 667 source4/libcli/raw/rawtrans.c state->io.out.data.length = total_data;
out 668 source4/libcli/raw/rawtrans.c state->io.out.params.length = total_param;
out 686 source4/libcli/raw/rawtrans.c memcpy(state->io.out.data.data + data_disp,
out 692 source4/libcli/raw/rawtrans.c memcpy(state->io.out.params.data + param_disp,
out 758 source4/libcli/raw/rawtrans.c memset(req->out.data, 0, align);
out 761 source4/libcli/raw/rawtrans.c ofs = PTR_DIFF(req->out.data,req->out.hdr)+align;
out 814 source4/libcli/raw/rawtrans.c SCVAL(req->out.vwv, 0, parms->in.max_setup);
out 815 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv, 1, 0); /* reserved */
out 816 source4/libcli/raw/rawtrans.c SIVAL(req->out.vwv, 3, parms->in.params.length);
out 817 source4/libcli/raw/rawtrans.c SIVAL(req->out.vwv, 7, parms->in.data.length);
out 818 source4/libcli/raw/rawtrans.c SIVAL(req->out.vwv, 11, parms->in.max_param);
out 819 source4/libcli/raw/rawtrans.c SIVAL(req->out.vwv, 15, parms->in.max_data);
out 820 source4/libcli/raw/rawtrans.c SIVAL(req->out.vwv, 19, params_chunk.length);
out 821 source4/libcli/raw/rawtrans.c SIVAL(req->out.vwv, 23, params_ofs);
out 822 source4/libcli/raw/rawtrans.c SIVAL(req->out.vwv, 27, data_chunk.length);
out 823 source4/libcli/raw/rawtrans.c SIVAL(req->out.vwv, 31, data_ofs);
out 824 source4/libcli/raw/rawtrans.c SCVAL(req->out.vwv, 35, parms->in.setup_count);
out 825 source4/libcli/raw/rawtrans.c SSVAL(req->out.vwv, 36, parms->in.function);
out 826 source4/libcli/raw/rawtrans.c memcpy(req->out.vwv + VWV(19), parms->in.setup,
out 863 source4/libcli/raw/rawtrans.c SSVAL(req2->out.hdr, HDR_MID, req2->mid);
out 865 source4/libcli/raw/rawtrans.c ofs = PTR_DIFF(req2->out.data,req2->out.hdr);
out 893 source4/libcli/raw/rawtrans.c SSVAL(req2->out.vwv,0, 0); /* reserved */
out 894 source4/libcli/raw/rawtrans.c SCVAL(req2->out.vwv,2, 0); /* reserved */
out 895 source4/libcli/raw/rawtrans.c SIVAL(req2->out.vwv,3, state->params_total);
out 896 source4/libcli/raw/rawtrans.c SIVAL(req2->out.vwv,7, state->data_total);
out 897 source4/libcli/raw/rawtrans.c SIVAL(req2->out.vwv,11, params_chunk.length);
out 898 source4/libcli/raw/rawtrans.c SIVAL(req2->out.vwv,15, params_ofs);
out 899 source4/libcli/raw/rawtrans.c SIVAL(req2->out.vwv,19, params_disp);
out 900 source4/libcli/raw/rawtrans.c SIVAL(req2->out.vwv,23, data_chunk.length);
out 901 source4/libcli/raw/rawtrans.c SIVAL(req2->out.vwv,27, data_ofs);
out 902 source4/libcli/raw/rawtrans.c SIVAL(req2->out.vwv,31, data_disp);
out 903 source4/libcli/raw/rawtrans.c SCVAL(req2->out.vwv,35, 0); /* reserved */
out 71 source4/libcli/raw/smb_signing.c flags2 = SVAL(out->hdr, HDR_FLG2);
out 73 source4/libcli/raw/smb_signing.c SSVAL(out->hdr, HDR_FLG2, flags2);
out 113 source4/libcli/raw/smb_signing.c SIVAL(out->hdr, HDR_SS_FIELD, seq_num);
out 114 source4/libcli/raw/smb_signing.c SIVAL(out->hdr, HDR_SS_FIELD + 4, 0);
out 117 source4/libcli/raw/smb_signing.c mark_packet_signed(out);
out 123 source4/libcli/raw/smb_signing.c out->buffer + NBT_HDR_SIZE,
out 124 source4/libcli/raw/smb_signing.c out->size - NBT_HDR_SIZE);
out 127 source4/libcli/raw/smb_signing.c memcpy(&out->hdr[HDR_SS_FIELD], calc_md5_mac, 8);
out 227 source4/libcli/raw/smb_signing.c file_save("pkt.dat", req->out.buffer, req->out.size);
out 236 source4/libcli/raw/smb_signing.c mark_packet_signed(&req->out);
out 240 source4/libcli/raw/smb_signing.c memcpy((req->out.hdr + HDR_SS_FIELD), "BSRSPYL ", 8);
out 246 source4/libcli/raw/smb_signing.c sign_outgoing_message(&req->out,
out 78 source4/libcli/resolve/nbtlist.c if (q->out.num_addrs < 1) {
out 84 source4/libcli/resolve/nbtlist.c q->out.num_addrs + 1);
out 87 source4/libcli/resolve/nbtlist.c state->names = talloc_array(state, char *, q->out.num_addrs + 1);
out 90 source4/libcli/resolve/nbtlist.c for (i=0;i<q->out.num_addrs;i++) {
out 93 source4/libcli/resolve/nbtlist.c q->out.reply_addrs[i],
out 36 source4/libcli/smb2/break.c SCVAL(req->out.body, 0x02, io->in.oplock_level);
out 37 source4/libcli/smb2/break.c SCVAL(req->out.body, 0x03, io->in.reserved);
out 38 source4/libcli/smb2/break.c SIVAL(req->out.body, 0x04, io->in.reserved2);
out 39 source4/libcli/smb2/break.c smb2_push_handle(req->out.body+0x08, &io->in.file.handle);
out 59 source4/libcli/smb2/break.c io->out.oplock_level = CVAL(req->in.body, 0x02);
out 60 source4/libcli/smb2/break.c io->out.reserved = CVAL(req->in.body, 0x03);
out 61 source4/libcli/smb2/break.c io->out.reserved2 = IVAL(req->in.body, 0x04);
out 62 source4/libcli/smb2/break.c smb2_pull_handle(req->in.body+0x08, &io->out.file.handle);
out 54 source4/libcli/smb2/cancel.c SIVAL(c->out.hdr, SMB2_HDR_FLAGS, 0x00000002);
out 55 source4/libcli/smb2/cancel.c SSVAL(c->out.hdr, SMB2_HDR_CREDIT, 0x0030);
out 56 source4/libcli/smb2/cancel.c SIVAL(c->out.hdr, SMB2_HDR_PID, r->cancel.pending_id);
out 57 source4/libcli/smb2/cancel.c SBVAL(c->out.hdr, SMB2_HDR_MESSAGE_ID, c->seqnum);
out 59 source4/libcli/smb2/cancel.c SBVAL(c->out.hdr, SMB2_HDR_SESSION_ID, r->session->uid);
out 62 source4/libcli/smb2/cancel.c SSVAL(c->out.body, 0x02, 0);
out 38 source4/libcli/smb2/close.c SSVAL(req->out.body, 0x02, io->in.flags);
out 39 source4/libcli/smb2/close.c SIVAL(req->out.body, 0x04, 0); /* pad */
out 40 source4/libcli/smb2/close.c smb2_push_handle(req->out.body+0x08, &io->in.file.handle);
out 60 source4/libcli/smb2/close.c io->out.flags = SVAL(req->in.body, 0x02);
out 61 source4/libcli/smb2/close.c io->out._pad = IVAL(req->in.body, 0x04);
out 62 source4/libcli/smb2/close.c io->out.create_time = smbcli_pull_nttime(req->in.body, 0x08);
out 63 source4/libcli/smb2/close.c io->out.access_time = smbcli_pull_nttime(req->in.body, 0x10);
out 64 source4/libcli/smb2/close.c io->out.write_time = smbcli_pull_nttime(req->in.body, 0x18);
out 65 source4/libcli/smb2/close.c io->out.change_time = smbcli_pull_nttime(req->in.body, 0x20);
out 66 source4/libcli/smb2/close.c io->out.alloc_size = BVAL(req->in.body, 0x28);
out 67 source4/libcli/smb2/close.c io->out.size = BVAL(req->in.body, 0x30);
out 68 source4/libcli/smb2/close.c io->out.file_attr = IVAL(req->in.body, 0x38);
out 59 source4/libcli/smb2/connect.c state->tree->tid = state->tcon.out.tid;
out 108 source4/libcli/smb2/connect.c transport->negotiate.system_time = state->negprot.out.system_time;
out 109 source4/libcli/smb2/connect.c transport->negotiate.server_start_time = state->negprot.out.server_start_time;
out 110 source4/libcli/smb2/connect.c transport->negotiate.security_mode = state->negprot.out.security_mode;
out 202 source4/libcli/smb2/create.c SCVAL(req->out.body, 0x02, io->in.security_flags);
out 203 source4/libcli/smb2/create.c SCVAL(req->out.body, 0x03, io->in.oplock_level);
out 204 source4/libcli/smb2/create.c SIVAL(req->out.body, 0x04, io->in.impersonation_level);
out 205 source4/libcli/smb2/create.c SBVAL(req->out.body, 0x08, io->in.create_flags);
out 206 source4/libcli/smb2/create.c SBVAL(req->out.body, 0x10, io->in.reserved);
out 207 source4/libcli/smb2/create.c SIVAL(req->out.body, 0x18, io->in.desired_access);
out 208 source4/libcli/smb2/create.c SIVAL(req->out.body, 0x1C, io->in.file_attributes);
out 209 source4/libcli/smb2/create.c SIVAL(req->out.body, 0x20, io->in.share_access);
out 210 source4/libcli/smb2/create.c SIVAL(req->out.body, 0x24, io->in.create_disposition);
out 211 source4/libcli/smb2/create.c SIVAL(req->out.body, 0x28, io->in.create_options);
out 213 source4/libcli/smb2/create.c status = smb2_push_o16s16_string(&req->out, 0x2C, io->in.fname);
out 333 source4/libcli/smb2/create.c status = smb2_push_o32s32_blob(&req->out, 0x30, blob);
out 362 source4/libcli/smb2/create.c ZERO_STRUCT(io->out);
out 363 source4/libcli/smb2/create.c io->out.oplock_level = CVAL(req->in.body, 0x02);
out 364 source4/libcli/smb2/create.c io->out.reserved = CVAL(req->in.body, 0x03);
out 365 source4/libcli/smb2/create.c io->out.create_action = IVAL(req->in.body, 0x04);
out 366 source4/libcli/smb2/create.c io->out.create_time = smbcli_pull_nttime(req->in.body, 0x08);
out 367 source4/libcli/smb2/create.c io->out.access_time = smbcli_pull_nttime(req->in.body, 0x10);
out 368 source4/libcli/smb2/create.c io->out.write_time = smbcli_pull_nttime(req->in.body, 0x18);
out 369 source4/libcli/smb2/create.c io->out.change_time = smbcli_pull_nttime(req->in.body, 0x20);
out 370 source4/libcli/smb2/create.c io->out.alloc_size = BVAL(req->in.body, 0x28);
out 371 source4/libcli/smb2/create.c io->out.size = BVAL(req->in.body, 0x30);
out 372 source4/libcli/smb2/create.c io->out.file_attr = IVAL(req->in.body, 0x38);
out 373 source4/libcli/smb2/create.c io->out.reserved2 = IVAL(req->in.body, 0x3C);
out 374 source4/libcli/smb2/create.c smb2_pull_handle(req->in.body+0x40, &io->out.file.handle);
out 381 source4/libcli/smb2/create.c status = smb2_create_blob_parse(mem_ctx, blob, &io->out.blobs);
out 388 source4/libcli/smb2/create.c for (i=0;i<io->out.blobs.num_blobs;i++) {
out 389 source4/libcli/smb2/create.c if (strcmp(io->out.blobs.blobs[i].tag, SMB2_CREATE_TAG_MXAC) == 0) {
out 392 source4/libcli/smb2/create.c if (io->out.blobs.blobs[i].data.length != 8) {
out 396 source4/libcli/smb2/create.c io->out.maximal_access = IVAL(io->out.blobs.blobs[i].data.data, 4);
out 398 source4/libcli/smb2/create.c if (strcmp(io->out.blobs.blobs[i].tag, SMB2_CREATE_TAG_QFID) == 0) {
out 399 source4/libcli/smb2/create.c if (io->out.blobs.blobs[i].data.length != 32) {
out 403 source4/libcli/smb2/create.c memcpy(io->out.on_disk_id, io->out.blobs.blobs[i].data.data, 32);
out 39 source4/libcli/smb2/find.c SCVAL(req->out.body, 0x02, io->in.level);
out 40 source4/libcli/smb2/find.c SCVAL(req->out.body, 0x03, io->in.continue_flags);
out 41 source4/libcli/smb2/find.c SIVAL(req->out.body, 0x04, io->in.file_index);
out 42 source4/libcli/smb2/find.c smb2_push_handle(req->out.body+0x08, &io->in.file.handle);
out 44 source4/libcli/smb2/find.c status = smb2_push_o16s16_string(&req->out, 0x18, io->in.pattern);
out 50 source4/libcli/smb2/find.c SIVAL(req->out.body, 0x1C, io->in.max_response_size);
out 74 source4/libcli/smb2/find.c req->in.body+0x02, &io->out.blob);
out 133 source4/libcli/smb2/find.c b = f.out.blob;
out 142 source4/libcli/smb2/find.c data_blob_free(&f.out.blob);
out 153 source4/libcli/smb2/find.c data_blob_free(&f.out.blob);
out 163 source4/libcli/smb2/find.c data_blob_free(&f.out.blob);
out 36 source4/libcli/smb2/flush.c SSVAL(req->out.body, 0x02, io->in.reserved1);
out 37 source4/libcli/smb2/flush.c SIVAL(req->out.body, 0x04, io->in.reserved2);
out 38 source4/libcli/smb2/flush.c smb2_push_handle(req->out.body+0x08, &io->in.file.handle);
out 58 source4/libcli/smb2/flush.c io->out.reserved = SVAL(req->in.body, 0x02);
out 40 source4/libcli/smb2/getinfo.c SCVAL(req->out.body, 0x02, io->in.info_type);
out 41 source4/libcli/smb2/getinfo.c SCVAL(req->out.body, 0x03, io->in.info_class);
out 42 source4/libcli/smb2/getinfo.c SIVAL(req->out.body, 0x04, io->in.output_buffer_length);
out 43 source4/libcli/smb2/getinfo.c SIVAL(req->out.body, 0x0C, io->in.reserved);
out 44 source4/libcli/smb2/getinfo.c SIVAL(req->out.body, 0x08, io->in.input_buffer_length);
out 45 source4/libcli/smb2/getinfo.c SIVAL(req->out.body, 0x10, io->in.additional_information);
out 46 source4/libcli/smb2/getinfo.c SIVAL(req->out.body, 0x14, io->in.getinfo_flags);
out 47 source4/libcli/smb2/getinfo.c smb2_push_handle(req->out.body+0x18, &io->in.file.handle);
out 50 source4/libcli/smb2/getinfo.c status = smb2_push_o32s32_blob(&req->out, 0x08, io->in.blob);
out 76 source4/libcli/smb2/getinfo.c status = smb2_pull_o16s16_blob(&req->in, mem_ctx, req->in.body+0x02, &io->out.blob);
out 155 source4/libcli/smb2/getinfo.c status = smb_raw_fileinfo_passthru_parse(&b.out.blob, mem_ctx, io->generic.level, io);
out 156 source4/libcli/smb2/getinfo.c data_blob_free(&b.out.blob);
out 205 source4/libcli/smb2/getinfo.c status = smb_raw_fsinfo_passthru_parse(b.out.blob, mem_ctx, io->generic.level, io);
out 206 source4/libcli/smb2/getinfo.c data_blob_free(&b.out.blob);
out 35 source4/libcli/smb2/ioctl.c io->in.in.length+io->in.out.length);
out 38 source4/libcli/smb2/ioctl.c SSVAL(req->out.body, 0x02, 0); /* pad */
out 39 source4/libcli/smb2/ioctl.c SIVAL(req->out.body, 0x04, io->in.function);
out 40 source4/libcli/smb2/ioctl.c smb2_push_handle(req->out.body+0x08, &io->in.file.handle);
out 42 source4/libcli/smb2/ioctl.c status = smb2_push_o32s32_blob(&req->out, 0x18, io->in.out);
out 48 source4/libcli/smb2/ioctl.c SIVAL(req->out.body, 0x20, io->in.unknown2);
out 50 source4/libcli/smb2/ioctl.c status = smb2_push_o32s32_blob(&req->out, 0x24, io->in.in);
out 56 source4/libcli/smb2/ioctl.c SIVAL(req->out.body, 0x2C, io->in.max_response_size);
out 57 source4/libcli/smb2/ioctl.c SBVAL(req->out.body, 0x30, io->in.flags);
out 80 source4/libcli/smb2/ioctl.c io->out._pad = SVAL(req->in.body, 0x02);
out 81 source4/libcli/smb2/ioctl.c io->out.function = IVAL(req->in.body, 0x04);
out 82 source4/libcli/smb2/ioctl.c smb2_pull_handle(req->in.body+0x08, &io->out.file.handle);
out 84 source4/libcli/smb2/ioctl.c status = smb2_pull_o32s32_blob(&req->in, mem_ctx, req->in.body+0x18, &io->out.in);
out 90 source4/libcli/smb2/ioctl.c status = smb2_pull_o32s32_blob(&req->in, mem_ctx, req->in.body+0x20, &io->out.out);
out 96 source4/libcli/smb2/ioctl.c io->out.unknown2 = IVAL(req->in.body, 0x28);
out 97 source4/libcli/smb2/ioctl.c io->out.unknown3 = IVAL(req->in.body, 0x2C);
out 36 source4/libcli/smb2/keepalive.c SSVAL(req->out.body, 0x02, 0);
out 39 source4/libcli/smb2/lock.c SSVAL(req->out.body, 0, 0x30);
out 41 source4/libcli/smb2/lock.c SSVAL(req->out.body, 0x02, io->in.lock_count);
out 42 source4/libcli/smb2/lock.c SIVAL(req->out.body, 0x04, io->in.reserved);
out 43 source4/libcli/smb2/lock.c smb2_push_handle(req->out.body+0x08, &io->in.file.handle);
out 46 source4/libcli/smb2/lock.c SBVAL(req->out.body, 0x18 + i*24, io->in.locks[i].offset);
out 47 source4/libcli/smb2/lock.c SBVAL(req->out.body, 0x20 + i*24, io->in.locks[i].length);
out 48 source4/libcli/smb2/lock.c SIVAL(req->out.body, 0x28 + i*24, io->in.locks[i].flags);
out 49 source4/libcli/smb2/lock.c SIVAL(req->out.body, 0x2C + i*24, io->in.locks[i].reserved);
out 70 source4/libcli/smb2/lock.c io->out.reserved = SVAL(req->in.body, 0x02);
out 38 source4/libcli/smb2/logoff.c SBVAL(req->out.hdr, SMB2_HDR_SESSION_ID, session->uid);
out 40 source4/libcli/smb2/logoff.c SSVAL(req->out.body, 0x02, 0);
out 44 source4/libcli/smb2/negprot.c SSVAL(req->out.body, 0x00, 0x24);
out 45 source4/libcli/smb2/negprot.c SSVAL(req->out.body, 0x02, io->in.dialect_count);
out 46 source4/libcli/smb2/negprot.c SSVAL(req->out.body, 0x04, io->in.security_mode);
out 47 source4/libcli/smb2/negprot.c SSVAL(req->out.body, 0x06, io->in.reserved);
out 48 source4/libcli/smb2/negprot.c SIVAL(req->out.body, 0x08, io->in.capabilities);
out 49 source4/libcli/smb2/negprot.c ndr_err = smbcli_push_guid(req->out.body, 0x0C, &io->in.client_guid);
out 54 source4/libcli/smb2/negprot.c smbcli_push_nttime(req->out.body, 0x1C, io->in.start_time);
out 56 source4/libcli/smb2/negprot.c SSVAL(req->out.body, 0x24 + i*2, io->in.dialects[i]);
out 80 source4/libcli/smb2/negprot.c io->out.security_mode = SVAL(req->in.body, 0x02);
out 81 source4/libcli/smb2/negprot.c io->out.dialect_revision = SVAL(req->in.body, 0x04);
out 82 source4/libcli/smb2/negprot.c io->out.reserved = SVAL(req->in.body, 0x06);
out 88 source4/libcli/smb2/negprot.c io->out.capabilities = IVAL(req->in.body, 0x18);
out 89 source4/libcli/smb2/negprot.c io->out.max_transact_size = IVAL(req->in.body, 0x1C);
out 90 source4/libcli/smb2/negprot.c io->out.max_read_size = IVAL(req->in.body, 0x20);
out 91 source4/libcli/smb2/negprot.c io->out.max_write_size = IVAL(req->in.body, 0x24);
out 92 source4/libcli/smb2/negprot.c io->out.system_time = smbcli_pull_nttime(req->in.body, 0x28);
out 93 source4/libcli/smb2/negprot.c io->out.server_start_time = smbcli_pull_nttime(req->in.body, 0x30);
out 94 source4/libcli/smb2/negprot.c io->out.reserved2 = IVAL(req->in.body, 0x3C);
out 96 source4/libcli/smb2/negprot.c status = smb2_pull_o16s16_blob(&req->in, mem_ctx, req->in.body+0x38, &io->out.secblob);
out 39 source4/libcli/smb2/notify.c SSVAL(req->out.hdr, SMB2_HDR_CREDIT, 0x0030);
out 41 source4/libcli/smb2/notify.c SSVAL(req->out.body, 0x02, io->in.recursive);
out 42 source4/libcli/smb2/notify.c SIVAL(req->out.body, 0x04, io->in.buffer_size);
out 43 source4/libcli/smb2/notify.c smb2_push_handle(req->out.body+0x08, &io->in.file.handle);
out 44 source4/libcli/smb2/notify.c SIVAL(req->out.body, 0x18, io->in.completion_filter);
out 45 source4/libcli/smb2/notify.c SIVAL(req->out.body, 0x1C, io->in.unknown);
out 78 source4/libcli/smb2/notify.c io->out.changes = NULL;
out 79 source4/libcli/smb2/notify.c io->out.num_changes = 0;
out 84 source4/libcli/smb2/notify.c io->out.num_changes++;
out 90 source4/libcli/smb2/notify.c io->out.changes = talloc_array(mem_ctx, struct notify_changes, io->out.num_changes);
out 91 source4/libcli/smb2/notify.c if (!io->out.changes) {
out 95 source4/libcli/smb2/notify.c for (i=ofs=0; i<io->out.num_changes; i++) {
out 96 source4/libcli/smb2/notify.c io->out.changes[i].action = IVAL(blob.data, ofs+4);
out 98 source4/libcli/smb2/notify.c &io->out.changes[i].name,
out 36 source4/libcli/smb2/read.c SCVAL(req->out.body, 0x02, 0); /* pad */
out 37 source4/libcli/smb2/read.c SCVAL(req->out.body, 0x03, 0); /* reserved */
out 38 source4/libcli/smb2/read.c SIVAL(req->out.body, 0x04, io->in.length);
out 39 source4/libcli/smb2/read.c SBVAL(req->out.body, 0x08, io->in.offset);
out 40 source4/libcli/smb2/read.c smb2_push_handle(req->out.body+0x10, &io->in.file.handle);
out 41 source4/libcli/smb2/read.c SIVAL(req->out.body, 0x20, io->in.min_count);
out 42 source4/libcli/smb2/read.c SIVAL(req->out.body, 0x24, io->in.channel);
out 43 source4/libcli/smb2/read.c SIVAL(req->out.body, 0x28, io->in.remaining);
out 44 source4/libcli/smb2/read.c SSVAL(req->out.body, 0x2C, io->in.channel_offset);
out 45 source4/libcli/smb2/read.c SSVAL(req->out.body, 0x2E, io->in.channel_length);
out 68 source4/libcli/smb2/read.c status = smb2_pull_o16s32_blob(&req->in, mem_ctx, req->in.body+0x02, &io->out.data);
out 74 source4/libcli/smb2/read.c io->out.remaining = IVAL(req->in.body, 0x08);
out 75 source4/libcli/smb2/read.c io->out.reserved = IVAL(req->in.body, 0x0C);
out 95 source4/libcli/smb2/request.c req->out.size = SMB2_HDR_BODY+NBT_HDR_SIZE+body_fixed_size;
out 97 source4/libcli/smb2/request.c req->out.allocated = req->out.size + body_dynamic_size;
out 98 source4/libcli/smb2/request.c req->out.buffer = talloc_array(req, uint8_t, req->out.allocated);
out 99 source4/libcli/smb2/request.c if (req->out.buffer == NULL) {
out 104 source4/libcli/smb2/request.c req->out.hdr = req->out.buffer + NBT_HDR_SIZE;
out 105 source4/libcli/smb2/request.c req->out.body = req->out.hdr + SMB2_HDR_BODY;
out 106 source4/libcli/smb2/request.c req->out.body_fixed= body_fixed_size;
out 107 source4/libcli/smb2/request.c req->out.body_size = body_fixed_size;
out 108 source4/libcli/smb2/request.c req->out.dynamic = (body_dynamic_size ? req->out.body + body_fixed_size : NULL);
out 110 source4/libcli/smb2/request.c SIVAL(req->out.hdr, 0, SMB2_MAGIC);
out 111 source4/libcli/smb2/request.c SSVAL(req->out.hdr, SMB2_HDR_LENGTH, SMB2_HDR_BODY);
out 112 source4/libcli/smb2/request.c SSVAL(req->out.hdr, SMB2_HDR_EPOCH, 0);
out 113 source4/libcli/smb2/request.c SIVAL(req->out.hdr, SMB2_HDR_STATUS, 0);
out 114 source4/libcli/smb2/request.c SSVAL(req->out.hdr, SMB2_HDR_OPCODE, opcode);
out 115 source4/libcli/smb2/request.c SSVAL(req->out.hdr, SMB2_HDR_CREDIT, 0);
out 116 source4/libcli/smb2/request.c SIVAL(req->out.hdr, SMB2_HDR_FLAGS, 0);
out 117 source4/libcli/smb2/request.c SIVAL(req->out.hdr, SMB2_HDR_NEXT_COMMAND, 0);
out 118 source4/libcli/smb2/request.c SBVAL(req->out.hdr, SMB2_HDR_MESSAGE_ID, req->seqnum);
out 119 source4/libcli/smb2/request.c SIVAL(req->out.hdr, SMB2_HDR_PID, 0);
out 120 source4/libcli/smb2/request.c SIVAL(req->out.hdr, SMB2_HDR_TID, 0);
out 121 source4/libcli/smb2/request.c SBVAL(req->out.hdr, SMB2_HDR_SESSION_ID, 0);
out 122 source4/libcli/smb2/request.c memset(req->out.hdr+SMB2_HDR_SIGNATURE, 0, 16);
out 125 source4/libcli/smb2/request.c SSVAL(req->out.body, 0, body_fixed_size + (body_dynamic_size?1:0));
out 132 source4/libcli/smb2/request.c req->out.size += 1;
out 133 source4/libcli/smb2/request.c SCVAL(req->out.dynamic, 0, 0);
out 153 source4/libcli/smb2/request.c SBVAL(req->out.hdr, SMB2_HDR_SESSION_ID, tree->session->uid);
out 154 source4/libcli/smb2/request.c SIVAL(req->out.hdr, SMB2_HDR_TID, tree->tid);
out 76 source4/libcli/smb2/session.c SBVAL(req->out.hdr, SMB2_HDR_SESSION_ID, session->uid);
out 77 source4/libcli/smb2/session.c SCVAL(req->out.body, 0x02, io->in.vc_number);
out 78 source4/libcli/smb2/session.c SCVAL(req->out.body, 0x03, io->in.security_mode);
out 79 source4/libcli/smb2/session.c SIVAL(req->out.body, 0x04, io->in.capabilities);
out 80 source4/libcli/smb2/session.c SIVAL(req->out.body, 0x08, io->in.channel);
out 81 source4/libcli/smb2/session.c SBVAL(req->out.body, 0x10, io->in.previous_sessionid);
out 85 source4/libcli/smb2/session.c status = smb2_push_o16s16_blob(&req->out, 0x0C, io->in.secblob);
out 113 source4/libcli/smb2/session.c io->out.session_flags = SVAL(req->in.body, 0x02);
out 114 source4/libcli/smb2/session.c io->out.uid = BVAL(req->in.hdr, SMB2_HDR_SESSION_ID);
out 116 source4/libcli/smb2/session.c status = smb2_pull_o16s16_blob(&req->in, mem_ctx, req->in.body+0x04, &io->out.secblob);
out 160 source4/libcli/smb2/session.c state->io.out.secblob,
out 170 source4/libcli/smb2/session.c session->uid = state->io.out.uid;
out 39 source4/libcli/smb2/setinfo.c SSVAL(req->out.body, 0x02, io->in.level);
out 41 source4/libcli/smb2/setinfo.c status = smb2_push_s32o32_blob(&req->out, 0x04, io->in.blob);
out 47 source4/libcli/smb2/setinfo.c SIVAL(req->out.body, 0x0C, io->in.flags);
out 48 source4/libcli/smb2/setinfo.c smb2_push_handle(req->out.body+0x10, &io->in.file.handle);
out 164 source4/libcli/smb2/smb2.h struct smb2_request_buffer out;
out 52 source4/libcli/smb2/smb2_calls.h } out;
out 95 source4/libcli/smb2/smb2_calls.h } out;
out 59 source4/libcli/smb2/tcon.c SBVAL(req->out.hdr, SMB2_HDR_SESSION_ID, tree->session->uid);
out 62 source4/libcli/smb2/tcon.c SSVAL(req->out.body, 0x02, io->in.reserved);
out 63 source4/libcli/smb2/tcon.c status = smb2_push_o16s16_string(&req->out, 0x04, io->in.path);
out 87 source4/libcli/smb2/tcon.c io->out.tid = IVAL(req->in.hdr, SMB2_HDR_TID);
out 89 source4/libcli/smb2/tcon.c io->out.share_type = CVAL(req->in.body, 0x02);
out 90 source4/libcli/smb2/tcon.c io->out.reserved = CVAL(req->in.body, 0x03);
out 91 source4/libcli/smb2/tcon.c io->out.flags = IVAL(req->in.body, 0x04);
out 92 source4/libcli/smb2/tcon.c io->out.capabilities= IVAL(req->in.body, 0x08);
out 93 source4/libcli/smb2/tcon.c io->out.access_mask = IVAL(req->in.body, 0x0C);
out 95 source4/libcli/smb2/tcon.c if (io->out.capabilities & ~SMB2_CAP_ALL) {
out 96 source4/libcli/smb2/tcon.c DEBUG(0,("Unknown capabilities mask 0x%x\n", io->out.capabilities));
out 98 source4/libcli/smb2/tcon.c if (io->out.flags & ~SMB2_SHAREFLAG_ALL) {
out 99 source4/libcli/smb2/tcon.c DEBUG(0,("Unknown tcon shareflag 0x%x\n", io->out.flags));
out 36 source4/libcli/smb2/tdis.c SSVAL(req->out.body, 0x02, 0);
out 340 source4/libcli/smb2/transport.c _smb2_setlen(req->out.buffer, req->out.size - NBT_HDR_SIZE);
out 343 source4/libcli/smb2/transport.c dump_data(5, req->out.body, req->out.body_size);
out 354 source4/libcli/smb2/transport.c status = smb2_sign_message(&req->out, req->session->session_key);
out 362 source4/libcli/smb2/transport.c blob = data_blob_const(req->out.buffer, req->out.size);
out 158 source4/libcli/smb2/util.c f.in.file.handle = create_parm.out.file.handle;
out 167 source4/libcli/smb2/util.c smb2_util_close(tree, create_parm.out.file.handle);
out 197 source4/libcli/smb2/util.c smb2_util_close(tree, create_parm.out.file.handle);
out 37 source4/libcli/smb2/write.c status = smb2_push_o16s32_blob(&req->out, 0x02, io->in.data);
out 43 source4/libcli/smb2/write.c SBVAL(req->out.body, 0x08, io->in.offset);
out 44 source4/libcli/smb2/write.c smb2_push_handle(req->out.body+0x10, &io->in.file.handle);
out 46 source4/libcli/smb2/write.c SBVAL(req->out.body, 0x20, io->in.unknown1);
out 47 source4/libcli/smb2/write.c SBVAL(req->out.body, 0x28, io->in.unknown2);
out 67 source4/libcli/smb2/write.c io->out._pad = SVAL(req->in.body, 0x02);
out 68 source4/libcli/smb2/write.c io->out.nwritten = IVAL(req->in.body, 0x04);
out 69 source4/libcli/smb2/write.c io->out.unknown1 = BVAL(req->in.body, 0x08);
out 41 source4/libcli/smb_composite/appendacl.c state->io_fileinfo->query_secdesc.in.file.fnum = state->io_open->ntcreatex.out.file.fnum;
out 76 source4/libcli/smb_composite/appendacl.c state->io_setfileinfo->set_secdesc.in.sd = state->io_fileinfo->query_secdesc.out.sd;
out 147 source4/libcli/smb_composite/appendacl.c io->out.sd = state->io_fileinfo->query_secdesc.out.sd;
out 295 source4/libcli/smb_composite/appendacl.c state->io->out.sd = security_descriptor_copy (mem_ctx, state->io->out.sd);
out 73 source4/libcli/smb_composite/connect.c io->out.tree->tid = state->io_tcon->tconx.out.tid;
out 74 source4/libcli/smb_composite/connect.c if (state->io_tcon->tconx.out.dev_type) {
out 75 source4/libcli/smb_composite/connect.c io->out.tree->device = talloc_strdup(io->out.tree,
out 76 source4/libcli/smb_composite/connect.c state->io_tcon->tconx.out.dev_type);
out 78 source4/libcli/smb_composite/connect.c if (state->io_tcon->tconx.out.fs_type) {
out 79 source4/libcli/smb_composite/connect.c io->out.tree->fs_type = talloc_strdup(io->out.tree,
out 80 source4/libcli/smb_composite/connect.c state->io_tcon->tconx.out.fs_type);
out 101 source4/libcli/smb_composite/connect.c io->out.anonymous_fallback_done = true;
out 103 source4/libcli/smb_composite/connect.c state->session->vuid = state->io_setup->out.vuid;
out 125 source4/libcli/smb_composite/connect.c state->req = smb_raw_tcon_send(io->out.tree, state->io_tcon);
out 183 source4/libcli/smb_composite/connect.c state->session->vuid = state->io_setup->out.vuid;
out 211 source4/libcli/smb_composite/connect.c state->req = smb_raw_tcon_send(io->out.tree, state->io_tcon);
out 242 source4/libcli/smb_composite/connect.c io->out.tree = smbcli_tree_init(state->session, state, true);
out 243 source4/libcli/smb_composite/connect.c NT_STATUS_HAVE_NO_MEMORY(io->out.tree);
out 504 source4/libcli/smb_composite/connect.c talloc_steal(mem_ctx, state->io->out.tree);
out 56 source4/libcli/smb_composite/fetchfile.c state->creq = smb_composite_loadfile_send(state->connect->out.tree,
out 78 source4/libcli/smb_composite/fetchfile.c io->out.data = state->loadfile->out.data;
out 79 source4/libcli/smb_composite/fetchfile.c io->out.size = state->loadfile->out.size;
out 180 source4/libcli/smb_composite/fetchfile.c talloc_steal(mem_ctx, state->io->out.data);
out 45 source4/libcli/smb_composite/fsinfo.c state->req = smb_raw_fsinfo_send(state->connect->out.tree,
out 68 source4/libcli/smb_composite/fsinfo.c state->io->out.fsinfo = state->fsinfo;
out 191 source4/libcli/smb_composite/fsinfo.c talloc_steal(mem_ctx, state->io->out.fsinfo);
out 85 source4/libcli/smb_composite/loadfile.c if (state->io_open->ntcreatex.out.size > 100*1000*1000) {
out 90 source4/libcli/smb_composite/loadfile.c io->out.size = state->io_open->ntcreatex.out.size;
out 91 source4/libcli/smb_composite/loadfile.c io->out.data = talloc_array(c, uint8_t, io->out.size);
out 92 source4/libcli/smb_composite/loadfile.c NT_STATUS_HAVE_NO_MEMORY(io->out.data);
out 94 source4/libcli/smb_composite/loadfile.c if (io->out.size == 0) {
out 95 source4/libcli/smb_composite/loadfile.c return setup_close(c, tree, state->io_open->ntcreatex.out.file.fnum);
out 103 source4/libcli/smb_composite/loadfile.c state->io_read->readx.in.file.fnum = state->io_open->ntcreatex.out.file.fnum;
out 105 source4/libcli/smb_composite/loadfile.c state->io_read->readx.in.mincnt = MIN(32768, io->out.size);
out 109 source4/libcli/smb_composite/loadfile.c state->io_read->readx.out.data = io->out.data;
out 141 source4/libcli/smb_composite/loadfile.c state->io_read->readx.out.nread == io->out.size) {
out 146 source4/libcli/smb_composite/loadfile.c state->io_read->readx.in.offset += state->io_read->readx.out.nread;
out 147 source4/libcli/smb_composite/loadfile.c state->io_read->readx.in.mincnt = MIN(32768, io->out.size - state->io_read->readx.in.offset);
out 148 source4/libcli/smb_composite/loadfile.c state->io_read->readx.out.data = io->out.data + state->io_read->readx.in.offset;
out 275 source4/libcli/smb_composite/loadfile.c talloc_steal(mem_ctx, state->io->out.data);
out 89 source4/libcli/smb_composite/savefile.c return setup_close(c, tree, state->io_open->ntcreatex.out.file.fnum);
out 97 source4/libcli/smb_composite/savefile.c io_write->writex.in.file.fnum = state->io_open->ntcreatex.out.file.fnum;
out 133 source4/libcli/smb_composite/savefile.c state->total_written += state->io_write->writex.out.nwritten;
out 136 source4/libcli/smb_composite/savefile.c if (state->io_write->writex.out.nwritten != state->io_write->writex.in.count ||
out 111 source4/libcli/smb_composite/sesssetup.c state->io->out.vuid = state->setup.old.out.vuid;
out 132 source4/libcli/smb_composite/sesssetup.c state->io->out.vuid = state->setup.nt1.out.vuid;
out 151 source4/libcli/smb_composite/sesssetup.c state->io->out.vuid = state->setup.spnego.out.vuid;
out 181 source4/libcli/smb_composite/sesssetup.c state->setup.spnego.out.secblob,
out 210 source4/libcli/smb_composite/sesssetup.c session->vuid = state->io->out.vuid;
out 526 source4/libcli/smb_composite/sesssetup.c ZERO_STRUCT(io->out);
out 67 source4/libcli/smb_composite/smb2.c close_parm.in.file.handle = create_parm.out.file.handle;
out 146 source4/libcli/smb_composite/smb2.c close_parm.in.file.handle = create_parm.out.file.handle;
out 217 source4/libcli/smb_composite/smb2.c close_parm.in.file.handle = create_parm.out.file.handle;
out 314 source4/libcli/smb_composite/smb2.c io2->generic.in.file.handle = create_parm.out.file.handle;
out 46 source4/libcli/smb_composite/smb_composite.h } out;
out 69 source4/libcli/smb_composite/smb_composite.h } out;
out 113 source4/libcli/smb_composite/smb_composite.h } out;
out 131 source4/libcli/smb_composite/smb_composite.h } out;
out 154 source4/libcli/smb_composite/smb_composite.h } out;
out 171 source4/libcli/smb_composite/smb_composite.h } out;
out 189 source4/libcli/smb_composite/smb_composite.h } out;
out 80 source4/libcli/util/clilsa.c lsa->ipc_tree->tid = tcon.tconx.out.tid;
out 120 source4/libcli/util/clilsa.c r.out.handle = &lsa->handle;
out 151 source4/libcli/util/clilsa.c r.out.rights = rights;
out 233 source4/libcli/util/clilsa.c r.out.count = &count;
out 234 source4/libcli/util/clilsa.c r.out.names = &names;
out 235 source4/libcli/util/clilsa.c r.out.domains = &domains;
out 290 source4/libcli/util/clilsa.c r.out.count = &count;
out 291 source4/libcli/util/clilsa.c r.out.sids = &sids;
out 292 source4/libcli/util/clilsa.c r.out.domains = &domains;
out 868 source4/libcli/util/nterr.c static char out[40];
out 879 source4/libcli/util/nterr.c slprintf(out, sizeof(out), "NT_STATUS(0x%08x)", NT_STATUS_V(nt_code));
out 881 source4/libcli/util/nterr.c return out;
out 126 source4/libcli/wbclient/wbclient.c state->ids = state->req->out.ids;
out 192 source4/libcli/wbclient/wbclient.c state->ids = state->req->out.ids;
out 613 source4/libcli/wrepl/winsrepl.c io->out.assoc_ctx = packet->message.start_reply.assoc_ctx;
out 614 source4/libcli/wrepl/winsrepl.c io->out.major_version = packet->message.start_reply.major_version;
out 733 source4/libcli/wrepl/winsrepl.c io->out.num_partners = table->partner_count;
out 734 source4/libcli/wrepl/winsrepl.c io->out.partners = talloc_steal(mem_ctx, table->partners);
out 735 source4/libcli/wrepl/winsrepl.c for (i=0;i<io->out.num_partners;i++) {
out 736 source4/libcli/wrepl/winsrepl.c talloc_steal(io->out.partners, io->out.partners[i].address);
out 801 source4/libcli/wrepl/winsrepl.c io->out.num_names = packet->message.replication.info.reply.num_names;
out 803 source4/libcli/wrepl/winsrepl.c io->out.names = talloc_array(packet, struct wrepl_name, io->out.num_names);
out 804 source4/libcli/wrepl/winsrepl.c if (io->out.names == NULL) goto nomem;
out 807 source4/libcli/wrepl/winsrepl.c for (i=0;i<io->out.num_names;i++) {
out 809 source4/libcli/wrepl/winsrepl.c struct wrepl_name *name = &io->out.names[i];
out 812 source4/libcli/wrepl/winsrepl.c talloc_steal(io->out.names, wname->name);
out 819 source4/libcli/wrepl/winsrepl.c name->owner = talloc_strdup(io->out.names, io->in.partner.address);
out 827 source4/libcli/wrepl/winsrepl.c name->addresses = talloc_array(io->out.names,
out 841 source4/libcli/wrepl/winsrepl.c name->addresses = talloc(io->out.names, struct wrepl_address);
out 850 source4/libcli/wrepl/winsrepl.c talloc_steal(mem_ctx, io->out.names);
out 97 source4/libcli/wrepl/winsrepl.h } out;
out 120 source4/libcli/wrepl/winsrepl.h } out;
out 157 source4/libcli/wrepl/winsrepl.h } out;
out 74 source4/libnet/groupinfo.c if (!NT_STATUS_IS_OK(s->lookup.out.result)) {
out 75 source4/libnet/groupinfo.c composite_error(c, s->lookup.out.result);
out 83 source4/libnet/groupinfo.c msg_lookup->rid = s->lookup.out.rids->ids;
out 84 source4/libnet/groupinfo.c msg_lookup->count = s->lookup.out.rids->count;
out 94 source4/libnet/groupinfo.c if (s->lookup.out.rids->count == 0) {
out 103 source4/libnet/groupinfo.c s->opengroup.in.rid = s->lookup.out.rids->ids[0];
out 104 source4/libnet/groupinfo.c s->opengroup.out.group_handle = &s->group_handle;
out 132 source4/libnet/groupinfo.c if (!NT_STATUS_IS_OK(s->querygroupinfo.out.result)) {
out 133 source4/libnet/groupinfo.c composite_error(c, s->querygroupinfo.out.result);
out 152 source4/libnet/groupinfo.c s->querygroupinfo.out.info = talloc(s, union samr_GroupInfo *);
out 153 source4/libnet/groupinfo.c if (composite_nomem(s->querygroupinfo.out.info, c)) return;
out 182 source4/libnet/groupinfo.c if (!NT_STATUS_IS_OK(s->querygroupinfo.out.result)) {
out 183 source4/libnet/groupinfo.c composite_error(c, s->querygroupinfo.out.result);
out 187 source4/libnet/groupinfo.c s->info = talloc_steal(s, *s->querygroupinfo.out.info);
out 202 source4/libnet/groupinfo.c s->samrclose.out.handle = &s->group_handle;
out 229 source4/libnet/groupinfo.c if (!NT_STATUS_IS_OK(s->samrclose.out.result)) {
out 230 source4/libnet/groupinfo.c composite_error(c, s->samrclose.out.result);
out 286 source4/libnet/groupinfo.c s->opengroup.out.group_handle = &s->group_handle;
out 303 source4/libnet/groupinfo.c s->lookup.out.rids = talloc_zero(s, struct samr_Ids);
out 304 source4/libnet/groupinfo.c s->lookup.out.types = talloc_zero(s, struct samr_Ids);
out 305 source4/libnet/groupinfo.c if (composite_nomem(s->lookup.out.rids, c)) return c;
out 306 source4/libnet/groupinfo.c if (composite_nomem(s->lookup.out.types, c)) return c;
out 340 source4/libnet/groupinfo.c io->out.info = *s->info;
out 36 source4/libnet/groupinfo.h } out;
out 76 source4/libnet/groupman.c s->creategroup.out.group_handle = &s->group_handle;
out 77 source4/libnet/groupman.c s->creategroup.out.rid = &s->group_rid;
out 113 source4/libnet/groupman.c c->status = s->creategroup.out.result;
out 175 source4/libnet/groupman.c s->lookupname.out.rids = talloc_zero(s, struct samr_Ids);
out 176 source4/libnet/groupman.c s->lookupname.out.types = talloc_zero(s, struct samr_Ids);
out 177 source4/libnet/groupman.c if (composite_nomem(s->lookupname.out.rids, c)) return c;
out 178 source4/libnet/groupman.c if (composite_nomem(s->lookupname.out.types, c)) return c;
out 202 source4/libnet/groupman.c c->status = s->lookupname.out.result;
out 210 source4/libnet/groupman.c if (!s->lookupname.out.rids->count) {
out 215 source4/libnet/groupman.c } else if (!s->lookupname.out.rids->count > 1) {
out 223 source4/libnet/groupman.c s->opengroup.in.rid = s->lookupname.out.rids->ids[0];
out 225 source4/libnet/groupman.c s->opengroup.out.group_handle = &s->group_handle;
out 248 source4/libnet/groupman.c c->status = s->opengroup.out.result;
out 256 source4/libnet/groupman.c s->deletegroup.out.group_handle = &s->group_handle;
out 280 source4/libnet/groupman.c c->status = s->deletegroup.out.result;
out 299 source4/libnet/groupman.c io->out.group_handle = s->group_handle;
out 34 source4/libnet/groupman.h } out;
out 45 source4/libnet/groupman.h } out;
out 773 source4/libnet/libnet_become_dc.c s->cldap.netlogon = s->cldap.io.out.netlogon.data.nt5_ex;
out 1625 source4/libnet/libnet_become_dc.c drsuapi->bind_r.out.bind_handle = &drsuapi->bind_handle;
out 1634 source4/libnet/libnet_become_dc.c if (!W_ERROR_IS_OK(drsuapi->bind_r.out.result)) {
out 1635 source4/libnet/libnet_become_dc.c return drsuapi->bind_r.out.result;
out 1639 source4/libnet/libnet_become_dc.c if (drsuapi->bind_r.out.bind_info) {
out 1640 source4/libnet/libnet_become_dc.c switch (drsuapi->bind_r.out.bind_info->length) {
out 1643 source4/libnet/libnet_become_dc.c info24 = &drsuapi->bind_r.out.bind_info->info.info24;
out 1652 source4/libnet/libnet_become_dc.c info48 = &drsuapi->bind_r.out.bind_info->info.info48;
out 1660 source4/libnet/libnet_become_dc.c drsuapi->remote_info28 = drsuapi->bind_r.out.bind_info->info.info28;
out 2183 source4/libnet/libnet_become_dc.c r->out.level_out = talloc(s, int32_t);
out 2184 source4/libnet/libnet_become_dc.c r->out.ctr = talloc(s, union drsuapi_DsAddEntryCtr);
out 2214 source4/libnet/libnet_become_dc.c if (!W_ERROR_IS_OK(r->out.result)) {
out 2215 source4/libnet/libnet_become_dc.c composite_error(c, werror_to_ntstatus(r->out.result));
out 2219 source4/libnet/libnet_become_dc.c if (*r->out.level_out == 3) {
out 2220 source4/libnet/libnet_become_dc.c if (r->out.ctr->ctr3.count != 1) {
out 2223 source4/libnet/libnet_become_dc.c if (r->out.ctr->ctr3.level != 1) {
out 2228 source4/libnet/libnet_become_dc.c if (!r->out.ctr->ctr3.error) {
out 2233 source4/libnet/libnet_become_dc.c status = r->out.ctr->ctr3.error->info1.status;
out 2235 source4/libnet/libnet_become_dc.c if (!r->out.ctr->ctr3.error->info1.info) {
out 2241 source4/libnet/libnet_become_dc.c switch (r->out.ctr->ctr3.error->info1.level) {
out 2243 source4/libnet/libnet_become_dc.c status = r->out.ctr->ctr3.error->info1.info->error1.status;
out 2249 source4/libnet/libnet_become_dc.c status = r->out.ctr->ctr3.error->info1.info->errorX.status;
out 2257 source4/libnet/libnet_become_dc.c s->dest_dsa.ntds_guid = r->out.ctr->ctr3.objects[0].guid;
out 2258 source4/libnet/libnet_become_dc.c } else if (*r->out.level_out == 2) {
out 2259 source4/libnet/libnet_become_dc.c if (r->out.ctr->ctr2.count != 1) {
out 2260 source4/libnet/libnet_become_dc.c composite_error(c, werror_to_ntstatus(r->out.ctr->ctr2.error.status));
out 2264 source4/libnet/libnet_become_dc.c s->dest_dsa.ntds_guid = r->out.ctr->ctr2.objects[0].guid;
out 2399 source4/libnet/libnet_become_dc.c r->out.level_out = talloc(r, int32_t);
out 2400 source4/libnet/libnet_become_dc.c if (composite_nomem(r->out.level_out, c)) return;
out 2403 source4/libnet/libnet_become_dc.c r->out.ctr = talloc(r, union drsuapi_DsGetNCChangesCtr);
out 2404 source4/libnet/libnet_become_dc.c if (composite_nomem(r->out.ctr, c)) return;
out 2462 source4/libnet/libnet_become_dc.c if (!W_ERROR_IS_OK(r->out.result)) {
out 2463 source4/libnet/libnet_become_dc.c return r->out.result;
out 2466 source4/libnet/libnet_become_dc.c if (*r->out.level_out == 1) {
out 2468 source4/libnet/libnet_become_dc.c ctr1 = &r->out.ctr->ctr1;
out 2469 source4/libnet/libnet_become_dc.c } else if (*r->out.level_out == 2 &&
out 2470 source4/libnet/libnet_become_dc.c r->out.ctr->ctr2.mszip1.ts) {
out 2472 source4/libnet/libnet_become_dc.c ctr1 = &r->out.ctr->ctr2.mszip1.ts->ctr1;
out 2473 source4/libnet/libnet_become_dc.c } else if (*r->out.level_out == 6) {
out 2475 source4/libnet/libnet_become_dc.c ctr6 = &r->out.ctr->ctr6;
out 2476 source4/libnet/libnet_become_dc.c } else if (*r->out.level_out == 7 &&
out 2477 source4/libnet/libnet_become_dc.c r->out.ctr->ctr7.level == 6 &&
out 2478 source4/libnet/libnet_become_dc.c r->out.ctr->ctr7.type == DRSUAPI_COMPRESSION_TYPE_MSZIP &&
out 2479 source4/libnet/libnet_become_dc.c r->out.ctr->ctr7.ctr.mszip6.ts) {
out 2481 source4/libnet/libnet_become_dc.c ctr6 = &r->out.ctr->ctr7.ctr.mszip6.ts->ctr6;
out 2482 source4/libnet/libnet_become_dc.c } else if (*r->out.level_out == 7 &&
out 2483 source4/libnet/libnet_become_dc.c r->out.ctr->ctr7.level == 6 &&
out 2484 source4/libnet/libnet_become_dc.c r->out.ctr->ctr7.type == DRSUAPI_COMPRESSION_TYPE_XPRESS &&
out 2485 source4/libnet/libnet_become_dc.c r->out.ctr->ctr7.ctr.xpress6.ts) {
out 2487 source4/libnet/libnet_become_dc.c ctr6 = &r->out.ctr->ctr7.ctr.xpress6.ts->ctr6;
out 2797 source4/libnet/libnet_become_dc.c if (!W_ERROR_IS_OK(r->out.result)) {
out 2798 source4/libnet/libnet_become_dc.c composite_error(c, werror_to_ntstatus(r->out.result));
out 2821 source4/libnet/libnet_become_dc.c if (!W_ERROR_IS_OK(r->out.result)) {
out 2822 source4/libnet/libnet_become_dc.c composite_error(c, werror_to_ntstatus(r->out.result));
out 2843 source4/libnet/libnet_become_dc.c if (!W_ERROR_IS_OK(r->out.result)) {
out 2844 source4/libnet/libnet_become_dc.c composite_error(c, werror_to_ntstatus(r->out.result));
out 3019 source4/libnet/libnet_become_dc.c ZERO_STRUCT(r->out);
out 143 source4/libnet/libnet_become_dc.h } out;
out 71 source4/libnet/libnet_domain.c s->pipe = s->rpcconn.out.dcerpc_pipe;
out 76 source4/libnet/libnet_domain.c s->connect.out.connect_handle = &s->connect_handle;
out 121 source4/libnet/libnet_domain.c s->connect.out.connect_handle = &s->connect_handle;
out 163 source4/libnet/libnet_domain.c r->out.sid = talloc(s, struct dom_sid2 *);
out 164 source4/libnet/libnet_domain.c if (composite_nomem(r->out.sid, c)) return;
out 207 source4/libnet/libnet_domain.c if (!NT_STATUS_IS_OK(s->lookup.out.result)) {
out 208 source4/libnet/libnet_domain.c composite_error(c, s->lookup.out.result);
out 215 source4/libnet/libnet_domain.c r->in.sid = *s->lookup.out.sid;
out 216 source4/libnet/libnet_domain.c r->out.domain_handle = &s->domain_handle;
out 328 source4/libnet/libnet_domain.c s->connect.out.connect_handle = &s->connect_handle;
out 361 source4/libnet/libnet_domain.c io->out.domain_handle = s->domain_handle;
out 367 source4/libnet/libnet_domain.c ctx->samr.sid = talloc_steal(ctx, *s->lookup.out.sid);
out 457 source4/libnet/libnet_domain.c s->openpol.out.handle = &s->handle;
out 501 source4/libnet/libnet_domain.c s->openpol.out.handle = &s->handle;
out 560 source4/libnet/libnet_domain.c io->out.domain_handle = s->handle;
out 566 source4/libnet/libnet_domain.c io->out.error_string = talloc_strdup(mem_ctx, "Success");
out 570 source4/libnet/libnet_domain.c io->out.error_string = talloc_asprintf(mem_ctx,
out 700 source4/libnet/libnet_domain.c s->close.out.handle = &s->handle;
out 751 source4/libnet/libnet_domain.c io->out.error_string = talloc_asprintf(mem_ctx, "Success");
out 755 source4/libnet/libnet_domain.c io->out.error_string = talloc_asprintf(mem_ctx, "Error: %s", nt_errstr(status));
out 802 source4/libnet/libnet_domain.c s->close.out.handle = &s->handle;
out 856 source4/libnet/libnet_domain.c io->out.error_string = talloc_asprintf(mem_ctx, "Success");
out 860 source4/libnet/libnet_domain.c io->out.error_string = talloc_asprintf(mem_ctx, "Error: %s", nt_errstr(status));
out 966 source4/libnet/libnet_domain.c s->samrconn.out.connect_handle = &s->connect_handle;
out 1003 source4/libnet/libnet_domain.c s->enumdom.out.resume_handle = &s->resume_handle;
out 1004 source4/libnet/libnet_domain.c s->enumdom.out.num_entries = talloc(s, uint32_t);
out 1005 source4/libnet/libnet_domain.c if (composite_nomem(s->enumdom.out.num_entries, c)) return;
out 1006 source4/libnet/libnet_domain.c s->enumdom.out.sam = talloc(s, struct samr_SamArray *);
out 1007 source4/libnet/libnet_domain.c if (composite_nomem(s->enumdom.out.sam, c)) return;
out 1043 source4/libnet/libnet_domain.c if (NT_STATUS_IS_OK(s->enumdom.out.result)) {
out 1047 source4/libnet/libnet_domain.c } else if (NT_STATUS_EQUAL(s->enumdom.out.result, STATUS_MORE_ENTRIES)) {
out 1055 source4/libnet/libnet_domain.c s->enumdom.out.resume_handle = &s->resume_handle;
out 1064 source4/libnet/libnet_domain.c composite_error(c, s->enumdom.out.result);
out 1070 source4/libnet/libnet_domain.c s->samrclose.out.handle = &s->connect_handle;
out 1104 source4/libnet/libnet_domain.c if (!NT_STATUS_IS_OK(s->samrclose.out.result)) {
out 1105 source4/libnet/libnet_domain.c composite_error(c, s->samrclose.out.result);
out 1123 source4/libnet/libnet_domain.c *s->enumdom.out.num_entries);
out 1126 source4/libnet/libnet_domain.c s->count + *s->enumdom.out.num_entries);
out 1130 source4/libnet/libnet_domain.c for (i = s->count; i < s->count + *s->enumdom.out.num_entries; i++)
out 1132 source4/libnet/libnet_domain.c struct lsa_String *domain_name = &(*s->enumdom.out.sam)->entries[i - s->count].name;
out 1141 source4/libnet/libnet_domain.c s->count += *s->enumdom.out.num_entries;
out 1196 source4/libnet/libnet_domain.c s->samrconn.out.connect_handle = &s->connect_handle;
out 1229 source4/libnet/libnet_domain.c io->out.count = s->count;
out 1230 source4/libnet/libnet_domain.c io->out.domains = talloc_steal(mem_ctx, s->domains);
out 1231 source4/libnet/libnet_domain.c io->out.error_string = talloc_asprintf(mem_ctx, "Success");
out 1235 source4/libnet/libnet_domain.c io->out.error_string = talloc_asprintf(mem_ctx, "Error: %s", nt_errstr(status));
out 36 source4/libnet/libnet_domain.h } out;
out 47 source4/libnet/libnet_domain.h } out;
out 64 source4/libnet/libnet_domain.h } out;
out 67 source4/libnet/libnet_group.c ZERO_STRUCT(s->r.out);
out 147 source4/libnet/libnet_group.c r->out.error_string = talloc_strdup(mem_ctx, nt_errstr(status));
out 338 source4/libnet/libnet_group.c if (s->lookup.out.sid_type != SID_NAME_DOM_GRP &&
out 339 source4/libnet/libnet_group.c s->lookup.out.sid_type != SID_NAME_ALIAS) {
out 346 source4/libnet/libnet_group.c s->info.in.sid = s->lookup.out.sidstr;
out 398 source4/libnet/libnet_group.c io->out.group_name = talloc_steal(mem_ctx,
out 399 source4/libnet/libnet_group.c s->info.out.info.all.name.string);
out 400 source4/libnet/libnet_group.c io->out.group_sid = talloc_steal(mem_ctx, s->lookup.out.sid);
out 401 source4/libnet/libnet_group.c io->out.num_members = s->info.out.info.all.num_members;
out 402 source4/libnet/libnet_group.c io->out.description = talloc_steal(mem_ctx, s->info.out.info.all.description.string);
out 404 source4/libnet/libnet_group.c io->out.error_string = talloc_strdup(mem_ctx, "Success");
out 407 source4/libnet/libnet_group.c io->out.error_string = talloc_asprintf(mem_ctx, "Error: %s", nt_errstr(status));
out 499 source4/libnet/libnet_group.c s->query_domain.out.info = talloc_zero(c, union lsa_PolicyInformation *);
out 500 source4/libnet/libnet_group.c if (composite_nomem(s->query_domain.out.info, c)) return c;
out 531 source4/libnet/libnet_group.c s->query_domain.out.info = talloc_zero(c, union lsa_PolicyInformation *);
out 532 source4/libnet/libnet_group.c if (composite_nomem(s->query_domain.out.info, c)) return;
out 561 source4/libnet/libnet_group.c s->dominfo = (*s->query_domain.out.info)->domain;
out 572 source4/libnet/libnet_group.c s->group_list.out.resume_handle = &s->resume_index;
out 573 source4/libnet/libnet_group.c s->group_list.out.num_entries = talloc(s, uint32_t);
out 574 source4/libnet/libnet_group.c if (composite_nomem(s->group_list.out.num_entries, c)) return;
out 575 source4/libnet/libnet_group.c s->group_list.out.sam = talloc(s, struct samr_SamArray *);
out 576 source4/libnet/libnet_group.c if (composite_nomem(s->group_list.out.sam, c)) return;
out 607 source4/libnet/libnet_group.c s->group_list.out.resume_handle = &s->resume_index;
out 608 source4/libnet/libnet_group.c s->group_list.out.num_entries = talloc(s, uint32_t);
out 609 source4/libnet/libnet_group.c if (composite_nomem(s->group_list.out.num_entries, c)) return;
out 610 source4/libnet/libnet_group.c s->group_list.out.sam = talloc(s, struct samr_SamArray *);
out 611 source4/libnet/libnet_group.c if (composite_nomem(s->group_list.out.sam, c)) return;
out 639 source4/libnet/libnet_group.c c->status = s->group_list.out.result;
out 649 source4/libnet/libnet_group.c s->resume_index = *s->group_list.out.resume_handle;
out 650 source4/libnet/libnet_group.c s->count = *s->group_list.out.num_entries;
out 653 source4/libnet/libnet_group.c s->groups = talloc_array(c, struct grouplist, (*s->group_list.out.sam)->count);
out 656 source4/libnet/libnet_group.c for (i = 0; i < (*s->group_list.out.sam)->count; i++) {
out 658 source4/libnet/libnet_group.c struct samr_SamEntry *entry = &(*s->group_list.out.sam)->entries[i];
out 659 source4/libnet/libnet_group.c struct dom_sid *domain_sid = (*s->query_domain.out.info)->domain.sid;
out 710 source4/libnet/libnet_group.c io->out.count = s->count;
out 711 source4/libnet/libnet_group.c io->out.resume_index = s->resume_index;
out 712 source4/libnet/libnet_group.c io->out.groups = talloc_steal(mem_ctx, s->groups);
out 715 source4/libnet/libnet_group.c io->out.error_string = talloc_asprintf(mem_ctx, "Success");
out 718 source4/libnet/libnet_group.c io->out.error_string = talloc_asprintf(mem_ctx, "Success (status: %s)",
out 723 source4/libnet/libnet_group.c io->out.error_string = talloc_asprintf(mem_ctx, "Error: %s", nt_errstr(status));
out 29 source4/libnet/libnet_group.h } out;
out 53 source4/libnet/libnet_group.h } out;
out 73 source4/libnet/libnet_group.h } out;
out 53 source4/libnet/libnet_join.c const char *realm = r->out.realm;
out 55 source4/libnet/libnet_join.c struct dcerpc_binding *samr_binding = r->out.samr_binding;
out 82 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 92 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 98 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 120 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(r,
out 122 source4/libnet/libnet_join.c r->out.domain_name,
out 133 source4/libnet/libnet_join.c r_drsuapi_bind.out.bind_handle = &drsuapi_bind_handle;
out 138 source4/libnet/libnet_join.c r->out.error_string
out 145 source4/libnet/libnet_join.c r->out.error_string
out 152 source4/libnet/libnet_join.c } else if (!W_ERROR_IS_OK(r_drsuapi_bind.out.result)) {
out 153 source4/libnet/libnet_join.c r->out.error_string
out 156 source4/libnet/libnet_join.c win_errstr(r_drsuapi_bind.out.result));
out 167 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 178 source4/libnet/libnet_join.c names[0].str = dom_sid_string(tmp_ctx, r->out.account_sid);
out 180 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 185 source4/libnet/libnet_join.c r_crack_names.out.ctr = talloc(r, union drsuapi_DsNameCtr);
out 186 source4/libnet/libnet_join.c r_crack_names.out.level_out = talloc(r, int32_t);
out 187 source4/libnet/libnet_join.c if (!r_crack_names.out.ctr || !r_crack_names.out.level_out) {
out 188 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 196 source4/libnet/libnet_join.c r->out.error_string
out 204 source4/libnet/libnet_join.c r->out.error_string
out 212 source4/libnet/libnet_join.c } else if (!W_ERROR_IS_OK(r_crack_names.out.result)) {
out 213 source4/libnet/libnet_join.c r->out.error_string
out 215 source4/libnet/libnet_join.c "DsCrackNames failed - %s", win_errstr(r_crack_names.out.result));
out 218 source4/libnet/libnet_join.c } else if (*r_crack_names.out.level_out != 1
out 219 source4/libnet/libnet_join.c || !r_crack_names.out.ctr->ctr1
out 220 source4/libnet/libnet_join.c || r_crack_names.out.ctr->ctr1->count != 1) {
out 221 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(r, "DsCrackNames failed");
out 224 source4/libnet/libnet_join.c } else if (r_crack_names.out.ctr->ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {
out 225 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(r, "DsCrackNames failed: %d", r_crack_names.out.ctr->ctr1->array[0].status);
out 228 source4/libnet/libnet_join.c } else if (r_crack_names.out.ctr->ctr1->array[0].result_name == NULL) {
out 229 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(r, "DsCrackNames failed: no result name");
out 235 source4/libnet/libnet_join.c account_dn_str = r_crack_names.out.ctr->ctr1->array[0].result_name;
out 242 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 251 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 258 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(r, "Invalid account dn: %s",
out 268 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(r, "ldb_search for %s failed - %s",
out 275 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(r, "ldb_search for %s failed - found %d entries",
out 284 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 300 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 309 source4/libnet/libnet_join.c service_principal_name[4] = talloc_asprintf(tmp_ctx, "host/%s/%s", dns_host_name, r->out.domain_name);
out 310 source4/libnet/libnet_join.c service_principal_name[5] = talloc_asprintf(tmp_ctx, "host/%s/%s", strlower_talloc(tmp_ctx, r->in.netbios_name), r->out.domain_name);
out 314 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 320 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 328 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 335 source4/libnet/libnet_join.c r->out.error_string
out 347 source4/libnet/libnet_join.c names[0].str = talloc_asprintf(tmp_ctx, "%s\\", r->out.domain_name);
out 349 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 357 source4/libnet/libnet_join.c r->out.error_string
out 365 source4/libnet/libnet_join.c r->out.error_string
out 373 source4/libnet/libnet_join.c } else if (!W_ERROR_IS_OK(r_crack_names.out.result)) {
out 374 source4/libnet/libnet_join.c r->out.error_string
out 376 source4/libnet/libnet_join.c "DsCrackNames failed - %s", win_errstr(r_crack_names.out.result));
out 379 source4/libnet/libnet_join.c } else if (*r_crack_names.out.level_out != 1
out 380 source4/libnet/libnet_join.c || !r_crack_names.out.ctr->ctr1
out 381 source4/libnet/libnet_join.c || r_crack_names.out.ctr->ctr1->count != 1
out 382 source4/libnet/libnet_join.c || !r_crack_names.out.ctr->ctr1->array[0].result_name
out 383 source4/libnet/libnet_join.c || r_crack_names.out.ctr->ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {
out 384 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(r, "DsCrackNames failed");
out 390 source4/libnet/libnet_join.c r->out.account_dn_str = account_dn_str;
out 394 source4/libnet/libnet_join.c r->out.domain_dn_str = r_crack_names.out.ctr->ctr1->array[0].result_name;
out 395 source4/libnet/libnet_join.c talloc_steal(r, r_crack_names.out.ctr->ctr1->array[0].result_name);
out 399 source4/libnet/libnet_join.c r->out.kvno = ldb_msg_find_attr_as_uint(res->msgs[0], "msDS-KeyVersionNumber", 0);
out 402 source4/libnet/libnet_join.c r->out.account_guid = samdb_result_guid(res->msgs[0], "objectGUID");
out 466 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 467 source4/libnet/libnet_join.c r2.samr_handle.out.error_string = NULL;
out 471 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 477 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 484 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 509 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 511 source4/libnet/libnet_join.c r->in.binding, connect_with_info->out.error_string);
out 513 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 515 source4/libnet/libnet_join.c r->in.domain_name, connect_with_info->out.error_string);
out 521 source4/libnet/libnet_join.c samr_pipe = connect_with_info->out.dcerpc_pipe;
out 524 source4/libnet/libnet_join.c connect_with_info->out.dcerpc_pipe->binding,
out 527 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 538 source4/libnet/libnet_join.c sc.out.connect_handle = &p_handle;
out 543 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 551 source4/libnet/libnet_join.c if (!connect_with_info->out.domain_name) {
out 553 source4/libnet/libnet_join.c connect_with_info->out.domain_name = talloc_strdup(tmp_ctx, r->in.domain_name);
out 556 source4/libnet/libnet_join.c connect_with_info->out.domain_name = talloc_strdup(tmp_ctx, lp_workgroup(ctx->lp_ctx));
out 557 source4/libnet/libnet_join.c connect_with_info->out.realm = talloc_strdup(tmp_ctx, lp_realm(ctx->lp_ctx));
out 562 source4/libnet/libnet_join.c if (!connect_with_info->out.domain_sid) {
out 566 source4/libnet/libnet_join.c name.string = connect_with_info->out.domain_name;
out 569 source4/libnet/libnet_join.c l.out.sid = &sid;
out 573 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 579 source4/libnet/libnet_join.c connect_with_info->out.domain_sid = *l.out.sid;
out 586 source4/libnet/libnet_join.c od.in.sid = connect_with_info->out.domain_sid;
out 587 source4/libnet/libnet_join.c od.out.domain_handle = &d_handle;
out 592 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 594 source4/libnet/libnet_join.c dom_sid_string(tmp_ctx, connect_with_info->out.domain_sid),
out 607 source4/libnet/libnet_join.c cu.out.user_handle = u_handle;
out 608 source4/libnet/libnet_join.c cu.out.rid = &rid;
out 609 source4/libnet/libnet_join.c cu.out.access_granted = &access_granted;
out 619 source4/libnet/libnet_join.c ln.out.rids = &rids;
out 620 source4/libnet/libnet_join.c ln.out.types = &types;
out 622 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 631 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 640 source4/libnet/libnet_join.c if (ln.out.rids->count != 1) {
out 641 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 643 source4/libnet/libnet_join.c r->in.account_name, ln.out.rids->count);
out 652 source4/libnet/libnet_join.c ou.in.rid = ln.out.rids->ids[0];
out 654 source4/libnet/libnet_join.c ou.out.user_handle = u_handle;
out 659 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 670 source4/libnet/libnet_join.c d.out.user_handle = u_handle;
out 673 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 686 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 694 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 704 source4/libnet/libnet_join.c qui.out.info = &uinfo;
out 708 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 718 source4/libnet/libnet_join.c r->out.error_string
out 760 source4/libnet/libnet_join.c r->out.error_string
out 772 source4/libnet/libnet_join.c r->out.error_string
out 777 source4/libnet/libnet_join.c r->in.account_name, connect_with_info->out.domain_name, old_account_type, new_account_type);
out 789 source4/libnet/libnet_join.c pwp.out.info = &info;
out 793 source4/libnet/libnet_join.c policy_min_pw_len = pwp.out.info->min_password_length;
out 815 source4/libnet/libnet_join.c r->out.error_string = talloc_steal(mem_ctx, r2.samr_handle.out.error_string);
out 820 source4/libnet/libnet_join.c account_sid = dom_sid_add_rid(mem_ctx, connect_with_info->out.domain_sid, rid);
out 822 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 828 source4/libnet/libnet_join.c r->out.join_password = password_str;
out 829 source4/libnet/libnet_join.c talloc_steal(mem_ctx, r->out.join_password);
out 831 source4/libnet/libnet_join.c r->out.domain_sid = connect_with_info->out.domain_sid;
out 832 source4/libnet/libnet_join.c talloc_steal(mem_ctx, r->out.domain_sid);
out 834 source4/libnet/libnet_join.c r->out.account_sid = account_sid;
out 835 source4/libnet/libnet_join.c talloc_steal(mem_ctx, r->out.account_sid);
out 837 source4/libnet/libnet_join.c r->out.domain_name = connect_with_info->out.domain_name;
out 838 source4/libnet/libnet_join.c talloc_steal(mem_ctx, r->out.domain_name);
out 839 source4/libnet/libnet_join.c r->out.realm = connect_with_info->out.realm;
out 840 source4/libnet/libnet_join.c talloc_steal(mem_ctx, r->out.realm);
out 841 source4/libnet/libnet_join.c r->out.samr_pipe = samr_pipe;
out 843 source4/libnet/libnet_join.c r->out.samr_binding = samr_pipe->binding;
out 844 source4/libnet/libnet_join.c talloc_steal(mem_ctx, r->out.samr_binding);
out 845 source4/libnet/libnet_join.c r->out.user_handle = u_handle;
out 847 source4/libnet/libnet_join.c r->out.error_string = r2.samr_handle.out.error_string;
out 848 source4/libnet/libnet_join.c talloc_steal(mem_ctx, r2.samr_handle.out.error_string);
out 849 source4/libnet/libnet_join.c r->out.kvno = 0;
out 850 source4/libnet/libnet_join.c r->out.server_dn_str = NULL;
out 855 source4/libnet/libnet_join.c if (r->out.realm) {
out 891 source4/libnet/libnet_join.c r->out.error_string
out 903 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 910 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 917 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 924 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 931 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 939 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 946 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 954 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 961 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 968 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 975 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 984 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 994 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1013 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1018 source4/libnet/libnet_join.c r->out.error_string
out 1039 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1046 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1057 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1065 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1072 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1082 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1092 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1102 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx, "Failed to create secret record %s",
out 1123 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1132 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1142 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1152 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1160 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1177 source4/libnet/libnet_join.c r->out.error_string = talloc_steal(mem_ctx, r2->out.error_string);
out 1184 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1190 source4/libnet/libnet_join.c r3->in.domain_name = r2->out.domain_name;
out 1191 source4/libnet/libnet_join.c r3->in.realm = r2->out.realm;
out 1195 source4/libnet/libnet_join.c r3->in.join_password = r2->out.join_password;
out 1196 source4/libnet/libnet_join.c r3->in.kvno = r2->out.kvno;
out 1197 source4/libnet/libnet_join.c r3->in.domain_sid = r2->out.domain_sid;
out 1201 source4/libnet/libnet_join.c r->out.error_string = talloc_steal(mem_ctx, r3->out.error_string);
out 1207 source4/libnet/libnet_join.c r->out.error_string = NULL;
out 1208 source4/libnet/libnet_join.c r->out.join_password = r2->out.join_password;
out 1209 source4/libnet/libnet_join.c talloc_steal(mem_ctx, r2->out.join_password);
out 1210 source4/libnet/libnet_join.c r->out.domain_sid = r2->out.domain_sid;
out 1211 source4/libnet/libnet_join.c talloc_steal(mem_ctx, r2->out.domain_sid);
out 1212 source4/libnet/libnet_join.c r->out.domain_name = r2->out.domain_name;
out 1213 source4/libnet/libnet_join.c talloc_steal(mem_ctx, r2->out.domain_name);
out 1231 source4/libnet/libnet_join.c r->out.error_string = talloc_asprintf(mem_ctx,
out 63 source4/libnet/libnet_join.h } out;
out 79 source4/libnet/libnet_join.h } out;
out 96 source4/libnet/libnet_join.h } out;
out 132 source4/libnet/libnet_lookup.c io->out.address = (const char **)str_list_make(mem_ctx, s->address, NULL);
out 133 source4/libnet/libnet_lookup.c NT_STATUS_HAVE_NO_MEMORY(io->out.address);
out 218 source4/libnet/libnet_lookup.c status = finddcs_recv(c, mem_ctx, &io->out.num_dcs, &io->out.dcs);
out 313 source4/libnet/libnet_lookup.c s->lookup.out.count = &s->count;
out 314 source4/libnet/libnet_lookup.c s->lookup.out.sids = &s->sids;
out 315 source4/libnet/libnet_lookup.c s->lookup.out.domains = talloc_zero(ctx, struct lsa_RefDomainList *);
out 316 source4/libnet/libnet_lookup.c if (composite_nomem(s->lookup.out.domains, c)) return false;
out 354 source4/libnet/libnet_lookup.c c->status = s->lookup.out.result;
out 372 source4/libnet/libnet_lookup.c io->out.rid = 0;
out 373 source4/libnet/libnet_lookup.c io->out.sid = NULL;
out 374 source4/libnet/libnet_lookup.c io->out.sidstr = NULL;
out 376 source4/libnet/libnet_lookup.c if (*s->lookup.out.count > 0) {
out 377 source4/libnet/libnet_lookup.c struct lsa_RefDomainList *domains = *s->lookup.out.domains;
out 378 source4/libnet/libnet_lookup.c struct lsa_TransSidArray *sids = s->lookup.out.sids;
out 382 source4/libnet/libnet_lookup.c io->out.error_string = talloc_asprintf(mem_ctx, "Error: %s", nt_errstr(status));
out 387 source4/libnet/libnet_lookup.c io->out.rid = sids->sids[0].rid;
out 388 source4/libnet/libnet_lookup.c io->out.sid_type = sids->sids[0].sid_type;
out 390 source4/libnet/libnet_lookup.c io->out.sid = dom_sid_add_rid(mem_ctx, domains->domains[0].sid, io->out.rid);
out 391 source4/libnet/libnet_lookup.c NT_STATUS_HAVE_NO_MEMORY(io->out.sid);
out 392 source4/libnet/libnet_lookup.c io->out.sidstr = dom_sid_string(mem_ctx, io->out.sid);
out 393 source4/libnet/libnet_lookup.c NT_STATUS_HAVE_NO_MEMORY(io->out.sidstr);
out 398 source4/libnet/libnet_lookup.c io->out.error_string = talloc_strdup(mem_ctx, "Success");
out 401 source4/libnet/libnet_lookup.c io->out.error_string = talloc_asprintf(mem_ctx, "Error: %s", nt_errstr(status));
out 29 source4/libnet/libnet_lookup.h } out;
out 41 source4/libnet/libnet_lookup.h } out;
out 56 source4/libnet/libnet_lookup.h } out;
out 64 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 71 source4/libnet/libnet_passwd.c server.string = talloc_asprintf(mem_ctx, "\\\\%s", dcerpc_server_name(c.out.dcerpc_pipe));
out 97 source4/libnet/libnet_passwd.c pw3.out.dominfo = &dominfo;
out 98 source4/libnet/libnet_passwd.c pw3.out.reject = &reject;
out 101 source4/libnet/libnet_passwd.c status = dcerpc_samr_ChangePasswordUser3(c.out.dcerpc_pipe, mem_ctx, &pw3);
out 103 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 110 source4/libnet/libnet_passwd.c if (!NT_STATUS_IS_OK(pw3.out.result)) {
out 111 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 114 source4/libnet/libnet_passwd.c nt_errstr(pw3.out.result));
out 116 source4/libnet/libnet_passwd.c if (NT_STATUS_EQUAL(pw3.out.result, NT_STATUS_PASSWORD_RESTRICTION)) {
out 117 source4/libnet/libnet_passwd.c status = pw3.out.result;
out 144 source4/libnet/libnet_passwd.c status = dcerpc_samr_ChangePasswordUser2(c.out.dcerpc_pipe, mem_ctx, &pw2);
out 146 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 153 source4/libnet/libnet_passwd.c if (!NT_STATUS_IS_OK(pw2.out.result)) {
out 154 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 157 source4/libnet/libnet_passwd.c nt_errstr(pw2.out.result));
out 158 source4/libnet/libnet_passwd.c if (NT_STATUS_EQUAL(pw2.out.result, NT_STATUS_PASSWORD_RESTRICTION)) {
out 159 source4/libnet/libnet_passwd.c status = pw2.out.result;
out 169 source4/libnet/libnet_passwd.c a_server.string = talloc_asprintf(mem_ctx, "\\\\%s", dcerpc_server_name(c.out.dcerpc_pipe));
out 182 source4/libnet/libnet_passwd.c status = dcerpc_samr_OemChangePasswordUser2(c.out.dcerpc_pipe, mem_ctx, &oe2);
out 184 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 191 source4/libnet/libnet_passwd.c if (!NT_STATUS_IS_OK(oe2.out.result)) {
out 192 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 195 source4/libnet/libnet_passwd.c nt_errstr(oe2.out.result));
out 196 source4/libnet/libnet_passwd.c if (NT_STATUS_EQUAL(oe2.out.result, NT_STATUS_PASSWORD_RESTRICTION)) {
out 197 source4/libnet/libnet_passwd.c status = oe2.out.result;
out 229 source4/libnet/libnet_passwd.c status = dcerpc_samr_ChangePasswordUser(c.pdc.out.dcerpc_pipe, mem_ctx, &pw);
out 231 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 238 source4/libnet/libnet_passwd.c if (!NT_STATUS_IS_OK(pw.out.result)) {
out 239 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 242 source4/libnet/libnet_passwd.c nt_errstr(pw.out.result));
out 243 source4/libnet/libnet_passwd.c if (NT_STATUS_EQUAL(pw.out.result, NT_STATUS_PASSWORD_RESTRICTION)) {
out 244 source4/libnet/libnet_passwd.c status = pw.out.result;
out 252 source4/libnet/libnet_passwd.c talloc_free(c.out.dcerpc_pipe);
out 270 source4/libnet/libnet_passwd.c r->generic.out.error_string = r2.samr.out.error_string;
out 314 source4/libnet/libnet_passwd.c r->samr_handle.out.error_string = talloc_asprintf(mem_ctx,
out 338 source4/libnet/libnet_passwd.c r->samr_handle.out.error_string
out 368 source4/libnet/libnet_passwd.c r->samr_handle.out.error_string = talloc_asprintf(mem_ctx,
out 391 source4/libnet/libnet_passwd.c r->samr_handle.out.error_string
out 417 source4/libnet/libnet_passwd.c r->samr_handle.out.error_string = talloc_asprintf(mem_ctx,
out 432 source4/libnet/libnet_passwd.c r->samr_handle.out.error_string
out 459 source4/libnet/libnet_passwd.c r->samr_handle.out.error_string
out 475 source4/libnet/libnet_passwd.c r->samr_handle.out.error_string
out 551 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 561 source4/libnet/libnet_passwd.c sc.out.connect_handle = &p_handle;
out 564 source4/libnet/libnet_passwd.c status = dcerpc_samr_Connect(c.out.dcerpc_pipe, mem_ctx, &sc);
out 566 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 576 source4/libnet/libnet_passwd.c ld.out.sid = &sid;
out 579 source4/libnet/libnet_passwd.c status = dcerpc_samr_LookupDomain(c.out.dcerpc_pipe, mem_ctx, &ld);
out 581 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 591 source4/libnet/libnet_passwd.c od.in.sid = *ld.out.sid;
out 592 source4/libnet/libnet_passwd.c od.out.domain_handle = &d_handle;
out 595 source4/libnet/libnet_passwd.c status = dcerpc_samr_OpenDomain(c.out.dcerpc_pipe, mem_ctx, &od);
out 597 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 607 source4/libnet/libnet_passwd.c ln.out.rids = &rids;
out 608 source4/libnet/libnet_passwd.c ln.out.types = &types;
out 610 source4/libnet/libnet_passwd.c r->samr.out.error_string = "Out of Memory";
out 616 source4/libnet/libnet_passwd.c status = dcerpc_samr_LookupNames(c.out.dcerpc_pipe, mem_ctx, &ln);
out 618 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 625 source4/libnet/libnet_passwd.c if (ln.out.rids->count != 1) {
out 626 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 628 source4/libnet/libnet_passwd.c r->samr.in.account_name, ln.out.rids->count);
out 637 source4/libnet/libnet_passwd.c ou.in.rid = ln.out.rids->ids[0];
out 638 source4/libnet/libnet_passwd.c ou.out.user_handle = &u_handle;
out 641 source4/libnet/libnet_passwd.c status = dcerpc_samr_OpenUser(c.out.dcerpc_pipe, mem_ctx, &ou);
out 643 source4/libnet/libnet_passwd.c r->samr.out.error_string = talloc_asprintf(mem_ctx,
out 653 source4/libnet/libnet_passwd.c r2.samr_handle.in.dcerpc_pipe = c.out.dcerpc_pipe;
out 658 source4/libnet/libnet_passwd.c r->generic.out.error_string = r2.samr_handle.out.error_string;
out 662 source4/libnet/libnet_passwd.c talloc_free(c.out.dcerpc_pipe);
out 677 source4/libnet/libnet_passwd.c r->generic.out.error_string = "Unknown Error";
out 680 source4/libnet/libnet_passwd.c r->generic.out.error_string = r2.samr.out.error_string;
out 42 source4/libnet/libnet_passwd.h } out;
out 48 source4/libnet/libnet_passwd.h struct _libnet_ChangePassword_out out;
out 54 source4/libnet/libnet_passwd.h struct _libnet_ChangePassword_out out;
out 60 source4/libnet/libnet_passwd.h struct _libnet_ChangePassword_out out;
out 66 source4/libnet/libnet_passwd.h struct _libnet_ChangePassword_out out;
out 96 source4/libnet/libnet_passwd.h } out;
out 111 source4/libnet/libnet_passwd.h struct _libnet_SetPassword_out out;
out 117 source4/libnet/libnet_passwd.h struct _libnet_SetPassword_out out;
out 123 source4/libnet/libnet_passwd.h struct _libnet_SetPassword_out out;
out 129 source4/libnet/libnet_passwd.h struct _libnet_SetPassword_out out;
out 135 source4/libnet/libnet_passwd.h struct _libnet_SetPassword_out out;
out 75 source4/libnet/libnet_rpc.c ZERO_STRUCT(s->r.out);
out 139 source4/libnet/libnet_rpc.c c->status = dcerpc_pipe_connect_b_recv(ctx, c, &s->r.out.dcerpc_pipe);
out 145 source4/libnet/libnet_rpc.c struct dcerpc_binding *binding = s->r.out.dcerpc_pipe->binding;
out 186 source4/libnet/libnet_rpc.c r->out.dcerpc_pipe = talloc_steal(mem_ctx, s->r.out.dcerpc_pipe);
out 192 source4/libnet/libnet_rpc.c ctx->samr.pipe = talloc_reference(ctx, r->out.dcerpc_pipe);
out 195 source4/libnet/libnet_rpc.c ctx->lsa.pipe = talloc_reference(ctx, r->out.dcerpc_pipe);
out 198 source4/libnet/libnet_rpc.c r->out.error_string = talloc_strdup(mem_ctx, "Success");
out 201 source4/libnet/libnet_rpc.c r->out.error_string = talloc_asprintf(mem_ctx, "Error: %s", nt_errstr(status));
out 255 source4/libnet/libnet_rpc.c ZERO_STRUCT(s->r.out);
out 271 source4/libnet/libnet_rpc.c s->f.out.num_dcs = 0;
out 272 source4/libnet/libnet_rpc.c s->f.out.dcs = NULL;
out 303 source4/libnet/libnet_rpc.c s->connect_name = s->f.out.dcs[0].name;
out 309 source4/libnet/libnet_rpc.c data.hostname = s->f.out.dcs[0].name;
out 310 source4/libnet/libnet_rpc.c data.address = s->f.out.dcs[0].address;
out 324 source4/libnet/libnet_rpc.c s->r2.in.address = talloc_steal(s, s->f.out.dcs[0].address);
out 349 source4/libnet/libnet_rpc.c s->r.out.error_string = s->r2.out.error_string;
out 352 source4/libnet/libnet_rpc.c s->r.out.dcerpc_pipe = s->r2.out.dcerpc_pipe;
out 358 source4/libnet/libnet_rpc.c struct dcerpc_binding *binding = s->r.out.dcerpc_pipe->binding;
out 397 source4/libnet/libnet_rpc.c r->out.dcerpc_pipe = talloc_steal(mem_ctx, s->r.out.dcerpc_pipe);
out 403 source4/libnet/libnet_rpc.c ctx->samr.pipe = talloc_reference(ctx, r->out.dcerpc_pipe);
out 406 source4/libnet/libnet_rpc.c ctx->lsa.pipe = talloc_reference(ctx, r->out.dcerpc_pipe);
out 410 source4/libnet/libnet_rpc.c r->out.error_string = talloc_asprintf(mem_ctx,
out 479 source4/libnet/libnet_rpc.c ZERO_STRUCT(s->r.out);
out 526 source4/libnet/libnet_rpc.c struct dcerpc_binding *binding = s->r.out.dcerpc_pipe->binding;
out 554 source4/libnet/libnet_rpc.c s->lsa_open_policy.out.handle = &s->lsa_handle;
out 582 source4/libnet/libnet_rpc.c if (NT_STATUS_EQUAL(s->lsa_open_policy.out.result, NT_STATUS_RPC_PROTSEQ_NOT_SUPPORTED)) {
out 583 source4/libnet/libnet_rpc.c s->r.out.realm = NULL;
out 584 source4/libnet/libnet_rpc.c s->r.out.guid = NULL;
out 585 source4/libnet/libnet_rpc.c s->r.out.domain_name = NULL;
out 586 source4/libnet/libnet_rpc.c s->r.out.domain_sid = NULL;
out 592 source4/libnet/libnet_rpc.c } else if (!NT_STATUS_IS_OK(s->lsa_open_policy.out.result)) {
out 593 source4/libnet/libnet_rpc.c composite_error(c, s->lsa_open_policy.out.result);
out 610 source4/libnet/libnet_rpc.c s->lsa_query_info2.out.info = talloc_zero(c, union lsa_PolicyInformation *);
out 611 source4/libnet/libnet_rpc.c if (composite_nomem(s->lsa_query_info2.out.info, c)) return;
out 640 source4/libnet/libnet_rpc.c s->r.out.realm = NULL;
out 641 source4/libnet/libnet_rpc.c s->r.out.guid = NULL;
out 645 source4/libnet/libnet_rpc.c s->r.out.error_string = talloc_asprintf(c,
out 652 source4/libnet/libnet_rpc.c if (!NT_STATUS_IS_OK(s->lsa_query_info2.out.result)) {
out 653 source4/libnet/libnet_rpc.c s->r.out.error_string = talloc_asprintf(c,
out 655 source4/libnet/libnet_rpc.c nt_errstr(s->lsa_query_info2.out.result));
out 656 source4/libnet/libnet_rpc.c composite_error(c, s->lsa_query_info2.out.result);
out 663 source4/libnet/libnet_rpc.c s->r.out.realm = (*s->lsa_query_info2.out.info)->dns.dns_domain.string;
out 664 source4/libnet/libnet_rpc.c s->r.out.guid = talloc(c, struct GUID);
out 665 source4/libnet/libnet_rpc.c if (composite_nomem(s->r.out.guid, c)) {
out 666 source4/libnet/libnet_rpc.c s->r.out.error_string = NULL;
out 669 source4/libnet/libnet_rpc.c *s->r.out.guid = (*s->lsa_query_info2.out.info)->dns.domain_guid;
out 685 source4/libnet/libnet_rpc.c s->lsa_query_info.out.info = talloc_zero(c, union lsa_PolicyInformation *);
out 686 source4/libnet/libnet_rpc.c if (composite_nomem(s->lsa_query_info.out.info, c)) return;
out 708 source4/libnet/libnet_rpc.c s->r.out.error_string = talloc_asprintf(c,
out 726 source4/libnet/libnet_rpc.c s->r.out.domain_sid = (*s->lsa_query_info.out.info)->domain.sid;
out 727 source4/libnet/libnet_rpc.c s->r.out.domain_name = (*s->lsa_query_info.out.info)->domain.name.string;
out 774 source4/libnet/libnet_rpc.c s->r.out.error_string = talloc_asprintf(c,
out 803 source4/libnet/libnet_rpc.c s->r.out.error_string = talloc_asprintf(c,
out 811 source4/libnet/libnet_rpc.c s->r.out.dcerpc_pipe = s->final_pipe;
out 817 source4/libnet/libnet_rpc.c struct dcerpc_binding *binding = s->r.out.dcerpc_pipe->binding;
out 855 source4/libnet/libnet_rpc.c r->out.realm = talloc_steal(mem_ctx, s->r.out.realm);
out 856 source4/libnet/libnet_rpc.c r->out.guid = talloc_steal(mem_ctx, s->r.out.guid);
out 857 source4/libnet/libnet_rpc.c r->out.domain_name = talloc_steal(mem_ctx, s->r.out.domain_name);
out 858 source4/libnet/libnet_rpc.c r->out.domain_sid = talloc_steal(mem_ctx, s->r.out.domain_sid);
out 860 source4/libnet/libnet_rpc.c r->out.dcerpc_pipe = talloc_steal(mem_ctx, s->r.out.dcerpc_pipe);
out 866 source4/libnet/libnet_rpc.c ctx->samr.pipe = talloc_reference(ctx, r->out.dcerpc_pipe);
out 869 source4/libnet/libnet_rpc.c ctx->lsa.pipe = talloc_reference(ctx, r->out.dcerpc_pipe);
out 873 source4/libnet/libnet_rpc.c if (s->r.out.error_string) {
out 874 source4/libnet/libnet_rpc.c r->out.error_string = talloc_steal(mem_ctx, s->r.out.error_string);
out 876 source4/libnet/libnet_rpc.c r->out.error_string = talloc_asprintf(mem_ctx, "Connection to DC failed: %s", nt_errstr(status));
out 878 source4/libnet/libnet_rpc.c r->out.error_string = talloc_asprintf(mem_ctx, "Connection to DC %s failed: %s",
out 956 source4/libnet/libnet_rpc.c ZERO_STRUCT(r->out);
out 59 source4/libnet/libnet_rpc.h } out;
out 164 source4/libnet/libnet_samdump.c r2.out.error_string = NULL;
out 172 source4/libnet/libnet_samdump.c r->out.error_string = r2.out.error_string;
out 173 source4/libnet/libnet_samdump.c talloc_steal(mem_ctx, r->out.error_string);
out 191 source4/libnet/libnet_samdump.c r->out.error_string = talloc_asprintf(mem_ctx,
out 116 source4/libnet/libnet_samdump_keytab.c r2.out.error_string = NULL;
out 124 source4/libnet/libnet_samdump_keytab.c r->out.error_string = r2.out.error_string;
out 125 source4/libnet/libnet_samdump_keytab.c talloc_steal(mem_ctx, r->out.error_string);
out 193 source4/libnet/libnet_samsync.c r->out.error_string = talloc_strdup(mem_ctx, "Could not obtain machine account password - are we joined to the domain?");
out 203 source4/libnet/libnet_samsync.c r->out.error_string
out 214 source4/libnet/libnet_samsync.c r->out.error_string = NULL;
out 236 source4/libnet/libnet_samsync.c r->out.error_string = NULL;
out 247 source4/libnet/libnet_samsync.c r->out.error_string = talloc_asprintf(mem_ctx,
out 249 source4/libnet/libnet_samsync.c r->in.binding_string, c->out.error_string);
out 251 source4/libnet/libnet_samsync.c r->out.error_string = talloc_asprintf(mem_ctx,
out 253 source4/libnet/libnet_samsync.c c->in.name, c->out.error_string);
out 263 source4/libnet/libnet_samsync.c nt_status = dcerpc_secondary_connection(c->out.dcerpc_pipe, &p,
out 264 source4/libnet/libnet_samsync.c c->out.dcerpc_pipe->binding);
out 267 source4/libnet/libnet_samsync.c r->out.error_string = talloc_asprintf(mem_ctx,
out 278 source4/libnet/libnet_samsync.c r->out.error_string = talloc_asprintf(mem_ctx,
out 287 source4/libnet/libnet_samsync.c r->out.error_string = NULL;
out 292 source4/libnet/libnet_samsync.c state->domain_name = c->out.domain_name;
out 293 source4/libnet/libnet_samsync.c state->domain_sid = c->out.domain_sid;
out 294 source4/libnet/libnet_samsync.c state->realm = c->out.realm;
out 295 source4/libnet/libnet_samsync.c state->domain_guid = c->out.guid;
out 309 source4/libnet/libnet_samsync.c r->out.error_string = talloc_steal(mem_ctx, error_string);
out 319 source4/libnet/libnet_samsync.c r->out.error_string = talloc_strdup(mem_ctx, "Could not obtain NETLOGON credentials from DCERPC/GENSEC layer");
out 332 source4/libnet/libnet_samsync.c dbsync.out.return_authenticator = &return_authenticator;
out 333 source4/libnet/libnet_samsync.c dbsync.out.delta_enum_array = &delta_enum_array;
out 341 source4/libnet/libnet_samsync.c dbsync.out.sync_context = &sync_context;
out 353 source4/libnet/libnet_samsync.c r->out.error_string = talloc_asprintf(mem_ctx, "DatabaseSync failed - %s", nt_errstr(nt_status));
out 358 source4/libnet/libnet_samsync.c if (!creds_client_check(creds, &dbsync.out.return_authenticator->cred)) {
out 359 source4/libnet/libnet_samsync.c r->out.error_string = talloc_strdup(mem_ctx, "Credential chaining on incoming DatabaseSync failed");
out 364 source4/libnet/libnet_samsync.c dbsync.in.sync_context = dbsync.out.sync_context;
out 379 source4/libnet/libnet_samsync.c r->out.error_string = talloc_steal(mem_ctx, error_string);
out 393 source4/libnet/libnet_samsync.c r->out.error_string = talloc_steal(mem_ctx, error_string);
out 403 source4/libnet/libnet_samsync.c r->out.error_string = talloc_asprintf(mem_ctx, "libnet_SamSync_netlogon failed: unexpected inconsistancy. Should not get error %s here", nt_errstr(nt_status));
out 50 source4/libnet/libnet_samsync.h } out;
out 60 source4/libnet/libnet_samsync.h } out;
out 71 source4/libnet/libnet_samsync.h } out;
out 82 source4/libnet/libnet_samsync.h } out;
out 1234 source4/libnet/libnet_samsync_ldb.c r2.out.error_string = NULL;
out 1242 source4/libnet/libnet_samsync_ldb.c r->out.error_string = r2.out.error_string;
out 1243 source4/libnet/libnet_samsync_ldb.c talloc_steal(mem_ctx, r->out.error_string);
out 48 source4/libnet/libnet_share.c r->out.error_string = talloc_asprintf(mem_ctx,
out 79 source4/libnet/libnet_share.c r->out.error_string = talloc_asprintf(mem_ctx,
out 87 source4/libnet/libnet_share.c s.out.info_ctr = &info_ctr;
out 88 source4/libnet/libnet_share.c s.out.totalentries = &totalentries;
out 90 source4/libnet/libnet_share.c status = dcerpc_srvsvc_NetShareEnumAll(c.out.dcerpc_pipe, mem_ctx, &s);
out 93 source4/libnet/libnet_share.c r->out.error_string = talloc_asprintf(mem_ctx,
out 100 source4/libnet/libnet_share.c if (!W_ERROR_IS_OK(s.out.result) && !W_ERROR_EQUAL(s.out.result, WERR_MORE_DATA)) {
out 101 source4/libnet/libnet_share.c r->out.error_string = talloc_asprintf(mem_ctx,
out 103 source4/libnet/libnet_share.c r->in.server_name, win_errstr(s.out.result));
out 107 source4/libnet/libnet_share.c r->out.ctr = s.out.info_ctr->ctr;
out 110 source4/libnet/libnet_share.c talloc_free(c.out.dcerpc_pipe);
out 130 source4/libnet/libnet_share.c r->out.error_string = talloc_asprintf(mem_ctx,
out 143 source4/libnet/libnet_share.c status = dcerpc_srvsvc_NetShareAdd(c.out.dcerpc_pipe, mem_ctx, &s);
out 146 source4/libnet/libnet_share.c r->out.error_string = talloc_asprintf(mem_ctx,
out 151 source4/libnet/libnet_share.c } else if (!W_ERROR_IS_OK(s.out.result)) {
out 152 source4/libnet/libnet_share.c r->out.error_string = talloc_asprintf(mem_ctx,
out 156 source4/libnet/libnet_share.c win_errstr(s.out.result));
out 157 source4/libnet/libnet_share.c status = werror_to_ntstatus(s.out.result);
out 160 source4/libnet/libnet_share.c talloc_free(c.out.dcerpc_pipe);
out 179 source4/libnet/libnet_share.c r->out.error_string = talloc_asprintf(mem_ctx,
out 189 source4/libnet/libnet_share.c status = dcerpc_srvsvc_NetShareDel(c.out.dcerpc_pipe, mem_ctx, &s);
out 191 source4/libnet/libnet_share.c r->out.error_string = talloc_asprintf(mem_ctx,
out 196 source4/libnet/libnet_share.c } else if (!W_ERROR_IS_OK(s.out.result)) {
out 197 source4/libnet/libnet_share.c r->out.error_string = talloc_asprintf(mem_ctx,
out 201 source4/libnet/libnet_share.c win_errstr(s.out.result));
out 202 source4/libnet/libnet_share.c status = werror_to_ntstatus(s.out.result);
out 205 source4/libnet/libnet_share.c talloc_free(c.out.dcerpc_pipe);
out 37 source4/libnet/libnet_share.h } out;
out 53 source4/libnet/libnet_share.h } out;
out 69 source4/libnet/libnet_share.h } out;
out 47 source4/libnet/libnet_site.c r->out.error_string = NULL;
out 62 source4/libnet/libnet_site.c || !search.out.netlogon.data.nt5_ex.client_site) {
out 70 source4/libnet/libnet_site.c r->out.error_string = NULL;
out 76 source4/libnet/libnet_site.c search.out.netlogon.data.nt5_ex.client_site);
out 78 source4/libnet/libnet_site.c r->out.error_string = NULL;
out 88 source4/libnet/libnet_site.c r->out.error_string = NULL;
out 97 source4/libnet/libnet_site.c r->out.error_string = NULL;
out 102 source4/libnet/libnet_site.c r->out.site_name_str = site_name_str;
out 105 source4/libnet/libnet_site.c r->out.config_dn_str = config_dn_str;
out 108 source4/libnet/libnet_site.c r->out.server_dn_str = server_dn_str;
out 141 source4/libnet/libnet_site.c libnet_r->out.error_string = NULL;
out 147 source4/libnet/libnet_site.c libnet_r->out.error_string = NULL;
out 152 source4/libnet/libnet_site.c make_nbt_name_client(&name, libnet_r->out.samr_binding->host);
out 155 source4/libnet/libnet_site.c libnet_r->out.error_string = NULL;
out 163 source4/libnet/libnet_site.c r->in.domain_dn_str = libnet_r->out.domain_dn_str;
out 168 source4/libnet/libnet_site.c libnet_r->out.error_string =
out 169 source4/libnet/libnet_site.c talloc_steal(libnet_r, r->out.error_string);
out 174 source4/libnet/libnet_site.c config_dn_str = r->out.config_dn_str;
out 175 source4/libnet/libnet_site.c server_dn_str = r->out.server_dn_str;
out 182 source4/libnet/libnet_site.c libnet_r->out.error_string = NULL;
out 189 source4/libnet/libnet_site.c libnet_r->out.error_string = NULL;
out 195 source4/libnet/libnet_site.c libnet_r->out.error_string = NULL;
out 199 source4/libnet/libnet_site.c rtn = ldb_msg_add_string(msg, "serverReference", libnet_r->out.account_dn_str);
out 201 source4/libnet/libnet_site.c libnet_r->out.error_string = NULL;
out 208 source4/libnet/libnet_site.c libnet_r->out.error_string = talloc_asprintf(libnet_r,
out 224 source4/libnet/libnet_site.c libnet_r->out.error_string = NULL;
out 230 source4/libnet/libnet_site.c rtn = ldb_msg_add_string(msg, "serverReference",libnet_r->out.account_dn_str);
out 232 source4/libnet/libnet_site.c libnet_r->out.error_string = NULL;
out 245 source4/libnet/libnet_site.c libnet_r->out.error_string
out 254 source4/libnet/libnet_site.c libnet_r->out.error_string
out 265 source4/libnet/libnet_site.c libnet_r->out.server_dn_str = server_dn_str;
out 33 source4/libnet/libnet_site.h } out;
out 44 source4/libnet/libnet_time.c r->srvsvc.out.error_string = talloc_asprintf(mem_ctx,
out 52 source4/libnet/libnet_time.c tod.out.info = &info;
out 55 source4/libnet/libnet_time.c status = dcerpc_srvsvc_NetRemoteTOD(c.out.dcerpc_pipe, mem_ctx, &tod);
out 57 source4/libnet/libnet_time.c r->srvsvc.out.error_string = talloc_asprintf(mem_ctx,
out 64 source4/libnet/libnet_time.c if (!W_ERROR_IS_OK(tod.out.result)) {
out 65 source4/libnet/libnet_time.c r->srvsvc.out.error_string = talloc_asprintf(mem_ctx,
out 67 source4/libnet/libnet_time.c r->srvsvc.in.server_name, win_errstr(tod.out.result));
out 68 source4/libnet/libnet_time.c status = werror_to_ntstatus(tod.out.result);
out 83 source4/libnet/libnet_time.c r->srvsvc.out.time = timegm(&tm);
out 84 source4/libnet/libnet_time.c r->srvsvc.out.time_zone = info->timezone * 60;
out 90 source4/libnet/libnet_time.c talloc_free(c.out.dcerpc_pipe);
out 105 source4/libnet/libnet_time.c r->generic.out.time = r2.srvsvc.out.time;
out 106 source4/libnet/libnet_time.c r->generic.out.time_zone = r2.srvsvc.out.time_zone;
out 108 source4/libnet/libnet_time.c r->generic.out.error_string = r2.srvsvc.out.error_string;
out 38 source4/libnet/libnet_time.h } out;
out 44 source4/libnet/libnet_time.h struct _libnet_RemoteTOD_out out;
out 292 source4/libnet/libnet_unbecome_dc.c s->cldap.netlogon = s->cldap.io.out.netlogon.data.nt5_ex;
out 580 source4/libnet/libnet_unbecome_dc.c s->drsuapi.bind_r.out.bind_handle = &s->drsuapi.bind_handle;
out 597 source4/libnet/libnet_unbecome_dc.c if (!W_ERROR_IS_OK(s->drsuapi.bind_r.out.result)) {
out 598 source4/libnet/libnet_unbecome_dc.c composite_error(c, werror_to_ntstatus(s->drsuapi.bind_r.out.result));
out 603 source4/libnet/libnet_unbecome_dc.c if (s->drsuapi.bind_r.out.bind_info) {
out 604 source4/libnet/libnet_unbecome_dc.c switch (s->drsuapi.bind_r.out.bind_info->length) {
out 607 source4/libnet/libnet_unbecome_dc.c info24 = &s->drsuapi.bind_r.out.bind_info->info.info24;
out 616 source4/libnet/libnet_unbecome_dc.c info48 = &s->drsuapi.bind_r.out.bind_info->info.info48;
out 624 source4/libnet/libnet_unbecome_dc.c s->drsuapi.remote_info28 = s->drsuapi.bind_r.out.bind_info->info.info28;
out 647 source4/libnet/libnet_unbecome_dc.c r->out.level_out = talloc(s, int32_t);
out 648 source4/libnet/libnet_unbecome_dc.c r->out.res = talloc(s, union drsuapi_DsRemoveDSServerResult);
out 664 source4/libnet/libnet_unbecome_dc.c if (!W_ERROR_IS_OK(r->out.result)) {
out 665 source4/libnet/libnet_unbecome_dc.c composite_error(c, werror_to_ntstatus(r->out.result));
out 669 source4/libnet/libnet_unbecome_dc.c if (*r->out.level_out != 1) {
out 723 source4/libnet/libnet_unbecome_dc.c ZERO_STRUCT(r->out);
out 30 source4/libnet/libnet_unbecome_dc.h } out;
out 79 source4/libnet/libnet_user.c ZERO_STRUCT(s->r.out);
out 172 source4/libnet/libnet_user.c r->out.error_string = NULL;
out 178 source4/libnet/libnet_user.c r->out.error_string = talloc_strdup(mem_ctx, nt_errstr(status));
out 248 source4/libnet/libnet_user.c ZERO_STRUCT(s->r.out);
out 340 source4/libnet/libnet_user.c r->out.error_string = NULL;
out 346 source4/libnet/libnet_user.c r->out.error_string = talloc_steal(mem_ctx, s->r.out.error_string);
out 506 source4/libnet/libnet_user.c user = &info->out.info.info21;
out 772 source4/libnet/libnet_user.c if (s->lookup.out.sid_type != SID_NAME_USER) {
out 779 source4/libnet/libnet_user.c s->userinfo.in.sid = s->lookup.out.sidstr;
out 830 source4/libnet/libnet_user.c info = &s->userinfo.out.info.info21;
out 832 source4/libnet/libnet_user.c r->out.user_sid = dom_sid_add_rid(mem_ctx, s->ctx->samr.sid, info->rid);
out 833 source4/libnet/libnet_user.c r->out.primary_group_sid = dom_sid_add_rid(mem_ctx, s->ctx->samr.sid, info->primary_gid);
out 836 source4/libnet/libnet_user.c r->out.account_name = talloc_steal(mem_ctx, info->account_name.string);
out 837 source4/libnet/libnet_user.c r->out.full_name = talloc_steal(mem_ctx, info->full_name.string);
out 838 source4/libnet/libnet_user.c r->out.description = talloc_steal(mem_ctx, info->description.string);
out 839 source4/libnet/libnet_user.c r->out.home_directory = talloc_steal(mem_ctx, info->home_directory.string);
out 840 source4/libnet/libnet_user.c r->out.home_drive = talloc_steal(mem_ctx, info->home_drive.string);
out 841 source4/libnet/libnet_user.c r->out.comment = talloc_steal(mem_ctx, info->comment.string);
out 842 source4/libnet/libnet_user.c r->out.logon_script = talloc_steal(mem_ctx, info->logon_script.string);
out 843 source4/libnet/libnet_user.c r->out.profile_path = talloc_steal(mem_ctx, info->profile_path.string);
out 846 source4/libnet/libnet_user.c r->out.acct_expiry = talloc(mem_ctx, struct timeval);
out 847 source4/libnet/libnet_user.c r->out.allow_password_change = talloc(mem_ctx, struct timeval);
out 848 source4/libnet/libnet_user.c r->out.force_password_change = talloc(mem_ctx, struct timeval);
out 849 source4/libnet/libnet_user.c r->out.last_logon = talloc(mem_ctx, struct timeval);
out 850 source4/libnet/libnet_user.c r->out.last_logoff = talloc(mem_ctx, struct timeval);
out 851 source4/libnet/libnet_user.c r->out.last_password_change = talloc(mem_ctx, struct timeval);
out 854 source4/libnet/libnet_user.c nttime_to_timeval(r->out.acct_expiry, info->acct_expiry);
out 855 source4/libnet/libnet_user.c nttime_to_timeval(r->out.allow_password_change, info->allow_password_change);
out 856 source4/libnet/libnet_user.c nttime_to_timeval(r->out.force_password_change, info->force_password_change);
out 857 source4/libnet/libnet_user.c nttime_to_timeval(r->out.last_logon, info->last_logon);
out 858 source4/libnet/libnet_user.c nttime_to_timeval(r->out.last_logoff, info->last_logoff);
out 859 source4/libnet/libnet_user.c nttime_to_timeval(r->out.last_password_change, info->last_password_change);
out 862 source4/libnet/libnet_user.c r->out.acct_flags = info->acct_flags;
out 864 source4/libnet/libnet_user.c r->out.error_string = talloc_strdup(mem_ctx, "Success");
out 867 source4/libnet/libnet_user.c r->out.error_string = talloc_asprintf(mem_ctx, "Error: %s", nt_errstr(status));
out 960 source4/libnet/libnet_user.c s->query_domain.out.info = talloc_zero(c, union lsa_PolicyInformation *);
out 961 source4/libnet/libnet_user.c if (composite_nomem(s->query_domain.out.info, c)) return c;
out 992 source4/libnet/libnet_user.c s->query_domain.out.info = talloc_zero(c, union lsa_PolicyInformation *);
out 993 source4/libnet/libnet_user.c if (composite_nomem(s->query_domain.out.info, c)) return;
out 1022 source4/libnet/libnet_user.c s->dominfo = (*s->query_domain.out.info)->domain;
out 1034 source4/libnet/libnet_user.c s->user_list.out.resume_handle = &s->resume_index;
out 1035 source4/libnet/libnet_user.c s->user_list.out.num_entries = talloc(s, uint32_t);
out 1036 source4/libnet/libnet_user.c if (composite_nomem(s->user_list.out.num_entries, c)) return;
out 1037 source4/libnet/libnet_user.c s->user_list.out.sam = talloc(s, struct samr_SamArray *);
out 1038 source4/libnet/libnet_user.c if (composite_nomem(s->user_list.out.sam, c)) return;
out 1070 source4/libnet/libnet_user.c s->user_list.out.resume_handle = &s->resume_index;
out 1071 source4/libnet/libnet_user.c s->user_list.out.sam = talloc(s, struct samr_SamArray *);
out 1072 source4/libnet/libnet_user.c if (composite_nomem(s->user_list.out.sam, c)) return;
out 1073 source4/libnet/libnet_user.c s->user_list.out.num_entries = talloc(s, uint32_t);
out 1074 source4/libnet/libnet_user.c if (composite_nomem(s->user_list.out.num_entries, c)) return;
out 1102 source4/libnet/libnet_user.c c->status = s->user_list.out.result;
out 1112 source4/libnet/libnet_user.c s->resume_index = *s->user_list.out.resume_handle;
out 1113 source4/libnet/libnet_user.c s->count = *s->user_list.out.num_entries;
out 1116 source4/libnet/libnet_user.c s->users = talloc_array(c, struct userlist, (*s->user_list.out.sam)->count);
out 1119 source4/libnet/libnet_user.c for (i = 0; i < (*s->user_list.out.sam)->count; i++) {
out 1121 source4/libnet/libnet_user.c struct samr_SamEntry *entry = &(*s->user_list.out.sam)->entries[i];
out 1122 source4/libnet/libnet_user.c struct dom_sid *domain_sid = (*s->query_domain.out.info)->domain.sid;
out 1173 source4/libnet/libnet_user.c r->out.count = s->count;
out 1174 source4/libnet/libnet_user.c r->out.resume_index = s->resume_index;
out 1175 source4/libnet/libnet_user.c r->out.users = talloc_steal(mem_ctx, s->users);
out 1178 source4/libnet/libnet_user.c r->out.error_string = talloc_strdup(mem_ctx, "Success");
out 1181 source4/libnet/libnet_user.c r->out.error_string = talloc_asprintf(mem_ctx, "Success (status: %s)",
out 1186 source4/libnet/libnet_user.c r->out.error_string = talloc_asprintf(mem_ctx, "Error: %s", nt_errstr(status));
out 28 source4/libnet/libnet_user.h } out;
out 39 source4/libnet/libnet_user.h } out;
out 64 source4/libnet/libnet_user.h } out;
out 135 source4/libnet/libnet_user.h } out;
out 155 source4/libnet/libnet_user.h } out;
out 90 source4/libnet/libnet_vampire.c settings.realm = s->join->out.realm;
out 91 source4/libnet/libnet_vampire.c settings.domain = s->join->out.domain_name;
out 590 source4/libnet/libnet_vampire.c r->out.error_string = NULL;
out 610 source4/libnet/libnet_vampire.c r->out.error_string = NULL;
out 618 source4/libnet/libnet_vampire.c r->out.error_string = NULL;
out 631 source4/libnet/libnet_vampire.c r->out.error_string = talloc_steal(mem_ctx, join->out.error_string);
out 641 source4/libnet/libnet_vampire.c b.in.domain_dns_name = join->out.realm;
out 642 source4/libnet/libnet_vampire.c b.in.domain_netbios_name = join->out.domain_name;
out 643 source4/libnet/libnet_vampire.c b.in.domain_sid = join->out.domain_sid;
out 644 source4/libnet/libnet_vampire.c b.in.source_dsa_address = join->out.samr_binding->host;
out 698 source4/libnet/libnet_vampire.c set_secrets->in.domain_name = join->out.domain_name;
out 699 source4/libnet/libnet_vampire.c set_secrets->in.realm = join->out.realm;
out 703 source4/libnet/libnet_vampire.c set_secrets->in.join_password = join->out.join_password;
out 704 source4/libnet/libnet_vampire.c set_secrets->in.kvno = join->out.kvno;
out 705 source4/libnet/libnet_vampire.c set_secrets->in.domain_sid = join->out.domain_sid;
out 709 source4/libnet/libnet_vampire.c r->out.error_string = talloc_steal(mem_ctx, set_secrets->out.error_string);
out 714 source4/libnet/libnet_vampire.c r->out.domain_name = talloc_steal(r, join->out.domain_name);
out 715 source4/libnet/libnet_vampire.c r->out.domain_sid = talloc_steal(r, join->out.domain_sid);
out 36 source4/libnet/libnet_vampire.h } out;
out 60 source4/libnet/py_net.c PyErr_SetString(PyExc_RuntimeError, r.out.error_string);
out 65 source4/libnet/py_net.c result = Py_BuildValue("sss", r.out.join_password,
out 66 source4/libnet/py_net.c dom_sid_string(mem_ctx, r.out.domain_sid),
out 67 source4/libnet/py_net.c r.out.domain_name);
out 73 source4/libnet/userinfo.c if (!NT_STATUS_IS_OK(s->lookup.out.result)) {
out 74 source4/libnet/userinfo.c composite_error(c, s->lookup.out.result);
out 82 source4/libnet/userinfo.c msg_lookup->rid = s->lookup.out.rids->ids;
out 83 source4/libnet/userinfo.c msg_lookup->count = s->lookup.out.rids->count;
out 93 source4/libnet/userinfo.c if (s->lookup.out.rids->count == 0) {
out 102 source4/libnet/userinfo.c s->openuser.in.rid = s->lookup.out.rids->ids[0];
out 103 source4/libnet/userinfo.c s->openuser.out.user_handle = &s->user_handle;
out 131 source4/libnet/userinfo.c if (!NT_STATUS_IS_OK(s->queryuserinfo.out.result)) {
out 132 source4/libnet/userinfo.c composite_error(c, s->queryuserinfo.out.result);
out 151 source4/libnet/userinfo.c s->queryuserinfo.out.info = talloc(s, union samr_UserInfo *);
out 152 source4/libnet/userinfo.c if (composite_nomem(s->queryuserinfo.out.info, c)) return;
out 181 source4/libnet/userinfo.c if (!NT_STATUS_IS_OK(s->queryuserinfo.out.result)) {
out 182 source4/libnet/userinfo.c composite_error(c, s->queryuserinfo.out.result);
out 186 source4/libnet/userinfo.c s->info = talloc_steal(s, *(s->queryuserinfo.out.info));
out 201 source4/libnet/userinfo.c s->samrclose.out.handle = &s->user_handle;
out 228 source4/libnet/userinfo.c if (!NT_STATUS_IS_OK(s->samrclose.out.result)) {
out 229 source4/libnet/userinfo.c composite_error(c, s->samrclose.out.result);
out 285 source4/libnet/userinfo.c s->openuser.out.user_handle = &s->user_handle;
out 299 source4/libnet/userinfo.c s->lookup.out.rids = talloc_zero(s, struct samr_Ids);
out 300 source4/libnet/userinfo.c s->lookup.out.types = talloc_zero(s, struct samr_Ids);
out 301 source4/libnet/userinfo.c if (composite_nomem(s->lookup.out.rids, c)) return c;
out 302 source4/libnet/userinfo.c if (composite_nomem(s->lookup.out.types, c)) return c;
out 339 source4/libnet/userinfo.c io->out.info = *s->info;
out 36 source4/libnet/userinfo.h } out;
out 65 source4/libnet/userman.c c->status = s->createuser.out.result;
out 68 source4/libnet/userman.c s->user_handle = *s->createuser.out.user_handle;
out 69 source4/libnet/userman.c s->user_rid = *s->createuser.out.rid;
out 76 source4/libnet/userman.c rpc_create.rid = *s->createuser.out.rid;
out 129 source4/libnet/userman.c s->createuser.out.user_handle = &s->user_handle;
out 130 source4/libnet/userman.c s->createuser.out.rid = &s->user_rid;
out 161 source4/libnet/userman.c io->out.user_handle = s->user_handle;
out 228 source4/libnet/userman.c c->status = s->lookupname.out.result;
out 236 source4/libnet/userman.c if (!s->lookupname.out.rids->count) {
out 241 source4/libnet/userman.c } else if (!s->lookupname.out.rids->count > 1) {
out 251 source4/libnet/userman.c msg_lookup.rid = s->lookupname.out.rids->ids;
out 252 source4/libnet/userman.c msg_lookup.count = s->lookupname.out.rids->count;
out 262 source4/libnet/userman.c s->openuser.in.rid = s->lookupname.out.rids->ids[0];
out 264 source4/libnet/userman.c s->openuser.out.user_handle = &s->user_handle;
out 291 source4/libnet/userman.c c->status = s->openuser.out.result;
out 312 source4/libnet/userman.c s->deleteuser.out.user_handle = &s->user_handle;
out 340 source4/libnet/userman.c c->status = s->deleteuser.out.result;
out 393 source4/libnet/userman.c s->lookupname.out.rids = talloc_zero(s, struct samr_Ids);
out 394 source4/libnet/userman.c s->lookupname.out.types = talloc_zero(s, struct samr_Ids);
out 395 source4/libnet/userman.c if (composite_nomem(s->lookupname.out.rids, c)) return c;
out 396 source4/libnet/userman.c if (composite_nomem(s->lookupname.out.types, c)) return c;
out 427 source4/libnet/userman.c io->out.user_handle = s->user_handle;
out 496 source4/libnet/userman.c c->status = s->lookupname.out.result;
out 504 source4/libnet/userman.c if (!s->lookupname.out.rids->count) {
out 509 source4/libnet/userman.c } else if (!s->lookupname.out.rids->count > 1) {
out 519 source4/libnet/userman.c msg_lookup.rid = s->lookupname.out.rids->ids;
out 520 source4/libnet/userman.c msg_lookup.count = s->lookupname.out.rids->count;
out 530 source4/libnet/userman.c s->openuser.in.rid = s->lookupname.out.rids->ids[0];
out 532 source4/libnet/userman.c s->openuser.out.user_handle = &s->user_handle;
out 683 source4/libnet/userman.c s->queryuser.out.info = talloc(s, union samr_UserInfo *);
out 684 source4/libnet/userman.c if (composite_nomem(s->queryuser.out.info, c)) return NT_STATUS_NO_MEMORY;
out 720 source4/libnet/userman.c c->status = s->openuser.out.result;
out 750 source4/libnet/userman.c c->status = s->queryuser.out.result;
out 758 source4/libnet/userman.c s->info = *(*s->queryuser.out.info);
out 789 source4/libnet/userman.c c->status = s->setuser.out.result;
out 841 source4/libnet/userman.c s->lookupname.out.rids = talloc_zero(s, struct samr_Ids);
out 842 source4/libnet/userman.c s->lookupname.out.types = talloc_zero(s, struct samr_Ids);
out 843 source4/libnet/userman.c if (composite_nomem(s->lookupname.out.rids, c)) return c;
out 844 source4/libnet/userman.c if (composite_nomem(s->lookupname.out.types, c)) return c;
out 34 source4/libnet/userman.h } out;
out 45 source4/libnet/userman.h } out;
out 78 source4/librpc/rpc/dcerpc_connect.c s->tree = s->conn.out.tree;
out 136 source4/librpc/rpc/dcerpc_schannel.c s->r.out.return_credentials = &s->credentials2;
out 181 source4/librpc/rpc/dcerpc_schannel.c s->a.out.negotiate_flags = &s->negotiate_flags;
out 182 source4/librpc/rpc/dcerpc_schannel.c s->a.out.return_credentials = &s->credentials3;
out 211 source4/librpc/rpc/dcerpc_schannel.c if (!creds_client_check(s->creds, s->a.out.return_credentials)) {
out 98 source4/librpc/rpc/dcerpc_smb.c state->received += io->readx.out.nread;
out 126 source4/librpc/rpc/dcerpc_smb.c io->readx.out.data = state->data.data + state->received;
out 181 source4/librpc/rpc/dcerpc_smb.c io->readx.out.data = state->data.data + state->received;
out 236 source4/librpc/rpc/dcerpc_smb.c DATA_BLOB data = state->trans->out.data;
out 244 source4/librpc/rpc/dcerpc_smb.c send_read_request_continue(c, &state->trans->out.data);
out 532 source4/librpc/rpc/dcerpc_smb.c smb->fnum = state->open->ntcreatex.out.file.fnum;
out 97 source4/librpc/rpc/dcerpc_smb2.c io.out.data.data, io.out.data.length)) {
out 228 source4/librpc/rpc/dcerpc_smb2.c DATA_BLOB data = io.out.out;
out 236 source4/librpc/rpc/dcerpc_smb2.c send_read_request_continue(c, &io.out.out);
out 263 source4/librpc/rpc/dcerpc_smb2.c io.in.out = *blob;
out 477 source4/librpc/rpc/dcerpc_smb2.c smb->handle = io.out.file.handle;
out 147 source4/librpc/rpc/dcerpc_util.c s->r.out.entry_handle = &s->handle;
out 172 source4/librpc/rpc/dcerpc_util.c if (s->r.out.result != 0 || *s->r.out.num_towers != 1) {
out 177 source4/librpc/rpc/dcerpc_util.c s->twr_r = s->r.out.towers[0].twr;
out 44 source4/nbt_server/irpc.c r->out.info.stats = &server->stats;
out 98 source4/nbt_server/irpc.c s->req->out.dcname = talloc_strdup(s->req, p);
out 99 source4/nbt_server/irpc.c if (s->req->out.dcname == NULL) {
out 63 source4/nbt_server/register.c io.out.reply_addr, nbt_name_string(tmp_ctx, &iname->name),
out 65 source4/nbt_server/register.c nt_errstr(nbt_rcode_to_ntstatus(io.out.rcode))));
out 100 source4/nbt_server/wins/winsclient.c if (io.out.rcode != 0) {
out 102 source4/nbt_server/wins/winsclient.c io.out.wins_server, nbt_name_string(tmp_ctx, &iname->name),
out 103 source4/nbt_server/wins/winsclient.c nt_errstr(nbt_rcode_to_ntstatus(io.out.rcode))));
out 120 source4/nbt_server/wins/winsclient.c iname->wins_server = talloc_steal(iname, io.out.wins_server);
out 200 source4/nbt_server/wins/winsclient.c if (io.out.rcode != 0) {
out 202 source4/nbt_server/wins/winsclient.c io.out.wins_server, nbt_name_string(tmp_ctx, &iname->name),
out 203 source4/nbt_server/wins/winsclient.c nt_errstr(nbt_rcode_to_ntstatus(io.out.rcode))));
out 218 source4/nbt_server/wins/winsclient.c iname->wins_server = talloc_steal(iname, io.out.wins_server);
out 289 source4/nbt_server/wins/winsserver.c for (j=0; j < s->io.out.num_addresses; j++) {
out 290 source4/nbt_server/wins/winsserver.c if (strcmp(rec->addresses[i]->address, s->io.out.addresses[j]) != 0) continue;
out 368 source4/nbt_server/wins/winsserver.c for (i=0; i < s->io.out.num_addresses; i++) {
out 369 source4/nbt_server/wins/winsserver.c if (strcmp(s->reg_address, s->io.out.addresses[i]) != 0) continue;
out 63 source4/nbt_server/wins/winsserver.h } out;
out 60 source4/nbt_server/wins/winswack.c ZERO_STRUCT(state->query.out);
out 76 source4/nbt_server/wins/winswack.c io->out.num_addresses = state->query.out.num_addrs;
out 77 source4/nbt_server/wins/winswack.c io->out.addresses = state->query.out.reply_addrs;
out 78 source4/nbt_server/wins/winswack.c talloc_steal(mem_ctx, io->out.addresses);
out 80 source4/nbt_server/wins/winswack.c ZERO_STRUCT(io->out);
out 115 source4/nbt_server/wins/winswack.c ZERO_STRUCT(state->query.out);
out 178 source4/nbt_server/wins/winswack.c ZERO_STRUCT(state->release.out);
out 232 source4/nbt_server/wins/winswack.c ZERO_STRUCT(state->release.out);
out 273 source4/nbt_server/wins/winswack.c ZERO_STRUCT(s->req->out);
out 278 source4/nbt_server/wins/winswack.c s->req->out.num_addrs = s->io.out.num_addresses;
out 280 source4/nbt_server/wins/winswack.c s->req->out.addrs = talloc_array(s->msg, struct nbtd_proxy_wins_addr,
out 281 source4/nbt_server/wins/winswack.c s->io.out.num_addresses);
out 282 source4/nbt_server/wins/winswack.c if (!s->req->out.addrs) {
out 283 source4/nbt_server/wins/winswack.c ZERO_STRUCT(s->req->out);
out 287 source4/nbt_server/wins/winswack.c for (i=0; i < s->io.out.num_addresses; i++) {
out 288 source4/nbt_server/wins/winswack.c s->req->out.addrs[i].addr = talloc_steal(s->req->out.addrs, s->io.out.addresses[i]);
out 130 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_DWORD;
out 131 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->value = 0;
out 134 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_DWORD;
out 135 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->value = 0;
out 138 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_DWORD;
out 139 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->value = 0;
out 142 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_DWORD;
out 143 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->value = 0;
out 146 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_DWORD;
out 147 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->value = 0;
out 150 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_DWORD;
out 151 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->value = 3;
out 154 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_DWORD;
out 155 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->value = 0;
out 158 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_SZ;
out 159 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->string = "C:\\PRINTERS";
out 162 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_SZ;
out 163 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->string = SPOOLSS_ARCHITECTURE_NT_X86;
out 166 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_DWORD;
out 167 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->value = 1;
out 184 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_BINARY;
out 185 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->binary = blob;
out 204 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_BINARY;
out 205 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->binary = blob;
out 210 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.type = REG_SZ;
out 211 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.data->string = talloc_asprintf(mem_ctx, "%s.%s",
out 214 source4/ntptr/simple_ldb/ntptr_simple_ldb.c W_ERROR_HAVE_NO_MEMORY(r->out.data->string);
out 262 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.info = info;
out 263 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.count = count;
out 480 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.info = info;
out 590 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.info = info;
out 591 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.count = count;
out 648 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.info = info;
out 649 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.count = count;
out 695 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.info = info;
out 696 source4/ntptr/simple_ldb/ntptr_simple_ldb.c *r->out.count = count;
out 749 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.info = info;
out 790 source4/ntptr/simple_ldb/ntptr_simple_ldb.c r->out.info = info;
out 234 source4/ntvfs/cifs/vfs_cifs.c p->tree = io.out.tree;
out 200 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c unix_to_nt_time(&info->generic.out.create_time, st->st_ctime);
out 201 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c unix_to_nt_time(&info->generic.out.access_time, st->st_atime);
out 202 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c unix_to_nt_time(&info->generic.out.write_time, st->st_mtime);
out 203 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c unix_to_nt_time(&info->generic.out.change_time, st->st_mtime);
out 204 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.alloc_size = st->st_size;
out 205 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.size = st->st_size;
out 206 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.attrib = cifspsx_unix_to_dos_attrib(st->st_mode);
out 207 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.alloc_size = st->st_blksize * st->st_blocks;
out 208 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.nlink = st->st_nlink;
out 209 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.directory = S_ISDIR(st->st_mode) ? 1 : 0;
out 210 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.file_id = cifspsx_file_id(st);
out 212 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.delete_pending = 0;
out 213 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.ea_size = 0;
out 214 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.num_eas = 0;
out 215 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.fname.s = talloc_strdup(req, short_name);
out 216 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.alt_fname.s = talloc_strdup(req, short_name);
out 217 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.compressed_size = 0;
out 218 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.format = 0;
out 219 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.unit_shift = 0;
out 220 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.chunk_shift = 0;
out 221 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.cluster_shift = 0;
out 223 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.access_flags = 0;
out 224 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.position = 0;
out 225 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.mode = 0;
out 226 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.alignment_requirement = 0;
out 227 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.reparse_tag = 0;
out 228 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.num_streams = 0;
out 230 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.num_streams = 1 + (dir?dir->count:0);
out 231 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.streams = talloc_array(req,
out 233 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.num_streams);
out 234 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c if (!info->generic.out.streams) {
out 237 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.streams[0].size = st->st_size;
out 238 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.streams[0].alloc_size = st->st_size;
out 239 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.streams[0].stream_name.s = talloc_strdup(req,"::$DATA");
out 243 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.streams[1+i].size = dir->files[i].st.st_size;
out 244 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.streams[1+i].alloc_size = dir->files[i].st.st_size;
out 245 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c info->generic.out.streams[1+i].stream_name.s = s?s:dir->files[i].name;
out 402 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c ZERO_STRUCT(io->generic.out);
out 404 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c unix_to_nt_time(&io->generic.out.create_time, st.st_ctime);
out 405 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c unix_to_nt_time(&io->generic.out.access_time, st.st_atime);
out 406 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c unix_to_nt_time(&io->generic.out.write_time, st.st_mtime);
out 407 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c unix_to_nt_time(&io->generic.out.change_time, st.st_mtime);
out 408 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c io->generic.out.file.ntvfs = handle;
out 409 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c io->generic.out.alloc_size = st.st_size;
out 410 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c io->generic.out.size = st.st_size;
out 411 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c io->generic.out.attrib = cifspsx_unix_to_dos_attrib(st.st_mode);
out 412 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c io->generic.out.is_directory = S_ISDIR(st.st_mode) ? 1 : 0;
out 512 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c rd->readx.out.data,
out 519 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c rd->readx.out.nread = ret;
out 520 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c rd->readx.out.remaining = 0; /* should fill this in? */
out 521 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c rd->readx.out.compaction_mode = 0;
out 555 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c wr->writex.out.nwritten = ret;
out 556 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c wr->writex.out.remaining = 0; /* should fill this in? */
out 757 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c &fs->generic.out.blocks_free,
out 758 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c &fs->generic.out.blocks_total) == -1) {
out 762 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.block_size = 512;
out 768 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.fs_id = st.st_ino;
out 769 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c unix_to_nt_time(&fs->generic.out.create_time, st.st_ctime);
out 770 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.serial_number = st.st_ino;
out 771 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.fs_attr = 0;
out 772 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.max_file_component_length = 255;
out 773 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.device_type = 0;
out 774 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.device_characteristics = 0;
out 775 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.quota_soft = 0;
out 776 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.quota_hard = 0;
out 777 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.quota_flags = 0;
out 778 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.volume_name = talloc_strdup(req, ntvfs->ctx->config->name);
out 779 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.fs_type = ntvfs->ctx->fs_type;
out 802 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c unix_to_nt_time(&fs->generic.out.create_time, st.st_ctime);
out 803 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.fs_attr =
out 807 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.max_file_component_length = 255;
out 808 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.serial_number = 1;
out 809 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.fs_type = talloc_strdup(req, "NTFS");
out 810 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c fs->generic.out.volume_name = talloc_strdup(req,
out 886 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c io->t2ffirst.out.count = i;
out 887 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c io->t2ffirst.out.handle = search->handle;
out 888 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c io->t2ffirst.out.end_of_search = (i == dir->count) ? 1 : 0;
out 979 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c io->t2fnext.out.count = i - search->current_index;
out 980 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c io->t2fnext.out.end_of_search = (i == dir->count) ? 1 : 0;
out 282 source4/ntvfs/ipc/ipc_rap.c for (r.out.count = 0; r.out.count < r.out.available; r.out.count++) {
out 284 source4/ntvfs/ipc/ipc_rap.c int i = r.out.count;
out 294 source4/ntvfs/ipc/ipc_rap.c (const uint8_t *)r.out.info[i].info0.name,
out 295 source4/ntvfs/ipc/ipc_rap.c sizeof(r.out.info[i].info0.name)));
out 299 source4/ntvfs/ipc/ipc_rap.c (const uint8_t *)r.out.info[i].info1.name,
out 300 source4/ntvfs/ipc/ipc_rap.c sizeof(r.out.info[i].info1.name)));
out 302 source4/ntvfs/ipc/ipc_rap.c NDR_SCALARS, r.out.info[i].info1.pad));
out 304 source4/ntvfs/ipc/ipc_rap.c NDR_SCALARS, r.out.info[i].info1.type));
out 308 source4/ntvfs/ipc/ipc_rap.c r.out.info[i].info1.comment));
out 323 source4/ntvfs/ipc/ipc_rap.c call->status = r.out.status;
out 325 source4/ntvfs/ipc/ipc_rap.c NDR_RETURN(ndr_push_uint16(call->ndr_push_param, NDR_SCALARS, r.out.count));
out 326 source4/ntvfs/ipc/ipc_rap.c NDR_RETURN(ndr_push_uint16(call->ndr_push_param, NDR_SCALARS, r.out.available));
out 364 source4/ntvfs/ipc/ipc_rap.c for (r.out.count = 0; r.out.count < r.out.available; r.out.count++) {
out 366 source4/ntvfs/ipc/ipc_rap.c int i = r.out.count;
out 376 source4/ntvfs/ipc/ipc_rap.c (const uint8_t *)r.out.info[i].info0.name,
out 377 source4/ntvfs/ipc/ipc_rap.c sizeof(r.out.info[i].info0.name)));
out 381 source4/ntvfs/ipc/ipc_rap.c (const uint8_t *)r.out.info[i].info1.name,
out 382 source4/ntvfs/ipc/ipc_rap.c sizeof(r.out.info[i].info1.name)));
out 384 source4/ntvfs/ipc/ipc_rap.c NDR_SCALARS, r.out.info[i].info1.version_major));
out 386 source4/ntvfs/ipc/ipc_rap.c NDR_SCALARS, r.out.info[i].info1.version_minor));
out 388 source4/ntvfs/ipc/ipc_rap.c NDR_SCALARS, r.out.info[i].info1.servertype));
out 392 source4/ntvfs/ipc/ipc_rap.c r.out.info[i].info1.comment));
out 407 source4/ntvfs/ipc/ipc_rap.c call->status = r.out.status;
out 409 source4/ntvfs/ipc/ipc_rap.c NDR_RETURN(ndr_push_uint16(call->ndr_push_param, NDR_SCALARS, r.out.count));
out 410 source4/ntvfs/ipc/ipc_rap.c NDR_RETURN(ndr_push_uint16(call->ndr_push_param, NDR_SCALARS, r.out.available));
out 505 source4/ntvfs/ipc/ipc_rap.c trans->out.setup_count = 0;
out 506 source4/ntvfs/ipc/ipc_rap.c trans->out.setup = NULL;
out 507 source4/ntvfs/ipc/ipc_rap.c trans->out.params = ndr_push_blob(final_param);
out 508 source4/ntvfs/ipc/ipc_rap.c trans->out.data = ndr_push_blob(final_data);
out 45 source4/ntvfs/ipc/rap_server.c r->out.status = 0;
out 46 source4/ntvfs/ipc/rap_server.c r->out.available = 0;
out 47 source4/ntvfs/ipc/rap_server.c r->out.info = NULL;
out 59 source4/ntvfs/ipc/rap_server.c r->out.available = count;
out 60 source4/ntvfs/ipc/rap_server.c r->out.info = talloc_array(mem_ctx,
out 61 source4/ntvfs/ipc/rap_server.c union rap_shareenum_info, r->out.available);
out 63 source4/ntvfs/ipc/rap_server.c for (i = 0, j = 0; i < r->out.available; i++) {
out 68 source4/ntvfs/ipc/rap_server.c strncpy(r->out.info[j].info1.name,
out 70 source4/ntvfs/ipc/rap_server.c sizeof(r->out.info[0].info1.name));
out 71 source4/ntvfs/ipc/rap_server.c r->out.info[i].info1.pad = 0;
out 72 source4/ntvfs/ipc/rap_server.c r->out.info[i].info1.type = dcesrv_common_get_share_type(mem_ctx, NULL, scfg);
out 73 source4/ntvfs/ipc/rap_server.c r->out.info[i].info1.comment = talloc_strdup(mem_ctx, share_string_option(scfg, SHARE_COMMENT, ""));
out 77 source4/ntvfs/ipc/rap_server.c r->out.available = j;
out 86 source4/ntvfs/ipc/rap_server.c r->out.status = 0;
out 87 source4/ntvfs/ipc/rap_server.c r->out.available = 0;
out 281 source4/ntvfs/ipc/vfs_ipc.c ZERO_STRUCT(oi->ntcreatex.out);
out 282 source4/ntvfs/ipc/vfs_ipc.c oi->ntcreatex.out.file.ntvfs= p->handle;
out 283 source4/ntvfs/ipc/vfs_ipc.c oi->ntcreatex.out.ipc_state = p->ipc_state;
out 284 source4/ntvfs/ipc/vfs_ipc.c oi->ntcreatex.out.file_type = FILE_TYPE_MESSAGE_MODE_PIPE;
out 304 source4/ntvfs/ipc/vfs_ipc.c ZERO_STRUCT(oi->openx.out);
out 305 source4/ntvfs/ipc/vfs_ipc.c oi->openx.out.file.ntvfs= p->handle;
out 306 source4/ntvfs/ipc/vfs_ipc.c oi->openx.out.ftype = 2;
out 307 source4/ntvfs/ipc/vfs_ipc.c oi->openx.out.devstate = p->ipc_state;
out 324 source4/ntvfs/ipc/vfs_ipc.c ZERO_STRUCT(oi->smb2.out);
out 325 source4/ntvfs/ipc/vfs_ipc.c oi->smb2.out.file.ntvfs = p->handle;
out 326 source4/ntvfs/ipc/vfs_ipc.c oi->smb2.out.oplock_level = oi->smb2.in.oplock_level;
out 327 source4/ntvfs/ipc/vfs_ipc.c oi->smb2.out.create_action = NTCREATEX_ACTION_EXISTED;
out 328 source4/ntvfs/ipc/vfs_ipc.c oi->smb2.out.create_time = 0;
out 329 source4/ntvfs/ipc/vfs_ipc.c oi->smb2.out.access_time = 0;
out 330 source4/ntvfs/ipc/vfs_ipc.c oi->smb2.out.write_time = 0;
out 331 source4/ntvfs/ipc/vfs_ipc.c oi->smb2.out.change_time = 0;
out 332 source4/ntvfs/ipc/vfs_ipc.c oi->smb2.out.alloc_size = 4096;
out 333 source4/ntvfs/ipc/vfs_ipc.c oi->smb2.out.size = 0;
out 334 source4/ntvfs/ipc/vfs_ipc.c oi->smb2.out.file_attr = FILE_ATTRIBUTE_NORMAL;
out 335 source4/ntvfs/ipc/vfs_ipc.c oi->smb2.out.reserved2 = 0;
out 406 source4/ntvfs/ipc/vfs_ipc.c if (out->length < blob->length) {
out 407 source4/ntvfs/ipc/vfs_ipc.c blob->length = out->length;
out 409 source4/ntvfs/ipc/vfs_ipc.c memcpy(blob->data, out->data, blob->length);
out 435 source4/ntvfs/ipc/vfs_ipc.c data.data = rd->readx.out.data;
out 447 source4/ntvfs/ipc/vfs_ipc.c rd->readx.out.remaining = 0;
out 448 source4/ntvfs/ipc/vfs_ipc.c rd->readx.out.compaction_mode = 0;
out 449 source4/ntvfs/ipc/vfs_ipc.c rd->readx.out.nread = data.length;
out 482 source4/ntvfs/ipc/vfs_ipc.c wr->writex.out.nwritten = data.length;
out 483 source4/ntvfs/ipc/vfs_ipc.c wr->writex.out.remaining = 0;
out 621 source4/ntvfs/ipc/vfs_ipc.c ZERO_STRUCT(info->generic.out);
out 622 source4/ntvfs/ipc/vfs_ipc.c info->generic.out.attrib = FILE_ATTRIBUTE_NORMAL;
out 623 source4/ntvfs/ipc/vfs_ipc.c info->generic.out.fname.s = strrchr(p->pipe_name, '\\');
out 624 source4/ntvfs/ipc/vfs_ipc.c info->generic.out.alloc_size = 4096;
out 625 source4/ntvfs/ipc/vfs_ipc.c info->generic.out.nlink = 1;
out 627 source4/ntvfs/ipc/vfs_ipc.c info->generic.out.delete_pending = 1;
out 703 source4/ntvfs/ipc/vfs_ipc.c if (out->length > blob->length) {
out 707 source4/ntvfs/ipc/vfs_ipc.c if (out->length < blob->length) {
out 708 source4/ntvfs/ipc/vfs_ipc.c blob->length = out->length;
out 710 source4/ntvfs/ipc/vfs_ipc.c memcpy(blob->data, out->data, blob->length);
out 739 source4/ntvfs/ipc/vfs_ipc.c trans->out.data = data_blob_talloc(req, NULL, trans->in.max_data);
out 740 source4/ntvfs/ipc/vfs_ipc.c if (!trans->out.data.data) {
out 758 source4/ntvfs/ipc/vfs_ipc.c status = dcesrv_output(p->dce_conn, &trans->out.data, ipc_trans_dcesrv_output);
out 763 source4/ntvfs/ipc/vfs_ipc.c trans->out.setup_count = 0;
out 764 source4/ntvfs/ipc/vfs_ipc.c trans->out.setup = NULL;
out 765 source4/ntvfs/ipc/vfs_ipc.c trans->out.params = data_blob(NULL, 0);
out 792 source4/ntvfs/ipc/vfs_ipc.c trans->out.setup_count = 0;
out 793 source4/ntvfs/ipc/vfs_ipc.c trans->out.setup = NULL;
out 794 source4/ntvfs/ipc/vfs_ipc.c trans->out.params = data_blob(NULL, 0);
out 795 source4/ntvfs/ipc/vfs_ipc.c trans->out.data = data_blob(NULL, 0);
out 849 source4/ntvfs/ipc/vfs_ipc.c io->smb2.out.out = data_blob_talloc(req, NULL, io->smb2.in.max_response_size);
out 850 source4/ntvfs/ipc/vfs_ipc.c NT_STATUS_HAVE_NO_MEMORY(io->smb2.out.out.data);
out 856 source4/ntvfs/ipc/vfs_ipc.c status = dcesrv_input(p->dce_conn, &io->smb2.in.out);
out 864 source4/ntvfs/ipc/vfs_ipc.c status = dcesrv_output(p->dce_conn, &io->smb2.out.out, ipc_trans_dcesrv_output);
out 867 source4/ntvfs/ipc/vfs_ipc.c io->smb2.out._pad = 0;
out 868 source4/ntvfs/ipc/vfs_ipc.c io->smb2.out.function = io->smb2.in.function;
out 869 source4/ntvfs/ipc/vfs_ipc.c io->smb2.out.unknown2 = 0;
out 870 source4/ntvfs/ipc/vfs_ipc.c io->smb2.out.unknown3 = 0;
out 871 source4/ntvfs/ipc/vfs_ipc.c io->smb2.out.in = io->smb2.in.out;
out 312 source4/ntvfs/nbench/vfs_nbench.c ZERO_STRUCT(io->ntcreatex.out);
out 318 source4/ntvfs/nbench/vfs_nbench.c nbench_ntvfs_handle_string(req, io->ntcreatex.out.file.ntvfs),
out 450 source4/ntvfs/nbench/vfs_nbench.c ZERO_STRUCT(rd->readx.out);
out 456 source4/ntvfs/nbench/vfs_nbench.c rd->readx.out.nread,
out 488 source4/ntvfs/nbench/vfs_nbench.c ZERO_STRUCT(wr->writex.out);
out 494 source4/ntvfs/nbench/vfs_nbench.c wr->writex.out.nwritten,
out 500 source4/ntvfs/nbench/vfs_nbench.c ZERO_STRUCT(wr->write.out);
out 506 source4/ntvfs/nbench/vfs_nbench.c wr->write.out.nwritten,
out 823 source4/ntvfs/nbench/vfs_nbench.c ZERO_STRUCT(io->t2ffirst.out);
out 829 source4/ntvfs/nbench/vfs_nbench.c io->t2ffirst.out.count,
out 159 source4/ntvfs/ntvfs_generic.c io->openold.out.file.ntvfs = io2->generic.out.file.ntvfs;
out 160 source4/ntvfs/ntvfs_generic.c io->openold.out.attrib = io2->generic.out.attrib;
out 161 source4/ntvfs/ntvfs_generic.c io->openold.out.write_time = nt_time_to_unix(io2->generic.out.write_time);
out 162 source4/ntvfs/ntvfs_generic.c io->openold.out.size = io2->generic.out.size;
out 163 source4/ntvfs/ntvfs_generic.c io->openold.out.rmode = io->openold.in.open_mode;
out 167 source4/ntvfs/ntvfs_generic.c io->openx.out.file.ntvfs = io2->generic.out.file.ntvfs;
out 168 source4/ntvfs/ntvfs_generic.c io->openx.out.attrib = io2->generic.out.attrib;
out 169 source4/ntvfs/ntvfs_generic.c io->openx.out.write_time = nt_time_to_unix(io2->generic.out.write_time);
out 170 source4/ntvfs/ntvfs_generic.c io->openx.out.size = io2->generic.out.size;
out 171 source4/ntvfs/ntvfs_generic.c io->openx.out.access = (io->openx.in.open_mode & OPENX_MODE_ACCESS_MASK);
out 172 source4/ntvfs/ntvfs_generic.c io->openx.out.ftype = 0;
out 173 source4/ntvfs/ntvfs_generic.c io->openx.out.devstate = 0;
out 174 source4/ntvfs/ntvfs_generic.c io->openx.out.action = io2->generic.out.create_action;
out 175 source4/ntvfs/ntvfs_generic.c io->openx.out.unique_fid = 0;
out 176 source4/ntvfs/ntvfs_generic.c io->openx.out.access_mask = SEC_STD_ALL;
out 177 source4/ntvfs/ntvfs_generic.c io->openx.out.unknown = 0;
out 181 source4/ntvfs/ntvfs_generic.c if (io2->generic.out.create_action == NTCREATEX_ACTION_CREATED) {
out 187 source4/ntvfs/ntvfs_generic.c io->t2open.out.file.ntvfs = io2->generic.out.file.ntvfs;
out 188 source4/ntvfs/ntvfs_generic.c io->t2open.out.attrib = io2->generic.out.attrib;
out 189 source4/ntvfs/ntvfs_generic.c io->t2open.out.write_time = nt_time_to_unix(io2->generic.out.write_time);
out 190 source4/ntvfs/ntvfs_generic.c io->t2open.out.size = io2->generic.out.size;
out 191 source4/ntvfs/ntvfs_generic.c io->t2open.out.access = io->t2open.in.open_mode;
out 192 source4/ntvfs/ntvfs_generic.c io->t2open.out.ftype = 0;
out 193 source4/ntvfs/ntvfs_generic.c io->t2open.out.devstate = 0;
out 194 source4/ntvfs/ntvfs_generic.c io->t2open.out.action = io2->generic.out.create_action;
out 195 source4/ntvfs/ntvfs_generic.c io->t2open.out.file_id = 0;
out 200 source4/ntvfs/ntvfs_generic.c io->mknew.out.file.ntvfs= io2->generic.out.file.ntvfs;
out 205 source4/ntvfs/ntvfs_generic.c io->ctemp.out.file.ntvfs= io2->generic.out.file.ntvfs;
out 206 source4/ntvfs/ntvfs_generic.c io->ctemp.out.name = talloc_strdup(req, io2->generic.in.fname +
out 208 source4/ntvfs/ntvfs_generic.c NT_STATUS_HAVE_NO_MEMORY(io->ctemp.out.name);
out 212 source4/ntvfs/ntvfs_generic.c ZERO_STRUCT(io->smb2.out);
out 213 source4/ntvfs/ntvfs_generic.c io->smb2.out.file.ntvfs = io2->generic.out.file.ntvfs;
out 214 source4/ntvfs/ntvfs_generic.c switch (io2->generic.out.oplock_level) {
out 216 source4/ntvfs/ntvfs_generic.c io->smb2.out.oplock_level = SMB2_OPLOCK_LEVEL_BATCH;
out 219 source4/ntvfs/ntvfs_generic.c io->smb2.out.oplock_level = SMB2_OPLOCK_LEVEL_EXCLUSIVE;
out 222 source4/ntvfs/ntvfs_generic.c io->smb2.out.oplock_level = SMB2_OPLOCK_LEVEL_II;
out 225 source4/ntvfs/ntvfs_generic.c io->smb2.out.oplock_level = SMB2_OPLOCK_LEVEL_NONE;
out 228 source4/ntvfs/ntvfs_generic.c io->smb2.out.reserved = 0;
out 229 source4/ntvfs/ntvfs_generic.c io->smb2.out.create_action = io2->generic.out.create_action;
out 230 source4/ntvfs/ntvfs_generic.c io->smb2.out.create_time = io2->generic.out.create_time;
out 231 source4/ntvfs/ntvfs_generic.c io->smb2.out.access_time = io2->generic.out.access_time;
out 232 source4/ntvfs/ntvfs_generic.c io->smb2.out.write_time = io2->generic.out.write_time;
out 233 source4/ntvfs/ntvfs_generic.c io->smb2.out.change_time = io2->generic.out.change_time;
out 234 source4/ntvfs/ntvfs_generic.c io->smb2.out.alloc_size = io2->generic.out.alloc_size;
out 235 source4/ntvfs/ntvfs_generic.c io->smb2.out.size = io2->generic.out.size;
out 236 source4/ntvfs/ntvfs_generic.c io->smb2.out.file_attr = io2->generic.out.attrib;
out 237 source4/ntvfs/ntvfs_generic.c io->smb2.out.reserved2 = 0;
out 238 source4/ntvfs/ntvfs_generic.c io->smb2.out.maximal_access = io2->generic.out.maximal_access;
out 254 source4/ntvfs/ntvfs_generic.c sf->generic.in.file.ntvfs = io2->generic.out.file.ntvfs;
out 265 source4/ntvfs/ntvfs_generic.c sf->generic.in.file.ntvfs = io2->generic.out.file.ntvfs;
out 269 source4/ntvfs/ntvfs_generic.c io->openx.out.size = io->openx.in.size;
out 603 source4/ntvfs/ntvfs_generic.c if (fs2->generic.out.blocks_total * (double)fs2->generic.out.block_size < bpunit * 512 * 65535.0) {
out 608 source4/ntvfs/ntvfs_generic.c fs->dskattr.out.blocks_per_unit = bpunit;
out 609 source4/ntvfs/ntvfs_generic.c fs->dskattr.out.block_size = 512;
out 610 source4/ntvfs/ntvfs_generic.c fs->dskattr.out.units_total =
out 611 source4/ntvfs/ntvfs_generic.c (fs2->generic.out.blocks_total * (double)fs2->generic.out.block_size) / (bpunit * 512);
out 612 source4/ntvfs/ntvfs_generic.c fs->dskattr.out.units_free =
out 613 source4/ntvfs/ntvfs_generic.c (fs2->generic.out.blocks_free * (double)fs2->generic.out.block_size) / (bpunit * 512);
out 617 source4/ntvfs/ntvfs_generic.c fs->dskattr.out.blocks_per_unit = 64;
out 618 source4/ntvfs/ntvfs_generic.c fs->dskattr.out.units_total = 0xFFFF;
out 619 source4/ntvfs/ntvfs_generic.c fs->dskattr.out.units_free = 0xFFFF;
out 625 source4/ntvfs/ntvfs_generic.c fs->allocation.out.fs_id = fs2->generic.out.fs_id;
out 626 source4/ntvfs/ntvfs_generic.c fs->allocation.out.total_alloc_units = fs2->generic.out.blocks_total;
out 627 source4/ntvfs/ntvfs_generic.c fs->allocation.out.avail_alloc_units = fs2->generic.out.blocks_free;
out 628 source4/ntvfs/ntvfs_generic.c fs->allocation.out.sectors_per_unit = 1;
out 629 source4/ntvfs/ntvfs_generic.c fs->allocation.out.bytes_per_sector = fs2->generic.out.block_size;
out 633 source4/ntvfs/ntvfs_generic.c fs->volume.out.serial_number = fs2->generic.out.serial_number;
out 634 source4/ntvfs/ntvfs_generic.c fs->volume.out.volume_name.s = fs2->generic.out.volume_name;
out 639 source4/ntvfs/ntvfs_generic.c fs->volume_info.out.create_time = fs2->generic.out.create_time;
out 640 source4/ntvfs/ntvfs_generic.c fs->volume_info.out.serial_number = fs2->generic.out.serial_number;
out 641 source4/ntvfs/ntvfs_generic.c fs->volume_info.out.volume_name.s = fs2->generic.out.volume_name;
out 646 source4/ntvfs/ntvfs_generic.c fs->size_info.out.total_alloc_units = fs2->generic.out.blocks_total;
out 647 source4/ntvfs/ntvfs_generic.c fs->size_info.out.avail_alloc_units = fs2->generic.out.blocks_free;
out 648 source4/ntvfs/ntvfs_generic.c fs->size_info.out.sectors_per_unit = 1;
out 649 source4/ntvfs/ntvfs_generic.c fs->size_info.out.bytes_per_sector = fs2->generic.out.block_size;
out 654 source4/ntvfs/ntvfs_generic.c fs->device_info.out.device_type = fs2->generic.out.device_type;
out 655 source4/ntvfs/ntvfs_generic.c fs->device_info.out.characteristics = fs2->generic.out.device_characteristics;
out 660 source4/ntvfs/ntvfs_generic.c fs->attribute_info.out.fs_attr = fs2->generic.out.fs_attr;
out 661 source4/ntvfs/ntvfs_generic.c fs->attribute_info.out.max_file_component_length = fs2->generic.out.max_file_component_length;
out 662 source4/ntvfs/ntvfs_generic.c fs->attribute_info.out.fs_type.s = fs2->generic.out.fs_type;
out 666 source4/ntvfs/ntvfs_generic.c ZERO_STRUCT(fs->quota_information.out.unknown);
out 667 source4/ntvfs/ntvfs_generic.c fs->quota_information.out.quota_soft = fs2->generic.out.quota_soft;
out 668 source4/ntvfs/ntvfs_generic.c fs->quota_information.out.quota_hard = fs2->generic.out.quota_hard;
out 669 source4/ntvfs/ntvfs_generic.c fs->quota_information.out.quota_flags = fs2->generic.out.quota_flags;
out 673 source4/ntvfs/ntvfs_generic.c fs->full_size_information.out.total_alloc_units = fs2->generic.out.blocks_total;
out 674 source4/ntvfs/ntvfs_generic.c fs->full_size_information.out.call_avail_alloc_units = fs2->generic.out.blocks_free;
out 675 source4/ntvfs/ntvfs_generic.c fs->full_size_information.out.actual_avail_alloc_units = fs2->generic.out.blocks_free;
out 676 source4/ntvfs/ntvfs_generic.c fs->full_size_information.out.sectors_per_unit = 1;
out 677 source4/ntvfs/ntvfs_generic.c fs->full_size_information.out.bytes_per_sector = fs2->generic.out.block_size;
out 681 source4/ntvfs/ntvfs_generic.c fs->objectid_information.out.guid = fs2->generic.out.guid;
out 682 source4/ntvfs/ntvfs_generic.c ZERO_STRUCT(fs->objectid_information.out.unknown);
out 704 source4/ntvfs/ntvfs_generic.c info->getattr.out.attrib = info2->generic.out.attrib & 0xff;
out 705 source4/ntvfs/ntvfs_generic.c info->getattr.out.size = info2->generic.out.size;
out 706 source4/ntvfs/ntvfs_generic.c info->getattr.out.write_time = nt_time_to_unix(info2->generic.out.write_time);
out 710 source4/ntvfs/ntvfs_generic.c info->getattre.out.attrib = info2->generic.out.attrib;
out 711 source4/ntvfs/ntvfs_generic.c info->getattre.out.size = info2->generic.out.size;
out 712 source4/ntvfs/ntvfs_generic.c info->getattre.out.write_time = nt_time_to_unix(info2->generic.out.write_time);
out 713 source4/ntvfs/ntvfs_generic.c info->getattre.out.create_time = nt_time_to_unix(info2->generic.out.create_time);
out 714 source4/ntvfs/ntvfs_generic.c info->getattre.out.access_time = nt_time_to_unix(info2->generic.out.access_time);
out 715 source4/ntvfs/ntvfs_generic.c info->getattre.out.alloc_size = info2->generic.out.alloc_size;
out 719 source4/ntvfs/ntvfs_generic.c info->network_open_information.out.create_time = info2->generic.out.create_time;
out 720 source4/ntvfs/ntvfs_generic.c info->network_open_information.out.access_time = info2->generic.out.access_time;
out 721 source4/ntvfs/ntvfs_generic.c info->network_open_information.out.write_time = info2->generic.out.write_time;
out 722 source4/ntvfs/ntvfs_generic.c info->network_open_information.out.change_time = info2->generic.out.change_time;
out 723 source4/ntvfs/ntvfs_generic.c info->network_open_information.out.alloc_size = info2->generic.out.alloc_size;
out 724 source4/ntvfs/ntvfs_generic.c info->network_open_information.out.size = info2->generic.out.size;
out 725 source4/ntvfs/ntvfs_generic.c info->network_open_information.out.attrib = info2->generic.out.attrib;
out 730 source4/ntvfs/ntvfs_generic.c info->all_info.out.create_time = info2->generic.out.create_time;
out 731 source4/ntvfs/ntvfs_generic.c info->all_info.out.access_time = info2->generic.out.access_time;
out 732 source4/ntvfs/ntvfs_generic.c info->all_info.out.write_time = info2->generic.out.write_time;
out 733 source4/ntvfs/ntvfs_generic.c info->all_info.out.change_time = info2->generic.out.change_time;
out 734 source4/ntvfs/ntvfs_generic.c info->all_info.out.attrib = info2->generic.out.attrib;
out 735 source4/ntvfs/ntvfs_generic.c info->all_info.out.alloc_size = info2->generic.out.alloc_size;
out 736 source4/ntvfs/ntvfs_generic.c info->all_info.out.size = info2->generic.out.size;
out 737 source4/ntvfs/ntvfs_generic.c info->all_info.out.nlink = info2->generic.out.nlink;
out 738 source4/ntvfs/ntvfs_generic.c info->all_info.out.delete_pending = info2->generic.out.delete_pending;
out 739 source4/ntvfs/ntvfs_generic.c info->all_info.out.directory = info2->generic.out.directory;
out 740 source4/ntvfs/ntvfs_generic.c info->all_info.out.ea_size = info2->generic.out.ea_size;
out 741 source4/ntvfs/ntvfs_generic.c info->all_info.out.fname.s = info2->generic.out.fname.s;
out 742 source4/ntvfs/ntvfs_generic.c info->all_info.out.fname.private_length = info2->generic.out.fname.private_length;
out 747 source4/ntvfs/ntvfs_generic.c info->basic_info.out.create_time = info2->generic.out.create_time;
out 748 source4/ntvfs/ntvfs_generic.c info->basic_info.out.access_time = info2->generic.out.access_time;
out 749 source4/ntvfs/ntvfs_generic.c info->basic_info.out.write_time = info2->generic.out.write_time;
out 750 source4/ntvfs/ntvfs_generic.c info->basic_info.out.change_time = info2->generic.out.change_time;
out 751 source4/ntvfs/ntvfs_generic.c info->basic_info.out.attrib = info2->generic.out.attrib;
out 755 source4/ntvfs/ntvfs_generic.c info->standard.out.create_time = nt_time_to_unix(info2->generic.out.create_time);
out 756 source4/ntvfs/ntvfs_generic.c info->standard.out.access_time = nt_time_to_unix(info2->generic.out.access_time);
out 757 source4/ntvfs/ntvfs_generic.c info->standard.out.write_time = nt_time_to_unix(info2->generic.out.write_time);
out 758 source4/ntvfs/ntvfs_generic.c info->standard.out.size = info2->generic.out.size;
out 759 source4/ntvfs/ntvfs_generic.c info->standard.out.alloc_size = info2->generic.out.alloc_size;
out 760 source4/ntvfs/ntvfs_generic.c info->standard.out.attrib = info2->generic.out.attrib;
out 764 source4/ntvfs/ntvfs_generic.c info->ea_size.out.create_time = nt_time_to_unix(info2->generic.out.create_time);
out 765 source4/ntvfs/ntvfs_generic.c info->ea_size.out.access_time = nt_time_to_unix(info2->generic.out.access_time);
out 766 source4/ntvfs/ntvfs_generic.c info->ea_size.out.write_time = nt_time_to_unix(info2->generic.out.write_time);
out 767 source4/ntvfs/ntvfs_generic.c info->ea_size.out.size = info2->generic.out.size;
out 768 source4/ntvfs/ntvfs_generic.c info->ea_size.out.alloc_size = info2->generic.out.alloc_size;
out 769 source4/ntvfs/ntvfs_generic.c info->ea_size.out.attrib = info2->generic.out.attrib;
out 770 source4/ntvfs/ntvfs_generic.c info->ea_size.out.ea_size = info2->generic.out.ea_size;
out 775 source4/ntvfs/ntvfs_generic.c info->standard_info.out.alloc_size = info2->generic.out.alloc_size;
out 776 source4/ntvfs/ntvfs_generic.c info->standard_info.out.size = info2->generic.out.size;
out 777 source4/ntvfs/ntvfs_generic.c info->standard_info.out.nlink = info2->generic.out.nlink;
out 778 source4/ntvfs/ntvfs_generic.c info->standard_info.out.delete_pending = info2->generic.out.delete_pending;
out 779 source4/ntvfs/ntvfs_generic.c info->standard_info.out.directory = info2->generic.out.directory;
out 783 source4/ntvfs/ntvfs_generic.c info->internal_information.out.file_id = info2->generic.out.file_id;
out 788 source4/ntvfs/ntvfs_generic.c info->ea_info.out.ea_size = info2->generic.out.ea_size;
out 792 source4/ntvfs/ntvfs_generic.c info->attribute_tag_information.out.attrib = info2->generic.out.attrib;
out 793 source4/ntvfs/ntvfs_generic.c info->attribute_tag_information.out.reparse_tag = info2->generic.out.reparse_tag;
out 798 source4/ntvfs/ntvfs_generic.c info->stream_info.out.num_streams = info2->generic.out.num_streams;
out 799 source4/ntvfs/ntvfs_generic.c if (info->stream_info.out.num_streams > 0) {
out 800 source4/ntvfs/ntvfs_generic.c info->stream_info.out.streams =
out 803 source4/ntvfs/ntvfs_generic.c info->stream_info.out.num_streams);
out 804 source4/ntvfs/ntvfs_generic.c if (!info->stream_info.out.streams) {
out 806 source4/ntvfs/ntvfs_generic.c info->stream_info.out.num_streams));
out 809 source4/ntvfs/ntvfs_generic.c for (i=0; i < info->stream_info.out.num_streams; i++) {
out 810 source4/ntvfs/ntvfs_generic.c info->stream_info.out.streams[i] = info2->generic.out.streams[i];
out 811 source4/ntvfs/ntvfs_generic.c info->stream_info.out.streams[i].stream_name.s =
out 812 source4/ntvfs/ntvfs_generic.c talloc_strdup(info->stream_info.out.streams,
out 813 source4/ntvfs/ntvfs_generic.c info2->generic.out.streams[i].stream_name.s);
out 814 source4/ntvfs/ntvfs_generic.c if (!info->stream_info.out.streams[i].stream_name.s) {
out 824 source4/ntvfs/ntvfs_generic.c info->name_info.out.fname.s = talloc_strdup(mem_ctx, info2->generic.out.fname.s);
out 825 source4/ntvfs/ntvfs_generic.c NT_STATUS_HAVE_NO_MEMORY(info->name_info.out.fname.s);
out 826 source4/ntvfs/ntvfs_generic.c info->name_info.out.fname.private_length = info2->generic.out.fname.private_length;
out 831 source4/ntvfs/ntvfs_generic.c info->alt_name_info.out.fname.s = talloc_strdup(mem_ctx, info2->generic.out.alt_fname.s);
out 832 source4/ntvfs/ntvfs_generic.c NT_STATUS_HAVE_NO_MEMORY(info->alt_name_info.out.fname.s);
out 833 source4/ntvfs/ntvfs_generic.c info->alt_name_info.out.fname.private_length = info2->generic.out.alt_fname.private_length;
out 837 source4/ntvfs/ntvfs_generic.c info->position_information.out.position = info2->generic.out.position;
out 841 source4/ntvfs/ntvfs_generic.c info->all_eas.out.num_eas = info2->generic.out.num_eas;
out 842 source4/ntvfs/ntvfs_generic.c if (info->all_eas.out.num_eas > 0) {
out 843 source4/ntvfs/ntvfs_generic.c info->all_eas.out.eas = talloc_array(mem_ctx,
out 845 source4/ntvfs/ntvfs_generic.c info->all_eas.out.num_eas);
out 846 source4/ntvfs/ntvfs_generic.c if (!info->all_eas.out.eas) {
out 848 source4/ntvfs/ntvfs_generic.c info->all_eas.out.num_eas));
out 851 source4/ntvfs/ntvfs_generic.c for (i = 0; i < info->all_eas.out.num_eas; i++) {
out 852 source4/ntvfs/ntvfs_generic.c info->all_eas.out.eas[i] = info2->generic.out.eas[i];
out 853 source4/ntvfs/ntvfs_generic.c info->all_eas.out.eas[i].name.s =
out 854 source4/ntvfs/ntvfs_generic.c talloc_strdup(info->all_eas.out.eas,
out 855 source4/ntvfs/ntvfs_generic.c info2->generic.out.eas[i].name.s);
out 856 source4/ntvfs/ntvfs_generic.c if (!info->all_eas.out.eas[i].name.s) {
out 860 source4/ntvfs/ntvfs_generic.c info->all_eas.out.eas[i].value.data =
out 861 source4/ntvfs/ntvfs_generic.c (uint8_t *)talloc_memdup(info->all_eas.out.eas,
out 862 source4/ntvfs/ntvfs_generic.c info2->generic.out.eas[i].value.data,
out 863 source4/ntvfs/ntvfs_generic.c info2->generic.out.eas[i].value.length);
out 864 source4/ntvfs/ntvfs_generic.c if (!info->all_eas.out.eas[i].value.data) {
out 877 source4/ntvfs/ntvfs_generic.c info->compression_info.out.compressed_size = info2->generic.out.compressed_size;
out 878 source4/ntvfs/ntvfs_generic.c info->compression_info.out.format = info2->generic.out.format;
out 879 source4/ntvfs/ntvfs_generic.c info->compression_info.out.unit_shift = info2->generic.out.unit_shift;
out 880 source4/ntvfs/ntvfs_generic.c info->compression_info.out.chunk_shift = info2->generic.out.chunk_shift;
out 881 source4/ntvfs/ntvfs_generic.c info->compression_info.out.cluster_shift = info2->generic.out.cluster_shift;
out 885 source4/ntvfs/ntvfs_generic.c info->access_information.out.access_flags = info2->generic.out.access_flags;
out 889 source4/ntvfs/ntvfs_generic.c info->mode_information.out.mode = info2->generic.out.mode;
out 893 source4/ntvfs/ntvfs_generic.c info->alignment_information.out.alignment_requirement =
out 894 source4/ntvfs/ntvfs_generic.c info2->generic.out.alignment_requirement;
out 898 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.end_of_file = info2->generic.out.end_of_file;
out 899 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.num_bytes = info2->generic.out.size;
out 900 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.status_change_time = info2->generic.out.change_time;
out 901 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.access_time = info2->generic.out.access_time;
out 902 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.change_time = info2->generic.out.change_time;
out 903 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.uid = info2->generic.out.uid;
out 904 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.gid = info2->generic.out.gid;
out 905 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.file_type = info2->generic.out.file_type;
out 906 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.dev_major = info2->generic.out.device;
out 907 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.dev_minor = info2->generic.out.device;
out 908 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.unique_id = info2->generic.out.inode;
out 909 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.permissions = info2->generic.out.permissions;
out 910 source4/ntvfs/ntvfs_generic.c info->unix_basic_info.out.nlink = info2->generic.out.nlink;
out 914 source4/ntvfs/ntvfs_generic.c info->unix_link_info.out.link_dest = info2->generic.out.link_dest;
out 1089 source4/ntvfs/ntvfs_generic.c lck->smb2.out.reserved = 0;
out 1104 source4/ntvfs/ntvfs_generic.c lck->smb2_break.out.oplock_level= lck->smb2_break.in.oplock_level;
out 1105 source4/ntvfs/ntvfs_generic.c lck->smb2_break.out.reserved = lck->smb2_break.in.reserved;
out 1106 source4/ntvfs/ntvfs_generic.c lck->smb2_break.out.reserved2 = lck->smb2_break.in.reserved2;
out 1107 source4/ntvfs/ntvfs_generic.c lck->smb2_break.out.file = lck->smb2_break.in.file;
out 1139 source4/ntvfs/ntvfs_generic.c wr->write.out.nwritten = wr2->generic.out.nwritten;
out 1143 source4/ntvfs/ntvfs_generic.c wr->writeunlock.out.nwritten = wr2->generic.out.nwritten;
out 1165 source4/ntvfs/ntvfs_generic.c wr->writeclose.out.nwritten = wr2->generic.out.nwritten;
out 1189 source4/ntvfs/ntvfs_generic.c wr->smb2.out._pad = 0;
out 1190 source4/ntvfs/ntvfs_generic.c wr->smb2.out.nwritten = wr2->generic.out.nwritten;
out 1191 source4/ntvfs/ntvfs_generic.c wr->smb2.out.unknown1 = 0;
out 1295 source4/ntvfs/ntvfs_generic.c rd->read.out.nread = rd2->generic.out.nread;
out 1298 source4/ntvfs/ntvfs_generic.c rd->readbraw.out.nread = rd2->generic.out.nread;
out 1301 source4/ntvfs/ntvfs_generic.c rd->lockread.out.nread = rd2->generic.out.nread;
out 1304 source4/ntvfs/ntvfs_generic.c rd->smb2.out.data.length= rd2->generic.out.nread;
out 1305 source4/ntvfs/ntvfs_generic.c rd->smb2.out.remaining = 0;
out 1306 source4/ntvfs/ntvfs_generic.c rd->smb2.out.reserved = 0;
out 1352 source4/ntvfs/ntvfs_generic.c rd2->readx.out.data = rd->read.out.data;
out 1362 source4/ntvfs/ntvfs_generic.c rd2->readx.out.data = rd->readbraw.out.data;
out 1388 source4/ntvfs/ntvfs_generic.c rd2->readx.out.data = rd->lockread.out.data;
out 1401 source4/ntvfs/ntvfs_generic.c rd2->readx.out.data = rd->smb2.out.data.data;
out 1424 source4/ntvfs/ntvfs_generic.c cl->smb2.out.flags = cl2->generic.out.flags;
out 1425 source4/ntvfs/ntvfs_generic.c cl->smb2.out._pad = 0;
out 1426 source4/ntvfs/ntvfs_generic.c cl->smb2.out.create_time = cl2->generic.out.create_time;
out 1427 source4/ntvfs/ntvfs_generic.c cl->smb2.out.access_time = cl2->generic.out.access_time;
out 1428 source4/ntvfs/ntvfs_generic.c cl->smb2.out.write_time = cl2->generic.out.write_time;
out 1429 source4/ntvfs/ntvfs_generic.c cl->smb2.out.change_time = cl2->generic.out.change_time;
out 1430 source4/ntvfs/ntvfs_generic.c cl->smb2.out.alloc_size = cl2->generic.out.alloc_size;
out 1431 source4/ntvfs/ntvfs_generic.c cl->smb2.out.size = cl2->generic.out.size;
out 1432 source4/ntvfs/ntvfs_generic.c cl->smb2.out.file_attr = cl2->generic.out.file_attr;
out 1504 source4/ntvfs/ntvfs_generic.c if (nt2->nttrans.out.num_changes == 0) {
out 1507 source4/ntvfs/ntvfs_generic.c nt->smb2.out.num_changes = nt2->nttrans.out.num_changes;
out 1508 source4/ntvfs/ntvfs_generic.c nt->smb2.out.changes = talloc_steal(req, nt2->nttrans.out.changes);
out 426 source4/ntvfs/posix/pvfs_acl.c info->query_secdesc.out.sd = sd;
out 61 source4/ntvfs/posix/pvfs_aio.c rd->readx.out.nread = ret;
out 62 source4/ntvfs/posix/pvfs_aio.c rd->readx.out.remaining = 0xFFFF;
out 63 source4/ntvfs/posix/pvfs_aio.c rd->readx.out.compaction_mode = 0;
out 84 source4/ntvfs/posix/pvfs_aio.c io_prep_pread(&iocb, f->handle->fd, rd->readx.out.data,
out 126 source4/ntvfs/posix/pvfs_aio.c wr->writex.out.nwritten = ret;
out 127 source4/ntvfs/posix/pvfs_aio.c wr->writex.out.remaining = 0;
out 58 source4/ntvfs/posix/pvfs_flush.c io->smb2.out.reserved = 0;
out 125 source4/ntvfs/posix/pvfs_fsinfo.c fs->dskattr.out.blocks_per_unit = bpunit;
out 126 source4/ntvfs/posix/pvfs_fsinfo.c fs->dskattr.out.block_size = block_size;
out 127 source4/ntvfs/posix/pvfs_fsinfo.c fs->dskattr.out.units_total = (blocks_total * (double)block_size) / (bpunit * 512);
out 128 source4/ntvfs/posix/pvfs_fsinfo.c fs->dskattr.out.units_free = (blocks_free * (double)block_size) / (bpunit * 512);
out 132 source4/ntvfs/posix/pvfs_fsinfo.c fs->dskattr.out.blocks_per_unit = 64;
out 133 source4/ntvfs/posix/pvfs_fsinfo.c fs->dskattr.out.units_total = 0xFFFF;
out 134 source4/ntvfs/posix/pvfs_fsinfo.c fs->dskattr.out.units_free = 0xFFFF;
out 139 source4/ntvfs/posix/pvfs_fsinfo.c fs->allocation.out.fs_id = st.st_dev;
out 140 source4/ntvfs/posix/pvfs_fsinfo.c fs->allocation.out.total_alloc_units = blocks_total;
out 141 source4/ntvfs/posix/pvfs_fsinfo.c fs->allocation.out.avail_alloc_units = blocks_free;
out 142 source4/ntvfs/posix/pvfs_fsinfo.c fs->allocation.out.sectors_per_unit = 1;
out 143 source4/ntvfs/posix/pvfs_fsinfo.c fs->allocation.out.bytes_per_sector = block_size;
out 147 source4/ntvfs/posix/pvfs_fsinfo.c fs->volume.out.serial_number = st.st_ino;
out 148 source4/ntvfs/posix/pvfs_fsinfo.c fs->volume.out.volume_name.s = pvfs->share_name;
out 153 source4/ntvfs/posix/pvfs_fsinfo.c unix_to_nt_time(&fs->volume_info.out.create_time, st.st_ctime);
out 154 source4/ntvfs/posix/pvfs_fsinfo.c fs->volume_info.out.serial_number = st.st_ino;
out 155 source4/ntvfs/posix/pvfs_fsinfo.c fs->volume_info.out.volume_name.s = pvfs->share_name;
out 160 source4/ntvfs/posix/pvfs_fsinfo.c fs->size_info.out.total_alloc_units = blocks_total;
out 161 source4/ntvfs/posix/pvfs_fsinfo.c fs->size_info.out.avail_alloc_units = blocks_free;
out 162 source4/ntvfs/posix/pvfs_fsinfo.c fs->size_info.out.sectors_per_unit = 1;
out 163 source4/ntvfs/posix/pvfs_fsinfo.c fs->size_info.out.bytes_per_sector = block_size;
out 168 source4/ntvfs/posix/pvfs_fsinfo.c fs->device_info.out.device_type = 0;
out 169 source4/ntvfs/posix/pvfs_fsinfo.c fs->device_info.out.characteristics = 0;
out 174 source4/ntvfs/posix/pvfs_fsinfo.c fs->attribute_info.out.fs_attr = pvfs->fs_attribs;
out 175 source4/ntvfs/posix/pvfs_fsinfo.c fs->attribute_info.out.max_file_component_length = 255;
out 176 source4/ntvfs/posix/pvfs_fsinfo.c fs->attribute_info.out.fs_type.s = ntvfs->ctx->fs_type;
out 180 source4/ntvfs/posix/pvfs_fsinfo.c ZERO_STRUCT(fs->quota_information.out.unknown);
out 181 source4/ntvfs/posix/pvfs_fsinfo.c fs->quota_information.out.quota_soft = 0;
out 182 source4/ntvfs/posix/pvfs_fsinfo.c fs->quota_information.out.quota_hard = 0;
out 183 source4/ntvfs/posix/pvfs_fsinfo.c fs->quota_information.out.quota_flags = 0;
out 187 source4/ntvfs/posix/pvfs_fsinfo.c fs->full_size_information.out.total_alloc_units = blocks_total;
out 188 source4/ntvfs/posix/pvfs_fsinfo.c fs->full_size_information.out.call_avail_alloc_units = blocks_free;
out 189 source4/ntvfs/posix/pvfs_fsinfo.c fs->full_size_information.out.actual_avail_alloc_units = blocks_free;
out 190 source4/ntvfs/posix/pvfs_fsinfo.c fs->full_size_information.out.sectors_per_unit = 1;
out 191 source4/ntvfs/posix/pvfs_fsinfo.c fs->full_size_information.out.bytes_per_sector = block_size;
out 195 source4/ntvfs/posix/pvfs_fsinfo.c ZERO_STRUCT(fs->objectid_information.out.guid);
out 196 source4/ntvfs/posix/pvfs_fsinfo.c ZERO_STRUCT(fs->objectid_information.out.unknown);
out 201 source4/ntvfs/posix/pvfs_fsinfo.c fs->objectid_information.out.guid = *pvfs->base_fs_uuid;
out 54 source4/ntvfs/posix/pvfs_ioctl.c io->ntioctl.out.blob = data_blob(NULL, 0);
out 88 source4/ntvfs/posix/pvfs_notify.c info->nttrans.out.num_changes = notify_buffer->num_changes;
out 89 source4/ntvfs/posix/pvfs_notify.c info->nttrans.out.changes = talloc_steal(req, notify_buffer->changes);
out 96 source4/ntvfs/posix/pvfs_notify.c if (info->nttrans.out.num_changes != 0) {
out 261 source4/ntvfs/posix/pvfs_open.c &io->generic.out.maximal_access);
out 415 source4/ntvfs/posix/pvfs_open.c io->generic.out.oplock_level = OPLOCK_NONE;
out 416 source4/ntvfs/posix/pvfs_open.c io->generic.out.file.ntvfs = h;
out 417 source4/ntvfs/posix/pvfs_open.c io->generic.out.create_action = create_action;
out 418 source4/ntvfs/posix/pvfs_open.c io->generic.out.create_time = name->dos.create_time;
out 419 source4/ntvfs/posix/pvfs_open.c io->generic.out.access_time = name->dos.access_time;
out 420 source4/ntvfs/posix/pvfs_open.c io->generic.out.write_time = name->dos.write_time;
out 421 source4/ntvfs/posix/pvfs_open.c io->generic.out.change_time = name->dos.change_time;
out 422 source4/ntvfs/posix/pvfs_open.c io->generic.out.attrib = name->dos.attrib;
out 423 source4/ntvfs/posix/pvfs_open.c io->generic.out.alloc_size = name->dos.alloc_size;
out 424 source4/ntvfs/posix/pvfs_open.c io->generic.out.size = name->st.st_size;
out 425 source4/ntvfs/posix/pvfs_open.c io->generic.out.file_type = FILE_TYPE_DISK;
out 426 source4/ntvfs/posix/pvfs_open.c io->generic.out.ipc_state = 0;
out 427 source4/ntvfs/posix/pvfs_open.c io->generic.out.is_directory = 1;
out 708 source4/ntvfs/posix/pvfs_open.c &io->generic.out.maximal_access);
out 816 source4/ntvfs/posix/pvfs_open.c io->generic.out.oplock_level = oplock_granted;
out 817 source4/ntvfs/posix/pvfs_open.c io->generic.out.file.ntvfs = f->ntvfs;
out 818 source4/ntvfs/posix/pvfs_open.c io->generic.out.create_action = NTCREATEX_ACTION_CREATED;
out 819 source4/ntvfs/posix/pvfs_open.c io->generic.out.create_time = name->dos.create_time;
out 820 source4/ntvfs/posix/pvfs_open.c io->generic.out.access_time = name->dos.access_time;
out 821 source4/ntvfs/posix/pvfs_open.c io->generic.out.write_time = name->dos.write_time;
out 822 source4/ntvfs/posix/pvfs_open.c io->generic.out.change_time = name->dos.change_time;
out 823 source4/ntvfs/posix/pvfs_open.c io->generic.out.attrib = name->dos.attrib;
out 824 source4/ntvfs/posix/pvfs_open.c io->generic.out.alloc_size = name->dos.alloc_size;
out 825 source4/ntvfs/posix/pvfs_open.c io->generic.out.size = name->st.st_size;
out 826 source4/ntvfs/posix/pvfs_open.c io->generic.out.file_type = FILE_TYPE_DISK;
out 827 source4/ntvfs/posix/pvfs_open.c io->generic.out.ipc_state = 0;
out 828 source4/ntvfs/posix/pvfs_open.c io->generic.out.is_directory = 0;
out 1094 source4/ntvfs/posix/pvfs_open.c io->generic.out.oplock_level = OPLOCK_NONE;
out 1095 source4/ntvfs/posix/pvfs_open.c io->generic.out.file.ntvfs = f->ntvfs;
out 1096 source4/ntvfs/posix/pvfs_open.c io->generic.out.create_action = NTCREATEX_ACTION_EXISTED;
out 1097 source4/ntvfs/posix/pvfs_open.c io->generic.out.create_time = name->dos.create_time;
out 1098 source4/ntvfs/posix/pvfs_open.c io->generic.out.access_time = name->dos.access_time;
out 1099 source4/ntvfs/posix/pvfs_open.c io->generic.out.write_time = name->dos.write_time;
out 1100 source4/ntvfs/posix/pvfs_open.c io->generic.out.change_time = name->dos.change_time;
out 1101 source4/ntvfs/posix/pvfs_open.c io->generic.out.attrib = name->dos.attrib;
out 1102 source4/ntvfs/posix/pvfs_open.c io->generic.out.alloc_size = name->dos.alloc_size;
out 1103 source4/ntvfs/posix/pvfs_open.c io->generic.out.size = name->st.st_size;
out 1104 source4/ntvfs/posix/pvfs_open.c io->generic.out.file_type = FILE_TYPE_DISK;
out 1105 source4/ntvfs/posix/pvfs_open.c io->generic.out.ipc_state = 0;
out 1106 source4/ntvfs/posix/pvfs_open.c io->generic.out.is_directory = 0;
out 1207 source4/ntvfs/posix/pvfs_open.c ZERO_STRUCT(io->generic.out);
out 1395 source4/ntvfs/posix/pvfs_open.c &io->generic.out.maximal_access);
out 1609 source4/ntvfs/posix/pvfs_open.c io->generic.out.oplock_level = oplock_granted;
out 1610 source4/ntvfs/posix/pvfs_open.c io->generic.out.file.ntvfs = h;
out 1611 source4/ntvfs/posix/pvfs_open.c io->generic.out.create_action = stream_existed?
out 1614 source4/ntvfs/posix/pvfs_open.c io->generic.out.create_time = name->dos.create_time;
out 1615 source4/ntvfs/posix/pvfs_open.c io->generic.out.access_time = name->dos.access_time;
out 1616 source4/ntvfs/posix/pvfs_open.c io->generic.out.write_time = name->dos.write_time;
out 1617 source4/ntvfs/posix/pvfs_open.c io->generic.out.change_time = name->dos.change_time;
out 1618 source4/ntvfs/posix/pvfs_open.c io->generic.out.attrib = name->dos.attrib;
out 1619 source4/ntvfs/posix/pvfs_open.c io->generic.out.alloc_size = name->dos.alloc_size;
out 1620 source4/ntvfs/posix/pvfs_open.c io->generic.out.size = name->st.st_size;
out 1621 source4/ntvfs/posix/pvfs_open.c io->generic.out.file_type = FILE_TYPE_DISK;
out 1622 source4/ntvfs/posix/pvfs_open.c io->generic.out.ipc_state = 0;
out 1623 source4/ntvfs/posix/pvfs_open.c io->generic.out.is_directory = 0;
out 1669 source4/ntvfs/posix/pvfs_open.c io->generic.out.flags = SMB2_CLOSE_FLAGS_FULL_INFORMATION;
out 1670 source4/ntvfs/posix/pvfs_open.c io->generic.out.create_time = name->dos.create_time;
out 1671 source4/ntvfs/posix/pvfs_open.c io->generic.out.access_time = name->dos.access_time;
out 1672 source4/ntvfs/posix/pvfs_open.c io->generic.out.write_time = name->dos.write_time;
out 1673 source4/ntvfs/posix/pvfs_open.c io->generic.out.change_time = name->dos.change_time;
out 1674 source4/ntvfs/posix/pvfs_open.c io->generic.out.alloc_size = name->dos.alloc_size;
out 1675 source4/ntvfs/posix/pvfs_open.c io->generic.out.size = name->st.st_size;
out 1676 source4/ntvfs/posix/pvfs_open.c io->generic.out.file_attr = name->dos.attrib;
out 1678 source4/ntvfs/posix/pvfs_open.c ZERO_STRUCT(io->generic.out);
out 151 source4/ntvfs/posix/pvfs_qfileinfo.c info->getattr.out.attrib = name->dos.attrib;
out 152 source4/ntvfs/posix/pvfs_qfileinfo.c info->getattr.out.size = name->st.st_size;
out 153 source4/ntvfs/posix/pvfs_qfileinfo.c info->getattr.out.write_time = nt_time_to_unix(name->dos.write_time);
out 158 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard.out.create_time = nt_time_to_unix(name->dos.create_time);
out 159 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard.out.access_time = nt_time_to_unix(name->dos.access_time);
out 160 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard.out.write_time = nt_time_to_unix(name->dos.write_time);
out 161 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard.out.size = name->st.st_size;
out 162 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard.out.alloc_size = name->dos.alloc_size;
out 163 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard.out.attrib = name->dos.attrib;
out 167 source4/ntvfs/posix/pvfs_qfileinfo.c info->ea_size.out.create_time = nt_time_to_unix(name->dos.create_time);
out 168 source4/ntvfs/posix/pvfs_qfileinfo.c info->ea_size.out.access_time = nt_time_to_unix(name->dos.access_time);
out 169 source4/ntvfs/posix/pvfs_qfileinfo.c info->ea_size.out.write_time = nt_time_to_unix(name->dos.write_time);
out 170 source4/ntvfs/posix/pvfs_qfileinfo.c info->ea_size.out.size = name->st.st_size;
out 171 source4/ntvfs/posix/pvfs_qfileinfo.c info->ea_size.out.alloc_size = name->dos.alloc_size;
out 172 source4/ntvfs/posix/pvfs_qfileinfo.c info->ea_size.out.attrib = name->dos.attrib;
out 173 source4/ntvfs/posix/pvfs_qfileinfo.c info->ea_size.out.ea_size = name->dos.ea_size;
out 180 source4/ntvfs/posix/pvfs_qfileinfo.c &info->ea_list.out);
out 183 source4/ntvfs/posix/pvfs_qfileinfo.c return pvfs_query_all_eas(pvfs, req, name, fd, &info->all_eas.out);
out 186 source4/ntvfs/posix/pvfs_qfileinfo.c NTSTATUS status = pvfs_query_all_eas(pvfs, req, name, fd, &info->all_eas.out);
out 188 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_eas.out.num_eas == 0) {
out 199 source4/ntvfs/posix/pvfs_qfileinfo.c info->basic_info.out.create_time = name->dos.create_time;
out 200 source4/ntvfs/posix/pvfs_qfileinfo.c info->basic_info.out.access_time = name->dos.access_time;
out 201 source4/ntvfs/posix/pvfs_qfileinfo.c info->basic_info.out.write_time = name->dos.write_time;
out 202 source4/ntvfs/posix/pvfs_qfileinfo.c info->basic_info.out.change_time = name->dos.change_time;
out 203 source4/ntvfs/posix/pvfs_qfileinfo.c info->basic_info.out.attrib = name->dos.attrib;
out 208 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard_info.out.alloc_size = name->dos.alloc_size;
out 209 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard_info.out.size = name->st.st_size;
out 210 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard_info.out.nlink = name->dos.nlink;
out 211 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard_info.out.delete_pending = 0; /* only for qfileinfo */
out 212 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard_info.out.directory =
out 218 source4/ntvfs/posix/pvfs_qfileinfo.c info->ea_info.out.ea_size = name->dos.ea_size;
out 227 source4/ntvfs/posix/pvfs_qfileinfo.c info->name_info.out.fname.s = name->original_name;
out 232 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.create_time = name->dos.create_time;
out 233 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.access_time = name->dos.access_time;
out 234 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.write_time = name->dos.write_time;
out 235 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.change_time = name->dos.change_time;
out 236 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.attrib = name->dos.attrib;
out 237 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.alloc_size = name->dos.alloc_size;
out 238 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.size = name->st.st_size;
out 239 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.nlink = name->dos.nlink;
out 240 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.delete_pending = 0; /* only set by qfileinfo */
out 241 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.directory =
out 243 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.ea_size = name->dos.ea_size;
out 244 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.fname.s = name->original_name;
out 249 source4/ntvfs/posix/pvfs_qfileinfo.c info->name_info.out.fname.s = pvfs_short_name(pvfs, name, name);
out 254 source4/ntvfs/posix/pvfs_qfileinfo.c return pvfs_stream_information(pvfs, req, name, fd, &info->stream_info.out);
out 258 source4/ntvfs/posix/pvfs_qfileinfo.c info->compression_info.out.compressed_size = name->st.st_size;
out 259 source4/ntvfs/posix/pvfs_qfileinfo.c info->compression_info.out.format = 0;
out 260 source4/ntvfs/posix/pvfs_qfileinfo.c info->compression_info.out.unit_shift = 0;
out 261 source4/ntvfs/posix/pvfs_qfileinfo.c info->compression_info.out.chunk_shift = 0;
out 262 source4/ntvfs/posix/pvfs_qfileinfo.c info->compression_info.out.cluster_shift = 0;
out 266 source4/ntvfs/posix/pvfs_qfileinfo.c info->internal_information.out.file_id = name->dos.file_id;
out 270 source4/ntvfs/posix/pvfs_qfileinfo.c info->access_information.out.access_flags = 0; /* only set by qfileinfo */
out 274 source4/ntvfs/posix/pvfs_qfileinfo.c info->position_information.out.position = 0; /* only set by qfileinfo */
out 278 source4/ntvfs/posix/pvfs_qfileinfo.c info->mode_information.out.mode = 0; /* only set by qfileinfo */
out 282 source4/ntvfs/posix/pvfs_qfileinfo.c info->alignment_information.out.alignment_requirement = 0;
out 286 source4/ntvfs/posix/pvfs_qfileinfo.c info->network_open_information.out.create_time = name->dos.create_time;
out 287 source4/ntvfs/posix/pvfs_qfileinfo.c info->network_open_information.out.access_time = name->dos.access_time;
out 288 source4/ntvfs/posix/pvfs_qfileinfo.c info->network_open_information.out.write_time = name->dos.write_time;
out 289 source4/ntvfs/posix/pvfs_qfileinfo.c info->network_open_information.out.change_time = name->dos.change_time;
out 290 source4/ntvfs/posix/pvfs_qfileinfo.c info->network_open_information.out.alloc_size = name->dos.alloc_size;
out 291 source4/ntvfs/posix/pvfs_qfileinfo.c info->network_open_information.out.size = name->st.st_size;
out 292 source4/ntvfs/posix/pvfs_qfileinfo.c info->network_open_information.out.attrib = name->dos.attrib;
out 296 source4/ntvfs/posix/pvfs_qfileinfo.c info->attribute_tag_information.out.attrib = name->dos.attrib;
out 297 source4/ntvfs/posix/pvfs_qfileinfo.c info->attribute_tag_information.out.reparse_tag = 0;
out 304 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.create_time = name->dos.create_time;
out 305 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.access_time = name->dos.access_time;
out 306 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.write_time = name->dos.write_time;
out 307 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.change_time = name->dos.change_time;
out 308 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.attrib = name->dos.attrib;
out 309 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.unknown1 = 0;
out 310 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.alloc_size = name->dos.alloc_size;
out 311 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.size = name->st.st_size;
out 312 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.nlink = name->dos.nlink;
out 313 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.delete_pending = 0; /* only set by qfileinfo */
out 314 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.directory =
out 316 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.file_id = name->dos.file_id;
out 317 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.ea_size = name->dos.ea_size;
out 318 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.access_mask = 0; /* only set by qfileinfo */
out 319 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.position = 0; /* only set by qfileinfo */
out 320 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.mode = 0; /* only set by qfileinfo */
out 325 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.fname.s = talloc_asprintf(req, "\\%s\\%s",
out 328 source4/ntvfs/posix/pvfs_qfileinfo.c NT_STATUS_HAVE_NO_MEMORY(info->all_info2.out.fname.s);
out 410 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard_info.out.delete_pending = 1;
out 411 source4/ntvfs/posix/pvfs_qfileinfo.c info->standard_info.out.nlink--;
out 418 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.delete_pending = 1;
out 419 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info.out.nlink--;
out 424 source4/ntvfs/posix/pvfs_qfileinfo.c info->position_information.out.position = h->position;
out 428 source4/ntvfs/posix/pvfs_qfileinfo.c info->access_information.out.access_flags = f->access_mask;
out 432 source4/ntvfs/posix/pvfs_qfileinfo.c info->mode_information.out.mode = h->mode;
out 437 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.delete_pending = 1;
out 438 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.nlink--;
out 440 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.position = h->position;
out 441 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.access_mask = f->access_mask;
out 442 source4/ntvfs/posix/pvfs_qfileinfo.c info->all_info2.out.mode = h->mode;
out 76 source4/ntvfs/posix/pvfs_read.c rd->readx.out.data, maxcnt, rd->readx.in.offset);
out 89 source4/ntvfs/posix/pvfs_read.c rd->readx.out.data,
out 107 source4/ntvfs/posix/pvfs_read.c rd->readx.out.nread = ret;
out 108 source4/ntvfs/posix/pvfs_read.c rd->readx.out.remaining = 0xFFFF;
out 109 source4/ntvfs/posix/pvfs_read.c rd->readx.out.compaction_mode = 0;
out 395 source4/ntvfs/posix/pvfs_search.c io->search_first.out.count = reply_count;
out 448 source4/ntvfs/posix/pvfs_search.c io->search_next.out.count = reply_count;
out 540 source4/ntvfs/posix/pvfs_search.c io->t2ffirst.out.count = reply_count;
out 541 source4/ntvfs/posix/pvfs_search.c io->t2ffirst.out.handle = search->handle;
out 542 source4/ntvfs/posix/pvfs_search.c io->t2ffirst.out.end_of_search = pvfs_list_eos(dir, search->current_index) ? 1 : 0;
out 548 source4/ntvfs/posix/pvfs_search.c io->t2ffirst.out.end_of_search)) {
out 610 source4/ntvfs/posix/pvfs_search.c io->t2fnext.out.count = reply_count;
out 611 source4/ntvfs/posix/pvfs_search.c io->t2fnext.out.end_of_search = pvfs_list_eos(dir, search->current_index) ? 1 : 0;
out 616 source4/ntvfs/posix/pvfs_search.c io->t2fnext.out.end_of_search)) {
out 61 source4/ntvfs/posix/pvfs_seek.c io->lseek.out.offset = h->seek_offset;
out 151 source4/ntvfs/posix/pvfs_write.c wr->writex.out.nwritten = ret;
out 152 source4/ntvfs/posix/pvfs_write.c wr->writex.out.remaining = 0; /* should fill this in? */
out 80 source4/ntvfs/print/vfs_print.c io->ioctl.out.blob = data_blob_talloc(req, NULL, 32);
out 82 source4/ntvfs/print/vfs_print.c data_blob_clear(&io->ioctl.out.blob);
out 84 source4/ntvfs/print/vfs_print.c p = (char *)io->ioctl.out.blob.data;
out 197 source4/ntvfs/simple/vfs_simple.c unix_to_nt_time(&info->generic.out.create_time, st->st_ctime);
out 198 source4/ntvfs/simple/vfs_simple.c unix_to_nt_time(&info->generic.out.access_time, st->st_atime);
out 199 source4/ntvfs/simple/vfs_simple.c unix_to_nt_time(&info->generic.out.write_time, st->st_mtime);
out 200 source4/ntvfs/simple/vfs_simple.c unix_to_nt_time(&info->generic.out.change_time, st->st_mtime);
out 201 source4/ntvfs/simple/vfs_simple.c info->generic.out.alloc_size = st->st_size;
out 202 source4/ntvfs/simple/vfs_simple.c info->generic.out.size = st->st_size;
out 203 source4/ntvfs/simple/vfs_simple.c info->generic.out.attrib = svfs_unix_to_dos_attrib(st->st_mode);
out 204 source4/ntvfs/simple/vfs_simple.c info->generic.out.alloc_size = st->st_blksize * st->st_blocks;
out 205 source4/ntvfs/simple/vfs_simple.c info->generic.out.nlink = st->st_nlink;
out 206 source4/ntvfs/simple/vfs_simple.c info->generic.out.directory = S_ISDIR(st->st_mode) ? 1 : 0;
out 207 source4/ntvfs/simple/vfs_simple.c info->generic.out.file_id = svfs_file_id(st);
out 209 source4/ntvfs/simple/vfs_simple.c info->generic.out.delete_pending = 0;
out 210 source4/ntvfs/simple/vfs_simple.c info->generic.out.ea_size = 0;
out 211 source4/ntvfs/simple/vfs_simple.c info->generic.out.num_eas = 0;
out 212 source4/ntvfs/simple/vfs_simple.c info->generic.out.fname.s = talloc_strdup(req, short_name);
out 213 source4/ntvfs/simple/vfs_simple.c info->generic.out.alt_fname.s = talloc_strdup(req, short_name);
out 214 source4/ntvfs/simple/vfs_simple.c info->generic.out.compressed_size = 0;
out 215 source4/ntvfs/simple/vfs_simple.c info->generic.out.format = 0;
out 216 source4/ntvfs/simple/vfs_simple.c info->generic.out.unit_shift = 0;
out 217 source4/ntvfs/simple/vfs_simple.c info->generic.out.chunk_shift = 0;
out 218 source4/ntvfs/simple/vfs_simple.c info->generic.out.cluster_shift = 0;
out 220 source4/ntvfs/simple/vfs_simple.c info->generic.out.access_flags = 0;
out 221 source4/ntvfs/simple/vfs_simple.c info->generic.out.position = 0;
out 222 source4/ntvfs/simple/vfs_simple.c info->generic.out.mode = 0;
out 223 source4/ntvfs/simple/vfs_simple.c info->generic.out.alignment_requirement = 0;
out 224 source4/ntvfs/simple/vfs_simple.c info->generic.out.reparse_tag = 0;
out 225 source4/ntvfs/simple/vfs_simple.c info->generic.out.num_streams = 0;
out 227 source4/ntvfs/simple/vfs_simple.c info->generic.out.num_streams = 1 + (dir?dir->count:0);
out 228 source4/ntvfs/simple/vfs_simple.c info->generic.out.streams = talloc_array(req,
out 230 source4/ntvfs/simple/vfs_simple.c info->generic.out.num_streams);
out 231 source4/ntvfs/simple/vfs_simple.c if (!info->generic.out.streams) {
out 234 source4/ntvfs/simple/vfs_simple.c info->generic.out.streams[0].size = st->st_size;
out 235 source4/ntvfs/simple/vfs_simple.c info->generic.out.streams[0].alloc_size = st->st_size;
out 236 source4/ntvfs/simple/vfs_simple.c info->generic.out.streams[0].stream_name.s = talloc_strdup(req,"::$DATA");
out 240 source4/ntvfs/simple/vfs_simple.c info->generic.out.streams[1+i].size = dir->files[i].st.st_size;
out 241 source4/ntvfs/simple/vfs_simple.c info->generic.out.streams[1+i].alloc_size = dir->files[i].st.st_size;
out 242 source4/ntvfs/simple/vfs_simple.c info->generic.out.streams[1+i].stream_name.s = s?s:dir->files[i].name;
out 399 source4/ntvfs/simple/vfs_simple.c ZERO_STRUCT(io->generic.out);
out 401 source4/ntvfs/simple/vfs_simple.c unix_to_nt_time(&io->generic.out.create_time, st.st_ctime);
out 402 source4/ntvfs/simple/vfs_simple.c unix_to_nt_time(&io->generic.out.access_time, st.st_atime);
out 403 source4/ntvfs/simple/vfs_simple.c unix_to_nt_time(&io->generic.out.write_time, st.st_mtime);
out 404 source4/ntvfs/simple/vfs_simple.c unix_to_nt_time(&io->generic.out.change_time, st.st_mtime);
out 405 source4/ntvfs/simple/vfs_simple.c io->generic.out.file.ntvfs = handle;
out 406 source4/ntvfs/simple/vfs_simple.c io->generic.out.alloc_size = st.st_size;
out 407 source4/ntvfs/simple/vfs_simple.c io->generic.out.size = st.st_size;
out 408 source4/ntvfs/simple/vfs_simple.c io->generic.out.attrib = svfs_unix_to_dos_attrib(st.st_mode);
out 409 source4/ntvfs/simple/vfs_simple.c io->generic.out.is_directory = S_ISDIR(st.st_mode) ? 1 : 0;
out 509 source4/ntvfs/simple/vfs_simple.c rd->readx.out.data,
out 516 source4/ntvfs/simple/vfs_simple.c rd->readx.out.nread = ret;
out 517 source4/ntvfs/simple/vfs_simple.c rd->readx.out.remaining = 0; /* should fill this in? */
out 518 source4/ntvfs/simple/vfs_simple.c rd->readx.out.compaction_mode = 0;
out 552 source4/ntvfs/simple/vfs_simple.c wr->writex.out.nwritten = ret;
out 553 source4/ntvfs/simple/vfs_simple.c wr->writex.out.remaining = 0; /* should fill this in? */
out 754 source4/ntvfs/simple/vfs_simple.c &fs->generic.out.blocks_free,
out 755 source4/ntvfs/simple/vfs_simple.c &fs->generic.out.blocks_total) == -1) {
out 759 source4/ntvfs/simple/vfs_simple.c fs->generic.out.block_size = 512;
out 765 source4/ntvfs/simple/vfs_simple.c fs->generic.out.fs_id = st.st_ino;
out 766 source4/ntvfs/simple/vfs_simple.c unix_to_nt_time(&fs->generic.out.create_time, st.st_ctime);
out 767 source4/ntvfs/simple/vfs_simple.c fs->generic.out.serial_number = st.st_ino;
out 768 source4/ntvfs/simple/vfs_simple.c fs->generic.out.fs_attr = 0;
out 769 source4/ntvfs/simple/vfs_simple.c fs->generic.out.max_file_component_length = 255;
out 770 source4/ntvfs/simple/vfs_simple.c fs->generic.out.device_type = 0;
out 771 source4/ntvfs/simple/vfs_simple.c fs->generic.out.device_characteristics = 0;
out 772 source4/ntvfs/simple/vfs_simple.c fs->generic.out.quota_soft = 0;
out 773 source4/ntvfs/simple/vfs_simple.c fs->generic.out.quota_hard = 0;
out 774 source4/ntvfs/simple/vfs_simple.c fs->generic.out.quota_flags = 0;
out 775 source4/ntvfs/simple/vfs_simple.c fs->generic.out.volume_name = talloc_strdup(req, ntvfs->ctx->config->name);
out 776 source4/ntvfs/simple/vfs_simple.c fs->generic.out.fs_type = ntvfs->ctx->fs_type;
out 799 source4/ntvfs/simple/vfs_simple.c unix_to_nt_time(&fs->generic.out.create_time, st.st_ctime);
out 800 source4/ntvfs/simple/vfs_simple.c fs->generic.out.fs_attr =
out 804 source4/ntvfs/simple/vfs_simple.c fs->generic.out.max_file_component_length = 255;
out 805 source4/ntvfs/simple/vfs_simple.c fs->generic.out.serial_number = 1;
out 806 source4/ntvfs/simple/vfs_simple.c fs->generic.out.fs_type = talloc_strdup(req, "NTFS");
out 807 source4/ntvfs/simple/vfs_simple.c fs->generic.out.volume_name = talloc_strdup(req,
out 883 source4/ntvfs/simple/vfs_simple.c io->t2ffirst.out.count = i;
out 884 source4/ntvfs/simple/vfs_simple.c io->t2ffirst.out.handle = search->handle;
out 885 source4/ntvfs/simple/vfs_simple.c io->t2ffirst.out.end_of_search = (i == dir->count) ? 1 : 0;
out 976 source4/ntvfs/simple/vfs_simple.c io->t2fnext.out.count = i - search->current_index;
out 977 source4/ntvfs/simple/vfs_simple.c io->t2fnext.out.end_of_search = (i == dir->count) ? 1 : 0;
out 148 source4/ntvfs/smb2/vfs_smb2.c *handle = io.out.file.handle;
out 752 source4/ntvfs/smb2/vfs_smb2.c io->t2ffirst.out.handle = 0;
out 753 source4/ntvfs/smb2/vfs_smb2.c io->t2ffirst.out.count = i;
out 755 source4/ntvfs/smb2/vfs_smb2.c io->t2ffirst.out.end_of_search = 1;
out 306 source4/ntvfs/sysdep/inotify.c uint32_t out=0;
out 309 source4/ntvfs/sysdep/inotify.c out |= inotify_mapping[i].inotify_mask;
out 313 source4/ntvfs/sysdep/inotify.c return out;
out 70 source4/rpc_server/browser/dcesrv_browser.c r->out.info->info.info100 = ctr100;
out 71 source4/rpc_server/browser/dcesrv_browser.c *r->out.total_entries = ctr100->entries_read;
out 340 source4/rpc_server/dcerpc_server.h return r->out.result; \
out 37 source4/rpc_server/dcesrv_mgmt.c vector = *r->out.if_id_vector = talloc(mem_ctx, struct rpc_if_id_vector_t);
out 58 source4/rpc_server/dcesrv_mgmt.c r->out.statistics->count = r->in.max_count;
out 59 source4/rpc_server/dcesrv_mgmt.c r->out.statistics->statistics = talloc_array(mem_ctx, uint32_t, r->in.max_count);
out 61 source4/rpc_server/dcesrv_mgmt.c r->out.statistics->statistics[MGMT_STATS_CALLS_IN] = 0;
out 62 source4/rpc_server/dcesrv_mgmt.c r->out.statistics->statistics[MGMT_STATS_CALLS_OUT] = 0;
out 63 source4/rpc_server/dcesrv_mgmt.c r->out.statistics->statistics[MGMT_STATS_PKTS_IN] = 0;
out 64 source4/rpc_server/dcesrv_mgmt.c r->out.statistics->statistics[MGMT_STATS_PKTS_OUT] = 0;
out 76 source4/rpc_server/dcesrv_mgmt.c *r->out.status = 0;
out 52 source4/rpc_server/drsuapi/dcesrv_drsuapi.c r->out.bind_info = NULL;
out 53 source4/rpc_server/drsuapi/dcesrv_drsuapi.c ZERO_STRUCTP(r->out.bind_handle);
out 199 source4/rpc_server/drsuapi/dcesrv_drsuapi.c r->out.bind_info = bind_info;
out 200 source4/rpc_server/drsuapi/dcesrv_drsuapi.c *r->out.bind_handle = handle->wire_handle;
out 214 source4/rpc_server/drsuapi/dcesrv_drsuapi.c *r->out.bind_handle = *r->in.bind_handle;
out 220 source4/rpc_server/drsuapi/dcesrv_drsuapi.c ZERO_STRUCTP(r->out.bind_handle);
out 340 source4/rpc_server/drsuapi/dcesrv_drsuapi.c *r->out.level_out = r->in.level;
out 345 source4/rpc_server/drsuapi/dcesrv_drsuapi.c r->out.ctr = talloc_zero(mem_ctx, union drsuapi_DsNameCtr);
out 346 source4/rpc_server/drsuapi/dcesrv_drsuapi.c W_ERROR_HAVE_NO_MEMORY(r->out.ctr);
out 376 source4/rpc_server/drsuapi/dcesrv_drsuapi.c r->out.ctr->ctr1 = ctr1;
out 394 source4/rpc_server/drsuapi/dcesrv_drsuapi.c *r->out.level_out = r->in.level;
out 399 source4/rpc_server/drsuapi/dcesrv_drsuapi.c r->out.res = talloc(mem_ctx, union drsuapi_DsWriteAccountSpnResult);
out 400 source4/rpc_server/drsuapi/dcesrv_drsuapi.c W_ERROR_HAVE_NO_MEMORY(r->out.res);
out 417 source4/rpc_server/drsuapi/dcesrv_drsuapi.c r->out.res->res1.status = WERR_OK;
out 448 source4/rpc_server/drsuapi/dcesrv_drsuapi.c r->out.res->res1.status = WERR_ACCESS_DENIED;
out 450 source4/rpc_server/drsuapi/dcesrv_drsuapi.c r->out.res->res1.status = WERR_OK;
out 527 source4/rpc_server/drsuapi/dcesrv_drsuapi.c *r->out.level_out = r->in.req->req1.level;
out 528 source4/rpc_server/drsuapi/dcesrv_drsuapi.c r->out.ctr = talloc(mem_ctx, union drsuapi_DsGetDCInfoCtr);
out 529 source4/rpc_server/drsuapi/dcesrv_drsuapi.c W_ERROR_HAVE_NO_MEMORY(r->out.ctr);
out 536 source4/rpc_server/drsuapi/dcesrv_drsuapi.c switch (*r->out.level_out) {
out 559 source4/rpc_server/drsuapi/dcesrv_drsuapi.c switch (*r->out.level_out) {
out 561 source4/rpc_server/drsuapi/dcesrv_drsuapi.c ctr1 = &r->out.ctr->ctr1;
out 624 source4/rpc_server/drsuapi/dcesrv_drsuapi.c ctr2 = &r->out.ctr->ctr2;
out 32 source4/rpc_server/echo/rpc_echo.c *r->out.out_data = r->in.in_data + 1;
out 42 source4/rpc_server/echo/rpc_echo.c r->out.out_data = talloc_memdup(mem_ctx, r->in.in_data, r->in.len);
out 43 source4/rpc_server/echo/rpc_echo.c if (!r->out.out_data) {
out 59 source4/rpc_server/echo/rpc_echo.c r->out.data = talloc_array(mem_ctx, uint8_t, r->in.len);
out 60 source4/rpc_server/echo/rpc_echo.c if (!r->out.data) {
out 65 source4/rpc_server/echo/rpc_echo.c r->out.data[i] = i;
out 73 source4/rpc_server/echo/rpc_echo.c *r->out.s2 = talloc_strdup(mem_ctx, r->in.s1);
out 74 source4/rpc_server/echo/rpc_echo.c if (r->in.s1 && !*r->out.s2) {
out 82 source4/rpc_server/echo/rpc_echo.c r->out.info = talloc(mem_ctx, union echo_Info);
out 83 source4/rpc_server/echo/rpc_echo.c if (!r->out.info) {
out 89 source4/rpc_server/echo/rpc_echo.c r->out.info->info1.v = 10;
out 92 source4/rpc_server/echo/rpc_echo.c r->out.info->info2.v = 20;
out 95 source4/rpc_server/echo/rpc_echo.c r->out.info->info3.v = 30;
out 98 source4/rpc_server/echo/rpc_echo.c r->out.info->info4.v = 40;
out 101 source4/rpc_server/echo/rpc_echo.c r->out.info->info5.v1 = 50;
out 102 source4/rpc_server/echo/rpc_echo.c r->out.info->info5.v2 = 60;
out 105 source4/rpc_server/echo/rpc_echo.c r->out.info->info6.v1 = 70;
out 106 source4/rpc_server/echo/rpc_echo.c r->out.info->info6.info1.v= 80;
out 109 source4/rpc_server/echo/rpc_echo.c r->out.info->info7.v1 = 80;
out 110 source4/rpc_server/echo/rpc_echo.c r->out.info->info7.info4.v = 90;
out 121 source4/rpc_server/echo/rpc_echo.c r->out.foo2->e1 = ECHO_ENUM2;
out 128 source4/rpc_server/echo/rpc_echo.c r->out.data = NULL;
out 132 source4/rpc_server/echo/rpc_echo.c r->out.data = talloc(mem_ctx, struct echo_Surrounding);
out 133 source4/rpc_server/echo/rpc_echo.c if (!r->out.data) {
out 136 source4/rpc_server/echo/rpc_echo.c r->out.data->x = 2 * r->in.data->x;
out 137 source4/rpc_server/echo/rpc_echo.c r->out.data->surrounding = talloc_zero_array(mem_ctx, uint16_t, r->out.data->x);
out 138 source4/rpc_server/echo/rpc_echo.c if (!r->out.data->surrounding) {
out 167 source4/rpc_server/echo/rpc_echo.c r->out.result = r->in.seconds;
out 131 source4/rpc_server/epmapper/rpc_epmapper.c *r->out.entry_handle = h->wire_handle;
out 132 source4/rpc_server/epmapper/rpc_epmapper.c r->out.num_ents = talloc(mem_ctx, uint32_t);
out 133 source4/rpc_server/epmapper/rpc_epmapper.c *r->out.num_ents = num_ents;
out 136 source4/rpc_server/epmapper/rpc_epmapper.c r->out.entries = NULL;
out 137 source4/rpc_server/epmapper/rpc_epmapper.c ZERO_STRUCTP(r->out.entry_handle);
out 142 source4/rpc_server/epmapper/rpc_epmapper.c r->out.entries = talloc_array(mem_ctx, struct epm_entry_t, num_ents);
out 143 source4/rpc_server/epmapper/rpc_epmapper.c if (!r->out.entries) {
out 148 source4/rpc_server/epmapper/rpc_epmapper.c ZERO_STRUCT(r->out.entries[i].object);
out 149 source4/rpc_server/epmapper/rpc_epmapper.c r->out.entries[i].annotation = eps->e[i].name;
out 150 source4/rpc_server/epmapper/rpc_epmapper.c r->out.entries[i].tower = talloc(mem_ctx, struct epm_twr_t);
out 151 source4/rpc_server/epmapper/rpc_epmapper.c if (!r->out.entries[i].tower) {
out 154 source4/rpc_server/epmapper/rpc_epmapper.c r->out.entries[i].tower->tower = eps->e[i].ep;
out 180 source4/rpc_server/epmapper/rpc_epmapper.c ZERO_STRUCT(*r->out.entry_handle);
out 181 source4/rpc_server/epmapper/rpc_epmapper.c r->out.num_towers = talloc(mem_ctx, uint32_t);
out 182 source4/rpc_server/epmapper/rpc_epmapper.c if (!r->out.num_towers) {
out 185 source4/rpc_server/epmapper/rpc_epmapper.c *r->out.num_towers = 1;
out 186 source4/rpc_server/epmapper/rpc_epmapper.c r->out.towers = talloc(mem_ctx, struct epm_twr_p_t);
out 187 source4/rpc_server/epmapper/rpc_epmapper.c if (!r->out.towers) {
out 190 source4/rpc_server/epmapper/rpc_epmapper.c r->out.towers->twr = talloc(mem_ctx, struct epm_twr_t);
out 191 source4/rpc_server/epmapper/rpc_epmapper.c if (!r->out.towers->twr) {
out 229 source4/rpc_server/epmapper/rpc_epmapper.c r->out.towers->twr->tower = eps[i].ep;
out 230 source4/rpc_server/epmapper/rpc_epmapper.c r->out.towers->twr->tower_length = 0;
out 236 source4/rpc_server/epmapper/rpc_epmapper.c *r->out.num_towers = 0;
out 237 source4/rpc_server/epmapper/rpc_epmapper.c r->out.towers->twr = NULL;
out 88 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.handle = *r->in.handle;
out 94 source4/rpc_server/lsa/dcesrv_lsa.c ZERO_STRUCTP(r->out.handle);
out 142 source4/rpc_server/lsa/dcesrv_lsa.c ZERO_STRUCTP(r->out.handle);
out 174 source4/rpc_server/lsa/dcesrv_lsa.c ZERO_STRUCTP(r->out.handle);
out 191 source4/rpc_server/lsa/dcesrv_lsa.c r2.out.rights = rights;
out 207 source4/rpc_server/lsa/dcesrv_lsa.c r2.out.rights);
out 216 source4/rpc_server/lsa/dcesrv_lsa.c ZERO_STRUCTP(r->out.handle);
out 242 source4/rpc_server/lsa/dcesrv_lsa.c r->out.privs->count < r->in.max_count) {
out 245 source4/rpc_server/lsa/dcesrv_lsa.c r->out.privs->privs = talloc_realloc(r->out.privs,
out 246 source4/rpc_server/lsa/dcesrv_lsa.c r->out.privs->privs,
out 248 source4/rpc_server/lsa/dcesrv_lsa.c r->out.privs->count+1);
out 249 source4/rpc_server/lsa/dcesrv_lsa.c if (r->out.privs->privs == NULL) {
out 252 source4/rpc_server/lsa/dcesrv_lsa.c e = &r->out.privs->privs[r->out.privs->count];
out 256 source4/rpc_server/lsa/dcesrv_lsa.c r->out.privs->count++;
out 260 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.resume_handle = i;
out 377 source4/rpc_server/lsa/dcesrv_lsa.c r->out.info = info;
out 385 source4/rpc_server/lsa/dcesrv_lsa.c r->out.info = info;
out 392 source4/rpc_server/lsa/dcesrv_lsa.c r->out.info = info;
out 439 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.info = NULL;
out 449 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.info = info;
out 493 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.info = NULL;
out 497 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.info = NULL;
out 514 source4/rpc_server/lsa/dcesrv_lsa.c r2.out.info = r->out.info;
out 562 source4/rpc_server/lsa/dcesrv_lsa.c ZERO_STRUCTP(r->out.acct_handle);
out 590 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.acct_handle = ah->wire_handle;
out 635 source4/rpc_server/lsa/dcesrv_lsa.c r->out.sids->sids = talloc_array(r->out.sids, struct lsa_SidPtr, count);
out 636 source4/rpc_server/lsa/dcesrv_lsa.c if (r->out.sids->sids == NULL) {
out 641 source4/rpc_server/lsa/dcesrv_lsa.c r->out.sids->sids[i].sid =
out 642 source4/rpc_server/lsa/dcesrv_lsa.c samdb_result_dom_sid(r->out.sids->sids,
out 645 source4/rpc_server/lsa/dcesrv_lsa.c NT_STATUS_HAVE_NO_MEMORY(r->out.sids->sids[i].sid);
out 648 source4/rpc_server/lsa/dcesrv_lsa.c r->out.sids->num_sids = count;
out 649 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.resume_handle = count + *r->in.resume_handle;
out 683 source4/rpc_server/lsa/dcesrv_lsa.c ZERO_STRUCTP(r->out.trustdom_handle);
out 1027 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.trustdom_handle = handle->wire_handle;
out 1053 source4/rpc_server/lsa/dcesrv_lsa.c r2.out.trustdom_handle = r->out.trustdom_handle;
out 1079 source4/rpc_server/lsa/dcesrv_lsa.c r2.out.trustdom_handle = r->out.trustdom_handle;
out 1107 source4/rpc_server/lsa/dcesrv_lsa.c ZERO_STRUCTP(r->out.trustdom_handle);
out 1161 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.trustdom_handle = handle->wire_handle;
out 1187 source4/rpc_server/lsa/dcesrv_lsa.c ZERO_STRUCTP(r->out.trustdom_handle);
out 1227 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.trustdom_handle = handle->wire_handle;
out 1270 source4/rpc_server/lsa/dcesrv_lsa.c opn.out.trustdom_handle = talloc(mem_ctx, struct policy_handle);
out 1271 source4/rpc_server/lsa/dcesrv_lsa.c if (!opn.out.trustdom_handle) {
out 1279 source4/rpc_server/lsa/dcesrv_lsa.c DCESRV_PULL_HANDLE(h, opn.out.trustdom_handle, DCESRV_HANDLE_ANY);
out 1282 source4/rpc_server/lsa/dcesrv_lsa.c del.in.handle = opn.out.trustdom_handle;
out 1283 source4/rpc_server/lsa/dcesrv_lsa.c del.out.handle = opn.out.trustdom_handle;
out 1349 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.info = info;
out 1362 source4/rpc_server/lsa/dcesrv_lsa.c r->out.info->info_basic.netbios_name.string
out 1364 source4/rpc_server/lsa/dcesrv_lsa.c r->out.info->info_basic.sid
out 1390 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.info = NULL;
out 1395 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.info = NULL;
out 1417 source4/rpc_server/lsa/dcesrv_lsa.c opn.out.trustdom_handle = talloc(mem_ctx, struct policy_handle);
out 1418 source4/rpc_server/lsa/dcesrv_lsa.c if (!opn.out.trustdom_handle) {
out 1427 source4/rpc_server/lsa/dcesrv_lsa.c DCESRV_PULL_HANDLE(h, opn.out.trustdom_handle, DCESRV_HANDLE_ANY);
out 1430 source4/rpc_server/lsa/dcesrv_lsa.c query.in.trustdom_handle = opn.out.trustdom_handle;
out 1432 source4/rpc_server/lsa/dcesrv_lsa.c query.out.info = r->out.info;
out 1466 source4/rpc_server/lsa/dcesrv_lsa.c opn.out.trustdom_handle = talloc(mem_ctx, struct policy_handle);
out 1467 source4/rpc_server/lsa/dcesrv_lsa.c if (!opn.out.trustdom_handle) {
out 1476 source4/rpc_server/lsa/dcesrv_lsa.c DCESRV_PULL_HANDLE(h, opn.out.trustdom_handle, DCESRV_HANDLE_ANY);
out 1479 source4/rpc_server/lsa/dcesrv_lsa.c query.in.trustdom_handle = opn.out.trustdom_handle;
out 1481 source4/rpc_server/lsa/dcesrv_lsa.c query.out.info = r->out.info;
out 1531 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.resume_handle = 0;
out 1533 source4/rpc_server/lsa/dcesrv_lsa.c r->out.domains->domains = NULL;
out 1534 source4/rpc_server/lsa/dcesrv_lsa.c r->out.domains->count = 0;
out 1563 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.resume_handle = -1;
out 1570 source4/rpc_server/lsa/dcesrv_lsa.c r->out.domains->count = count - *r->in.resume_handle;
out 1571 source4/rpc_server/lsa/dcesrv_lsa.c r->out.domains->count = MIN(r->out.domains->count,
out 1574 source4/rpc_server/lsa/dcesrv_lsa.c r->out.domains->domains = entries + *r->in.resume_handle;
out 1575 source4/rpc_server/lsa/dcesrv_lsa.c r->out.domains->count = r->out.domains->count;
out 1577 source4/rpc_server/lsa/dcesrv_lsa.c if (r->out.domains->count < count - *r->in.resume_handle) {
out 1578 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.resume_handle = *r->in.resume_handle + r->out.domains->count;
out 1616 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.resume_handle = 0;
out 1618 source4/rpc_server/lsa/dcesrv_lsa.c r->out.domains->domains = NULL;
out 1619 source4/rpc_server/lsa/dcesrv_lsa.c r->out.domains->count = 0;
out 1650 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.resume_handle = -1;
out 1657 source4/rpc_server/lsa/dcesrv_lsa.c r->out.domains->count = count - *r->in.resume_handle;
out 1658 source4/rpc_server/lsa/dcesrv_lsa.c r->out.domains->count = MIN(r->out.domains->count,
out 1661 source4/rpc_server/lsa/dcesrv_lsa.c r->out.domains->domains = entries + *r->in.resume_handle;
out 1662 source4/rpc_server/lsa/dcesrv_lsa.c r->out.domains->count = r->out.domains->count;
out 1664 source4/rpc_server/lsa/dcesrv_lsa.c if (r->out.domains->count < count - *r->in.resume_handle) {
out 1665 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.resume_handle = *r->in.resume_handle + r->out.domains->count;
out 1683 source4/rpc_server/lsa/dcesrv_lsa.c ZERO_STRUCTP(r->out.acct_handle);
out 1711 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.acct_handle = ah->wire_handle;
out 1745 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.privs = privs;
out 1828 source4/rpc_server/lsa/dcesrv_lsa.c r->out.rights->count = el->num_values;
out 1829 source4/rpc_server/lsa/dcesrv_lsa.c r->out.rights->names = talloc_array(r->out.rights,
out 1830 source4/rpc_server/lsa/dcesrv_lsa.c struct lsa_StringLarge, r->out.rights->count);
out 1831 source4/rpc_server/lsa/dcesrv_lsa.c if (r->out.rights->names == NULL) {
out 1836 source4/rpc_server/lsa/dcesrv_lsa.c r->out.rights->names[i].string = (const char *)el->values[i].data;
out 1894 source4/rpc_server/lsa/dcesrv_lsa.c r2.out.rights = talloc(mem_ctx, struct lsa_RightSet);
out 1898 source4/rpc_server/lsa/dcesrv_lsa.c ZERO_STRUCTP(r2.out.rights);
out 1909 source4/rpc_server/lsa/dcesrv_lsa.c for (j=0;j<r2.out.rights->count;j++) {
out 1910 source4/rpc_server/lsa/dcesrv_lsa.c if (strcasecmp_m(r2.out.rights->names[j].string,
out 1915 source4/rpc_server/lsa/dcesrv_lsa.c if (j != r2.out.rights->count) continue;
out 2004 source4/rpc_server/lsa/dcesrv_lsa.c r2.out.rights = rights;
out 2013 source4/rpc_server/lsa/dcesrv_lsa.c r2.out.rights);
out 2082 source4/rpc_server/lsa/dcesrv_lsa.c enumPrivs.out.privs = &privs;
out 2089 source4/rpc_server/lsa/dcesrv_lsa.c *(r->out.access_mask) = 0x00000000;
out 2096 source4/rpc_server/lsa/dcesrv_lsa.c *(r->out.access_mask) |= LSA_POLICY_MODE_INTERACTIVE;
out 2099 source4/rpc_server/lsa/dcesrv_lsa.c *(r->out.access_mask) |= LSA_POLICY_MODE_NETWORK;
out 2102 source4/rpc_server/lsa/dcesrv_lsa.c *(r->out.access_mask) |= LSA_POLICY_MODE_REMOTE_INTERACTIVE;
out 2142 source4/rpc_server/lsa/dcesrv_lsa.c ZERO_STRUCTP(r->out.sec_handle);
out 2268 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.sec_handle = handle->wire_handle;
out 2295 source4/rpc_server/lsa/dcesrv_lsa.c ZERO_STRUCTP(r->out.sec_handle);
out 2383 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.sec_handle = handle->wire_handle;
out 2609 source4/rpc_server/lsa/dcesrv_lsa.c r->out.old_val = talloc_zero(mem_ctx, struct lsa_DATA_BUF_PTR);
out 2610 source4/rpc_server/lsa/dcesrv_lsa.c if (!r->out.old_val) {
out 2624 source4/rpc_server/lsa/dcesrv_lsa.c r->out.old_val->buf = talloc(mem_ctx, struct lsa_DATA_BUF);
out 2625 source4/rpc_server/lsa/dcesrv_lsa.c if (!r->out.old_val->buf) {
out 2628 source4/rpc_server/lsa/dcesrv_lsa.c r->out.old_val->buf->size = crypt_secret.length;
out 2629 source4/rpc_server/lsa/dcesrv_lsa.c r->out.old_val->buf->length = crypt_secret.length;
out 2630 source4/rpc_server/lsa/dcesrv_lsa.c r->out.old_val->buf->data = crypt_secret.data;
out 2635 source4/rpc_server/lsa/dcesrv_lsa.c r->out.old_mtime = talloc(mem_ctx, NTTIME);
out 2636 source4/rpc_server/lsa/dcesrv_lsa.c if (!r->out.old_mtime) {
out 2639 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.old_mtime = ldb_msg_find_attr_as_uint64(res[0], "priorSetTime", 0);
out 2644 source4/rpc_server/lsa/dcesrv_lsa.c r->out.new_val = talloc_zero(mem_ctx, struct lsa_DATA_BUF_PTR);
out 2645 source4/rpc_server/lsa/dcesrv_lsa.c if (!r->out.new_val) {
out 2660 source4/rpc_server/lsa/dcesrv_lsa.c r->out.new_val->buf = talloc(mem_ctx, struct lsa_DATA_BUF);
out 2661 source4/rpc_server/lsa/dcesrv_lsa.c if (!r->out.new_val->buf) {
out 2664 source4/rpc_server/lsa/dcesrv_lsa.c r->out.new_val->buf->length = crypt_secret.length;
out 2665 source4/rpc_server/lsa/dcesrv_lsa.c r->out.new_val->buf->size = crypt_secret.length;
out 2666 source4/rpc_server/lsa/dcesrv_lsa.c r->out.new_val->buf->data = crypt_secret.data;
out 2671 source4/rpc_server/lsa/dcesrv_lsa.c r->out.new_mtime = talloc(mem_ctx, NTTIME);
out 2672 source4/rpc_server/lsa/dcesrv_lsa.c if (!r->out.new_mtime) {
out 2675 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.new_mtime = ldb_msg_find_attr_as_uint64(res[0], "lastSetTime", 0);
out 2702 source4/rpc_server/lsa/dcesrv_lsa.c r->out.luid->low = id;
out 2703 source4/rpc_server/lsa/dcesrv_lsa.c r->out.luid->high = 0;
out 2741 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.name = name;
out 2778 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.disp_name = disp_name;
out 2779 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.returned_language_id = 0;
out 2821 source4/rpc_server/lsa/dcesrv_lsa.c r->out.sids->sids = talloc_array(r->out.sids, struct lsa_SidPtr, ret);
out 2822 source4/rpc_server/lsa/dcesrv_lsa.c if (r->out.sids->sids == NULL) {
out 2826 source4/rpc_server/lsa/dcesrv_lsa.c r->out.sids->sids[i].sid = samdb_result_dom_sid(r->out.sids->sids,
out 2828 source4/rpc_server/lsa/dcesrv_lsa.c NT_STATUS_HAVE_NO_MEMORY(r->out.sids->sids[i].sid);
out 2830 source4/rpc_server/lsa/dcesrv_lsa.c r->out.sids->num_sids = ret;
out 2909 source4/rpc_server/lsa/dcesrv_lsa.c r->out.account_name = r->in.account_name;
out 2910 source4/rpc_server/lsa/dcesrv_lsa.c r->out.authority_name = r->in.authority_name;
out 2939 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.account_name = _account_name;
out 2940 source4/rpc_server/lsa/dcesrv_lsa.c if (r->out.authority_name) {
out 2941 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.authority_name = _authority_name;
out 2967 source4/rpc_server/lsa/dcesrv_lsa.c info = talloc(r->out.info, union lsa_DomainInformationPolicy);
out 2975 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.info = NULL;
out 2987 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.info = NULL;
out 2996 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.info = info;
out 3001 source4/rpc_server/lsa/dcesrv_lsa.c *r->out.info = NULL;
out 200 source4/rpc_server/lsa/lsa_init.c ZERO_STRUCTP(r->out.handle);
out 224 source4/rpc_server/lsa/lsa_init.c *r->out.handle = handle->wire_handle;
out 245 source4/rpc_server/lsa/lsa_init.c r2.out.handle = r->out.handle;
out 534 source4/rpc_server/lsa/lsa_lookup.c *r->out.domains = NULL;
out 547 source4/rpc_server/lsa/lsa_lookup.c domains = talloc_zero(r->out.domains, struct lsa_RefDomainList);
out 551 source4/rpc_server/lsa/lsa_lookup.c *r->out.domains = domains;
out 553 source4/rpc_server/lsa/lsa_lookup.c r->out.names = talloc_zero(mem_ctx, struct lsa_TransNameArray2);
out 554 source4/rpc_server/lsa/lsa_lookup.c if (r->out.names == NULL) {
out 558 source4/rpc_server/lsa/lsa_lookup.c *r->out.count = 0;
out 560 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names = talloc_array(r->out.names, struct lsa_TranslatedName2,
out 562 source4/rpc_server/lsa/lsa_lookup.c if (r->out.names->names == NULL) {
out 574 source4/rpc_server/lsa/lsa_lookup.c r->out.names->count++;
out 576 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names[i].sid_type = SID_NAME_UNKNOWN;
out 577 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names[i].name.string = sid_str;
out 578 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names[i].sid_index = 0xFFFFFFFF;
out 579 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names[i].unknown = 0;
out 582 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names[i].name.string = "(SIDERROR)";
out 602 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names[i].sid_type = rtype;
out 603 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names[i].name.string = name;
out 604 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names[i].sid_index = sid_index;
out 605 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names[i].unknown = 0;
out 607 source4/rpc_server/lsa/lsa_lookup.c (*r->out.count)++;
out 610 source4/rpc_server/lsa/lsa_lookup.c if (*r->out.count == 0) {
out 613 source4/rpc_server/lsa/lsa_lookup.c if (*r->out.count != r->in.sids->num_sids) {
out 644 source4/rpc_server/lsa/lsa_lookup.c pol.out.handle = r2.in.handle;
out 663 source4/rpc_server/lsa/lsa_lookup.c r2.out.count = r->out.count;
out 664 source4/rpc_server/lsa/lsa_lookup.c r2.out.names = r->out.names;
out 665 source4/rpc_server/lsa/lsa_lookup.c r2.out.domains = r->out.domains;
out 669 source4/rpc_server/lsa/lsa_lookup.c r->out.domains = r2.out.domains;
out 670 source4/rpc_server/lsa/lsa_lookup.c r->out.names = r2.out.names;
out 671 source4/rpc_server/lsa/lsa_lookup.c r->out.count = r2.out.count;
out 696 source4/rpc_server/lsa/lsa_lookup.c r2.out.count = r->out.count;
out 697 source4/rpc_server/lsa/lsa_lookup.c r2.out.names = NULL;
out 698 source4/rpc_server/lsa/lsa_lookup.c r2.out.domains = r->out.domains;
out 704 source4/rpc_server/lsa/lsa_lookup.c r->out.domains = r2.out.domains;
out 705 source4/rpc_server/lsa/lsa_lookup.c if (!r2.out.names) {
out 706 source4/rpc_server/lsa/lsa_lookup.c r->out.names = NULL;
out 710 source4/rpc_server/lsa/lsa_lookup.c r->out.names = talloc(mem_ctx, struct lsa_TransNameArray);
out 711 source4/rpc_server/lsa/lsa_lookup.c if (r->out.names == NULL) {
out 714 source4/rpc_server/lsa/lsa_lookup.c r->out.names->count = r2.out.names->count;
out 715 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names = talloc_array(r->out.names, struct lsa_TranslatedName,
out 716 source4/rpc_server/lsa/lsa_lookup.c r->out.names->count);
out 717 source4/rpc_server/lsa/lsa_lookup.c if (r->out.names->names == NULL) {
out 720 source4/rpc_server/lsa/lsa_lookup.c for (i=0;i<r->out.names->count;i++) {
out 721 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names[i].sid_type = r2.out.names->names[i].sid_type;
out 722 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names[i].name.string = r2.out.names->names[i].name.string;
out 723 source4/rpc_server/lsa/lsa_lookup.c r->out.names->names[i].sid_index = r2.out.names->names[i].sid_index;
out 752 source4/rpc_server/lsa/lsa_lookup.c *r->out.domains = NULL;
out 758 source4/rpc_server/lsa/lsa_lookup.c *r->out.domains = domains;
out 760 source4/rpc_server/lsa/lsa_lookup.c r->out.sids = talloc_zero(mem_ctx, struct lsa_TransSidArray3);
out 761 source4/rpc_server/lsa/lsa_lookup.c if (r->out.sids == NULL) {
out 765 source4/rpc_server/lsa/lsa_lookup.c *r->out.count = 0;
out 767 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids = talloc_array(r->out.sids, struct lsa_TranslatedSid3,
out 769 source4/rpc_server/lsa/lsa_lookup.c if (r->out.sids->sids == NULL) {
out 781 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->count++;
out 783 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].sid_type = SID_NAME_UNKNOWN;
out 784 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].sid = NULL;
out 785 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].sid_index = 0xFFFFFFFF;
out 786 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].flags = 0;
out 799 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].sid_type = rtype;
out 800 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].sid = sid;
out 801 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].sid_index = sid_index;
out 802 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].flags = 0;
out 804 source4/rpc_server/lsa/lsa_lookup.c (*r->out.count)++;
out 807 source4/rpc_server/lsa/lsa_lookup.c if (*r->out.count == 0) {
out 810 source4/rpc_server/lsa/lsa_lookup.c if (*r->out.count != r->in.num_names) {
out 839 source4/rpc_server/lsa/lsa_lookup.c pol.out.handle = r2.in.handle;
out 859 source4/rpc_server/lsa/lsa_lookup.c r2.out.domains = r->out.domains;
out 860 source4/rpc_server/lsa/lsa_lookup.c r2.out.sids = r->out.sids;
out 861 source4/rpc_server/lsa/lsa_lookup.c r2.out.count = r->out.count;
out 865 source4/rpc_server/lsa/lsa_lookup.c r->out.domains = r2.out.domains;
out 866 source4/rpc_server/lsa/lsa_lookup.c r->out.sids = r2.out.sids;
out 867 source4/rpc_server/lsa/lsa_lookup.c r->out.count = r2.out.count;
out 884 source4/rpc_server/lsa/lsa_lookup.c *r->out.domains = NULL;
out 899 source4/rpc_server/lsa/lsa_lookup.c *r->out.domains = domains;
out 901 source4/rpc_server/lsa/lsa_lookup.c r->out.sids = talloc_zero(mem_ctx, struct lsa_TransSidArray2);
out 902 source4/rpc_server/lsa/lsa_lookup.c if (r->out.sids == NULL) {
out 906 source4/rpc_server/lsa/lsa_lookup.c *r->out.count = 0;
out 908 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids = talloc_array(r->out.sids, struct lsa_TranslatedSid2,
out 910 source4/rpc_server/lsa/lsa_lookup.c if (r->out.sids->sids == NULL) {
out 921 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->count++;
out 923 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].sid_type = SID_NAME_UNKNOWN;
out 927 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].rid = 0;
out 928 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].sid_index = 0xFFFFFFFF;
out 929 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].unknown = 0;
out 943 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].sid_type = rtype;
out 944 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].rid = sid->sub_auths[sid->num_auths-1];
out 945 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].sid_index = sid_index;
out 946 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].unknown = 0;
out 948 source4/rpc_server/lsa/lsa_lookup.c (*r->out.count)++;
out 951 source4/rpc_server/lsa/lsa_lookup.c if (*r->out.count == 0) {
out 954 source4/rpc_server/lsa/lsa_lookup.c if (*r->out.count != r->in.num_names) {
out 981 source4/rpc_server/lsa/lsa_lookup.c r2.out.count = r->out.count;
out 982 source4/rpc_server/lsa/lsa_lookup.c r2.out.domains = r->out.domains;
out 985 source4/rpc_server/lsa/lsa_lookup.c if (r2.out.sids == NULL) {
out 989 source4/rpc_server/lsa/lsa_lookup.c r->out.sids = talloc(mem_ctx, struct lsa_TransSidArray);
out 990 source4/rpc_server/lsa/lsa_lookup.c if (r->out.sids == NULL) {
out 993 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->count = r2.out.sids->count;
out 994 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids = talloc_array(r->out.sids, struct lsa_TranslatedSid,
out 995 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->count);
out 996 source4/rpc_server/lsa/lsa_lookup.c if (r->out.sids->sids == NULL) {
out 999 source4/rpc_server/lsa/lsa_lookup.c for (i=0;i<r->out.sids->count;i++) {
out 1000 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].sid_type = r2.out.sids->sids[i].sid_type;
out 1001 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].rid = r2.out.sids->sids[i].rid;
out 1002 source4/rpc_server/lsa/lsa_lookup.c r->out.sids->sids[i].sid_index = r2.out.sids->sids[i].sid_index;
out 53 source4/rpc_server/netlogon/dcerpc_netlogon.c ZERO_STRUCTP(r->out.return_credentials);
out 70 source4/rpc_server/netlogon/dcerpc_netlogon.c *r->out.return_credentials = pipe_state->server_challenge;
out 95 source4/rpc_server/netlogon/dcerpc_netlogon.c ZERO_STRUCTP(r->out.return_credentials);
out 96 source4/rpc_server/netlogon/dcerpc_netlogon.c *r->out.rid = 0;
out 104 source4/rpc_server/netlogon/dcerpc_netlogon.c *r->out.negotiate_flags = NETLOGON_NEG_ACCOUNT_LOCKOUT |
out 233 source4/rpc_server/netlogon/dcerpc_netlogon.c *r->out.rid = samdb_result_rid_from_sid(mem_ctx, msgs[0],
out 246 source4/rpc_server/netlogon/dcerpc_netlogon.c r->out.return_credentials,
out 289 source4/rpc_server/netlogon/dcerpc_netlogon.c r3.out.return_credentials = r->out.return_credentials;
out 291 source4/rpc_server/netlogon/dcerpc_netlogon.c r3.out.negotiate_flags = &negotiate_flags_out;
out 292 source4/rpc_server/netlogon/dcerpc_netlogon.c r3.out.rid = &rid;
out 308 source4/rpc_server/netlogon/dcerpc_netlogon.c r3.out.return_credentials = r->out.return_credentials;
out 310 source4/rpc_server/netlogon/dcerpc_netlogon.c r3.out.negotiate_flags = r->out.negotiate_flags;
out 311 source4/rpc_server/netlogon/dcerpc_netlogon.c r3.out.rid = &rid;
out 393 source4/rpc_server/netlogon/dcerpc_netlogon.c r->in.credential, r->out.return_authenticator,
out 430 source4/rpc_server/netlogon/dcerpc_netlogon.c r->in.credential, r->out.return_authenticator,
out 588 source4/rpc_server/netlogon/dcerpc_netlogon.c *r->out.authoritative = 1;
out 591 source4/rpc_server/netlogon/dcerpc_netlogon.c *r->out.flags = 0;
out 593 source4/rpc_server/netlogon/dcerpc_netlogon.c r->out.validation->generic = generic;
out 610 source4/rpc_server/netlogon/dcerpc_netlogon.c generic->length = check.out.generic_reply.length;
out 611 source4/rpc_server/netlogon/dcerpc_netlogon.c generic->data = check.out.generic_reply.data;
out 659 source4/rpc_server/netlogon/dcerpc_netlogon.c r->out.validation->sam2 = sam2;
out 666 source4/rpc_server/netlogon/dcerpc_netlogon.c r->out.validation->sam3 = sam3;
out 677 source4/rpc_server/netlogon/dcerpc_netlogon.c r->out.validation->sam6 = sam6;
out 684 source4/rpc_server/netlogon/dcerpc_netlogon.c *r->out.authoritative = 1;
out 687 source4/rpc_server/netlogon/dcerpc_netlogon.c *r->out.flags = 0;
out 739 source4/rpc_server/netlogon/dcerpc_netlogon.c r2.out.validation = r->out.validation;
out 740 source4/rpc_server/netlogon/dcerpc_netlogon.c r2.out.authoritative = r->out.authoritative;
out 741 source4/rpc_server/netlogon/dcerpc_netlogon.c r2.out.flags = r->out.flags;
out 745 source4/rpc_server/netlogon/dcerpc_netlogon.c r->out.return_authenticator = return_authenticator;
out 770 source4/rpc_server/netlogon/dcerpc_netlogon.c r2.out.validation = r->out.validation;
out 771 source4/rpc_server/netlogon/dcerpc_netlogon.c r2.out.authoritative = r->out.authoritative;
out 772 source4/rpc_server/netlogon/dcerpc_netlogon.c r2.out.flags = &flags;
out 776 source4/rpc_server/netlogon/dcerpc_netlogon.c r->out.return_authenticator = r2.out.return_authenticator;
out 875 source4/rpc_server/netlogon/dcerpc_netlogon.c *r->out.dcname = dcname;
out 903 source4/rpc_server/netlogon/dcerpc_netlogon.c r2.out.dcname = r->out.dcname;
out 1095 source4/rpc_server/netlogon/dcerpc_netlogon.c r->out.return_authenticator,
out 1164 source4/rpc_server/netlogon/dcerpc_netlogon.c r->out.info->info1 = info1;
out 1214 source4/rpc_server/netlogon/dcerpc_netlogon.c ZERO_STRUCTP(r->out.info);
out 1272 source4/rpc_server/netlogon/dcerpc_netlogon.c *r->out.info = info;
out 1295 source4/rpc_server/netlogon/dcerpc_netlogon.c r2.out.info = r->out.info;
out 1321 source4/rpc_server/netlogon/dcerpc_netlogon.c r2.out.info = r->out.info;
out 1381 source4/rpc_server/netlogon/dcerpc_netlogon.c ZERO_STRUCT(r->out);
out 1419 source4/rpc_server/netlogon/dcerpc_netlogon.c r->out.trusts = trusts;
out 165 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.connect_handle);
out 189 source4/rpc_server/samr/dcesrv_samr.c *r->out.connect_handle = handle->wire_handle;
out 203 source4/rpc_server/samr/dcesrv_samr.c *r->out.handle = *r->in.handle;
out 209 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.handle);
out 234 source4/rpc_server/samr/dcesrv_samr.c *r->out.sdbuf = NULL;
out 245 source4/rpc_server/samr/dcesrv_samr.c *r->out.sdbuf = sd;
out 282 source4/rpc_server/samr/dcesrv_samr.c *r->out.sid = NULL;
out 324 source4/rpc_server/samr/dcesrv_samr.c *r->out.sid = sid;
out 348 source4/rpc_server/samr/dcesrv_samr.c *r->out.resume_handle = 0;
out 349 source4/rpc_server/samr/dcesrv_samr.c *r->out.sam = NULL;
out 350 source4/rpc_server/samr/dcesrv_samr.c *r->out.num_entries = 0;
out 365 source4/rpc_server/samr/dcesrv_samr.c *r->out.resume_handle = dom_res->count;
out 406 source4/rpc_server/samr/dcesrv_samr.c *r->out.sam = array;
out 407 source4/rpc_server/samr/dcesrv_samr.c *r->out.num_entries = i;
out 408 source4/rpc_server/samr/dcesrv_samr.c array->count = *r->out.num_entries;
out 431 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.domain_handle);
out 508 source4/rpc_server/samr/dcesrv_samr.c *r->out.domain_handle = h_domain->wire_handle;
out 786 source4/rpc_server/samr/dcesrv_samr.c *r->out.info = NULL;
out 898 source4/rpc_server/samr/dcesrv_samr.c *r->out.info = info;
out 1035 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.group_handle);
out 1036 source4/rpc_server/samr/dcesrv_samr.c *r->out.rid = 0;
out 1127 source4/rpc_server/samr/dcesrv_samr.c *r->out.group_handle = g_handle->wire_handle;
out 1128 source4/rpc_server/samr/dcesrv_samr.c *r->out.rid = sid->sub_auths[sid->num_auths-1];
out 1156 source4/rpc_server/samr/dcesrv_samr.c *r->out.resume_handle = 0;
out 1157 source4/rpc_server/samr/dcesrv_samr.c *r->out.sam = NULL;
out 1158 source4/rpc_server/samr/dcesrv_samr.c *r->out.num_entries = 0;
out 1209 source4/rpc_server/samr/dcesrv_samr.c *r->out.num_entries = count - first;
out 1210 source4/rpc_server/samr/dcesrv_samr.c *r->out.num_entries = MIN(*r->out.num_entries,
out 1219 source4/rpc_server/samr/dcesrv_samr.c sam->count = *r->out.num_entries;
out 1221 source4/rpc_server/samr/dcesrv_samr.c *r->out.sam = sam;
out 1223 source4/rpc_server/samr/dcesrv_samr.c if (*r->out.num_entries < count - first) {
out 1224 source4/rpc_server/samr/dcesrv_samr.c *r->out.resume_handle = entries[first+*r->out.num_entries-1].idx;
out 1265 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.user_handle);
out 1266 source4/rpc_server/samr/dcesrv_samr.c *r->out.access_granted = 0;
out 1267 source4/rpc_server/samr/dcesrv_samr.c *r->out.rid = 0;
out 1471 source4/rpc_server/samr/dcesrv_samr.c *r->out.user_handle = u_handle->wire_handle;
out 1472 source4/rpc_server/samr/dcesrv_samr.c *r->out.access_granted = 0xf07ff; /* TODO: fix access mask calculations */
out 1474 source4/rpc_server/samr/dcesrv_samr.c *r->out.rid = sid->sub_auths[sid->num_auths-1];
out 1495 source4/rpc_server/samr/dcesrv_samr.c r2.out.user_handle = r->out.user_handle;
out 1496 source4/rpc_server/samr/dcesrv_samr.c r2.out.access_granted = &access_granted;
out 1497 source4/rpc_server/samr/dcesrv_samr.c r2.out.rid = r->out.rid;
out 1516 source4/rpc_server/samr/dcesrv_samr.c *r->out.resume_handle = 0;
out 1517 source4/rpc_server/samr/dcesrv_samr.c *r->out.sam = NULL;
out 1518 source4/rpc_server/samr/dcesrv_samr.c *r->out.num_entries = 0;
out 1562 source4/rpc_server/samr/dcesrv_samr.c *r->out.num_entries = num_filtered_entries - first;
out 1563 source4/rpc_server/samr/dcesrv_samr.c *r->out.num_entries = MIN(*r->out.num_entries,
out 1572 source4/rpc_server/samr/dcesrv_samr.c sam->count = *r->out.num_entries;
out 1574 source4/rpc_server/samr/dcesrv_samr.c *r->out.sam = sam;
out 1580 source4/rpc_server/samr/dcesrv_samr.c if (*r->out.num_entries < num_filtered_entries - first) {
out 1581 source4/rpc_server/samr/dcesrv_samr.c *r->out.resume_handle = entries[first+*r->out.num_entries-1].idx;
out 1604 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.alias_handle);
out 1605 source4/rpc_server/samr/dcesrv_samr.c *r->out.rid = 0;
out 1690 source4/rpc_server/samr/dcesrv_samr.c *r->out.alias_handle = a_handle->wire_handle;
out 1692 source4/rpc_server/samr/dcesrv_samr.c *r->out.rid = sid->sub_auths[sid->num_auths-1];
out 1712 source4/rpc_server/samr/dcesrv_samr.c *r->out.resume_handle = 0;
out 1713 source4/rpc_server/samr/dcesrv_samr.c *r->out.sam = NULL;
out 1714 source4/rpc_server/samr/dcesrv_samr.c *r->out.num_entries = 0;
out 1774 source4/rpc_server/samr/dcesrv_samr.c *r->out.num_entries = count - first;
out 1775 source4/rpc_server/samr/dcesrv_samr.c *r->out.num_entries = MIN(*r->out.num_entries, 1000);
out 1783 source4/rpc_server/samr/dcesrv_samr.c sam->count = *r->out.num_entries;
out 1785 source4/rpc_server/samr/dcesrv_samr.c *r->out.sam = sam;
out 1787 source4/rpc_server/samr/dcesrv_samr.c if (*r->out.num_entries < count - first) {
out 1788 source4/rpc_server/samr/dcesrv_samr.c *r->out.resume_handle =
out 1789 source4/rpc_server/samr/dcesrv_samr.c entries[first+*r->out.num_entries-1].idx;
out 1850 source4/rpc_server/samr/dcesrv_samr.c r->out.rids->count = 0;
out 1851 source4/rpc_server/samr/dcesrv_samr.c r->out.rids->ids = talloc_array(mem_ctx, uint32_t, count);
out 1852 source4/rpc_server/samr/dcesrv_samr.c if (r->out.rids->ids == NULL)
out 1865 source4/rpc_server/samr/dcesrv_samr.c r->out.rids->ids[r->out.rids->count] =
out 1867 source4/rpc_server/samr/dcesrv_samr.c r->out.rids->count += 1;
out 1887 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.rids);
out 1888 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.types);
out 1898 source4/rpc_server/samr/dcesrv_samr.c r->out.rids->ids = talloc_array(mem_ctx, uint32_t, r->in.num_names);
out 1899 source4/rpc_server/samr/dcesrv_samr.c r->out.types->ids = talloc_array(mem_ctx, uint32_t, r->in.num_names);
out 1900 source4/rpc_server/samr/dcesrv_samr.c if (!r->out.rids->ids || !r->out.types->ids) {
out 1903 source4/rpc_server/samr/dcesrv_samr.c r->out.rids->count = r->in.num_names;
out 1904 source4/rpc_server/samr/dcesrv_samr.c r->out.types->count = r->in.num_names;
out 1913 source4/rpc_server/samr/dcesrv_samr.c r->out.rids->ids[i] = 0;
out 1914 source4/rpc_server/samr/dcesrv_samr.c r->out.types->ids[i] = SID_NAME_UNKNOWN;
out 1943 source4/rpc_server/samr/dcesrv_samr.c r->out.rids->ids[i] = sid->sub_auths[sid->num_auths-1];
out 1944 source4/rpc_server/samr/dcesrv_samr.c r->out.types->ids[i] = rtype;
out 1968 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.names);
out 1969 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.types);
out 2030 source4/rpc_server/samr/dcesrv_samr.c r->out.names->names = names;
out 2031 source4/rpc_server/samr/dcesrv_samr.c r->out.names->count = r->in.num_rids;
out 2033 source4/rpc_server/samr/dcesrv_samr.c r->out.types->ids = ids;
out 2034 source4/rpc_server/samr/dcesrv_samr.c r->out.types->count = r->in.num_rids;
out 2056 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.group_handle);
out 2113 source4/rpc_server/samr/dcesrv_samr.c *r->out.group_handle = g_handle->wire_handle;
out 2133 source4/rpc_server/samr/dcesrv_samr.c *r->out.info = NULL;
out 2189 source4/rpc_server/samr/dcesrv_samr.c *r->out.info = info;
out 2334 source4/rpc_server/samr/dcesrv_samr.c *r->out.group_handle = *r->in.group_handle;
out 2345 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.group_handle);
out 2497 source4/rpc_server/samr/dcesrv_samr.c *r->out.rids = array;
out 2529 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.alias_handle);
out 2586 source4/rpc_server/samr/dcesrv_samr.c *r->out.alias_handle = g_handle->wire_handle;
out 2606 source4/rpc_server/samr/dcesrv_samr.c *r->out.info = NULL;
out 2643 source4/rpc_server/samr/dcesrv_samr.c *r->out.info = info;
out 2710 source4/rpc_server/samr/dcesrv_samr.c *r->out.alias_handle = *r->in.alias_handle;
out 2721 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.alias_handle);
out 2864 source4/rpc_server/samr/dcesrv_samr.c r->out.sids->num_sids = 0;
out 2865 source4/rpc_server/samr/dcesrv_samr.c r->out.sids->sids = NULL;
out 2893 source4/rpc_server/samr/dcesrv_samr.c r->out.sids->num_sids = el->num_values;
out 2894 source4/rpc_server/samr/dcesrv_samr.c r->out.sids->sids = sids;
out 2916 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.user_handle);
out 2971 source4/rpc_server/samr/dcesrv_samr.c *r->out.user_handle = u_handle->wire_handle;
out 2988 source4/rpc_server/samr/dcesrv_samr.c *r->out.user_handle = *r->in.user_handle;
out 3002 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.user_handle);
out 3023 source4/rpc_server/samr/dcesrv_samr.c *r->out.info = NULL;
out 3359 source4/rpc_server/samr/dcesrv_samr.c *r->out.info = info;
out 3684 source4/rpc_server/samr/dcesrv_samr.c *r->out.rids = array;
out 3842 source4/rpc_server/samr/dcesrv_samr.c *r->out.total_size = count;
out 3845 source4/rpc_server/samr/dcesrv_samr.c *r->out.returned_size = 0;
out 3848 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info1.count = *r->out.returned_size;
out 3849 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info1.entries = NULL;
out 3852 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info2.count = *r->out.returned_size;
out 3853 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info2.entries = NULL;
out 3856 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info3.count = *r->out.returned_size;
out 3857 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info3.entries = NULL;
out 3860 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info4.count = *r->out.returned_size;
out 3861 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info4.entries = NULL;
out 3864 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info5.count = *r->out.returned_size;
out 3865 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info5.entries = NULL;
out 3869 source4/rpc_server/samr/dcesrv_samr.c *r->out.returned_size = MIN(count - r->in.start_idx,
out 3873 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info1.count = *r->out.returned_size;
out 3874 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info1.entries =
out 3878 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info2.count = *r->out.returned_size;
out 3879 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info2.entries =
out 3883 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info3.count = *r->out.returned_size;
out 3884 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info3.entries =
out 3888 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info4.count = *r->out.returned_size;
out 3889 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info4.entries =
out 3893 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info5.count = *r->out.returned_size;
out 3894 source4/rpc_server/samr/dcesrv_samr.c r->out.info->info5.entries =
out 3900 source4/rpc_server/samr/dcesrv_samr.c return (*r->out.returned_size < (count - r->in.start_idx)) ?
out 3944 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.info);
out 3950 source4/rpc_server/samr/dcesrv_samr.c r->out.info->min_password_length = samdb_search_uint(a_state->sam_ctx, mem_ctx, 0,
out 3953 source4/rpc_server/samr/dcesrv_samr.c r->out.info->password_properties = samdb_search_uint(a_state->sam_ctx, mem_ctx, 0,
out 4039 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCT(r1.out);
out 4042 source4/rpc_server/samr/dcesrv_samr.c r1.out.info = r->out.info;
out 4063 source4/rpc_server/samr/dcesrv_samr.c r1.out.info = r->out.info;
out 4085 source4/rpc_server/samr/dcesrv_samr.c q.out.total_size = r->out.total_size;
out 4086 source4/rpc_server/samr/dcesrv_samr.c q.out.returned_size = r->out.returned_size;
out 4087 source4/rpc_server/samr/dcesrv_samr.c q.out.info = r->out.info;
out 4119 source4/rpc_server/samr/dcesrv_samr.c q.out.total_size = r->out.total_size;
out 4120 source4/rpc_server/samr/dcesrv_samr.c q.out.returned_size = r->out.returned_size;
out 4121 source4/rpc_server/samr/dcesrv_samr.c q.out.info = r->out.info;
out 4165 source4/rpc_server/samr/dcesrv_samr.c ZERO_STRUCTP(r->out.info);
out 4183 source4/rpc_server/samr/dcesrv_samr.c r->out.info->min_password_length = samdb_result_uint(msgs[0], "minPwdLength", 0);
out 4184 source4/rpc_server/samr/dcesrv_samr.c r->out.info->password_properties = samdb_result_uint(msgs[0], "pwdProperties", 1);
out 4203 source4/rpc_server/samr/dcesrv_samr.c c.out.connect_handle = r->out.connect_handle;
out 4257 source4/rpc_server/samr/dcesrv_samr.c c.out.connect_handle = r->out.connect_handle;
out 4273 source4/rpc_server/samr/dcesrv_samr.c c.out.connect_handle = r->out.connect_handle;
out 4290 source4/rpc_server/samr/dcesrv_samr.c c.out.connect_handle = r->out.connect_handle;
out 4294 source4/rpc_server/samr/dcesrv_samr.c r->out.info_out->info1.client_version = SAMR_CONNECT_AFTER_W2K;
out 4295 source4/rpc_server/samr/dcesrv_samr.c r->out.info_out->info1.unknown2 = 0;
out 4296 source4/rpc_server/samr/dcesrv_samr.c *r->out.level_out = r->in.level_in;
out 4316 source4/rpc_server/samr/dcesrv_samr.c *r->out.sid = dom_sid_add_rid(mem_ctx, d_state->domain_sid, r->in.rid);
out 4317 source4/rpc_server/samr/dcesrv_samr.c if (!*r->out.sid) {
out 354 source4/rpc_server/samr/samr_password.c *r->out.dominfo = NULL;
out 355 source4/rpc_server/samr/samr_password.c *r->out.reject = NULL;
out 498 source4/rpc_server/samr/samr_password.c *r->out.dominfo = dominfo;
out 499 source4/rpc_server/samr/samr_password.c *r->out.reject = reject;
out 532 source4/rpc_server/samr/samr_password.c r2.out.dominfo = &dominfo;
out 533 source4/rpc_server/samr/samr_password.c r2.out.reject = &reject;
out 57 source4/rpc_server/service_rpc.c status = socket_send(sock, out, &sendlen);
out 44 source4/rpc_server/spoolss/dcesrv_spoolss.c #define SPOOLSS_BUFFER_OK(val_true,val_false) ((r->in.offered >= *r->out.needed)?val_true:val_false)
out 246 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(spoolss_EnumPrinters, ic, *r->out.info, r->in.level, *r->out.count);
out 247 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 248 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 273 source4/rpc_server/spoolss/dcesrv_spoolss.c r2->out.handle = r->out.handle;
out 280 source4/rpc_server/spoolss/dcesrv_spoolss.c r->out.handle = r2->out.handle;
out 382 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(spoolss_EnumPrinterDrivers, ic, *r->out.info, r->in.level, *r->out.count);
out 383 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 384 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 415 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.needed = SPOOLSS_BUFFER_UNION(spoolss_DriverDirectoryInfo, ic, r->out.info, r->in.level);
out 416 source4/rpc_server/spoolss/dcesrv_spoolss.c r->out.info = SPOOLSS_BUFFER_OK(r->out.info, NULL);
out 467 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.needed = SPOOLSS_BUFFER_UNION(spoolss_PrintProcessorDirectoryInfo, ic, r->out.info, r->in.level);
out 468 source4/rpc_server/spoolss/dcesrv_spoolss.c r->out.info = SPOOLSS_BUFFER_OK(r->out.info, NULL);
out 583 source4/rpc_server/spoolss/dcesrv_spoolss.c r->out.type = talloc_zero(mem_ctx, enum winreg_Type);
out 584 source4/rpc_server/spoolss/dcesrv_spoolss.c W_ERROR_HAVE_NO_MEMORY(r->out.type);
out 586 source4/rpc_server/spoolss/dcesrv_spoolss.c r->out.needed = talloc_zero(mem_ctx, uint32_t);
out 587 source4/rpc_server/spoolss/dcesrv_spoolss.c W_ERROR_HAVE_NO_MEMORY(r->out.needed);
out 589 source4/rpc_server/spoolss/dcesrv_spoolss.c r->out.data = talloc_zero(mem_ctx, union spoolss_PrinterData);
out 590 source4/rpc_server/spoolss/dcesrv_spoolss.c W_ERROR_HAVE_NO_MEMORY(r->out.data);
out 603 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.needed = ndr_size_spoolss_PrinterData(r->out.data, *r->out.type, ic, 0);
out 604 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.type = SPOOLSS_BUFFER_OK(*r->out.type, REG_NONE);
out 605 source4/rpc_server/spoolss/dcesrv_spoolss.c r->out.data = SPOOLSS_BUFFER_OK(r->out.data, r->out.data);
out 638 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.handle = *r->in.handle;
out 644 source4/rpc_server/spoolss/dcesrv_spoolss.c ZERO_STRUCTP(r->out.handle);
out 744 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.needed = SPOOLSS_BUFFER_UNION(spoolss_FormInfo, ic, r->out.info, r->in.level);
out 745 source4/rpc_server/spoolss/dcesrv_spoolss.c r->out.info = SPOOLSS_BUFFER_OK(r->out.info, NULL);
out 811 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(spoolss_EnumForms, ic, *r->out.info, r->in.level, *r->out.count);
out 812 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 813 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 834 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(spoolss_EnumPorts, ic, *r->out.info, r->in.level, *r->out.count);
out 835 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 836 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 857 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.needed = SPOOLSS_BUFFER_UNION_ARRAY(spoolss_EnumMonitors, ic, *r->out.info, r->in.level, *r->out.count);
out 858 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.info = SPOOLSS_BUFFER_OK(*r->out.info, NULL);
out 859 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.count = SPOOLSS_BUFFER_OK(*r->out.count, 0);
out 1087 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.handle = handle->wire_handle;
out 1115 source4/rpc_server/spoolss/dcesrv_spoolss.c ZERO_STRUCTP(r->out.handle);
out 1207 source4/rpc_server/spoolss/dcesrv_spoolss.c rop.out.handle = ¬ify_handle;
out 1265 source4/rpc_server/spoolss/dcesrv_spoolss.c ZERO_STRUCTP(r->out.handle);
out 1299 source4/rpc_server/spoolss/dcesrv_spoolss.c *r->out.handle = h->wire_handle;
out 48 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = 0;
out 52 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0 = talloc(mem_ctx, struct srvsvc_NetCharDevCtr0);
out 53 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr0);
out 55 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0->count = 0;
out 56 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0->array = NULL;
out 61 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1 = talloc(mem_ctx, struct srvsvc_NetCharDevCtr1);
out 62 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr1);
out 64 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1->count = 0;
out 65 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1->array = NULL;
out 83 source4/rpc_server/srvsvc/dcesrv_srvsvc.c ZERO_STRUCTP(r->out.info);
out 118 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = 0;
out 123 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0 = talloc(mem_ctx, struct srvsvc_NetCharDevQCtr0);
out 124 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr0);
out 126 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0->count = 0;
out 127 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0->array = NULL;
out 133 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1 = talloc(mem_ctx, struct srvsvc_NetCharDevQCtr1);
out 134 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr1);
out 136 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1->count = 0;
out 137 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1->array = NULL;
out 155 source4/rpc_server/srvsvc/dcesrv_srvsvc.c ZERO_STRUCTP(r->out.info);
out 184 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 191 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 229 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = 0;
out 234 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0 = talloc(mem_ctx, struct srvsvc_NetConnCtr0);
out 235 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr0);
out 237 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0->count = 0;
out 238 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0->array = NULL;
out 244 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1 = talloc(mem_ctx, struct srvsvc_NetConnCtr1);
out 245 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr1);
out 247 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1->count = 0;
out 248 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1->array = NULL;
out 266 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = 0;
out 271 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr2 = talloc(mem_ctx, struct srvsvc_NetFileCtr2);
out 272 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr2);
out 274 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr2->count = 0;
out 275 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr2->array = NULL;
out 281 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr3 = talloc(mem_ctx, struct srvsvc_NetFileCtr3);
out 282 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr3);
out 284 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr3->count = 0;
out 285 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr3->array = NULL;
out 303 source4/rpc_server/srvsvc/dcesrv_srvsvc.c ZERO_STRUCTP(r->out.info);
out 338 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = 0;
out 343 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0 = talloc(mem_ctx, struct srvsvc_NetSessCtr0);
out 344 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr0);
out 346 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0->count = 0;
out 347 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0->array = NULL;
out 353 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1 = talloc(mem_ctx, struct srvsvc_NetSessCtr1);
out 354 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr1);
out 356 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1->count = 0;
out 357 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1->array = NULL;
out 363 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr2 = talloc(mem_ctx, struct srvsvc_NetSessCtr2);
out 364 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr2);
out 366 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr2->count = 0;
out 367 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr2->array = NULL;
out 373 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr10 = talloc(mem_ctx, struct srvsvc_NetSessCtr10);
out 374 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr10);
out 376 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr10->count = 0;
out 377 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr10->array = NULL;
out 383 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr502 = talloc(mem_ctx, struct srvsvc_NetSessCtr502);
out 384 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info_ctr->ctr.ctr502);
out 386 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr502->count = 0;
out 387 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr502->array = NULL;
out 419 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 426 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 516 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 524 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 614 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 719 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = 0;
out 747 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0 = ctr0;
out 772 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0 = ctr0;
out 773 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = r->out.info_ctr->ctr.ctr0->count;
out 788 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1 = ctr1;
out 813 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1 = ctr1;
out 814 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = r->out.info_ctr->ctr.ctr1->count;
out 832 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr2 = ctr2;
out 857 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr2 = ctr2;
out 858 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = r->out.info_ctr->ctr.ctr2->count;
out 876 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr501 = ctr501;
out 901 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr501 = ctr501;
out 902 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = r->out.info_ctr->ctr.ctr501->count;
out 920 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr502 = ctr502;
out 945 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr502 = ctr502;
out 946 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = r->out.info_ctr->ctr.ctr502->count;
out 968 source4/rpc_server/srvsvc/dcesrv_srvsvc.c ZERO_STRUCTP(r->out.info);
out 1001 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->info0 = info.info0;
out 1017 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->info1 = info.info1;
out 1035 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->info2 = info.info2;
out 1051 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->info501 = info.info501;
out 1069 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->info502 = info.info502;
out 1085 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->info1005 = info.info1005;
out 1225 source4/rpc_server/srvsvc/dcesrv_srvsvc.c ZERO_STRUCT(r->out);
out 1344 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 1359 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.parm_error = r->in.parm_error;
out 1389 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.type = 0;
out 1395 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.type = STYPE_IPC;
out 1434 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.type = STYPE_DISKTREE;
out 1439 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.type = STYPE_IPC;
out 1444 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.type = STYPE_PRINTQ;
out 1463 source4/rpc_server/srvsvc/dcesrv_srvsvc.c ZERO_STRUCTP(r->out.info);
out 1477 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->info100 = info100;
out 1497 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->info101 = info101;
out 1526 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->info102 = info102;
out 1553 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->disks = NULL;
out 1554 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->count = 0;
out 1555 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = 0;
out 1562 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->disks = talloc_array(mem_ctx, struct srvsvc_NetDiskInfo0, 2);
out 1563 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info->disks);
out 1564 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->count = 2;
out 1566 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->disks[0].disk = talloc_strdup(mem_ctx, "C:");
out 1567 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info->disks[0].disk);
out 1569 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info->disks[1].disk = talloc_strdup(mem_ctx, "");
out 1570 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info->disks[1].disk);
out 1572 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = 1;
out 1573 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.resume_handle = r->in.resume_handle;
out 1611 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->level = r->in.transports->level;
out 1612 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = 0;
out 1613 source4/rpc_server/srvsvc/dcesrv_srvsvc.c if (r->out.resume_handle) {
out 1614 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.resume_handle = 0;
out 1620 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->ctr.ctr0 = talloc(mem_ctx, struct srvsvc_NetTransportCtr0);
out 1621 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.transports->ctr.ctr0);
out 1623 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->ctr.ctr0->count = 0;
out 1624 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->ctr.ctr0->array = NULL;
out 1630 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->ctr.ctr1 = talloc(mem_ctx, struct srvsvc_NetTransportCtr1);
out 1631 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.transports->ctr.ctr1);
out 1633 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->ctr.ctr1->count = 0;
out 1634 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->ctr.ctr1->array = NULL;
out 1640 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->ctr.ctr2 = talloc(mem_ctx, struct srvsvc_NetTransportCtr2);
out 1641 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.transports->ctr.ctr2);
out 1643 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->ctr.ctr2->count = 0;
out 1644 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->ctr.ctr2->array = NULL;
out 1650 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->ctr.ctr3 = talloc(mem_ctx, struct srvsvc_NetTransportCtr3);
out 1651 source4/rpc_server/srvsvc/dcesrv_srvsvc.c W_ERROR_HAVE_NO_MEMORY(r->out.transports->ctr.ctr3);
out 1653 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->ctr.ctr3->count = 0;
out 1654 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.transports->ctr.ctr3->array = NULL;
out 1711 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.info = info;
out 1819 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = 0;
out 1849 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0 = ctr0;
out 1882 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr0 = ctr0;
out 1883 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = r->out.info_ctr->ctr.ctr0->count;
out 1901 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1 = ctr1;
out 1934 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr1 = ctr1;
out 1935 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = r->out.info_ctr->ctr.ctr1->count;
out 1955 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr2 = ctr2;
out 1988 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr2 = ctr2;
out 1989 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = r->out.info_ctr->ctr.ctr2->count;
out 2009 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr502 = ctr502;
out 2042 source4/rpc_server/srvsvc/dcesrv_srvsvc.c r->out.info_ctr->ctr.ctr502 = ctr502;
out 2043 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.totalentries = r->out.info_ctr->ctr.ctr502->count;
out 2110 source4/rpc_server/srvsvc/dcesrv_srvsvc.c sd_buf->sd = io->query_secdesc.out.sd;
out 2112 source4/rpc_server/srvsvc/dcesrv_srvsvc.c *r->out.sd_buf = sd_buf;
out 73 source4/rpc_server/unixinfo/dcesrv_unixinfo.c *r->out.uid = ids->unixid->id;
out 117 source4/rpc_server/unixinfo/dcesrv_unixinfo.c r->out.sid = ids->sid;
out 148 source4/rpc_server/unixinfo/dcesrv_unixinfo.c *r->out.gid = ids->unixid->id;
out 192 source4/rpc_server/unixinfo/dcesrv_unixinfo.c r->out.sid = ids->sid;
out 202 source4/rpc_server/unixinfo/dcesrv_unixinfo.c *r->out.count = 0;
out 204 source4/rpc_server/unixinfo/dcesrv_unixinfo.c r->out.infos = talloc_zero_array(mem_ctx, struct unixinfo_GetPWUidInfo,
out 206 source4/rpc_server/unixinfo/dcesrv_unixinfo.c NT_STATUS_HAVE_NO_MEMORY(r->out.infos);
out 207 source4/rpc_server/unixinfo/dcesrv_unixinfo.c *r->out.count = *r->in.count;
out 217 source4/rpc_server/unixinfo/dcesrv_unixinfo.c r->out.infos[i].homedir = "";
out 218 source4/rpc_server/unixinfo/dcesrv_unixinfo.c r->out.infos[i].shell = "";
out 219 source4/rpc_server/unixinfo/dcesrv_unixinfo.c r->out.infos[i].status = NT_STATUS_NO_SUCH_USER;
out 223 source4/rpc_server/unixinfo/dcesrv_unixinfo.c r->out.infos[i].homedir = talloc_strdup(mem_ctx, pwd->pw_dir);
out 224 source4/rpc_server/unixinfo/dcesrv_unixinfo.c r->out.infos[i].shell = talloc_strdup(mem_ctx, pwd->pw_shell);
out 226 source4/rpc_server/unixinfo/dcesrv_unixinfo.c if ((r->out.infos[i].homedir == NULL) ||
out 227 source4/rpc_server/unixinfo/dcesrv_unixinfo.c (r->out.infos[i].shell == NULL)) {
out 228 source4/rpc_server/unixinfo/dcesrv_unixinfo.c r->out.infos[i].homedir = "";
out 229 source4/rpc_server/unixinfo/dcesrv_unixinfo.c r->out.infos[i].shell = "";
out 230 source4/rpc_server/unixinfo/dcesrv_unixinfo.c r->out.infos[i].status = NT_STATUS_NO_MEMORY;
out 234 source4/rpc_server/unixinfo/dcesrv_unixinfo.c r->out.infos[i].status = NT_STATUS_OK;
out 78 source4/rpc_server/winreg/rpc_winreg.c return dcesrv_winreg_openhive (dce_call, mem_ctx, n, &r->out.handle);\
out 104 source4/rpc_server/winreg/rpc_winreg.c ZERO_STRUCTP(r->out.handle);
out 149 source4/rpc_server/winreg/rpc_winreg.c r->out.new_handle = &newh->wire_handle;
out 233 source4/rpc_server/winreg/rpc_winreg.c r->out.name->name = name;
out 234 source4/rpc_server/winreg/rpc_winreg.c r->out.name->length = 2*strlen_m_term(name);
out 236 source4/rpc_server/winreg/rpc_winreg.c r->out.name->name = r->in.name->name;
out 237 source4/rpc_server/winreg/rpc_winreg.c r->out.name->length = r->in.name->length;
out 239 source4/rpc_server/winreg/rpc_winreg.c r->out.name->size = r->in.name->size;
out 241 source4/rpc_server/winreg/rpc_winreg.c r->out.keyclass = r->in.keyclass;
out 243 source4/rpc_server/winreg/rpc_winreg.c r->out.keyclass->name = classname;
out 244 source4/rpc_server/winreg/rpc_winreg.c r->out.keyclass->length = 2*strlen_m_term(classname);
out 246 source4/rpc_server/winreg/rpc_winreg.c r->out.keyclass->name = r->in.keyclass->name;
out 247 source4/rpc_server/winreg/rpc_winreg.c r->out.keyclass->length = r->in.keyclass->length;
out 249 source4/rpc_server/winreg/rpc_winreg.c r->out.keyclass->size = r->in.keyclass->size;
out 252 source4/rpc_server/winreg/rpc_winreg.c r->out.last_changed_time = &last_mod;
out 293 source4/rpc_server/winreg/rpc_winreg.c r->out.name->name = data_name;
out 294 source4/rpc_server/winreg/rpc_winreg.c r->out.name->length = 2*strlen_m_term(data_name);
out 296 source4/rpc_server/winreg/rpc_winreg.c r->out.name->name = r->in.name->name;
out 297 source4/rpc_server/winreg/rpc_winreg.c r->out.name->length = r->in.name->length;
out 299 source4/rpc_server/winreg/rpc_winreg.c r->out.name->size = r->in.name->size;
out 301 source4/rpc_server/winreg/rpc_winreg.c r->out.type = talloc(mem_ctx, uint32_t);
out 302 source4/rpc_server/winreg/rpc_winreg.c if (!r->out.type) {
out 305 source4/rpc_server/winreg/rpc_winreg.c *r->out.type = data_type;
out 315 source4/rpc_server/winreg/rpc_winreg.c r->out.value = data.data;
out 319 source4/rpc_server/winreg/rpc_winreg.c r->out.size = talloc(mem_ctx, uint32_t);
out 320 source4/rpc_server/winreg/rpc_winreg.c *r->out.size = data.length;
out 321 source4/rpc_server/winreg/rpc_winreg.c r->out.length = r->out.size;
out 418 source4/rpc_server/winreg/rpc_winreg.c r->out.handle = &newh->wire_handle;
out 451 source4/rpc_server/winreg/rpc_winreg.c r->out.num_subkeys, r->out.num_values,
out 452 source4/rpc_server/winreg/rpc_winreg.c r->out.last_changed_time, r->out.max_subkeylen,
out 453 source4/rpc_server/winreg/rpc_winreg.c r->out.max_valnamelen, r->out.max_valbufsize);
out 456 source4/rpc_server/winreg/rpc_winreg.c r->out.classname->name = classname;
out 457 source4/rpc_server/winreg/rpc_winreg.c r->out.classname->name_len = 2*strlen_m_term(classname);
out 459 source4/rpc_server/winreg/rpc_winreg.c r->out.classname->name = r->in.classname->name;
out 460 source4/rpc_server/winreg/rpc_winreg.c r->out.classname->name_len = r->in.classname->name_len;
out 462 source4/rpc_server/winreg/rpc_winreg.c r->out.classname->name_size = r->in.classname->name_size;
out 502 source4/rpc_server/winreg/rpc_winreg.c r->out.type = talloc(mem_ctx, uint32_t);
out 503 source4/rpc_server/winreg/rpc_winreg.c if (!r->out.type) {
out 506 source4/rpc_server/winreg/rpc_winreg.c *r->out.type = value_type;
out 507 source4/rpc_server/winreg/rpc_winreg.c r->out.data_length = talloc(mem_ctx, uint32_t);
out 508 source4/rpc_server/winreg/rpc_winreg.c if (!r->out.data_length) {
out 511 source4/rpc_server/winreg/rpc_winreg.c *r->out.data_length = value_data.length;
out 512 source4/rpc_server/winreg/rpc_winreg.c r->out.data_size = talloc(mem_ctx, uint32_t);
out 513 source4/rpc_server/winreg/rpc_winreg.c if (!r->out.data_size) {
out 516 source4/rpc_server/winreg/rpc_winreg.c *r->out.data_size = value_data.length;
out 517 source4/rpc_server/winreg/rpc_winreg.c r->out.data = value_data.data;
out 643 source4/rpc_server/winreg/rpc_winreg.c r->out.version = talloc(mem_ctx, uint32_t);
out 644 source4/rpc_server/winreg/rpc_winreg.c W_ERROR_HAVE_NO_MEMORY(r->out.version);
out 646 source4/rpc_server/winreg/rpc_winreg.c *r->out.version = 5;
out 37 source4/rpc_server/wkssvc/dcesrv_wkssvc.c ZERO_STRUCT(r->out);
out 38 source4/rpc_server/wkssvc/dcesrv_wkssvc.c r->out.info = talloc_zero(mem_ctx, union wkssvc_NetWkstaInfo);
out 39 source4/rpc_server/wkssvc/dcesrv_wkssvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info);
out 59 source4/rpc_server/wkssvc/dcesrv_wkssvc.c r->out.info->info100 = info100;
out 78 source4/rpc_server/wkssvc/dcesrv_wkssvc.c r->out.info->info101 = info101;
out 143 source4/rpc_server/wkssvc/dcesrv_wkssvc.c r->out.total_entries = 0;
out 144 source4/rpc_server/wkssvc/dcesrv_wkssvc.c r->out.resume_handle = NULL;
out 148 source4/rpc_server/wkssvc/dcesrv_wkssvc.c r->out.info = talloc(mem_ctx, struct wkssvc_NetWkstaTransportInfo);
out 149 source4/rpc_server/wkssvc/dcesrv_wkssvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info);
out 150 source4/rpc_server/wkssvc/dcesrv_wkssvc.c r->out.info->level = r->in.info->level;
out 151 source4/rpc_server/wkssvc/dcesrv_wkssvc.c r->out.info->ctr.ctr0 = talloc(mem_ctx, struct wkssvc_NetWkstaTransportCtr0);
out 152 source4/rpc_server/wkssvc/dcesrv_wkssvc.c W_ERROR_HAVE_NO_MEMORY(r->out.info->ctr.ctr0);
out 154 source4/rpc_server/wkssvc/dcesrv_wkssvc.c r->out.info->ctr.ctr0->count = 0;
out 155 source4/rpc_server/wkssvc/dcesrv_wkssvc.c r->out.info->ctr.ctr0->array = NULL;
out 209 source4/smb_server/blob.c push_nttime(blob->data, 0, fsinfo->volume_info.out.create_time);
out 210 source4/smb_server/blob.c SIVAL(blob->data, 8, fsinfo->volume_info.out.serial_number);
out 213 source4/smb_server/blob.c fsinfo->volume_info.out.volume_name.s,
out 222 source4/smb_server/blob.c SBVAL(blob->data, 0, fsinfo->size_info.out.total_alloc_units);
out 223 source4/smb_server/blob.c SBVAL(blob->data, 8, fsinfo->size_info.out.avail_alloc_units);
out 224 source4/smb_server/blob.c SIVAL(blob->data, 16, fsinfo->size_info.out.sectors_per_unit);
out 225 source4/smb_server/blob.c SIVAL(blob->data, 20, fsinfo->size_info.out.bytes_per_sector);
out 232 source4/smb_server/blob.c SIVAL(blob->data, 0, fsinfo->device_info.out.device_type);
out 233 source4/smb_server/blob.c SIVAL(blob->data, 4, fsinfo->device_info.out.characteristics);
out 240 source4/smb_server/blob.c SIVAL(blob->data, 0, fsinfo->attribute_info.out.fs_attr);
out 241 source4/smb_server/blob.c SIVAL(blob->data, 4, fsinfo->attribute_info.out.max_file_component_length);
out 246 source4/smb_server/blob.c fsinfo->attribute_info.out.fs_type.s,
out 255 source4/smb_server/blob.c SBVAL(blob->data, 0, fsinfo->quota_information.out.unknown[0]);
out 256 source4/smb_server/blob.c SBVAL(blob->data, 8, fsinfo->quota_information.out.unknown[1]);
out 257 source4/smb_server/blob.c SBVAL(blob->data, 16, fsinfo->quota_information.out.unknown[2]);
out 258 source4/smb_server/blob.c SBVAL(blob->data, 24, fsinfo->quota_information.out.quota_soft);
out 259 source4/smb_server/blob.c SBVAL(blob->data, 32, fsinfo->quota_information.out.quota_hard);
out 260 source4/smb_server/blob.c SBVAL(blob->data, 40, fsinfo->quota_information.out.quota_flags);
out 268 source4/smb_server/blob.c SBVAL(blob->data, 0, fsinfo->full_size_information.out.total_alloc_units);
out 269 source4/smb_server/blob.c SBVAL(blob->data, 8, fsinfo->full_size_information.out.call_avail_alloc_units);
out 270 source4/smb_server/blob.c SBVAL(blob->data, 16, fsinfo->full_size_information.out.actual_avail_alloc_units);
out 271 source4/smb_server/blob.c SIVAL(blob->data, 24, fsinfo->full_size_information.out.sectors_per_unit);
out 272 source4/smb_server/blob.c SIVAL(blob->data, 28, fsinfo->full_size_information.out.bytes_per_sector);
out 282 source4/smb_server/blob.c &fsinfo->objectid_information.out.guid,
out 291 source4/smb_server/blob.c SBVAL(blob->data, 16 + 8*i, fsinfo->objectid_information.out.unknown[i]);
out 316 source4/smb_server/blob.c push_nttime(blob->data, 0, st->basic_info.out.create_time);
out 317 source4/smb_server/blob.c push_nttime(blob->data, 8, st->basic_info.out.access_time);
out 318 source4/smb_server/blob.c push_nttime(blob->data, 16, st->basic_info.out.write_time);
out 319 source4/smb_server/blob.c push_nttime(blob->data, 24, st->basic_info.out.change_time);
out 320 source4/smb_server/blob.c SIVAL(blob->data, 32, st->basic_info.out.attrib);
out 327 source4/smb_server/blob.c push_nttime(blob->data, 0, st->network_open_information.out.create_time);
out 328 source4/smb_server/blob.c push_nttime(blob->data, 8, st->network_open_information.out.access_time);
out 329 source4/smb_server/blob.c push_nttime(blob->data, 16, st->network_open_information.out.write_time);
out 330 source4/smb_server/blob.c push_nttime(blob->data, 24, st->network_open_information.out.change_time);
out 331 source4/smb_server/blob.c SBVAL(blob->data, 32, st->network_open_information.out.alloc_size);
out 332 source4/smb_server/blob.c SBVAL(blob->data, 40, st->network_open_information.out.size);
out 333 source4/smb_server/blob.c SIVAL(blob->data, 48, st->network_open_information.out.attrib);
out 340 source4/smb_server/blob.c SBVAL(blob->data, 0, st->standard_info.out.alloc_size);
out 341 source4/smb_server/blob.c SBVAL(blob->data, 8, st->standard_info.out.size);
out 342 source4/smb_server/blob.c SIVAL(blob->data, 16, st->standard_info.out.nlink);
out 343 source4/smb_server/blob.c SCVAL(blob->data, 20, st->standard_info.out.delete_pending);
out 344 source4/smb_server/blob.c SCVAL(blob->data, 21, st->standard_info.out.directory);
out 351 source4/smb_server/blob.c SIVAL(blob->data, 0, st->attribute_tag_information.out.attrib);
out 352 source4/smb_server/blob.c SIVAL(blob->data, 4, st->attribute_tag_information.out.reparse_tag);
out 358 source4/smb_server/blob.c SIVAL(blob->data, 0, st->ea_info.out.ea_size);
out 364 source4/smb_server/blob.c SIVAL(blob->data, 0, st->mode_information.out.mode);
out 371 source4/smb_server/blob.c st->alignment_information.out.alignment_requirement);
out 377 source4/smb_server/blob.c SIVAL(blob->data, 0, st->access_information.out.access_flags);
out 383 source4/smb_server/blob.c SBVAL(blob->data, 0, st->position_information.out.position);
out 389 source4/smb_server/blob.c SBVAL(blob->data, 0, st->compression_info.out.compressed_size);
out 390 source4/smb_server/blob.c SSVAL(blob->data, 8, st->compression_info.out.format);
out 391 source4/smb_server/blob.c SCVAL(blob->data, 10, st->compression_info.out.unit_shift);
out 392 source4/smb_server/blob.c SCVAL(blob->data, 11, st->compression_info.out.chunk_shift);
out 393 source4/smb_server/blob.c SCVAL(blob->data, 12, st->compression_info.out.cluster_shift);
out 401 source4/smb_server/blob.c SBVAL(blob->data, 0, st->internal_information.out.file_id);
out 407 source4/smb_server/blob.c push_nttime(blob->data, 0, st->all_info.out.create_time);
out 408 source4/smb_server/blob.c push_nttime(blob->data, 8, st->all_info.out.access_time);
out 409 source4/smb_server/blob.c push_nttime(blob->data, 16, st->all_info.out.write_time);
out 410 source4/smb_server/blob.c push_nttime(blob->data, 24, st->all_info.out.change_time);
out 411 source4/smb_server/blob.c SIVAL(blob->data, 32, st->all_info.out.attrib);
out 413 source4/smb_server/blob.c SBVAL(blob->data, 40, st->all_info.out.alloc_size);
out 414 source4/smb_server/blob.c SBVAL(blob->data, 48, st->all_info.out.size);
out 415 source4/smb_server/blob.c SIVAL(blob->data, 56, st->all_info.out.nlink);
out 416 source4/smb_server/blob.c SCVAL(blob->data, 60, st->all_info.out.delete_pending);
out 417 source4/smb_server/blob.c SCVAL(blob->data, 61, st->all_info.out.directory);
out 419 source4/smb_server/blob.c SIVAL(blob->data, 64, st->all_info.out.ea_size);
out 421 source4/smb_server/blob.c st->all_info.out.fname.s,
out 430 source4/smb_server/blob.c st->name_info.out.fname.s,
out 439 source4/smb_server/blob.c st->alt_name_info.out.fname.s,
out 445 source4/smb_server/blob.c for (i=0;i<st->stream_info.out.num_streams;i++) {
out 451 source4/smb_server/blob.c SBVAL(data, 8, st->stream_info.out.streams[i].size);
out 452 source4/smb_server/blob.c SBVAL(data, 16, st->stream_info.out.streams[i].alloc_size);
out 454 source4/smb_server/blob.c st->stream_info.out.streams[i].stream_name.s,
out 457 source4/smb_server/blob.c if (i == st->stream_info.out.num_streams - 1) {
out 473 source4/smb_server/blob.c if (st->all_eas.out.num_eas == 0) {
out 477 source4/smb_server/blob.c list_size = ea_list_size_chained(st->all_eas.out.num_eas,
out 478 source4/smb_server/blob.c st->all_eas.out.eas, 4);
out 482 source4/smb_server/blob.c st->all_eas.out.num_eas,
out 483 source4/smb_server/blob.c st->all_eas.out.eas, 4);
out 489 source4/smb_server/blob.c push_nttime(blob->data, 0x00, st->all_info2.out.create_time);
out 490 source4/smb_server/blob.c push_nttime(blob->data, 0x08, st->all_info2.out.access_time);
out 491 source4/smb_server/blob.c push_nttime(blob->data, 0x10, st->all_info2.out.write_time);
out 492 source4/smb_server/blob.c push_nttime(blob->data, 0x18, st->all_info2.out.change_time);
out 493 source4/smb_server/blob.c SIVAL(blob->data, 0x20, st->all_info2.out.attrib);
out 494 source4/smb_server/blob.c SIVAL(blob->data, 0x24, st->all_info2.out.unknown1);
out 495 source4/smb_server/blob.c SBVAL(blob->data, 0x28, st->all_info2.out.alloc_size);
out 496 source4/smb_server/blob.c SBVAL(blob->data, 0x30, st->all_info2.out.size);
out 497 source4/smb_server/blob.c SIVAL(blob->data, 0x38, st->all_info2.out.nlink);
out 498 source4/smb_server/blob.c SCVAL(blob->data, 0x3C, st->all_info2.out.delete_pending);
out 499 source4/smb_server/blob.c SCVAL(blob->data, 0x3D, st->all_info2.out.directory);
out 501 source4/smb_server/blob.c SBVAL(blob->data, 0x40, st->all_info2.out.file_id);
out 502 source4/smb_server/blob.c SIVAL(blob->data, 0x48, st->all_info2.out.ea_size);
out 503 source4/smb_server/blob.c SIVAL(blob->data, 0x4C, st->all_info2.out.access_mask);
out 504 source4/smb_server/blob.c SBVAL(blob->data, 0x50, st->all_info2.out.position);
out 505 source4/smb_server/blob.c SIVAL(blob->data, 0x58, st->all_info2.out.mode);
out 506 source4/smb_server/blob.c SIVAL(blob->data, 0x5C, st->all_info2.out.alignment_requirement);
out 508 source4/smb_server/blob.c st->all_info2.out.fname.s,
out 45 source4/smb_server/management.c r->out.info.sessions.num_sessions = count;
out 46 source4/smb_server/management.c r->out.info.sessions.sessions = talloc_array(r, struct smbsrv_session_info, count);
out 47 source4/smb_server/management.c NT_STATUS_HAVE_NO_MEMORY(r->out.info.sessions.sessions);
out 50 source4/smb_server/management.c struct smbsrv_session_info *info = &r->out.info.sessions.sessions[i];
out 89 source4/smb_server/management.c r->out.info.tcons.num_tcons = count;
out 90 source4/smb_server/management.c r->out.info.tcons.tcons = talloc_array(r, struct smbsrv_tcon_info, count);
out 91 source4/smb_server/management.c NT_STATUS_HAVE_NO_MEMORY(r->out.info.tcons.tcons);
out 94 source4/smb_server/management.c struct smbsrv_tcon_info *info = &r->out.info.tcons.tcons[i];
out 75 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(0), choice);
out 100 source4/smb_server/smb/negprot.c SCVAL(req->out.hdr,HDR_FLG,
out 101 source4/smb_server/smb/negprot.c CVAL(req->out.hdr, HDR_FLG) | FLAG_SUPPORT_LOCKREAD);
out 103 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(0), choice);
out 104 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(1), 0x1); /* user level security, don't encrypt */
out 108 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(5), raw);
out 143 source4/smb_server/smb/negprot.c SCVAL(req->out.hdr,HDR_FLG,
out 144 source4/smb_server/smb/negprot.c CVAL(req->out.hdr, HDR_FLG) | FLAG_SUPPORT_LOCKREAD);
out 146 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(0), choice);
out 147 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(1), secword);
out 148 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(2), req->smb_conn->negotiate.max_recv);
out 149 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(3), lp_maxmux(req->smb_conn->lp_ctx));
out 150 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(4), 1);
out 151 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(5), raw);
out 152 source4/smb_server/smb/negprot.c SIVAL(req->out.vwv, VWV(6), req->smb_conn->connection->server_id.id);
out 153 source4/smb_server/smb/negprot.c srv_push_dos_date(req->smb_conn, req->out.vwv, VWV(8), t);
out 154 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(10), req->smb_conn->negotiate.zone_offset/60);
out 155 source4/smb_server/smb/negprot.c SIVAL(req->out.vwv, VWV(11), 0); /* reserved */
out 161 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(11), 8);
out 163 source4/smb_server/smb/negprot.c nt_status = get_challenge(req->smb_conn, req->out.data);
out 200 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(0), choice);
out 201 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(1), secword);
out 202 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(2), req->smb_conn->negotiate.max_recv);
out 203 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(3), lp_maxmux(req->smb_conn->lp_ctx));
out 204 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(4), 1);
out 205 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(5), raw);
out 206 source4/smb_server/smb/negprot.c SIVAL(req->out.vwv, VWV(6), req->smb_conn->connection->server_id.id);
out 207 source4/smb_server/smb/negprot.c srv_push_dos_date(req->smb_conn, req->out.vwv, VWV(8), t);
out 208 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(10), req->smb_conn->negotiate.zone_offset/60);
out 209 source4/smb_server/smb/negprot.c SIVAL(req->out.vwv, VWV(11), 0);
out 213 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(11), 8);
out 215 source4/smb_server/smb/negprot.c get_challenge(req->smb_conn, req->out.data);
out 236 source4/smb_server/smb/negprot.c get_challenge(req->smb_conn, req->out.ptr);
out 237 source4/smb_server/smb/negprot.c req->out.ptr += 8;
out 238 source4/smb_server/smb/negprot.c SCVAL(req->out.vwv+1, VWV(16), 8);
out 328 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv, VWV(0), choice);
out 329 source4/smb_server/smb/negprot.c SCVAL(req->out.vwv, VWV(1), secword);
out 335 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv+1, VWV(1), lp_maxmux(req->smb_conn->lp_ctx));
out 336 source4/smb_server/smb/negprot.c SSVAL(req->out.vwv+1, VWV(2), 1); /* num vcs */
out 337 source4/smb_server/smb/negprot.c SIVAL(req->out.vwv+1, VWV(3), req->smb_conn->negotiate.max_recv);
out 338 source4/smb_server/smb/negprot.c SIVAL(req->out.vwv+1, VWV(5), 0x10000); /* raw size. full 64k */
out 339 source4/smb_server/smb/negprot.c SIVAL(req->out.vwv+1, VWV(7), req->smb_conn->connection->server_id.id); /* session key */
out 340 source4/smb_server/smb/negprot.c SIVAL(req->out.vwv+1, VWV(9), capabilities);
out 341 source4/smb_server/smb/negprot.c push_nttime(req->out.vwv+1, VWV(11), nttime);
out 342 source4/smb_server/smb/negprot.c SSVALS(req->out.vwv+1,VWV(15), req->smb_conn->negotiate.zone_offset/60);
out 427 source4/smb_server/smb/negprot.c memset(req->out.ptr, '\0', 16);
out 428 source4/smb_server/smb/negprot.c req->out.ptr += 16;
out 430 source4/smb_server/smb/negprot.c memcpy(req->out.ptr, blob.data, blob.length);
out 431 source4/smb_server/smb/negprot.c SCVAL(req->out.vwv+1, VWV(16), blob.length + 16);
out 432 source4/smb_server/smb/negprot.c req->out.ptr += blob.length;
out 48 source4/smb_server/smb/nttrans.c trans->out.setup_count = setup_count;
out 50 source4/smb_server/smb/nttrans.c trans->out.setup = talloc_zero_array(op, uint8_t, setup_count*2);
out 51 source4/smb_server/smb/nttrans.c NT_STATUS_HAVE_NO_MEMORY(trans->out.setup);
out 53 source4/smb_server/smb/nttrans.c trans->out.params = data_blob_talloc(op, NULL, param_size);
out 55 source4/smb_server/smb/nttrans.c NT_STATUS_HAVE_NO_MEMORY(trans->out.params.data);
out 57 source4/smb_server/smb/nttrans.c trans->out.data = data_blob_talloc(op, NULL, data_size);
out 59 source4/smb_server/smb/nttrans.c NT_STATUS_HAVE_NO_MEMORY(trans->out.data.data);
out 75 source4/smb_server/smb/nttrans.c params = op->trans->out.params.data;
out 77 source4/smb_server/smb/nttrans.c SSVAL(params, 0, io->ntcreatex.out.oplock_level);
out 78 source4/smb_server/smb/nttrans.c smbsrv_push_fnum(params, 2, io->ntcreatex.out.file.ntvfs);
out 79 source4/smb_server/smb/nttrans.c SIVAL(params, 4, io->ntcreatex.out.create_action);
out 81 source4/smb_server/smb/nttrans.c push_nttime(params, 12, io->ntcreatex.out.create_time);
out 82 source4/smb_server/smb/nttrans.c push_nttime(params, 20, io->ntcreatex.out.access_time);
out 83 source4/smb_server/smb/nttrans.c push_nttime(params, 28, io->ntcreatex.out.write_time);
out 84 source4/smb_server/smb/nttrans.c push_nttime(params, 36, io->ntcreatex.out.change_time);
out 85 source4/smb_server/smb/nttrans.c SIVAL(params, 44, io->ntcreatex.out.attrib);
out 86 source4/smb_server/smb/nttrans.c SBVAL(params, 48, io->ntcreatex.out.alloc_size);
out 87 source4/smb_server/smb/nttrans.c SBVAL(params, 56, io->ntcreatex.out.size);
out 88 source4/smb_server/smb/nttrans.c SSVAL(params, 64, io->ntcreatex.out.file_type);
out 89 source4/smb_server/smb/nttrans.c SSVAL(params, 66, io->ntcreatex.out.ipc_state);
out 90 source4/smb_server/smb/nttrans.c SCVAL(params, 68, io->ntcreatex.out.is_directory);
out 206 source4/smb_server/smb/nttrans.c params = op->trans->out.params.data;
out 208 source4/smb_server/smb/nttrans.c ndr_err = ndr_push_struct_blob(&op->trans->out.data, op, NULL,
out 209 source4/smb_server/smb/nttrans.c io->query_secdesc.out.sd,
out 215 source4/smb_server/smb/nttrans.c SIVAL(params, 0, op->trans->out.data.length);
out 333 source4/smb_server/smb/nttrans.c op->trans->out.setup[0] = 0;
out 334 source4/smb_server/smb/nttrans.c op->trans->out.data = info->ntioctl.out.blob;
out 386 source4/smb_server/smb/nttrans.c for (i=0;i<info->nttrans.out.num_changes;i++) {
out 387 source4/smb_server/smb/nttrans.c size += 12 + 3 + (1+strlen(info->nttrans.out.changes[i].name.s)) * MAX_BYTES_PER_CHAR;
out 392 source4/smb_server/smb/nttrans.c p = op->trans->out.params.data;
out 395 source4/smb_server/smb/nttrans.c for (i=0;i<info->nttrans.out.num_changes;i++) {
out 399 source4/smb_server/smb/nttrans.c SIVAL(p, 4, info->nttrans.out.changes[i].action);
out 400 source4/smb_server/smb/nttrans.c len = push_string(p + 12, info->nttrans.out.changes[i].name.s,
out 401 source4/smb_server/smb/nttrans.c op->trans->out.params.length -
out 402 source4/smb_server/smb/nttrans.c (p+12 - op->trans->out.params.data), STR_UNICODE);
out 413 source4/smb_server/smb/nttrans.c if (i == info->nttrans.out.num_changes-1) {
out 422 source4/smb_server/smb/nttrans.c op->trans->out.params.length = p - op->trans->out.params.data;
out 507 source4/smb_server/smb/nttrans.c smbsrv_setup_reply(req, 18 + trans->out.setup_count, 0);
out 512 source4/smb_server/smb/nttrans.c if (trans->out.params.length > trans->in.max_param) {
out 514 source4/smb_server/smb/nttrans.c trans->out.params.length = trans->in.max_param;
out 516 source4/smb_server/smb/nttrans.c if (trans->out.data.length > trans->in.max_data) {
out 518 source4/smb_server/smb/nttrans.c trans->out.data.length = trans->in.max_data;
out 521 source4/smb_server/smb/nttrans.c params_left = trans->out.params.length;
out 522 source4/smb_server/smb/nttrans.c data_left = trans->out.data.length;
out 523 source4/smb_server/smb/nttrans.c params = trans->out.params.data;
out 524 source4/smb_server/smb/nttrans.c data = trans->out.data.data;
out 556 source4/smb_server/smb/nttrans.c SSVAL(this_req->out.vwv, 0, 0); /* reserved */
out 557 source4/smb_server/smb/nttrans.c SCVAL(this_req->out.vwv, 2, 0); /* reserved */
out 558 source4/smb_server/smb/nttrans.c SIVAL(this_req->out.vwv, 3, trans->out.params.length);
out 559 source4/smb_server/smb/nttrans.c SIVAL(this_req->out.vwv, 7, trans->out.data.length);
out 561 source4/smb_server/smb/nttrans.c SIVAL(this_req->out.vwv, 11, this_param);
out 562 source4/smb_server/smb/nttrans.c SIVAL(this_req->out.vwv, 15, align1 + PTR_DIFF(this_req->out.data, this_req->out.hdr));
out 563 source4/smb_server/smb/nttrans.c SIVAL(this_req->out.vwv, 19, PTR_DIFF(params, trans->out.params.data));
out 565 source4/smb_server/smb/nttrans.c SIVAL(this_req->out.vwv, 23, this_data);
out 566 source4/smb_server/smb/nttrans.c SIVAL(this_req->out.vwv, 27, align1 + align2 +
out 567 source4/smb_server/smb/nttrans.c PTR_DIFF(this_req->out.data + this_param, this_req->out.hdr));
out 568 source4/smb_server/smb/nttrans.c SIVAL(this_req->out.vwv, 31, PTR_DIFF(data, trans->out.data.data));
out 570 source4/smb_server/smb/nttrans.c SCVAL(this_req->out.vwv, 35, trans->out.setup_count);
out 571 source4/smb_server/smb/nttrans.c memcpy((char *)(this_req->out.vwv) + VWV(18), trans->out.setup,
out 572 source4/smb_server/smb/nttrans.c sizeof(uint16_t) * trans->out.setup_count);
out 573 source4/smb_server/smb/nttrans.c memset(this_req->out.data, 0, align1);
out 575 source4/smb_server/smb/nttrans.c memcpy(this_req->out.data + align1, params, this_param);
out 577 source4/smb_server/smb/nttrans.c memset(this_req->out.data+this_param+align1, 0, align2);
out 579 source4/smb_server/smb/nttrans.c memcpy(this_req->out.data+this_param+align1+align2,
out 640 source4/smb_server/smb/nttrans.c ZERO_STRUCT(trans->out);
out 45 source4/smb_server/smb/receive.c SCVAL(req->out.hdr,HDR_COM,SMBlockingX);
out 46 source4/smb_server/smb/receive.c SSVAL(req->out.hdr,HDR_TID,tcon->tid);
out 47 source4/smb_server/smb/receive.c SSVAL(req->out.hdr,HDR_PID,0xFFFF);
out 48 source4/smb_server/smb/receive.c SSVAL(req->out.hdr,HDR_UID,0);
out 49 source4/smb_server/smb/receive.c SSVAL(req->out.hdr,HDR_MID,0xFFFF);
out 50 source4/smb_server/smb/receive.c SCVAL(req->out.hdr,HDR_FLG,0);
out 51 source4/smb_server/smb/receive.c SSVAL(req->out.hdr,HDR_FLG2,0);
out 53 source4/smb_server/smb/receive.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 54 source4/smb_server/smb/receive.c SSVAL(req->out.vwv, VWV(1), 0);
out 55 source4/smb_server/smb/receive.c smbsrv_push_fnum(req->out.vwv, VWV(2), ntvfs);
out 56 source4/smb_server/smb/receive.c SCVAL(req->out.vwv, VWV(3), LOCKING_ANDX_OPLOCK_RELEASE);
out 57 source4/smb_server/smb/receive.c SCVAL(req->out.vwv, VWV(3)+1, level);
out 58 source4/smb_server/smb/receive.c SIVAL(req->out.vwv, VWV(4), 0);
out 59 source4/smb_server/smb/receive.c SSVAL(req->out.vwv, VWV(6), 0);
out 60 source4/smb_server/smb/receive.c SSVAL(req->out.vwv, VWV(7), 0);
out 597 source4/smb_server/smb/receive.c if (req->in.wct < 2 || req->out.wct < 2) {
out 607 source4/smb_server/smb/receive.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 608 source4/smb_server/smb/receive.c SSVAL(req->out.vwv, VWV(1), 0);
out 643 source4/smb_server/smb/receive.c SSVAL(req->out.vwv, VWV(0), chain_cmd);
out 644 source4/smb_server/smb/receive.c SSVAL(req->out.vwv, VWV(1), req->out.size - NBT_HDR_SIZE);
out 656 source4/smb_server/smb/receive.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 657 source4/smb_server/smb/receive.c SSVAL(req->out.vwv, VWV(1), 0);
out 81 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), con.tcon.out.max_xmit);
out 82 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), con.tcon.out.tid);
out 83 source4/smb_server/smb/reply.c SSVAL(req->out.hdr, HDR_TID, req->tcon->tid);
out 135 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 136 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), 0);
out 138 source4/smb_server/smb/reply.c req_push_str(req, NULL, con.tconx.out.dev_type, -1, STR_TERMINATE|STR_ASCII);
out 142 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 143 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), 0);
out 144 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(2), con.tconx.out.options);
out 146 source4/smb_server/smb/reply.c req_push_str(req, NULL, con.tconx.out.dev_type, -1, STR_TERMINATE|STR_ASCII);
out 147 source4/smb_server/smb/reply.c req_push_str(req, NULL, con.tconx.out.fs_type, -1, STR_TERMINATE);
out 151 source4/smb_server/smb/reply.c SSVAL(req->in.hdr, HDR_TID, con.tconx.out.tid);
out 152 source4/smb_server/smb/reply.c SSVAL(req->out.hdr,HDR_TID, con.tconx.out.tid);
out 184 source4/smb_server/smb/reply.c smbsrv_setup_reply(req, 8, io->ioctl.out.blob.length+1);
out 185 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), io->ioctl.out.blob.length);
out 186 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(5), io->ioctl.out.blob.length);
out 187 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(6), PTR_DIFF(req->out.data, req->out.hdr) + 1);
out 189 source4/smb_server/smb/reply.c memcpy(req->out.data+1, io->ioctl.out.blob.data, io->ioctl.out.blob.length);
out 244 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), st->getattr.out.attrib);
out 245 source4/smb_server/smb/reply.c srv_push_dos_date3(req->smb_conn, req->out.vwv, VWV(1), st->getattr.out.write_time);
out 246 source4/smb_server/smb/reply.c SIVAL(req->out.vwv, VWV(3), st->getattr.out.size);
out 317 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), fs->dskattr.out.units_total);
out 318 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), fs->dskattr.out.blocks_per_unit);
out 319 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(2), fs->dskattr.out.block_size);
out 320 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(3), fs->dskattr.out.units_free);
out 357 source4/smb_server/smb/reply.c smbsrv_push_fnum(req->out.vwv, VWV(0), oi->openold.out.file.ntvfs);
out 358 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), oi->openold.out.attrib);
out 359 source4/smb_server/smb/reply.c srv_push_dos_date3(req->smb_conn, req->out.vwv, VWV(2), oi->openold.out.write_time);
out 360 source4/smb_server/smb/reply.c SIVAL(req->out.vwv, VWV(4), oi->openold.out.size);
out 361 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(6), oi->openold.out.rmode);
out 410 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 411 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), 0);
out 412 source4/smb_server/smb/reply.c smbsrv_push_fnum(req->out.vwv, VWV(2), oi->openx.out.file.ntvfs);
out 413 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(3), oi->openx.out.attrib);
out 414 source4/smb_server/smb/reply.c srv_push_dos_date3(req->smb_conn, req->out.vwv, VWV(4), oi->openx.out.write_time);
out 415 source4/smb_server/smb/reply.c SIVAL(req->out.vwv, VWV(6), oi->openx.out.size);
out 416 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(8), oi->openx.out.access);
out 417 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(9), oi->openx.out.ftype);
out 418 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(10),oi->openx.out.devstate);
out 419 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(11),oi->openx.out.action);
out 420 source4/smb_server/smb/reply.c SIVAL(req->out.vwv, VWV(12),oi->openx.out.unique_fid);
out 421 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(14),0); /* reserved */
out 423 source4/smb_server/smb/reply.c SIVAL(req->out.vwv, VWV(15),oi->openx.out.access_mask);
out 427 source4/smb_server/smb/reply.c req->chained_fnum = SVAL(req->out.vwv, VWV(2));
out 479 source4/smb_server/smb/reply.c smbsrv_push_fnum(req->out.vwv, VWV(0), oi->mknew.out.file.ntvfs);
out 528 source4/smb_server/smb/reply.c smbsrv_push_fnum(req->out.vwv, VWV(0), oi->ctemp.out.file.ntvfs);
out 531 source4/smb_server/smb/reply.c req_push_str(req, NULL, oi->ctemp.out.name, -1, STR_TERMINATE | STR_ASCII);
out 621 source4/smb_server/smb/reply.c req->out.size = io.readbraw.in.maxcnt + NBT_HDR_SIZE;
out 622 source4/smb_server/smb/reply.c req->out.buffer = talloc_size(req, req->out.size);
out 623 source4/smb_server/smb/reply.c if (req->out.buffer == NULL) {
out 626 source4/smb_server/smb/reply.c SIVAL(req->out.buffer, 0, 0); /* init NBT header */
out 629 source4/smb_server/smb/reply.c io.readbraw.out.data = req->out.buffer + NBT_HDR_SIZE;
out 647 source4/smb_server/smb/reply.c req->out.size = io.readbraw.out.nread + NBT_HDR_SIZE;
out 654 source4/smb_server/smb/reply.c req->out.size = 4;
out 655 source4/smb_server/smb/reply.c req->out.buffer = talloc_size(req, req->out.size);
out 656 source4/smb_server/smb/reply.c SIVAL(req->out.buffer, 0, 0); /* init NBT header */
out 673 source4/smb_server/smb/reply.c io->lockread.out.nread = MIN(io->lockread.out.nread,
out 675 source4/smb_server/smb/reply.c req_grow_data(req, 3 + io->lockread.out.nread);
out 678 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), io->lockread.out.nread);
out 681 source4/smb_server/smb/reply.c SCVAL(req->out.data, 0, SMB_DATA_BLOCK);
out 682 source4/smb_server/smb/reply.c SSVAL(req->out.data, 1, io->lockread.out.nread);
out 711 source4/smb_server/smb/reply.c io->lockread.out.data = req->out.data + 3;
out 730 source4/smb_server/smb/reply.c io->read.out.nread = MIN(io->read.out.nread,
out 732 source4/smb_server/smb/reply.c req_grow_data(req, 3 + io->read.out.nread);
out 735 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), io->read.out.nread);
out 738 source4/smb_server/smb/reply.c SCVAL(req->out.data, 0, SMB_DATA_BLOCK);
out 739 source4/smb_server/smb/reply.c SSVAL(req->out.data, 1, io->read.out.nread);
out 766 source4/smb_server/smb/reply.c io->read.out.data = req->out.data + 3;
out 786 source4/smb_server/smb/reply.c req_grow_data(req, 1 + io->readx.out.nread);
out 787 source4/smb_server/smb/reply.c SCVAL(req->out.data, 0, 0); /* padding */
out 789 source4/smb_server/smb/reply.c req_grow_data(req, io->readx.out.nread);
out 793 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 794 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), 0);
out 795 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(2), io->readx.out.remaining);
out 796 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(3), io->readx.out.compaction_mode);
out 798 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(5), io->readx.out.nread);
out 799 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(6), PTR_DIFF(io->readx.out.data, req->out.hdr));
out 851 source4/smb_server/smb/reply.c io->readx.out.data = req->out.data + 1;
out 853 source4/smb_server/smb/reply.c io->readx.out.data = req->out.data;
out 883 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), io->writeunlock.out.nwritten);
out 937 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), io->write.out.nwritten);
out 990 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 991 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), 0);
out 992 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(2), io->writex.out.nwritten & 0xFFFF);
out 993 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(3), io->writex.out.remaining);
out 994 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(4), io->writex.out.nwritten >> 16);
out 1053 source4/smb_server/smb/reply.c SIVALS(req->out.vwv, VWV(0), io->lseek.out.offset);
out 1138 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), io->write.out.nwritten);
out 1264 source4/smb_server/smb/reply.c memcpy(req->out.data, req->in.data, req->in.data_size);
out 1275 source4/smb_server/smb/reply.c SSVAL(this_req->out.vwv, VWV(0), i);
out 1295 source4/smb_server/smb/reply.c smbsrv_push_fnum(req->out.vwv, VWV(0), oi->openold.out.file.ntvfs);
out 1357 source4/smb_server/smb/reply.c if (maxcount < lpq->retq.out.count) {
out 1358 source4/smb_server/smb/reply.c lpq->retq.out.count = maxcount;
out 1362 source4/smb_server/smb/reply.c req_grow_data(req, 3 + el_size*lpq->retq.out.count);
out 1365 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), lpq->retq.out.count);
out 1366 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), lpq->retq.out.restart_idx);
out 1368 source4/smb_server/smb/reply.c SCVAL(req->out.data, 0, SMB_DATA_BLOCK);
out 1369 source4/smb_server/smb/reply.c SSVAL(req->out.data, 1, el_size*lpq->retq.out.count);
out 1371 source4/smb_server/smb/reply.c req->out.ptr = req->out.data + 3;
out 1373 source4/smb_server/smb/reply.c for (i=0;i<lpq->retq.out.count;i++) {
out 1374 source4/smb_server/smb/reply.c srv_push_dos_date2(req->smb_conn, req->out.ptr, 0 , lpq->retq.out.queue[i].time);
out 1375 source4/smb_server/smb/reply.c SCVAL(req->out.ptr, 4, lpq->retq.out.queue[i].status);
out 1376 source4/smb_server/smb/reply.c SSVAL(req->out.ptr, 5, lpq->retq.out.queue[i].job);
out 1377 source4/smb_server/smb/reply.c SIVAL(req->out.ptr, 7, lpq->retq.out.queue[i].size);
out 1378 source4/smb_server/smb/reply.c SCVAL(req->out.ptr, 11, 0); /* reserved */
out 1379 source4/smb_server/smb/reply.c req_push_str(req, req->out.ptr+12, lpq->retq.out.queue[i].user, 16, STR_ASCII);
out 1380 source4/smb_server/smb/reply.c req->out.ptr += el_size;
out 1548 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), cp->out.count);
out 1602 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 1603 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), 0);
out 1749 source4/smb_server/smb/reply.c srv_push_dos_date2(req->smb_conn, req->out.vwv, VWV(0), info->getattre.out.create_time);
out 1750 source4/smb_server/smb/reply.c srv_push_dos_date2(req->smb_conn, req->out.vwv, VWV(2), info->getattre.out.access_time);
out 1751 source4/smb_server/smb/reply.c srv_push_dos_date2(req->smb_conn, req->out.vwv, VWV(4), info->getattre.out.write_time);
out 1752 source4/smb_server/smb/reply.c SIVAL(req->out.vwv, VWV(6), info->getattre.out.size);
out 1753 source4/smb_server/smb/reply.c SIVAL(req->out.vwv, VWV(8), info->getattre.out.alloc_size);
out 1754 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(10), info->getattre.out.attrib);
out 1792 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 1793 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), 0);
out 1794 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(2), io->old.out.action);
out 1796 source4/smb_server/smb/reply.c SSVAL(req->out.hdr, HDR_UID, io->old.out.vuid);
out 1810 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 1811 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), 0);
out 1812 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(2), io->nt1.out.action);
out 1814 source4/smb_server/smb/reply.c SSVAL(req->out.hdr, HDR_UID, io->nt1.out.vuid);
out 1816 source4/smb_server/smb/reply.c req_push_str(req, NULL, io->nt1.out.os, -1, STR_TERMINATE);
out 1817 source4/smb_server/smb/reply.c req_push_str(req, NULL, io->nt1.out.lanman, -1, STR_TERMINATE);
out 1818 source4/smb_server/smb/reply.c req_push_str(req, NULL, io->nt1.out.domain, -1, STR_TERMINATE);
out 1831 source4/smb_server/smb/reply.c smbsrv_setup_reply(req, 4, io->spnego.out.secblob.length);
out 1837 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 1838 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), 0);
out 1839 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(2), io->spnego.out.action);
out 1840 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(3), io->spnego.out.secblob.length);
out 1842 source4/smb_server/smb/reply.c SSVAL(req->out.hdr, HDR_UID, io->spnego.out.vuid);
out 1844 source4/smb_server/smb/reply.c memcpy(req->out.data, io->spnego.out.secblob.data, io->spnego.out.secblob.length);
out 1845 source4/smb_server/smb/reply.c req_push_str(req, NULL, io->spnego.out.os, -1, STR_TERMINATE);
out 1846 source4/smb_server/smb/reply.c req_push_str(req, NULL, io->spnego.out.lanman, -1, STR_TERMINATE);
out 1847 source4/smb_server/smb/reply.c req_push_str(req, NULL, io->spnego.out.workgroup, -1, STR_TERMINATE);
out 2097 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 2098 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), 0);
out 2143 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(0), SMB_CHAIN_NONE);
out 2144 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, VWV(1), 0);
out 2145 source4/smb_server/smb/reply.c SCVAL(req->out.vwv, VWV(2), io->ntcreatex.out.oplock_level);
out 2148 source4/smb_server/smb/reply.c smbsrv_push_fnum(req->out.vwv, 5, io->ntcreatex.out.file.ntvfs);
out 2149 source4/smb_server/smb/reply.c SIVAL(req->out.vwv, 7, io->ntcreatex.out.create_action);
out 2150 source4/smb_server/smb/reply.c push_nttime(req->out.vwv, 11, io->ntcreatex.out.create_time);
out 2151 source4/smb_server/smb/reply.c push_nttime(req->out.vwv, 19, io->ntcreatex.out.access_time);
out 2152 source4/smb_server/smb/reply.c push_nttime(req->out.vwv, 27, io->ntcreatex.out.write_time);
out 2153 source4/smb_server/smb/reply.c push_nttime(req->out.vwv, 35, io->ntcreatex.out.change_time);
out 2154 source4/smb_server/smb/reply.c SIVAL(req->out.vwv, 43, io->ntcreatex.out.attrib);
out 2155 source4/smb_server/smb/reply.c SBVAL(req->out.vwv, 47, io->ntcreatex.out.alloc_size);
out 2156 source4/smb_server/smb/reply.c SBVAL(req->out.vwv, 55, io->ntcreatex.out.size);
out 2157 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, 63, io->ntcreatex.out.file_type);
out 2158 source4/smb_server/smb/reply.c SSVAL(req->out.vwv, 65, io->ntcreatex.out.ipc_state);
out 2159 source4/smb_server/smb/reply.c SCVAL(req->out.vwv, 67, io->ntcreatex.out.is_directory);
out 2161 source4/smb_server/smb/reply.c req->chained_fnum = SVAL(req->out.vwv, 5);
out 2315 source4/smb_server/smb/reply.c req->out.buffer = buf;
out 2316 source4/smb_server/smb/reply.c req->out.size = 4;
out 2324 source4/smb_server/smb/reply.c req->out.buffer = buf;
out 2325 source4/smb_server/smb/reply.c req->out.size = 4;
out 82 source4/smb_server/smb/request.c uint32_t chain_base_size = req->out.size;
out 85 source4/smb_server/smb/request.c req->out.size += 1 + VWV(wct) + 2 + buflen;
out 88 source4/smb_server/smb/request.c req->out.allocated = req->out.size + REQ_OVER_ALLOCATION;
out 90 source4/smb_server/smb/request.c req->out.buffer = talloc_realloc(req, req->out.buffer,
out 91 source4/smb_server/smb/request.c uint8_t, req->out.allocated);
out 92 source4/smb_server/smb/request.c if (!req->out.buffer) {
out 97 source4/smb_server/smb/request.c req->out.hdr = req->out.buffer + NBT_HDR_SIZE;
out 98 source4/smb_server/smb/request.c req->out.vwv = req->out.buffer + chain_base_size + 1;
out 99 source4/smb_server/smb/request.c req->out.wct = wct;
out 100 source4/smb_server/smb/request.c req->out.data = req->out.vwv + VWV(wct) + 2;
out 101 source4/smb_server/smb/request.c req->out.data_size = buflen;
out 102 source4/smb_server/smb/request.c req->out.ptr = req->out.data;
out 104 source4/smb_server/smb/request.c SCVAL(req->out.buffer, chain_base_size, wct);
out 105 source4/smb_server/smb/request.c SSVAL(req->out.vwv, VWV(wct), buflen);
out 123 source4/smb_server/smb/request.c req->out.size = NBT_HDR_SIZE + MIN_SMB_SIZE + VWV(wct) + buflen;
out 126 source4/smb_server/smb/request.c req->out.allocated = req->out.size + REQ_OVER_ALLOCATION;
out 128 source4/smb_server/smb/request.c req->out.buffer = talloc_size(req, req->out.allocated);
out 129 source4/smb_server/smb/request.c if (!req->out.buffer) {
out 147 source4/smb_server/smb/request.c req->out.hdr = req->out.buffer + NBT_HDR_SIZE;
out 148 source4/smb_server/smb/request.c req->out.vwv = req->out.hdr + HDR_VWV;
out 149 source4/smb_server/smb/request.c req->out.wct = wct;
out 150 source4/smb_server/smb/request.c req->out.data = req->out.vwv + VWV(wct) + 2;
out 151 source4/smb_server/smb/request.c req->out.data_size = buflen;
out 152 source4/smb_server/smb/request.c req->out.ptr = req->out.data;
out 154 source4/smb_server/smb/request.c SIVAL(req->out.hdr, HDR_RCLS, 0);
out 156 source4/smb_server/smb/request.c SCVAL(req->out.hdr, HDR_WCT, wct);
out 157 source4/smb_server/smb/request.c SSVAL(req->out.vwv, VWV(wct), buflen);
out 159 source4/smb_server/smb/request.c memcpy(req->out.hdr, "\377SMB", 4);
out 160 source4/smb_server/smb/request.c SCVAL(req->out.hdr,HDR_FLG, FLAG_REPLY | FLAG_CASELESS_PATHNAMES);
out 161 source4/smb_server/smb/request.c SSVAL(req->out.hdr,HDR_FLG2, flags2);
out 162 source4/smb_server/smb/request.c SSVAL(req->out.hdr,HDR_PIDHIGH,0);
out 163 source4/smb_server/smb/request.c memset(req->out.hdr + HDR_SS_FIELD, 0, 10);
out 167 source4/smb_server/smb/request.c SCVAL(req->out.hdr,HDR_COM,CVAL(req->in.hdr,HDR_COM));
out 168 source4/smb_server/smb/request.c SSVAL(req->out.hdr,HDR_TID,SVAL(req->in.hdr,HDR_TID));
out 169 source4/smb_server/smb/request.c SSVAL(req->out.hdr,HDR_PID,SVAL(req->in.hdr,HDR_PID));
out 170 source4/smb_server/smb/request.c SSVAL(req->out.hdr,HDR_UID,SVAL(req->in.hdr,HDR_UID));
out 171 source4/smb_server/smb/request.c SSVAL(req->out.hdr,HDR_MID,SVAL(req->in.hdr,HDR_MID));
out 173 source4/smb_server/smb/request.c SCVAL(req->out.hdr,HDR_COM,0);
out 174 source4/smb_server/smb/request.c SSVAL(req->out.hdr,HDR_TID,0);
out 175 source4/smb_server/smb/request.c SSVAL(req->out.hdr,HDR_PID,0);
out 176 source4/smb_server/smb/request.c SSVAL(req->out.hdr,HDR_UID,0);
out 177 source4/smb_server/smb/request.c SSVAL(req->out.hdr,HDR_MID,0);
out 196 source4/smb_server/smb/request.c req->out.buffer = talloc_memdup(req, req->out.buffer, req->out.allocated);
out 197 source4/smb_server/smb/request.c if (req->out.buffer == NULL) {
out 202 source4/smb_server/smb/request.c diff = req->out.buffer - old_req->out.buffer;
out 204 source4/smb_server/smb/request.c req->out.hdr += diff;
out 205 source4/smb_server/smb/request.c req->out.vwv += diff;
out 206 source4/smb_server/smb/request.c req->out.data += diff;
out 207 source4/smb_server/smb/request.c req->out.ptr += diff;
out 223 source4/smb_server/smb/request.c ret -= PTR_DIFF(req->out.data, req->out.hdr);
out 242 source4/smb_server/smb/request.c delta = new_size - req->out.data_size;
out 243 source4/smb_server/smb/request.c if (delta + req->out.size <= req->out.allocated) {
out 249 source4/smb_server/smb/request.c req->out.allocated = req->out.size + delta + REQ_OVER_ALLOCATION;
out 250 source4/smb_server/smb/request.c buf2 = talloc_realloc(req, req->out.buffer, uint8_t, req->out.allocated);
out 255 source4/smb_server/smb/request.c if (buf2 == req->out.buffer) {
out 261 source4/smb_server/smb/request.c req->out.data = buf2 + PTR_DIFF(req->out.data, req->out.buffer);
out 262 source4/smb_server/smb/request.c req->out.ptr = buf2 + PTR_DIFF(req->out.ptr, req->out.buffer);
out 263 source4/smb_server/smb/request.c req->out.vwv = buf2 + PTR_DIFF(req->out.vwv, req->out.buffer);
out 264 source4/smb_server/smb/request.c req->out.hdr = buf2 + PTR_DIFF(req->out.hdr, req->out.buffer);
out 266 source4/smb_server/smb/request.c req->out.buffer = buf2;
out 288 source4/smb_server/smb/request.c delta = new_size - req->out.data_size;
out 290 source4/smb_server/smb/request.c req->out.size += delta;
out 291 source4/smb_server/smb/request.c req->out.data_size += delta;
out 294 source4/smb_server/smb/request.c SSVAL(req->out.vwv, VWV(req->out.wct), new_size);
out 314 source4/smb_server/smb/request.c if (req->out.size > NBT_HDR_SIZE) {
out 315 source4/smb_server/smb/request.c _smb_setlen(req->out.buffer, req->out.size - NBT_HDR_SIZE);
out 318 source4/smb_server/smb/request.c blob = data_blob_const(req->out.buffer, req->out.size);
out 354 source4/smb_server/smb/request.c SCVAL(req->out.hdr, HDR_RCLS, eclass);
out 355 source4/smb_server/smb/request.c SSVAL(req->out.hdr, HDR_ERR, ecode);
out 356 source4/smb_server/smb/request.c SSVAL(req->out.hdr, HDR_FLG2, SVAL(req->out.hdr, HDR_FLG2) & ~FLAGS2_32_BIT_ERROR_CODES);
out 362 source4/smb_server/smb/request.c SSVAL(req->out.hdr, HDR_RCLS, NT_STATUS_DOS_CLASS(status));
out 363 source4/smb_server/smb/request.c SSVAL(req->out.hdr, HDR_ERR, NT_STATUS_DOS_CODE(status));
out 364 source4/smb_server/smb/request.c SSVAL(req->out.hdr, HDR_FLG2, SVAL(req->out.hdr, HDR_FLG2) & ~FLAGS2_32_BIT_ERROR_CODES);
out 366 source4/smb_server/smb/request.c SIVAL(req->out.hdr, HDR_RCLS, NT_STATUS_V(status));
out 367 source4/smb_server/smb/request.c SSVAL(req->out.hdr, HDR_FLG2, SVAL(req->out.hdr, HDR_FLG2) | FLAGS2_32_BIT_ERROR_CODES);
out 412 source4/smb_server/smb/request.c dest = req->out.data + req->out.data_size;
out 421 source4/smb_server/smb/request.c grow_size = len + PTR_DIFF(dest, req->out.data);
out 422 source4/smb_server/smb/request.c buf0 = req->out.buffer;
out 426 source4/smb_server/smb/request.c if (buf0 != req->out.buffer) {
out 427 source4/smb_server/smb/request.c dest = req->out.buffer + PTR_DIFF(dest, buf0);
out 432 source4/smb_server/smb/request.c grow_size = len + PTR_DIFF(dest, req->out.data);
out 434 source4/smb_server/smb/request.c if (grow_size > req->out.data_size) {
out 448 source4/smb_server/smb/request.c req_grow_allocation(req, byte_len + req->out.data_size);
out 449 source4/smb_server/smb/request.c memcpy(req->out.data + req->out.data_size, bytes, byte_len);
out 450 source4/smb_server/smb/request.c req_grow_data(req, byte_len + req->out.data_size);
out 460 source4/smb_server/smb/request.c req_grow_allocation(req, byte_len + 3 + req->out.data_size);
out 461 source4/smb_server/smb/request.c SCVAL(req->out.data + req->out.data_size, 0, 5);
out 462 source4/smb_server/smb/request.c SSVAL(req->out.data + req->out.data_size, 1, byte_len); /* add field length */
out 464 source4/smb_server/smb/request.c memcpy(req->out.data + req->out.data_size + 3, bytes, byte_len);
out 466 source4/smb_server/smb/request.c req_grow_data(req, byte_len + 3 + req->out.data_size);
out 45 source4/smb_server/smb/search.c if (req->out.data_size + 43 > req_max_data(req)) {
out 49 source4/smb_server/smb/search.c req_grow_data(req, req->out.data_size + 43);
out 50 source4/smb_server/smb/search.c p = req->out.data + req->out.data_size - 43;
out 85 source4/smb_server/smb/search.c SSVAL(req->out.vwv, VWV(0), sf->search_first.out.count);
out 100 source4/smb_server/smb/search.c SSVAL(req->out.vwv, VWV(0), sn->search_next.out.count);
out 163 source4/smb_server/smb/search.c SSVAL(req->out.vwv, VWV(0), 0);
out 219 source4/smb_server/smb/search.c SSVAL(req->out.vwv, VWV(0), 0);
out 193 source4/smb_server/smb/service.c con->tcon.out.max_xmit = req->smb_conn->negotiate.max_recv;
out 194 source4/smb_server/smb/service.c con->tcon.out.tid = req->tcon->tid;
out 207 source4/smb_server/smb/service.c con->tconx.out.tid = req->tcon->tid;
out 208 source4/smb_server/smb/service.c con->tconx.out.dev_type = talloc_strdup(req, req->tcon->ntvfs->dev_type);
out 209 source4/smb_server/smb/service.c con->tconx.out.fs_type = talloc_strdup(req, req->tcon->ntvfs->fs_type);
out 210 source4/smb_server/smb/service.c con->tconx.out.options = SMB_SUPPORT_SEARCH_BITS | (share_int_option(req->tcon->ntvfs->config, SHARE_CSC_POLICY, SHARE_CSC_POLICY_DEFAULT) << 2);
out 212 source4/smb_server/smb/service.c con->tconx.out.options |= SMB_SHARE_IN_DFS;
out 92 source4/smb_server/smb/sesssetup.c sess->old.out.vuid = smb_sess->vuid;
out 108 source4/smb_server/smb/sesssetup.c sess->old.out.vuid = 0;
out 109 source4/smb_server/smb/sesssetup.c sess->old.out.action = 0;
out 112 source4/smb_server/smb/sesssetup.c &sess->old.out.os,
out 113 source4/smb_server/smb/sesssetup.c &sess->old.out.lanman,
out 114 source4/smb_server/smb/sesssetup.c &sess->old.out.domain);
out 189 source4/smb_server/smb/sesssetup.c sess->nt1.out.vuid = smb_sess->vuid;
out 214 source4/smb_server/smb/sesssetup.c sess->nt1.out.vuid = 0;
out 215 source4/smb_server/smb/sesssetup.c sess->nt1.out.action = 0;
out 218 source4/smb_server/smb/sesssetup.c &sess->nt1.out.os,
out 219 source4/smb_server/smb/sesssetup.c &sess->nt1.out.lanman,
out 220 source4/smb_server/smb/sesssetup.c &sess->nt1.out.domain);
out 303 source4/smb_server/smb/sesssetup.c status = gensec_update_recv(greq, req, &sess->spnego.out.secblob);
out 326 source4/smb_server/smb/sesssetup.c sess->spnego.out.vuid = smb_sess->vuid;
out 346 source4/smb_server/smb/sesssetup.c sess->spnego.out.vuid = 0;
out 347 source4/smb_server/smb/sesssetup.c sess->spnego.out.action = 0;
out 350 source4/smb_server/smb/sesssetup.c &sess->spnego.out.os,
out 351 source4/smb_server/smb/sesssetup.c &sess->spnego.out.lanman,
out 352 source4/smb_server/smb/sesssetup.c &sess->spnego.out.workgroup);
out 35 source4/smb_server/smb/signing.c file_save("pkt.dat", req->out.buffer, req->out.size);
out 44 source4/smb_server/smb/signing.c mark_packet_signed(&req->out);
out 48 source4/smb_server/smb/signing.c memcpy((req->out.hdr + HDR_SS_FIELD), "BSRSPYL ", 8);
out 53 source4/smb_server/smb/signing.c sign_outgoing_message(&req->out,
out 69 source4/smb_server/smb/trans2.c trans->out.setup_count = setup_count;
out 71 source4/smb_server/smb/trans2.c trans->out.setup = talloc_zero_array(trans, uint16_t, setup_count);
out 72 source4/smb_server/smb/trans2.c NT_STATUS_HAVE_NO_MEMORY(trans->out.setup);
out 74 source4/smb_server/smb/trans2.c trans->out.params = data_blob_talloc(trans, NULL, param_size);
out 75 source4/smb_server/smb/trans2.c if (param_size > 0) NT_STATUS_HAVE_NO_MEMORY(trans->out.params.data);
out 77 source4/smb_server/smb/trans2.c trans->out.data = data_blob_talloc(trans, NULL, data_size);
out 78 source4/smb_server/smb/trans2.c if (data_size > 0) NT_STATUS_HAVE_NO_MEMORY(trans->out.data.data);
out 95 source4/smb_server/smb/trans2.c SIVAL(blob->data, 0, fsinfo->allocation.out.fs_id);
out 96 source4/smb_server/smb/trans2.c SIVAL(blob->data, 4, fsinfo->allocation.out.sectors_per_unit);
out 97 source4/smb_server/smb/trans2.c SIVAL(blob->data, 8, fsinfo->allocation.out.total_alloc_units);
out 98 source4/smb_server/smb/trans2.c SIVAL(blob->data, 12, fsinfo->allocation.out.avail_alloc_units);
out 99 source4/smb_server/smb/trans2.c SSVAL(blob->data, 16, fsinfo->allocation.out.bytes_per_sector);
out 106 source4/smb_server/smb/trans2.c SIVAL(blob->data, 0, fsinfo->volume.out.serial_number);
out 110 source4/smb_server/smb/trans2.c fsinfo->volume.out.volume_name.s,
out 156 source4/smb_server/smb/trans2.c &trans->out.data, fsinfo,
out 207 source4/smb_server/smb/trans2.c smbsrv_push_fnum(trans->out.params.data, VWV(0), io->t2open.out.file.ntvfs);
out 208 source4/smb_server/smb/trans2.c SSVAL(trans->out.params.data, VWV(1), io->t2open.out.attrib);
out 209 source4/smb_server/smb/trans2.c srv_push_dos_date3(req->smb_conn, trans->out.params.data,
out 210 source4/smb_server/smb/trans2.c VWV(2), io->t2open.out.write_time);
out 211 source4/smb_server/smb/trans2.c SIVAL(trans->out.params.data, VWV(4), io->t2open.out.size);
out 212 source4/smb_server/smb/trans2.c SSVAL(trans->out.params.data, VWV(6), io->t2open.out.access);
out 213 source4/smb_server/smb/trans2.c SSVAL(trans->out.params.data, VWV(7), io->t2open.out.ftype);
out 214 source4/smb_server/smb/trans2.c SSVAL(trans->out.params.data, VWV(8), io->t2open.out.devstate);
out 215 source4/smb_server/smb/trans2.c SSVAL(trans->out.params.data, VWV(9), io->t2open.out.action);
out 216 source4/smb_server/smb/trans2.c SIVAL(trans->out.params.data, VWV(10), 0); /* reserved */
out 217 source4/smb_server/smb/trans2.c SSVAL(trans->out.params.data, VWV(12), 0); /* EaErrorOffset */
out 218 source4/smb_server/smb/trans2.c SIVAL(trans->out.params.data, VWV(13), 0); /* EaLength */
out 278 source4/smb_server/smb/trans2.c SSVAL(trans->out.params.data, VWV(0), 0);
out 342 source4/smb_server/smb/trans2.c srv_push_dos_date2(smb_conn, blob->data, 0, st->standard.out.create_time);
out 343 source4/smb_server/smb/trans2.c srv_push_dos_date2(smb_conn, blob->data, 4, st->standard.out.access_time);
out 344 source4/smb_server/smb/trans2.c srv_push_dos_date2(smb_conn, blob->data, 8, st->standard.out.write_time);
out 345 source4/smb_server/smb/trans2.c SIVAL(blob->data, 12, st->standard.out.size);
out 346 source4/smb_server/smb/trans2.c SIVAL(blob->data, 16, st->standard.out.alloc_size);
out 347 source4/smb_server/smb/trans2.c SSVAL(blob->data, 20, st->standard.out.attrib);
out 353 source4/smb_server/smb/trans2.c srv_push_dos_date2(smb_conn, blob->data, 0, st->ea_size.out.create_time);
out 354 source4/smb_server/smb/trans2.c srv_push_dos_date2(smb_conn, blob->data, 4, st->ea_size.out.access_time);
out 355 source4/smb_server/smb/trans2.c srv_push_dos_date2(smb_conn, blob->data, 8, st->ea_size.out.write_time);
out 356 source4/smb_server/smb/trans2.c SIVAL(blob->data, 12, st->ea_size.out.size);
out 357 source4/smb_server/smb/trans2.c SIVAL(blob->data, 16, st->ea_size.out.alloc_size);
out 358 source4/smb_server/smb/trans2.c SSVAL(blob->data, 20, st->ea_size.out.attrib);
out 359 source4/smb_server/smb/trans2.c SIVAL(blob->data, 22, st->ea_size.out.ea_size);
out 363 source4/smb_server/smb/trans2.c list_size = ea_list_size(st->ea_list.out.num_eas,
out 364 source4/smb_server/smb/trans2.c st->ea_list.out.eas);
out 368 source4/smb_server/smb/trans2.c st->ea_list.out.num_eas, st->ea_list.out.eas);
out 372 source4/smb_server/smb/trans2.c list_size = ea_list_size(st->all_eas.out.num_eas,
out 373 source4/smb_server/smb/trans2.c st->all_eas.out.eas);
out 377 source4/smb_server/smb/trans2.c st->all_eas.out.num_eas, st->all_eas.out.eas);
out 437 source4/smb_server/smb/trans2.c SSVAL(trans->out.params.data, 0, 0);
out 440 source4/smb_server/smb/trans2.c &trans->out.data, st,
out 711 source4/smb_server/smb/trans2.c uint_t ofs = trans->out.data.length;
out 722 source4/smb_server/smb/trans2.c TRANS2_CHECK(smbsrv_blob_grow_data(trans, &trans->out.data, ofs + 27));
out 723 source4/smb_server/smb/trans2.c SIVAL(trans->out.data.data, ofs, file->standard.resume_key);
out 726 source4/smb_server/smb/trans2.c TRANS2_CHECK(smbsrv_blob_grow_data(trans, &trans->out.data, ofs + 23));
out 728 source4/smb_server/smb/trans2.c data = trans->out.data.data + ofs;
out 735 source4/smb_server/smb/trans2.c TRANS2_CHECK(smbsrv_blob_append_string(trans, &trans->out.data, file->standard.name.s,
out 742 source4/smb_server/smb/trans2.c TRANS2_CHECK(smbsrv_blob_grow_data(trans, &trans->out.data, ofs + 31));
out 743 source4/smb_server/smb/trans2.c SIVAL(trans->out.data.data, ofs, file->ea_size.resume_key);
out 746 source4/smb_server/smb/trans2.c TRANS2_CHECK(smbsrv_blob_grow_data(trans, &trans->out.data, ofs + 27));
out 748 source4/smb_server/smb/trans2.c data = trans->out.data.data + ofs;
out 756 source4/smb_server/smb/trans2.c TRANS2_CHECK(smbsrv_blob_append_string(trans, &trans->out.data, file->ea_size.name.s,
out 759 source4/smb_server/smb/trans2.c TRANS2_CHECK(smbsrv_blob_fill_data(trans, &trans->out.data, trans->out.data.length + 1));
out 765 source4/smb_server/smb/trans2.c TRANS2_CHECK(smbsrv_blob_grow_data(trans, &trans->out.data, ofs + 27 + ea_size));
out 766 source4/smb_server/smb/trans2.c SIVAL(trans->out.data.data, ofs, file->ea_list.resume_key);
out 769 source4/smb_server/smb/trans2.c TRANS2_CHECK(smbsrv_blob_grow_data(trans, &trans->out.data, ofs + 23 + ea_size));
out 771 source4/smb_server/smb/trans2.c data = trans->out.data.data + ofs;
out 779 source4/smb_server/smb/trans2.c TRANS2_CHECK(smbsrv_blob_append_string(trans, &trans->out.data, file->ea_list.name.s,
out 782 source4/smb_server/smb/trans2.c TRANS2_CHECK(smbsrv_blob_fill_data(trans, &trans->out.data, trans->out.data.length + 1));
out 791 source4/smb_server/smb/trans2.c return smbsrv_push_passthru_search(trans, &trans->out.data, state->data_level, file,
out 809 source4/smb_server/smb/trans2.c old_length = trans->out.data.length;
out 812 source4/smb_server/smb/trans2.c trans->out.data.length > trans->in.max_data) {
out 814 source4/smb_server/smb/trans2.c smbsrv_blob_grow_data(trans, &trans->out.data, old_length);
out 837 source4/smb_server/smb/trans2.c param = trans->out.params.data;
out 838 source4/smb_server/smb/trans2.c SSVAL(param, VWV(0), search->t2ffirst.out.handle);
out 839 source4/smb_server/smb/trans2.c SSVAL(param, VWV(1), search->t2ffirst.out.count);
out 840 source4/smb_server/smb/trans2.c SSVAL(param, VWV(2), search->t2ffirst.out.end_of_search);
out 924 source4/smb_server/smb/trans2.c param = trans->out.params.data;
out 925 source4/smb_server/smb/trans2.c SSVAL(param, VWV(0), search->t2fnext.out.count);
out 926 source4/smb_server/smb/trans2.c SSVAL(param, VWV(1), search->t2fnext.out.end_of_search);
out 1106 source4/smb_server/smb/trans2.c params_left = trans->out.params.length;
out 1107 source4/smb_server/smb/trans2.c data_left = trans->out.data.length;
out 1108 source4/smb_server/smb/trans2.c params = trans->out.params.data;
out 1109 source4/smb_server/smb/trans2.c data = trans->out.data.data;
out 1111 source4/smb_server/smb/trans2.c smbsrv_setup_reply(req, 10 + trans->out.setup_count, 0);
out 1147 source4/smb_server/smb/trans2.c SSVAL(this_req->out.vwv, VWV(0), trans->out.params.length);
out 1148 source4/smb_server/smb/trans2.c SSVAL(this_req->out.vwv, VWV(1), trans->out.data.length);
out 1149 source4/smb_server/smb/trans2.c SSVAL(this_req->out.vwv, VWV(2), 0);
out 1151 source4/smb_server/smb/trans2.c SSVAL(this_req->out.vwv, VWV(3), this_param);
out 1152 source4/smb_server/smb/trans2.c SSVAL(this_req->out.vwv, VWV(4), align1 + PTR_DIFF(this_req->out.data, this_req->out.hdr));
out 1153 source4/smb_server/smb/trans2.c SSVAL(this_req->out.vwv, VWV(5), PTR_DIFF(params, trans->out.params.data));
out 1155 source4/smb_server/smb/trans2.c SSVAL(this_req->out.vwv, VWV(6), this_data);
out 1156 source4/smb_server/smb/trans2.c SSVAL(this_req->out.vwv, VWV(7), align1 + align2 +
out 1157 source4/smb_server/smb/trans2.c PTR_DIFF(this_req->out.data + this_param, this_req->out.hdr));
out 1158 source4/smb_server/smb/trans2.c SSVAL(this_req->out.vwv, VWV(8), PTR_DIFF(data, trans->out.data.data));
out 1160 source4/smb_server/smb/trans2.c SCVAL(this_req->out.vwv, VWV(9), trans->out.setup_count);
out 1161 source4/smb_server/smb/trans2.c SCVAL(this_req->out.vwv, VWV(9)+1, 0); /* reserved */
out 1162 source4/smb_server/smb/trans2.c for (i=0;i<trans->out.setup_count;i++) {
out 1163 source4/smb_server/smb/trans2.c SSVAL(this_req->out.vwv, VWV(10+i), trans->out.setup[i]);
out 1166 source4/smb_server/smb/trans2.c memset(this_req->out.data, 0, align1);
out 1168 source4/smb_server/smb/trans2.c memcpy(this_req->out.data + align1, params, this_param);
out 1170 source4/smb_server/smb/trans2.c memset(this_req->out.data+this_param+align1, 0, align2);
out 1172 source4/smb_server/smb/trans2.c memcpy(this_req->out.data+this_param+align1+align2, data, this_data);
out 51 source4/smb_server/smb2/fileinfo.c ZERO_STRUCT(op->info->out);
out 56 source4/smb_server/smb2/fileinfo.c if (op->info->in.output_buffer_length < op->info->out.blob.length) {
out 61 source4/smb_server/smb2/fileinfo.c SMB2SRV_CHECK(smb2srv_setup_reply(req, 0x08, true, op->info->out.blob.length));
out 63 source4/smb_server/smb2/fileinfo.c SMB2SRV_CHECK(smb2_push_o16s32_blob(&req->out, 0x02, op->info->out.blob));
out 64 source4/smb_server/smb2/fileinfo.c SSVAL(req->out.body, 0x06, 0);
out 75 source4/smb_server/smb2/fileinfo.c &op->info->out.blob,
out 123 source4/smb_server/smb2/fileinfo.c &op->info->out.blob,
out 154 source4/smb_server/smb2/fileinfo.c ndr_err = ndr_push_struct_blob(&op->info->out.blob, op->req, NULL,
out 155 source4/smb_server/smb2/fileinfo.c io->query_secdesc.out.sd,
out 40 source4/smb_server/smb2/fileio.c if (io->smb2.out.maximal_access != 0) {
out 43 source4/smb_server/smb2/fileio.c SIVAL(data, 4, io->smb2.out.maximal_access);
out 44 source4/smb_server/smb2/fileio.c SMB2SRV_CHECK(smb2_create_blob_add(req, &io->smb2.out.blobs,
out 50 source4/smb_server/smb2/fileio.c SMB2SRV_CHECK(smb2_create_blob_push(req, &blob, io->smb2.out.blobs));
out 53 source4/smb_server/smb2/fileio.c SCVAL(req->out.body, 0x02, io->smb2.out.oplock_level);
out 54 source4/smb_server/smb2/fileio.c SCVAL(req->out.body, 0x03, io->smb2.out.reserved);
out 55 source4/smb_server/smb2/fileio.c SIVAL(req->out.body, 0x04, io->smb2.out.create_action);
out 56 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x08, io->smb2.out.create_time);
out 57 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x10, io->smb2.out.access_time);
out 58 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x18, io->smb2.out.write_time);
out 59 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x20, io->smb2.out.change_time);
out 60 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x28, io->smb2.out.alloc_size);
out 61 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x30, io->smb2.out.size);
out 62 source4/smb_server/smb2/fileio.c SIVAL(req->out.body, 0x38, io->smb2.out.file_attr);
out 63 source4/smb_server/smb2/fileio.c SIVAL(req->out.body, 0x3C, io->smb2.out.reserved2);
out 64 source4/smb_server/smb2/fileio.c smb2srv_push_handle(req->out.body, 0x40, io->smb2.out.file.ntvfs);
out 65 source4/smb_server/smb2/fileio.c SMB2SRV_CHECK(smb2_push_o32s32_blob(&req->out, 0x50, blob));
out 69 source4/smb_server/smb2/fileio.c smb2srv_push_handle(req->chained_file_handle, 0, io->smb2.out.file.ntvfs);
out 175 source4/smb_server/smb2/fileio.c SSVAL(req->out.body, 0x02, io->smb2.out.flags);
out 176 source4/smb_server/smb2/fileio.c SIVAL(req->out.body, 0x04, io->smb2.out._pad);
out 177 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x08, io->smb2.out.create_time);
out 178 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x10, io->smb2.out.access_time);
out 179 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x18, io->smb2.out.write_time);
out 180 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x20, io->smb2.out.change_time);
out 181 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x28, io->smb2.out.alloc_size);
out 182 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x30, io->smb2.out.size);
out 183 source4/smb_server/smb2/fileio.c SIVAL(req->out.body, 0x38, io->smb2.out.file_attr);
out 213 source4/smb_server/smb2/fileio.c SSVAL(req->out.body, 0x02, io->smb2.out.reserved);
out 241 source4/smb_server/smb2/fileio.c SMB2SRV_CHECK(smb2srv_setup_reply(req, 0x10, true, io->smb2.out.data.length));
out 244 source4/smb_server/smb2/fileio.c SMB2SRV_CHECK(smb2_push_o16s32_blob(&req->out, 0x02, io->smb2.out.data));
out 245 source4/smb_server/smb2/fileio.c SIVAL(req->out.body, 0x08, io->smb2.out.remaining);
out 246 source4/smb_server/smb2/fileio.c SIVAL(req->out.body, 0x0C, io->smb2.out.reserved);
out 279 source4/smb_server/smb2/fileio.c io->smb2.out.data = data_blob_talloc(io, NULL, io->smb2.in.length);
out 280 source4/smb_server/smb2/fileio.c if (io->smb2.out.data.length != io->smb2.in.length) {
out 295 source4/smb_server/smb2/fileio.c SSVAL(req->out.body, 0x02, io->smb2.out._pad);
out 296 source4/smb_server/smb2/fileio.c SIVAL(req->out.body, 0x04, io->smb2.out.nwritten);
out 297 source4/smb_server/smb2/fileio.c SBVAL(req->out.body, 0x08, io->smb2.out.unknown1);
out 330 source4/smb_server/smb2/fileio.c SSVAL(req->out.body, 0x02, io->smb2.out.reserved);
out 379 source4/smb_server/smb2/fileio.c SSVAL(req->out.body, 0x02, io->smb2.out._pad);
out 380 source4/smb_server/smb2/fileio.c SIVAL(req->out.body, 0x04, io->smb2.out.function);
out 385 source4/smb_server/smb2/fileio.c smb2_push_handle(req->out.body + 0x08, &h);
out 387 source4/smb_server/smb2/fileio.c smb2srv_push_handle(req->out.body, 0x08,io->smb2.in.file.ntvfs);
out 389 source4/smb_server/smb2/fileio.c SMB2SRV_CHECK(smb2_push_o32s32_blob(&req->out, 0x18, io->smb2.out.in));
out 390 source4/smb_server/smb2/fileio.c SMB2SRV_CHECK(smb2_push_o32s32_blob(&req->out, 0x20, io->smb2.out.out));
out 391 source4/smb_server/smb2/fileio.c SIVAL(req->out.body, 0x28, io->smb2.out.unknown2);
out 392 source4/smb_server/smb2/fileio.c SIVAL(req->out.body, 0x2C, io->smb2.out.unknown3);
out 410 source4/smb_server/smb2/fileio.c SMB2SRV_CHECK(smb2_pull_o32s32_blob(&req->in, io, req->in.body+0x18, &io->smb2.in.out));
out 443 source4/smb_server/smb2/fileio.c for (i=0;i<io->smb2.out.num_changes;i++) {
out 444 source4/smb_server/smb2/fileio.c size += 12 + 3 + (1+strlen(io->smb2.out.changes[i].name.s)) * MAX_BYTES_PER_CHAR;
out 455 source4/smb_server/smb2/fileio.c for (i=0;i<io->smb2.out.num_changes;i++) {
out 459 source4/smb_server/smb2/fileio.c SIVAL(p, 4, io->smb2.out.changes[i].action);
out 460 source4/smb_server/smb2/fileio.c len = push_string(p + 12, io->smb2.out.changes[i].name.s,
out 472 source4/smb_server/smb2/fileio.c if (i == io->smb2.out.num_changes-1) {
out 483 source4/smb_server/smb2/fileio.c SMB2SRV_CHECK(smb2_push_o16s32_blob(&req->out, 0x02, blob));
out 515 source4/smb_server/smb2/fileio.c SCVAL(req->out.body, 0x02, io->smb2_break.out.oplock_level);
out 516 source4/smb_server/smb2/fileio.c SCVAL(req->out.body, 0x03, io->smb2_break.out.reserved);
out 517 source4/smb_server/smb2/fileio.c SIVAL(req->out.body, 0x04, io->smb2_break.out.reserved2);
out 518 source4/smb_server/smb2/fileio.c smb2srv_push_handle(req->out.body, 0x08,io->smb2_break.out.file.ntvfs);
out 50 source4/smb_server/smb2/find.c old_length = info->out.blob.length;
out 52 source4/smb_server/smb2/find.c status = smbsrv_push_passthru_search(state, &info->out.blob, info->data_level, file, STR_UNICODE);
out 54 source4/smb_server/smb2/find.c info->out.blob.length > info->in.max_response_size) {
out 56 source4/smb_server/smb2/find.c smbsrv_blob_grow_data(state, &info->out.blob, old_length);
out 71 source4/smb_server/smb2/find.c SMB2SRV_CHECK(smb2srv_setup_reply(req, 0x08, true, state->info->out.blob.length));
out 73 source4/smb_server/smb2/find.c if (state->info->out.blob.length > 0) {
out 74 source4/smb_server/smb2/find.c SIVAL(state->info->out.blob.data + state->last_entry_offset, 0, 0);
out 77 source4/smb_server/smb2/find.c SMB2SRV_CHECK(smb2_push_o16s32_blob(&req->out, 0x02, state->info->out.blob));
out 121 source4/smb_server/smb2/find.c ZERO_STRUCT(state->ff->smb2.out);
out 130 source4/smb_server/smb2/find.c ZERO_STRUCT(state->fn->smb2.out);
out 48 source4/smb_server/smb2/keepalive.c SSVAL(req->out.body, 0x02, 0);
out 116 source4/smb_server/smb2/negprot.c ZERO_STRUCT(io->out);
out 119 source4/smb_server/smb2/negprot.c io->out.security_mode = 0;
out 123 source4/smb_server/smb2/negprot.c io->out.security_mode = SMB2_NEGOTIATE_SIGNING_ENABLED;
out 126 source4/smb_server/smb2/negprot.c io->out.security_mode = SMB2_NEGOTIATE_SIGNING_ENABLED | SMB2_NEGOTIATE_SIGNING_REQUIRED;
out 131 source4/smb_server/smb2/negprot.c io->out.dialect_revision = SMB2_DIALECT_REVISION;
out 132 source4/smb_server/smb2/negprot.c io->out.capabilities = 0;
out 133 source4/smb_server/smb2/negprot.c io->out.max_transact_size = lp_parm_ulong(req->smb_conn->lp_ctx, NULL,
out 135 source4/smb_server/smb2/negprot.c io->out.max_read_size = lp_parm_ulong(req->smb_conn->lp_ctx, NULL,
out 137 source4/smb_server/smb2/negprot.c io->out.max_write_size = lp_parm_ulong(req->smb_conn->lp_ctx, NULL,
out 139 source4/smb_server/smb2/negprot.c io->out.system_time = timeval_to_nttime(¤t_time);
out 140 source4/smb_server/smb2/negprot.c io->out.server_start_time = timeval_to_nttime(&boot_time);
out 141 source4/smb_server/smb2/negprot.c io->out.reserved2 = 0;
out 142 source4/smb_server/smb2/negprot.c status = smb2srv_negprot_secblob(req, &io->out.secblob);
out 158 source4/smb_server/smb2/negprot.c status = smb2srv_setup_reply(req, 0x40, true, io->out.secblob.length);
out 165 source4/smb_server/smb2/negprot.c SSVAL(req->out.body, 0x02, io->out.security_mode);
out 166 source4/smb_server/smb2/negprot.c SIVAL(req->out.body, 0x04, io->out.dialect_revision);
out 167 source4/smb_server/smb2/negprot.c SIVAL(req->out.body, 0x06, io->out.reserved);
out 168 source4/smb_server/smb2/negprot.c ndr_err = smbcli_push_guid(req->out.body, 0x08, &io->out.server_guid);
out 174 source4/smb_server/smb2/negprot.c SIVAL(req->out.body, 0x18, io->out.capabilities);
out 175 source4/smb_server/smb2/negprot.c SIVAL(req->out.body, 0x1C, io->out.max_transact_size);
out 176 source4/smb_server/smb2/negprot.c SIVAL(req->out.body, 0x20, io->out.max_read_size);
out 177 source4/smb_server/smb2/negprot.c SIVAL(req->out.body, 0x24, io->out.max_write_size);
out 178 source4/smb_server/smb2/negprot.c push_nttime(req->out.body, 0x28, io->out.system_time);
out 179 source4/smb_server/smb2/negprot.c push_nttime(req->out.body, 0x30, io->out.server_start_time);
out 180 source4/smb_server/smb2/negprot.c SIVAL(req->out.body, 0x3C, io->out.reserved2);
out 181 source4/smb_server/smb2/negprot.c status = smb2_push_o16s16_blob(&req->out, 0x38, io->out.secblob);
out 100 source4/smb_server/smb2/receive.c req->out.size = SMB2_HDR_BODY+NBT_HDR_SIZE+body_fixed_size;
out 102 source4/smb_server/smb2/receive.c req->out.allocated = req->out.size + body_dynamic_size;
out 103 source4/smb_server/smb2/receive.c req->out.buffer = talloc_array(req, uint8_t,
out 104 source4/smb_server/smb2/receive.c req->out.allocated);
out 105 source4/smb_server/smb2/receive.c NT_STATUS_HAVE_NO_MEMORY(req->out.buffer);
out 107 source4/smb_server/smb2/receive.c req->out.hdr = req->out.buffer + NBT_HDR_SIZE;
out 108 source4/smb_server/smb2/receive.c req->out.body = req->out.hdr + SMB2_HDR_BODY;
out 109 source4/smb_server/smb2/receive.c req->out.body_fixed = body_fixed_size;
out 110 source4/smb_server/smb2/receive.c req->out.body_size = body_fixed_size;
out 111 source4/smb_server/smb2/receive.c req->out.dynamic = (body_dynamic_size ? req->out.body + body_fixed_size : NULL);
out 113 source4/smb_server/smb2/receive.c SIVAL(req->out.hdr, 0, SMB2_MAGIC);
out 114 source4/smb_server/smb2/receive.c SSVAL(req->out.hdr, SMB2_HDR_LENGTH, SMB2_HDR_BODY);
out 115 source4/smb_server/smb2/receive.c SSVAL(req->out.hdr, SMB2_HDR_EPOCH, 0);
out 116 source4/smb_server/smb2/receive.c SIVAL(req->out.hdr, SMB2_HDR_STATUS, NT_STATUS_V(req->status));
out 117 source4/smb_server/smb2/receive.c SSVAL(req->out.hdr, SMB2_HDR_OPCODE, SVAL(req->in.hdr, SMB2_HDR_OPCODE));
out 118 source4/smb_server/smb2/receive.c SSVAL(req->out.hdr, SMB2_HDR_CREDIT, 0x0001);
out 119 source4/smb_server/smb2/receive.c SIVAL(req->out.hdr, SMB2_HDR_FLAGS, flags);
out 120 source4/smb_server/smb2/receive.c SIVAL(req->out.hdr, SMB2_HDR_NEXT_COMMAND, 0);
out 121 source4/smb_server/smb2/receive.c SBVAL(req->out.hdr, SMB2_HDR_MESSAGE_ID, req->seqnum);
out 122 source4/smb_server/smb2/receive.c SIVAL(req->out.hdr, SMB2_HDR_PID, pid);
out 123 source4/smb_server/smb2/receive.c SIVAL(req->out.hdr, SMB2_HDR_TID, tid);
out 124 source4/smb_server/smb2/receive.c SBVAL(req->out.hdr, SMB2_HDR_SESSION_ID, BVAL(req->in.hdr, SMB2_HDR_SESSION_ID));
out 125 source4/smb_server/smb2/receive.c memset(req->out.hdr+SMB2_HDR_SIGNATURE, 0, 16);
out 128 source4/smb_server/smb2/receive.c SSVAL(req->out.body, 0, body_fixed_size + (body_dynamic_size?1:0));
out 135 source4/smb_server/smb2/receive.c req->out.size += 1;
out 136 source4/smb_server/smb2/receive.c SCVAL(req->out.dynamic, 0, 0);
out 247 source4/smb_server/smb2/receive.c if (req->out.size > NBT_HDR_SIZE) {
out 248 source4/smb_server/smb2/receive.c _smb2_setlen(req->out.buffer, req->out.size - NBT_HDR_SIZE);
out 253 source4/smb_server/smb2/receive.c status = smb2_sign_message(&req->out,
out 262 source4/smb_server/smb2/receive.c blob = data_blob_const(req->out.buffer, req->out.size);
out 291 source4/smb_server/smb2/receive.c SIVAL(req->out.hdr, SMB2_HDR_STATUS, NT_STATUS_V(error));
out 293 source4/smb_server/smb2/receive.c SSVAL(req->out.body, 0x02, 0);
out 294 source4/smb_server/smb2/receive.c SIVAL(req->out.body, 0x04, 0);
out 575 source4/smb_server/smb2/receive.c SIVAL(req->out.hdr, SMB2_HDR_STATUS, NT_STATUS_V(STATUS_PENDING));
out 577 source4/smb_server/smb2/receive.c SSVAL(req->out.body, 0x02, 0);
out 578 source4/smb_server/smb2/receive.c SIVAL(req->out.body, 0x04, 0);
out 582 source4/smb_server/smb2/receive.c SIVAL(req->out.hdr, SMB2_HDR_FLAGS, IVAL(req->out.hdr, SMB2_HDR_FLAGS) | SMB2_HDR_FLAG_SIGNED);
out 46 source4/smb_server/smb2/sesssetup.c SMB2SRV_CHECK(smb2srv_setup_reply(req, 0x08, true, io->smb2.out.secblob.length));
out 48 source4/smb_server/smb2/sesssetup.c SSVAL(req->out.hdr, SMB2_HDR_CREDIT, credit);
out 49 source4/smb_server/smb2/sesssetup.c SBVAL(req->out.hdr, SMB2_HDR_SESSION_ID, io->smb2.out.uid);
out 51 source4/smb_server/smb2/sesssetup.c SSVAL(req->out.body, 0x02, io->smb2.out.session_flags);
out 52 source4/smb_server/smb2/sesssetup.c SMB2SRV_CHECK(smb2_push_o16s16_blob(&req->out, 0x04, io->smb2.out.secblob));
out 73 source4/smb_server/smb2/sesssetup.c status = gensec_update_recv(greq, req, &io->smb2.out.secblob);
out 98 source4/smb_server/smb2/sesssetup.c io->smb2.out.uid = smb_sess->vuid;
out 115 source4/smb_server/smb2/sesssetup.c io->smb2.out.session_flags = 0;
out 116 source4/smb_server/smb2/sesssetup.c io->smb2.out.uid = 0;
out 117 source4/smb_server/smb2/sesssetup.c io->smb2.out.secblob = data_blob(NULL, 0);
out 256 source4/smb_server/smb2/sesssetup.c SSVAL(req->out.body, 0x02, 0);
out 68 source4/smb_server/smb2/smb2_server.h struct smb2_request_buffer out;
out 79 source4/smb_server/smb2/tcon.c SSVAL(req->out.hdr, SMB2_HDR_CREDIT, 0x0000);
out 81 source4/smb_server/smb2/tcon.c SSVAL(req->out.body, 0x02, 0x0001);
out 82 source4/smb_server/smb2/tcon.c SIVAL(req->out.body, 0x04, 0x00000000);
out 83 source4/smb_server/smb2/tcon.c smb2srv_push_handle(req->out.body, 0x08, h);
out 345 source4/smb_server/smb2/tcon.c io->smb2.out.share_type = (unsigned)type; /* 1 - DISK, 2 - Print, 3 - IPC */
out 346 source4/smb_server/smb2/tcon.c io->smb2.out.reserved = 0;
out 347 source4/smb_server/smb2/tcon.c io->smb2.out.flags = 0x00000000;
out 348 source4/smb_server/smb2/tcon.c io->smb2.out.capabilities = 0;
out 349 source4/smb_server/smb2/tcon.c io->smb2.out.access_mask = SEC_RIGHTS_FILE_ALL;
out 351 source4/smb_server/smb2/tcon.c io->smb2.out.tid = tcon->tid;
out 369 source4/smb_server/smb2/tcon.c if (io->smb2.out.share_type == NTVFS_IPC) {
out 378 source4/smb_server/smb2/tcon.c SIVAL(req->out.hdr, SMB2_HDR_TID, io->smb2.out.tid);
out 379 source4/smb_server/smb2/tcon.c SSVAL(req->out.hdr, SMB2_HDR_CREDIT,credit);
out 381 source4/smb_server/smb2/tcon.c SCVAL(req->out.body, 0x02, io->smb2.out.share_type);
out 382 source4/smb_server/smb2/tcon.c SCVAL(req->out.body, 0x03, io->smb2.out.reserved);
out 383 source4/smb_server/smb2/tcon.c SIVAL(req->out.body, 0x04, io->smb2.out.flags);
out 384 source4/smb_server/smb2/tcon.c SIVAL(req->out.body, 0x08, io->smb2.out.capabilities);
out 385 source4/smb_server/smb2/tcon.c SIVAL(req->out.body, 0x0C, io->smb2.out.access_mask);
out 439 source4/smb_server/smb2/tcon.c SSVAL(req->out.body, 0x02, 0);
out 264 source4/smb_server/smb_server.h struct smb_request_buffer out;
out 519 source4/smb_server/smb_server.h #define SMBSRV_VWV_RESERVED(start, count) memset(req->out.vwv + VWV(start), 0, (count)*2)
out 56 source4/torture/basic/aliases.c t2b->params = t2->out.params;
out 57 source4/torture/basic/aliases.c t2b->data = t2->out.data;
out 101 source4/torture/basic/aliases.c ZERO_STRUCT(t2.out);
out 123 source4/torture/basic/aliases.c ZERO_STRUCT(t2.out);
out 162 source4/torture/basic/aliases.c ZERO_STRUCT(t2.out);
out 204 source4/torture/basic/aliases.c ZERO_STRUCT(t2.out);
out 284 source4/torture/basic/aliases.c t2b->params = t2->out.params;
out 285 source4/torture/basic/aliases.c t2b->data = t2->out.data;
out 318 source4/torture/basic/aliases.c ZERO_STRUCT(t2.out);
out 357 source4/torture/basic/aliases.c ZERO_STRUCT(t2.out);
out 1650 source4/torture/basic/base.c smbcli_close(cli_nt->tree, io.ntcreatex.out.file.fnum);
out 1664 source4/torture/basic/base.c io.ntcreatex.out.file.fnum);
out 71 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo1.basic_info.out.write_time));
out 97 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.basic_info.out.write_time));
out 98 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time != finfo2.basic_info.out.write_time) {
out 117 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time == finfo2.basic_info.out.write_time) {
out 179 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo1.all_info.out.write_time));
out 202 source4/torture/basic/delaywrite.c if (finfo2.all_info.out.size != 1024) {
out 205 source4/torture/basic/delaywrite.c (unsigned int)finfo2.all_info.out.size);
out 211 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.all_info.out.write_time));
out 212 source4/torture/basic/delaywrite.c if (finfo1.all_info.out.write_time != finfo2.all_info.out.write_time) {
out 233 source4/torture/basic/delaywrite.c if (finfo1.all_info.out.write_time == finfo2.all_info.out.write_time) {
out 260 source4/torture/basic/delaywrite.c if (finfo3.all_info.out.size != 1024) {
out 262 source4/torture/basic/delaywrite.c (unsigned int)finfo3.all_info.out.size));
out 268 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo3.all_info.out.write_time));
out 269 source4/torture/basic/delaywrite.c if (finfo2.all_info.out.write_time != finfo3.all_info.out.write_time) {
out 281 source4/torture/basic/delaywrite.c if (finfo2.all_info.out.write_time != finfo3.all_info.out.write_time) {
out 294 source4/torture/basic/delaywrite.c if (finfo3.all_info.out.write_time == pinfo4.all_info.out.write_time) {
out 298 source4/torture/basic/delaywrite.c } else if (finfo3.all_info.out.write_time < pinfo4.all_info.out.write_time) {
out 360 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo1.all_info.out.write_time));
out 383 source4/torture/basic/delaywrite.c if (finfo2.all_info.out.size != 10240) {
out 386 source4/torture/basic/delaywrite.c (unsigned int)finfo2.all_info.out.size);
out 392 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.all_info.out.write_time));
out 393 source4/torture/basic/delaywrite.c if (finfo1.all_info.out.write_time != finfo2.all_info.out.write_time) {
out 414 source4/torture/basic/delaywrite.c if (finfo1.all_info.out.write_time == finfo2.all_info.out.write_time) {
out 438 source4/torture/basic/delaywrite.c if (finfo3.all_info.out.size != 10240) {
out 441 source4/torture/basic/delaywrite.c (unsigned int)finfo3.all_info.out.size);
out 447 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo3.all_info.out.write_time));
out 448 source4/torture/basic/delaywrite.c if (finfo2.all_info.out.write_time != finfo3.all_info.out.write_time) {
out 460 source4/torture/basic/delaywrite.c if (finfo2.all_info.out.write_time != finfo3.all_info.out.write_time) {
out 473 source4/torture/basic/delaywrite.c if (finfo3.all_info.out.write_time == pinfo4.all_info.out.write_time) {
out 477 source4/torture/basic/delaywrite.c } else if (finfo3.all_info.out.write_time < pinfo4.all_info.out.write_time) {
out 539 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo1.all_info.out.write_time));
out 557 source4/torture/basic/delaywrite.c if (finfo2.all_info.out.size != 10240) {
out 560 source4/torture/basic/delaywrite.c (unsigned int)finfo2.all_info.out.size );
out 566 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.all_info.out.write_time));
out 567 source4/torture/basic/delaywrite.c if (finfo1.all_info.out.write_time != finfo2.all_info.out.write_time) {
out 589 source4/torture/basic/delaywrite.c if (finfo1.all_info.out.write_time == finfo2.all_info.out.write_time) {
out 613 source4/torture/basic/delaywrite.c if (finfo3.all_info.out.size != 10240) {
out 615 source4/torture/basic/delaywrite.c (unsigned int)finfo3.all_info.out.size ));
out 621 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo3.all_info.out.write_time));
out 622 source4/torture/basic/delaywrite.c if (finfo2.all_info.out.write_time != finfo3.all_info.out.write_time) {
out 634 source4/torture/basic/delaywrite.c if (finfo2.all_info.out.write_time != finfo3.all_info.out.write_time) {
out 646 source4/torture/basic/delaywrite.c if (finfo3.all_info.out.write_time == pinfo4.all_info.out.write_time) {
out 649 source4/torture/basic/delaywrite.c } else if (finfo3.all_info.out.write_time < pinfo4.all_info.out.write_time) {
out 711 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo1.all_info.out.write_time));
out 735 source4/torture/basic/delaywrite.c if (finfo2.all_info.out.size != 0) {
out 738 source4/torture/basic/delaywrite.c (unsigned int)finfo2.all_info.out.size);
out 744 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.all_info.out.write_time));
out 745 source4/torture/basic/delaywrite.c if (finfo1.all_info.out.write_time != finfo2.all_info.out.write_time) {
out 766 source4/torture/basic/delaywrite.c if (finfo1.all_info.out.write_time == finfo2.all_info.out.write_time) {
out 789 source4/torture/basic/delaywrite.c if (finfo3.all_info.out.size != 1) {
out 796 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo3.all_info.out.write_time));
out 797 source4/torture/basic/delaywrite.c if (finfo2.all_info.out.write_time != finfo3.all_info.out.write_time) {
out 809 source4/torture/basic/delaywrite.c if (finfo2.all_info.out.write_time != finfo3.all_info.out.write_time) {
out 822 source4/torture/basic/delaywrite.c if (finfo3.all_info.out.write_time == pinfo4.all_info.out.write_time) {
out 825 source4/torture/basic/delaywrite.c } else if (finfo3.all_info.out.write_time < pinfo4.all_info.out.write_time) {
out 880 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo1.basic_info.out.write_time));
out 892 source4/torture/basic/delaywrite.c sfinfo.basic_info.in.create_time = finfo1.basic_info.out.create_time;
out 893 source4/torture/basic/delaywrite.c sfinfo.basic_info.in.access_time = finfo1.basic_info.out.access_time;
out 902 source4/torture/basic/delaywrite.c sfinfo.basic_info.in.change_time = finfo1.basic_info.out.change_time;
out 903 source4/torture/basic/delaywrite.c sfinfo.basic_info.in.attrib = finfo1.basic_info.out.attrib;
out 919 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.basic_info.out.write_time));
out 921 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time != finfo2.basic_info.out.write_time) {
out 942 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo1.basic_info.out.write_time));
out 981 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.basic_info.out.write_time));
out 982 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time != finfo2.basic_info.out.write_time) {
out 994 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time == finfo2.basic_info.out.write_time) {
out 1021 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.basic_info.out.write_time));
out 1022 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time != finfo2.basic_info.out.write_time) {
out 1051 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.basic_info.out.write_time));
out 1052 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time != finfo2.basic_info.out.write_time) {
out 1070 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.basic_info.out.write_time));
out 1071 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time != finfo2.basic_info.out.write_time) {
out 1083 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time == finfo2.basic_info.out.write_time) {
out 1110 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo1.basic_info.out.write_time));
out 1133 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.basic_info.out.write_time));
out 1134 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time != finfo2.basic_info.out.write_time) {
out 1151 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.basic_info.out.write_time));
out 1152 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time != finfo2.basic_info.out.write_time) {
out 1171 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time == finfo2.basic_info.out.write_time) {
out 1278 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.create_time !=
out 1279 source4/torture/basic/delaywrite.c finfo2.basic_info.out.create_time) {
out 1285 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.access_time !=
out 1286 source4/torture/basic/delaywrite.c finfo2.basic_info.out.access_time) {
out 1292 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time !=
out 1293 source4/torture/basic/delaywrite.c finfo2.basic_info.out.write_time) {
out 1296 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo1.basic_info.out.write_time),
out 1297 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo2.basic_info.out.write_time));
out 1302 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.change_time !=
out 1303 source4/torture/basic/delaywrite.c finfo2.basic_info.out.change_time) {
out 1340 source4/torture/basic/delaywrite.c NTTIME g = (given).basic_info.out.write_time; \
out 1342 source4/torture/basic/delaywrite.c NTTIME c = (correct).basic_info.out.write_time; \
out 1368 source4/torture/basic/delaywrite.c NTTIME g = (given).basic_info.out.access_time; \
out 1369 source4/torture/basic/delaywrite.c NTTIME c = (correct).basic_info.out.access_time; \
out 1396 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo.basic_info.out.access_time), \
out 1397 source4/torture/basic/delaywrite.c nt_time_string(tctx, finfo.basic_info.out.write_time)); \
out 1409 source4/torture/basic/delaywrite.c nt_time_string(tctx, pinfo.basic_info.out.access_time), \
out 1410 source4/torture/basic/delaywrite.c nt_time_string(tctx, pinfo.basic_info.out.write_time)); \
out 1427 source4/torture/basic/delaywrite.c sfinfo.basic_info.in.attrib = finfo1.basic_info.out.attrib; \
out 1506 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time > finfo0.basic_info.out.write_time) {
out 1542 source4/torture/basic/delaywrite.c if (finfo2.basic_info.out.write_time > finfo1.basic_info.out.write_time) {
out 1555 source4/torture/basic/delaywrite.c if (finfo2.basic_info.out.write_time == finfo1.basic_info.out.write_time) {
out 1576 source4/torture/basic/delaywrite.c if (pinfo4.basic_info.out.write_time > pinfo3.basic_info.out.write_time) {
out 1672 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time > finfo0.basic_info.out.write_time) {
out 1728 source4/torture/basic/delaywrite.c if (finfo2.basic_info.out.write_time > finfo1.basic_info.out.write_time) {
out 1741 source4/torture/basic/delaywrite.c if (finfo2.basic_info.out.write_time == finfo1.basic_info.out.write_time) {
out 1788 source4/torture/basic/delaywrite.c if (pinfo4.basic_info.out.write_time == pinfo3.basic_info.out.write_time) {
out 1883 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time > finfo0.basic_info.out.write_time) {
out 1919 source4/torture/basic/delaywrite.c if (finfo2.basic_info.out.write_time > finfo1.basic_info.out.write_time) {
out 1932 source4/torture/basic/delaywrite.c if (finfo2.basic_info.out.write_time == finfo1.basic_info.out.write_time) {
out 1953 source4/torture/basic/delaywrite.c if (pinfo4.basic_info.out.write_time > pinfo3.basic_info.out.write_time) {
out 2066 source4/torture/basic/delaywrite.c if (finfo2.basic_info.out.write_time > finfo1.basic_info.out.write_time) {
out 2079 source4/torture/basic/delaywrite.c if (finfo2.basic_info.out.write_time == finfo1.basic_info.out.write_time) {
out 2131 source4/torture/basic/delaywrite.c if (finfo2.basic_info.out.write_time > finfo1.basic_info.out.write_time) {
out 2144 source4/torture/basic/delaywrite.c if (finfo2.basic_info.out.write_time == finfo1.basic_info.out.write_time) {
out 2165 source4/torture/basic/delaywrite.c if (pinfo4.basic_info.out.write_time > pinfo3.basic_info.out.write_time) {
out 2258 source4/torture/basic/delaywrite.c if (finfo1.basic_info.out.write_time > finfo0.basic_info.out.write_time) {
out 2294 source4/torture/basic/delaywrite.c if (finfo2.basic_info.out.write_time > finfo1.basic_info.out.write_time) {
out 2307 source4/torture/basic/delaywrite.c if (finfo2.basic_info.out.write_time == finfo1.basic_info.out.write_time) {
out 2328 source4/torture/basic/delaywrite.c if (pinfo4.basic_info.out.write_time > pinfo3.basic_info.out.write_time) {
out 2425 source4/torture/basic/delaywrite.c if (finfo3.basic_info.out.write_time > finfo2.basic_info.out.write_time) {
out 2438 source4/torture/basic/delaywrite.c if (finfo3.basic_info.out.write_time == finfo2.basic_info.out.write_time) {
out 2457 source4/torture/basic/delaywrite.c if (finfo4.basic_info.out.write_time > finfo3.basic_info.out.write_time) {
out 2470 source4/torture/basic/delaywrite.c if (finfo4.basic_info.out.write_time == finfo3.basic_info.out.write_time) {
out 2490 source4/torture/basic/delaywrite.c if (pinfo6.basic_info.out.write_time == pinfo5.basic_info.out.write_time) {
out 2587 source4/torture/basic/delaywrite.c if (finfo3.basic_info.out.write_time > finfo2.basic_info.out.write_time) {
out 2600 source4/torture/basic/delaywrite.c if (finfo3.basic_info.out.write_time == finfo2.basic_info.out.write_time) {
out 2619 source4/torture/basic/delaywrite.c if (finfo4.basic_info.out.write_time > finfo3.basic_info.out.write_time) {
out 2632 source4/torture/basic/delaywrite.c if (finfo4.basic_info.out.write_time == finfo3.basic_info.out.write_time) {
out 2652 source4/torture/basic/delaywrite.c if (pinfo6.basic_info.out.write_time == pinfo5.basic_info.out.write_time) {
out 2766 source4/torture/basic/delaywrite.c if (finfo3.basic_info.out.write_time > finfo2.basic_info.out.write_time) {
out 2779 source4/torture/basic/delaywrite.c if (finfo3.basic_info.out.write_time == finfo2.basic_info.out.write_time) {
out 2798 source4/torture/basic/delaywrite.c if (finfo4.basic_info.out.write_time > finfo3.basic_info.out.write_time) {
out 2811 source4/torture/basic/delaywrite.c if (finfo4.basic_info.out.write_time == finfo3.basic_info.out.write_time) {
out 2832 source4/torture/basic/delaywrite.c if (pinfo6.basic_info.out.write_time > pinfo5.basic_info.out.write_time) {
out 2853 source4/torture/basic/delaywrite.c if (pinfo7.basic_info.out.write_time == pinfo6.basic_info.out.write_time) {
out 64 source4/torture/basic/delete.c torture_assert(tctx, expect_it == io.all_info.out.delete_pending,
out 67 source4/torture/basic/delete.c where, expect_it, io.all_info.out.delete_pending));
out 69 source4/torture/basic/delete.c torture_assert(tctx, nlink == io.all_info.out.nlink,
out 72 source4/torture/basic/delete.c where, nlink, io.all_info.out.nlink));
out 80 source4/torture/basic/delete.c torture_assert(tctx, expect_it == io.standard_info.out.delete_pending,
out 82 source4/torture/basic/delete.c where, expect_it, io.standard_info.out.delete_pending));
out 84 source4/torture/basic/delete.c torture_assert(tctx, nlink == io.standard_info.out.nlink,
out 86 source4/torture/basic/delete.c where, nlink, io.all_info.out.nlink));
out 1820 source4/torture/basic/denytest.c r.readx.in.file.fnum = io2.ntcreatex.out.file.fnum;
out 1826 source4/torture/basic/denytest.c r.readx.out.data = buf;
out 1833 source4/torture/basic/denytest.c if (smbcli_write(cli2->tree, io2.ntcreatex.out.file.fnum,
out 1840 source4/torture/basic/denytest.c smbcli_close(cli1->tree, io1.ntcreatex.out.file.fnum);
out 1843 source4/torture/basic/denytest.c smbcli_close(cli2->tree, io2.ntcreatex.out.file.fnum);
out 1964 source4/torture/basic/denytest.c fnum1 = io.openx.out.file.fnum;
out 1968 source4/torture/basic/denytest.c fnum2 = io.openx.out.file.fnum;
out 1983 source4/torture/basic/denytest.c CHECK_VAL(finfo.position_information.out.position, 1000);
out 1988 source4/torture/basic/denytest.c CHECK_VAL(finfo.position_information.out.position, 1000);
out 1998 source4/torture/basic/denytest.c fnum1 = io.openx.out.file.fnum;
out 2003 source4/torture/basic/denytest.c fnum2 = io.openx.out.file.fnum;
out 2018 source4/torture/basic/denytest.c CHECK_VAL(finfo.position_information.out.position, 1000);
out 2023 source4/torture/basic/denytest.c CHECK_VAL(finfo.position_information.out.position, 0);
out 378 source4/torture/basic/misc.c device, function, (int)parms.ioctl.out.blob.length);
out 585 source4/torture/basic/misc.c rd.readx.out.data = state->buffer;
out 619 source4/torture/basic/misc.c ->openx.out.file.fnum;
out 784 source4/torture/basic/misc.c state->req_params)->out.tree;
out 109 source4/torture/basic/properties.c fs.attribute_info.out.fs_attr);
out 110 source4/torture/basic/properties.c show_bits(fs_attr_bits, fs.attribute_info.out.fs_attr);
out 112 source4/torture/basic/properties.c fs.attribute_info.out.max_file_component_length);
out 113 source4/torture/basic/properties.c d_printf("fstype: %s\n", fs.attribute_info.out.fs_type.s);
out 82 source4/torture/basic/scanner.c *rparam_len = t2.out.params.length;
out 83 source4/torture/basic/scanner.c *rdata_len = t2.out.data.length;
out 396 source4/torture/basic/scanner.c *rparam_len = parms.out.params.length;
out 397 source4/torture/basic/scanner.c *rdata_len = parms.out.data.length;
out 1323 source4/torture/gentest.c for (n=0;n<not1.nttrans.out.num_changes;n++) {
out 1324 source4/torture/gentest.c if (not1.nttrans.out.changes[n].action !=
out 1325 source4/torture/gentest.c not2.nttrans.out.changes[n].action) {
out 1327 source4/torture/gentest.c not1.nttrans.out.changes[n].action,
out 1328 source4/torture/gentest.c not2.nttrans.out.changes[n].action);
out 1332 source4/torture/gentest.c if (strcmp(not1.nttrans.out.changes[n].name.s,
out 1333 source4/torture/gentest.c not2.nttrans.out.changes[n].name.s)) {
out 1335 source4/torture/gentest.c not1.nttrans.out.changes[n].name.s,
out 1336 source4/torture/gentest.c not2.nttrans.out.changes[n].name.s);
out 1340 source4/torture/gentest.c if (not1.nttrans.out.changes[n].name.private_length !=
out 1341 source4/torture/gentest.c not2.nttrans.out.changes[n].name.private_length) {
out 1343 source4/torture/gentest.c not1.nttrans.out.changes[n].name.private_length,
out 1344 source4/torture/gentest.c not2.nttrans.out.changes[n].name.private_length);
out 1538 source4/torture/gentest.c CHECK_ATTRIB(getattr.out.attrib);
out 1539 source4/torture/gentest.c CHECK_EQUAL(getattr.out.size);
out 1540 source4/torture/gentest.c CHECK_TIMES_EQUAL(getattr.out.write_time);
out 1544 source4/torture/gentest.c CHECK_TIMES_EQUAL(getattre.out.create_time);
out 1545 source4/torture/gentest.c CHECK_TIMES_EQUAL(getattre.out.access_time);
out 1546 source4/torture/gentest.c CHECK_TIMES_EQUAL(getattre.out.write_time);
out 1547 source4/torture/gentest.c CHECK_EQUAL(getattre.out.size);
out 1548 source4/torture/gentest.c CHECK_EQUAL(getattre.out.alloc_size);
out 1549 source4/torture/gentest.c CHECK_ATTRIB(getattre.out.attrib);
out 1553 source4/torture/gentest.c CHECK_TIMES_EQUAL(standard.out.create_time);
out 1554 source4/torture/gentest.c CHECK_TIMES_EQUAL(standard.out.access_time);
out 1555 source4/torture/gentest.c CHECK_TIMES_EQUAL(standard.out.write_time);
out 1556 source4/torture/gentest.c CHECK_EQUAL(standard.out.size);
out 1557 source4/torture/gentest.c CHECK_EQUAL(standard.out.alloc_size);
out 1558 source4/torture/gentest.c CHECK_ATTRIB(standard.out.attrib);
out 1562 source4/torture/gentest.c CHECK_TIMES_EQUAL(ea_size.out.create_time);
out 1563 source4/torture/gentest.c CHECK_TIMES_EQUAL(ea_size.out.access_time);
out 1564 source4/torture/gentest.c CHECK_TIMES_EQUAL(ea_size.out.write_time);
out 1565 source4/torture/gentest.c CHECK_EQUAL(ea_size.out.size);
out 1566 source4/torture/gentest.c CHECK_EQUAL(ea_size.out.alloc_size);
out 1567 source4/torture/gentest.c CHECK_ATTRIB(ea_size.out.attrib);
out 1568 source4/torture/gentest.c CHECK_EQUAL(ea_size.out.ea_size);
out 1572 source4/torture/gentest.c CHECK_EQUAL(all_eas.out.num_eas);
out 1573 source4/torture/gentest.c for (i=0;i<parm[0].all_eas.out.num_eas;i++) {
out 1574 source4/torture/gentest.c CHECK_EQUAL(all_eas.out.eas[i].flags);
out 1575 source4/torture/gentest.c CHECK_WSTR_EQUAL(all_eas.out.eas[i].name);
out 1576 source4/torture/gentest.c CHECK_BLOB_EQUAL(all_eas.out.eas[i].value);
out 1585 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(basic_info.out.create_time);
out 1586 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(basic_info.out.access_time);
out 1587 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(basic_info.out.write_time);
out 1588 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(basic_info.out.change_time);
out 1589 source4/torture/gentest.c CHECK_ATTRIB(basic_info.out.attrib);
out 1594 source4/torture/gentest.c CHECK_EQUAL(standard_info.out.alloc_size);
out 1595 source4/torture/gentest.c CHECK_EQUAL(standard_info.out.size);
out 1596 source4/torture/gentest.c CHECK_EQUAL(standard_info.out.nlink);
out 1597 source4/torture/gentest.c CHECK_EQUAL(standard_info.out.delete_pending);
out 1598 source4/torture/gentest.c CHECK_EQUAL(standard_info.out.directory);
out 1603 source4/torture/gentest.c CHECK_EQUAL(ea_info.out.ea_size);
out 1608 source4/torture/gentest.c CHECK_WSTR_EQUAL(name_info.out.fname);
out 1613 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(all_info.out.create_time);
out 1614 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(all_info.out.access_time);
out 1615 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(all_info.out.write_time);
out 1616 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(all_info.out.change_time);
out 1617 source4/torture/gentest.c CHECK_ATTRIB(all_info.out.attrib);
out 1618 source4/torture/gentest.c CHECK_EQUAL(all_info.out.alloc_size);
out 1619 source4/torture/gentest.c CHECK_EQUAL(all_info.out.size);
out 1620 source4/torture/gentest.c CHECK_EQUAL(all_info.out.nlink);
out 1621 source4/torture/gentest.c CHECK_EQUAL(all_info.out.delete_pending);
out 1622 source4/torture/gentest.c CHECK_EQUAL(all_info.out.directory);
out 1623 source4/torture/gentest.c CHECK_EQUAL(all_info.out.ea_size);
out 1624 source4/torture/gentest.c CHECK_WSTR_EQUAL(all_info.out.fname);
out 1629 source4/torture/gentest.c CHECK_WSTR_EQUAL(alt_name_info.out.fname);
out 1634 source4/torture/gentest.c CHECK_EQUAL(stream_info.out.num_streams);
out 1635 source4/torture/gentest.c for (i=0;i<parm[0].stream_info.out.num_streams;i++) {
out 1636 source4/torture/gentest.c CHECK_EQUAL(stream_info.out.streams[i].size);
out 1637 source4/torture/gentest.c CHECK_EQUAL(stream_info.out.streams[i].alloc_size);
out 1638 source4/torture/gentest.c CHECK_WSTR_EQUAL(stream_info.out.streams[i].stream_name);
out 1644 source4/torture/gentest.c CHECK_EQUAL(compression_info.out.compressed_size);
out 1645 source4/torture/gentest.c CHECK_EQUAL(compression_info.out.format);
out 1646 source4/torture/gentest.c CHECK_EQUAL(compression_info.out.unit_shift);
out 1647 source4/torture/gentest.c CHECK_EQUAL(compression_info.out.chunk_shift);
out 1648 source4/torture/gentest.c CHECK_EQUAL(compression_info.out.cluster_shift);
out 1652 source4/torture/gentest.c CHECK_EQUAL(internal_information.out.file_id);
out 1656 source4/torture/gentest.c CHECK_EQUAL(access_information.out.access_flags);
out 1660 source4/torture/gentest.c CHECK_EQUAL(position_information.out.position);
out 1664 source4/torture/gentest.c CHECK_EQUAL(mode_information.out.mode);
out 1668 source4/torture/gentest.c CHECK_EQUAL(alignment_information.out.alignment_requirement);
out 1672 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(network_open_information.out.create_time);
out 1673 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(network_open_information.out.access_time);
out 1674 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(network_open_information.out.write_time);
out 1675 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(network_open_information.out.change_time);
out 1676 source4/torture/gentest.c CHECK_EQUAL(network_open_information.out.alloc_size);
out 1677 source4/torture/gentest.c CHECK_EQUAL(network_open_information.out.size);
out 1678 source4/torture/gentest.c CHECK_ATTRIB(network_open_information.out.attrib);
out 1682 source4/torture/gentest.c CHECK_ATTRIB(attribute_tag_information.out.attrib);
out 1683 source4/torture/gentest.c CHECK_EQUAL(attribute_tag_information.out.reparse_tag);
out 1687 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(all_info2.out.create_time);
out 1688 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(all_info2.out.access_time);
out 1689 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(all_info2.out.write_time);
out 1690 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(all_info2.out.change_time);
out 1691 source4/torture/gentest.c CHECK_ATTRIB(all_info2.out.attrib);
out 1692 source4/torture/gentest.c CHECK_EQUAL(all_info2.out.unknown1);
out 1693 source4/torture/gentest.c CHECK_EQUAL(all_info2.out.alloc_size);
out 1694 source4/torture/gentest.c CHECK_EQUAL(all_info2.out.size);
out 1695 source4/torture/gentest.c CHECK_EQUAL(all_info2.out.nlink);
out 1696 source4/torture/gentest.c CHECK_EQUAL(all_info2.out.delete_pending);
out 1697 source4/torture/gentest.c CHECK_EQUAL(all_info2.out.directory);
out 1698 source4/torture/gentest.c CHECK_EQUAL(all_info2.out.file_id);
out 1699 source4/torture/gentest.c CHECK_EQUAL(all_info2.out.ea_size);
out 1700 source4/torture/gentest.c CHECK_EQUAL(all_info2.out.access_mask);
out 1701 source4/torture/gentest.c CHECK_EQUAL(all_info2.out.position);
out 1702 source4/torture/gentest.c CHECK_EQUAL(all_info2.out.mode);
out 1703 source4/torture/gentest.c CHECK_EQUAL(all_info2.out.alignment_requirement);
out 1704 source4/torture/gentest.c CHECK_WSTR_EQUAL(all_info2.out.fname);
out 1708 source4/torture/gentest.c CHECK_EQUAL(all_eas.out.num_eas);
out 1709 source4/torture/gentest.c for (i=0;i<parm[0].all_eas.out.num_eas;i++) {
out 1710 source4/torture/gentest.c CHECK_EQUAL(all_eas.out.eas[i].flags);
out 1711 source4/torture/gentest.c CHECK_WSTR_EQUAL(all_eas.out.eas[i].name);
out 1712 source4/torture/gentest.c CHECK_BLOB_EQUAL(all_eas.out.eas[i].value);
out 1717 source4/torture/gentest.c CHECK_SECDESC(query_secdesc.out.sd);
out 1761 source4/torture/gentest.c CHECK_ATTRIB(openx.out.attrib);
out 1762 source4/torture/gentest.c CHECK_EQUAL(openx.out.size);
out 1763 source4/torture/gentest.c CHECK_EQUAL(openx.out.access);
out 1764 source4/torture/gentest.c CHECK_EQUAL(openx.out.ftype);
out 1765 source4/torture/gentest.c CHECK_EQUAL(openx.out.devstate);
out 1766 source4/torture/gentest.c CHECK_EQUAL(openx.out.action);
out 1767 source4/torture/gentest.c CHECK_EQUAL(openx.out.access_mask);
out 1768 source4/torture/gentest.c CHECK_EQUAL(openx.out.unknown);
out 1769 source4/torture/gentest.c CHECK_TIMES_EQUAL(openx.out.write_time);
out 1772 source4/torture/gentest.c ADD_HANDLE_SMB(parm[0].openx.in.fname, openx.out.file.fnum);
out 1800 source4/torture/gentest.c CHECK_ATTRIB(openold.out.attrib);
out 1801 source4/torture/gentest.c CHECK_TIMES_EQUAL(openold.out.write_time);
out 1802 source4/torture/gentest.c CHECK_EQUAL(openold.out.size);
out 1803 source4/torture/gentest.c CHECK_EQUAL(openold.out.rmode);
out 1806 source4/torture/gentest.c ADD_HANDLE_SMB(parm[0].openold.in.fname, openold.out.file.fnum);
out 1845 source4/torture/gentest.c CHECK_EQUAL(ntcreatex.out.oplock_level);
out 1846 source4/torture/gentest.c CHECK_EQUAL(ntcreatex.out.create_action);
out 1847 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(ntcreatex.out.create_time);
out 1848 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(ntcreatex.out.access_time);
out 1849 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(ntcreatex.out.write_time);
out 1850 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(ntcreatex.out.change_time);
out 1851 source4/torture/gentest.c CHECK_ATTRIB(ntcreatex.out.attrib);
out 1852 source4/torture/gentest.c CHECK_EQUAL(ntcreatex.out.alloc_size);
out 1853 source4/torture/gentest.c CHECK_EQUAL(ntcreatex.out.size);
out 1854 source4/torture/gentest.c CHECK_EQUAL(ntcreatex.out.file_type);
out 1855 source4/torture/gentest.c CHECK_EQUAL(ntcreatex.out.ipc_state);
out 1856 source4/torture/gentest.c CHECK_EQUAL(ntcreatex.out.is_directory);
out 1859 source4/torture/gentest.c ADD_HANDLE_SMB(parm[0].ntcreatex.in.fname, ntcreatex.out.file.fnum);
out 2008 source4/torture/gentest.c CHECK_EQUAL(lseek.out.offset);
out 2029 source4/torture/gentest.c parm[0].readx.out.data = talloc_array(current_op.mem_ctx, uint8_t,
out 2036 source4/torture/gentest.c CHECK_EQUAL(readx.out.remaining);
out 2037 source4/torture/gentest.c CHECK_EQUAL(readx.out.compaction_mode);
out 2038 source4/torture/gentest.c CHECK_EQUAL(readx.out.nread);
out 2063 source4/torture/gentest.c CHECK_EQUAL(writex.out.nwritten);
out 2064 source4/torture/gentest.c CHECK_EQUAL(writex.out.remaining);
out 2457 source4/torture/gentest.c if (NT_STATUS_IS_OK(status) && notify.nttrans.out.num_changes > 0) {
out 2460 source4/torture/gentest.c notify.nttrans.out.num_changes,
out 2461 source4/torture/gentest.c notify.nttrans.out.changes[0].action,
out 2462 source4/torture/gentest.c notify.nttrans.out.changes[0].name.s);
out 2547 source4/torture/gentest.c CHECK_EQUAL(out.oplock_level);
out 2548 source4/torture/gentest.c CHECK_EQUAL(out.reserved);
out 2549 source4/torture/gentest.c CHECK_EQUAL(out.create_action);
out 2550 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(out.create_time);
out 2551 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(out.access_time);
out 2552 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(out.write_time);
out 2553 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(out.change_time);
out 2554 source4/torture/gentest.c CHECK_EQUAL(out.alloc_size);
out 2555 source4/torture/gentest.c CHECK_EQUAL(out.size);
out 2556 source4/torture/gentest.c CHECK_ATTRIB(out.file_attr);
out 2557 source4/torture/gentest.c CHECK_EQUAL(out.reserved2);
out 2558 source4/torture/gentest.c CHECK_EQUAL(out.maximal_access);
out 2561 source4/torture/gentest.c ADD_HANDLE_SMB2(parm[0].in.fname, out.file.handle);
out 2582 source4/torture/gentest.c CHECK_EQUAL(out.flags);
out 2583 source4/torture/gentest.c CHECK_EQUAL(out._pad);
out 2584 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(out.create_time);
out 2585 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(out.access_time);
out 2586 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(out.write_time);
out 2587 source4/torture/gentest.c CHECK_NTTIMES_EQUAL(out.change_time);
out 2588 source4/torture/gentest.c CHECK_EQUAL(out.alloc_size);
out 2589 source4/torture/gentest.c CHECK_EQUAL(out.size);
out 2590 source4/torture/gentest.c CHECK_ATTRIB(out.file_attr);
out 2619 source4/torture/gentest.c CHECK_EQUAL(out.remaining);
out 2620 source4/torture/gentest.c CHECK_EQUAL(out.reserved);
out 2621 source4/torture/gentest.c CHECK_EQUAL(out.data.length);
out 2645 source4/torture/gentest.c CHECK_EQUAL(out._pad);
out 2646 source4/torture/gentest.c CHECK_EQUAL(out.nwritten);
out 2647 source4/torture/gentest.c CHECK_EQUAL(out.unknown1);
out 2702 source4/torture/gentest.c CHECK_EQUAL(out.reserved);
out 65 source4/torture/ldap/cldap.c n1 = search.out.netlogon;
out 97 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, "");
out 98 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_RESPONSE_EX);
out 106 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, search.in.user);
out 107 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_USER_UNKNOWN_EX);
out 118 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, "");
out 119 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_RESPONSE);
out 127 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, search.in.user);
out 128 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_USER_UNKNOWN);
out 137 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_USER_UNKNOWN_EX);
out 138 source4/torture/ldap/cldap.c CHECK_STRING(GUID_string(tctx, &search.out.netlogon.data.nt5_ex.domain_uuid), search.in.domain_guid);
out 152 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_RESPONSE_EX);
out 153 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, "");
out 160 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_RESPONSE_EX);
out 161 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, "");
out 169 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_USER_UNKNOWN_EX);
out 170 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, "Administrator");
out 178 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_RESPONSE_EX);
out 179 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, "");
out 186 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.dns_domain, n1.data.nt5_ex.dns_domain);
out 187 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, search.in.user);
out 193 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, search.in.user);
out 194 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.dns_domain, n1.data.nt5_ex.dns_domain);
out 195 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_USER_UNKNOWN_EX);
out 207 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.dns_domain, n1.data.nt5_ex.dns_domain);
out 208 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, "");
out 209 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_RESPONSE_EX);
out 215 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.dns_domain, n1.data.nt5_ex.dns_domain);
out 216 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, "");
out 217 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_RESPONSE_EX);
out 224 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.dns_domain, n1.data.nt5_ex.dns_domain);
out 225 source4/torture/ldap/cldap.c CHECK_STRING(search.out.netlogon.data.nt5_ex.user_name, "");
out 226 source4/torture/ldap/cldap.c CHECK_VAL(search.out.netlogon.data.nt5_ex.command, LOGON_SAM_LOGON_RESPONSE_EX);
out 257 source4/torture/ldap/cldap.c n1 = search.out.netlogon;
out 324 source4/torture/ldap/cldap.c if (!search || !(search->out.response)) {
out 332 source4/torture/ldap/cldap.c ldif.msg = ldap_msg_to_ldb(ldb, ldb, search->out.response);
out 368 source4/torture/ldap/cldap.c n1 = search.out.netlogon;
out 396 source4/torture/ldap/cldap.c msg = ldap_msg_to_ldb(ldb, ldb, search2.out.response);
out 46 source4/torture/libnet/domain.c *domain_handle = io.out.domain_handle;
out 59 source4/torture/libnet/domain.c r.out.handle = &handle;
out 53 source4/torture/libnet/libnet_domain.c r1.out.connect_handle = &h;
out 63 source4/torture/libnet/libnet_domain.c r2.out.sid = &sid;
out 75 source4/torture/libnet/libnet_domain.c r3.in.sid = *sid_p = *r2.out.sid;
out 76 source4/torture/libnet/libnet_domain.c r3.out.domain_handle = &domain_handle;
out 116 source4/torture/libnet/libnet_domain.c open.out.handle = handle;
out 163 source4/torture/libnet/libnet_domain.c lsa_close.out.handle = &h;
out 286 source4/torture/libnet/libnet_domain.c r.out.handle = &handle;
out 418 source4/torture/libnet/libnet_domain.c for (i = 0; i < r.out.count; i++) {
out 419 source4/torture/libnet/libnet_domain.c d_printf("Name[%d]: %s\n", i, r.out.domains[i].name);
out 439 source4/torture/libnet/libnet_domain.c for (i = 0; i < r.out.count; i++) {
out 440 source4/torture/libnet/libnet_domain.c d_printf("Name[%d]: %s\n", i, r.out.domains[i].name);
out 52 source4/torture/libnet/libnet_group.c r1.out.rids = &rids;
out 53 source4/torture/libnet/libnet_group.c r1.out.types = &types;
out 63 source4/torture/libnet/libnet_group.c rid = r1.out.rids->ids[0];
out 68 source4/torture/libnet/libnet_group.c r2.out.group_handle = &group_handle;
out 79 source4/torture/libnet/libnet_group.c r3.out.group_handle = &group_handle;
out 107 source4/torture/libnet/libnet_group.c r.out.group_handle = &group_handle;
out 108 source4/torture/libnet/libnet_group.c r.out.rid = &group_rid;
out 152 source4/torture/libnet/libnet_group.c r1.out.connect_handle = &h;
out 162 source4/torture/libnet/libnet_group.c r2.out.sid = &sid;
out 174 source4/torture/libnet/libnet_group.c r3.in.sid = *r2.out.sid;
out 175 source4/torture/libnet/libnet_group.c r3.out.domain_handle = &domain_handle;
out 198 source4/torture/libnet/libnet_group.c r.out.handle = domain_handle;
out 217 source4/torture/libnet/libnet_group.c r.out.handle = domain_handle;
out 322 source4/torture/libnet/libnet_group.c req.in.resume_index = req.out.resume_index;
out 328 source4/torture/libnet/libnet_group.c for (i = 0; i < req.out.count; i++) {
out 330 source4/torture/libnet/libnet_group.c req.out.groups[i].groupname, req.out.groups[i].sid);
out 375 source4/torture/libnet/libnet_group.c req.out.error_string = NULL;
out 56 source4/torture/libnet/libnet_lookup.c lookup.out.address = NULL;
out 68 source4/torture/libnet/libnet_lookup.c printf("Name [%s] found at address: %s.\n", lookup.in.hostname, *lookup.out.address);
out 99 source4/torture/libnet/libnet_lookup.c lookup.out.address = NULL;
out 111 source4/torture/libnet/libnet_lookup.c printf("Host [%s] found at address: %s.\n", lookup.in.hostname, *lookup.out.address);
out 156 source4/torture/libnet/libnet_lookup.c for (i = 0; i < lookup->out.num_dcs; i++) {
out 157 source4/torture/libnet/libnet_lookup.c printf("\tDC[%d]: name=%s, address=%s\n", i, lookup->out.dcs[i].name,
out 158 source4/torture/libnet/libnet_lookup.c lookup->out.dcs[i].address);
out 73 source4/torture/libnet/libnet_rpc.c d_printf("\tDomain Name:\t %s\n", connect_r.out.domain_name);
out 74 source4/torture/libnet/libnet_rpc.c d_printf("\tDomain SID:\t %s\n", dom_sid_string(ctx, connect_r.out.domain_sid));
out 75 source4/torture/libnet/libnet_rpc.c d_printf("\tRealm:\t\t %s\n", connect_r.out.realm);
out 76 source4/torture/libnet/libnet_rpc.c d_printf("\tGUID:\t\t %s\n", GUID_string(ctx, connect_r.out.guid));
out 79 source4/torture/libnet/libnet_rpc.c d_printf("Error string: %s\n", connect_r.out.error_string);
out 56 source4/torture/libnet/libnet_share.c for (i = 0; i < s.out.ctr.ctr0->count; i++) {
out 57 source4/torture/libnet/libnet_share.c struct srvsvc_NetShareInfo0 *info = &s.out.ctr.ctr0->array[i];
out 63 source4/torture/libnet/libnet_share.c for (i = 0; i < s.out.ctr.ctr1->count; i++) {
out 64 source4/torture/libnet/libnet_share.c struct srvsvc_NetShareInfo1 *info = &s.out.ctr.ctr1->array[i];
out 74 source4/torture/libnet/libnet_share.c for (i = 0; i < s.out.ctr.ctr2->count; i++) {
out 75 source4/torture/libnet/libnet_share.c struct srvsvc_NetShareInfo2 *info = &s.out.ctr.ctr2->array[i];
out 88 source4/torture/libnet/libnet_share.c for (i = 0; i < s.out.ctr.ctr501->count; i++) {
out 89 source4/torture/libnet/libnet_share.c struct srvsvc_NetShareInfo501 *info = &s.out.ctr.ctr501->array[i];
out 100 source4/torture/libnet/libnet_share.c for (i = 0; i < s.out.ctr.ctr502->count; i++) {
out 101 source4/torture/libnet/libnet_share.c struct srvsvc_NetShareInfo502 *info = &s.out.ctr.ctr502->array[i];
out 153 source4/torture/libnet/libnet_share.c printf("libnet_ListShare level %u failed - %s\n", share.in.level, share.out.error_string);
out 50 source4/torture/libnet/libnet_user.c r1.out.rids = &rids;
out 51 source4/torture/libnet/libnet_user.c r1.out.types = &types;
out 61 source4/torture/libnet/libnet_user.c rid = r1.out.rids->ids[0];
out 66 source4/torture/libnet/libnet_user.c r2.out.user_handle = &user_handle;
out 77 source4/torture/libnet/libnet_user.c r3.out.user_handle = &user_handle;
out 105 source4/torture/libnet/libnet_user.c r1.out.connect_handle = &h;
out 115 source4/torture/libnet/libnet_user.c r2.out.sid = &sid;
out 127 source4/torture/libnet/libnet_user.c r3.in.sid = *r2.out.sid;
out 128 source4/torture/libnet/libnet_user.c r3.out.domain_handle = &domain_handle;
out 151 source4/torture/libnet/libnet_user.c r.out.handle = domain_handle;
out 170 source4/torture/libnet/libnet_user.c r.out.handle = domain_handle;
out 197 source4/torture/libnet/libnet_user.c r1.out.user_handle = &user_handle;
out 198 source4/torture/libnet/libnet_user.c r1.out.rid = &user_rid;
out 225 source4/torture/libnet/libnet_user.c r2.out.handle = &user_handle;
out 254 source4/torture/libnet/libnet_user.c req.out.error_string = NULL;
out 452 source4/torture/libnet/libnet_user.c if (!strequal(req.in.fld, user_req.out.fld)) { \
out 459 source4/torture/libnet/libnet_user.c if (timeval_compare(req.in.fld, user_req.out.fld)) { \
out 466 source4/torture/libnet/libnet_user.c if (req.in.fld != user_req.out.fld) { \
out 705 source4/torture/libnet/libnet_user.c req.in.resume_index = req.out.resume_index;
out 711 source4/torture/libnet/libnet_user.c for (i = 0; i < req.out.count; i++) {
out 713 source4/torture/libnet/libnet_user.c req.out.users[i].username, req.out.users[i].sid);
out 287 source4/torture/libnet/userman.c i = &info.out.info.info21;
out 48 source4/torture/libnet/utils.c r1.out.connect_handle = &h;
out 55 source4/torture/libnet/utils.c r2.out.sid = &sid;
out 64 source4/torture/libnet/utils.c r3.in.sid = *r2.out.sid;
out 65 source4/torture/libnet/utils.c r3.out.domain_handle = &domain_handle;
out 73 source4/torture/libnet/utils.c *sid_p = **r2.out.sid;
out 96 source4/torture/libnet/utils.c r1.out.rids = &rids;
out 97 source4/torture/libnet/utils.c r1.out.types = &types;
out 104 source4/torture/libnet/utils.c rid = r1.out.rids->ids[0];
out 109 source4/torture/libnet/utils.c r2.out.user_handle = &user_handle;
out 117 source4/torture/libnet/utils.c r3.out.user_handle = &user_handle;
out 143 source4/torture/libnet/utils.c r.out.user_handle = &user_handle;
out 144 source4/torture/libnet/utils.c r.out.rid = rid;
out 189 source4/torture/libnet/utils.c r1.out.rids = &rids;
out 190 source4/torture/libnet/utils.c r1.out.types = &types;
out 200 source4/torture/libnet/utils.c rid = r1.out.rids->ids[0];
out 205 source4/torture/libnet/utils.c r2.out.group_handle = &group_handle;
out 216 source4/torture/libnet/utils.c r3.out.group_handle = &group_handle;
out 244 source4/torture/libnet/utils.c r.out.group_handle = &group_handle;
out 245 source4/torture/libnet/utils.c r.out.rid = rid;
out 531 source4/torture/nbench/nbio.c f->fd = io.ntcreatex.out.file.fnum;
out 573 source4/torture/nbench/nbio.c if (NT_STATUS_IS_OK(ret) && io.writex.out.nwritten != ret_size) {
out 576 source4/torture/nbench/nbio.c io.writex.out.nwritten, ret_size);
out 614 source4/torture/nbench/nbio.c if (NT_STATUS_IS_OK(ret) && io.write.out.nwritten != ret_size) {
out 617 source4/torture/nbench/nbio.c io.write.out.nwritten, ret_size);
out 730 source4/torture/nbench/nbio.c io.readx.out.data = buf;
out 739 source4/torture/nbench/nbio.c if (NT_STATUS_IS_OK(ret) && io.readx.out.nread != ret_size) {
out 742 source4/torture/nbench/nbio.c io.readx.out.nread, ret_size);
out 937 source4/torture/nbench/nbio.c if (NT_STATUS_IS_OK(ret) && io.t2ffirst.out.count != count) {
out 940 source4/torture/nbench/nbio.c io.t2ffirst.out.count, count);
out 88 source4/torture/nbt/register.c CHECK_STRING(tctx, io.out.name.name, name.name);
out 89 source4/torture/nbt/register.c CHECK_VALUE(tctx, io.out.name.type, name.type);
out 90 source4/torture/nbt/register.c CHECK_VALUE(tctx, io.out.rcode, NBT_RCODE_ACT);
out 101 source4/torture/nbt/register.c CHECK_STRING(tctx, io.out.name.name, name.name);
out 102 source4/torture/nbt/register.c CHECK_VALUE(tctx, io.out.name.type, name.type);
out 103 source4/torture/nbt/register.c CHECK_VALUE(tctx, io.out.rcode, NBT_RCODE_ACT);
out 156 source4/torture/nbt/register.c CHECK_STRING(tctx, io.out.name.name, name.name);
out 157 source4/torture/nbt/register.c CHECK_VALUE(tctx, io.out.name.type, name.type);
out 158 source4/torture/nbt/register.c CHECK_VALUE(tctx, io.out.rcode, NBT_RCODE_ACT);
out 110 source4/torture/nbt/wins.c CHECK_VALUE(tctx, release.out.rcode, 0);
out 135 source4/torture/nbt/wins.c CHECK_STRING(tctx, io.out.wins_server, address);
out 136 source4/torture/nbt/wins.c CHECK_VALUE(tctx, io.out.rcode, 0);
out 185 source4/torture/nbt/wins.c CHECK_VALUE(tctx, name_register.out.rcode, 0);
out 186 source4/torture/nbt/wins.c CHECK_STRING(tctx, name_register.out.reply_addr, myaddress);
out 200 source4/torture/nbt/wins.c CHECK_STRING(tctx, io.out.wins_server, address);
out 201 source4/torture/nbt/wins.c CHECK_VALUE(tctx, io.out.rcode, 0);
out 212 source4/torture/nbt/wins.c CHECK_VALUE(tctx, io.out.rcode, NBT_RCODE_ACT);
out 233 source4/torture/nbt/wins.c CHECK_NAME(tctx, query.out.name, *name);
out 234 source4/torture/nbt/wins.c CHECK_VALUE(tctx, query.out.num_addrs, 1);
out 237 source4/torture/nbt/wins.c CHECK_STRING(tctx, query.out.reply_addrs[0], "255.255.255.255");
out 239 source4/torture/nbt/wins.c CHECK_STRING(tctx, query.out.reply_addrs[0], myaddress);
out 280 source4/torture/nbt/wins.c CHECK_STRING(tctx, refresh.out.wins_server, address);
out 281 source4/torture/nbt/wins.c CHECK_VALUE(tctx, refresh.out.rcode, 0);
out 303 source4/torture/nbt/wins.c CHECK_NAME(tctx, release.out.name, *name);
out 304 source4/torture/nbt/wins.c CHECK_VALUE(tctx, release.out.rcode, 0);
out 329 source4/torture/nbt/wins.c CHECK_STRING(tctx, io.out.wins_server, address);
out 330 source4/torture/nbt/wins.c CHECK_VALUE(tctx, io.out.rcode, 0);
out 351 source4/torture/nbt/wins.c CHECK_STRING(tctx, refresh.out.wins_server, address);
out 352 source4/torture/nbt/wins.c CHECK_VALUE(tctx, refresh.out.rcode, 0);
out 367 source4/torture/nbt/wins.c CHECK_NAME(tctx, release.out.name, *name);
out 368 source4/torture/nbt/wins.c CHECK_VALUE(tctx, release.out.rcode, 0);
out 376 source4/torture/nbt/wins.c CHECK_NAME(tctx, release.out.name, *name);
out 377 source4/torture/nbt/wins.c CHECK_VALUE(tctx, release.out.rcode, 0);
out 65 source4/torture/nbt/winsbench.c if (!NT_STATUS_IS_OK(status) || io.out.rcode != NBT_RCODE_OK) {
out 118 source4/torture/nbt/winsbench.c (!NT_STATUS_IS_OK(status) || io.out.rcode != NBT_RCODE_OK)) {
out 120 source4/torture/nbt/winsreplication.c torture_comment(tctx, "association context (conn1): 0x%x\n", associate1.out.assoc_ctx);
out 126 source4/torture/nbt/winsreplication.c torture_comment(tctx, "association context (conn2): 0x%x\n", associate2.out.assoc_ctx);
out 131 source4/torture/nbt/winsreplication.c packet.assoc_ctx = associate1.out.assoc_ctx;
out 154 source4/torture/nbt/winsreplication.c assoc_stop.in.assoc_ctx = associate1.out.assoc_ctx;
out 160 source4/torture/nbt/winsreplication.c assoc_stop.in.assoc_ctx = associate2.out.assoc_ctx;
out 198 source4/torture/nbt/winsreplication.c assoc_ctx1 = associate.out.assoc_ctx;
out 199 source4/torture/nbt/winsreplication.c torture_comment(tctx, "1st association context: 0x%x\n", associate.out.assoc_ctx);
out 204 source4/torture/nbt/winsreplication.c torture_assert(tctx, associate.out.assoc_ctx == assoc_ctx1,
out 206 source4/torture/nbt/winsreplication.c torture_comment(tctx, "2nd association context: 0x%x\n", associate.out.assoc_ctx);
out 210 source4/torture/nbt/winsreplication.c torture_assert(tctx, associate.out.assoc_ctx == assoc_ctx1,
out 213 source4/torture/nbt/winsreplication.c torture_comment(tctx, "3rd association context: 0x%x\n", associate.out.assoc_ctx);
out 269 source4/torture/nbt/winsreplication.c torture_comment(tctx, "association context: 0x%x\n", associate.out.assoc_ctx);
out 272 source4/torture/nbt/winsreplication.c pull_table.in.assoc_ctx = associate.out.assoc_ctx;
out 281 source4/torture/nbt/winsreplication.c packet.assoc_ctx = associate.out.assoc_ctx;
out 292 source4/torture/nbt/winsreplication.c torture_comment(tctx, "Found %d replication partners\n", pull_table.out.num_partners);
out 294 source4/torture/nbt/winsreplication.c for (i=0;i<pull_table.out.num_partners;i++) {
out 295 source4/torture/nbt/winsreplication.c struct wrepl_wins_owner *partner = &pull_table.out.partners[i];
out 302 source4/torture/nbt/winsreplication.c pull_names.in.assoc_ctx = associate.out.assoc_ctx;
out 308 source4/torture/nbt/winsreplication.c torture_comment(tctx, "Received %d names\n", pull_names.out.num_names);
out 310 source4/torture/nbt/winsreplication.c for (j=0;j<pull_names.out.num_names;j++) {
out 311 source4/torture/nbt/winsreplication.c display_entry(tctx, &pull_names.out.names[j]);
out 566 source4/torture/nbt/winsreplication.c ctx->pull_assoc = associate.out.assoc_ctx;
out 592 source4/torture/nbt/winsreplication.c for (i=0; i < pull_table.out.num_partners; i++) {
out 593 source4/torture/nbt/winsreplication.c if (strcmp(TEST_OWNER_A_ADDRESS,pull_table.out.partners[i].address)==0) {
out 594 source4/torture/nbt/winsreplication.c ctx->a.max_version = pull_table.out.partners[i].max_version;
out 595 source4/torture/nbt/winsreplication.c ctx->a.min_version = pull_table.out.partners[i].min_version;
out 597 source4/torture/nbt/winsreplication.c if (strcmp(TEST_OWNER_B_ADDRESS,pull_table.out.partners[i].address)==0) {
out 598 source4/torture/nbt/winsreplication.c ctx->b.max_version = pull_table.out.partners[i].max_version;
out 599 source4/torture/nbt/winsreplication.c ctx->b.min_version = pull_table.out.partners[i].min_version;
out 601 source4/torture/nbt/winsreplication.c if (strcmp(TEST_OWNER_X_ADDRESS,pull_table.out.partners[i].address)==0) {
out 602 source4/torture/nbt/winsreplication.c ctx->x.max_version = pull_table.out.partners[i].max_version;
out 603 source4/torture/nbt/winsreplication.c ctx->x.min_version = pull_table.out.partners[i].min_version;
out 605 source4/torture/nbt/winsreplication.c if (strcmp(address,pull_table.out.partners[i].address)==0) {
out 606 source4/torture/nbt/winsreplication.c ctx->c.max_version = pull_table.out.partners[i].max_version;
out 607 source4/torture/nbt/winsreplication.c ctx->c.min_version = pull_table.out.partners[i].min_version;
out 611 source4/torture/nbt/winsreplication.c talloc_free(pull_table.out.partners);
out 732 source4/torture/nbt/winsreplication.c assoc_ctx = associate.out.assoc_ctx;
out 793 source4/torture/nbt/winsreplication.c torture_assert(tctx, pull_names.out.num_names == (expected?1:0),
out 794 source4/torture/nbt/winsreplication.c talloc_asprintf(tctx, "Invalid number of records returned - expected %d got %d", expected, pull_names.out.num_names));
out 796 source4/torture/nbt/winsreplication.c names = pull_names.out.names;
out 818 source4/torture/nbt/winsreplication.c talloc_free(pull_names.out.names);
out 852 source4/torture/nbt/winsreplication.c CHECK_VALUE(tctx, pull_names.out.num_names, 1);
out 854 source4/torture/nbt/winsreplication.c names = pull_names.out.names;
out 895 source4/torture/nbt/winsreplication.c talloc_free(pull_names.out.names);
out 942 source4/torture/nbt/winsreplication.c names = pull_names.out.names;
out 944 source4/torture/nbt/winsreplication.c for (i = 0; i < pull_names.out.num_names; i++) {
out 953 source4/torture/nbt/winsreplication.c if (pull_names.out.num_names > 0) {
out 954 source4/torture/nbt/winsreplication.c merge_owner->max_version = names[pull_names.out.num_names-1].version_id;
out 1004 source4/torture/nbt/winsreplication.c talloc_free(pull_names.out.names);
out 6556 source4/torture/nbt/winsreplication.c CHECK_VALUE(tctx, name_register->out.rcode, 0);
out 6557 source4/torture/nbt/winsreplication.c CHECK_VALUE_STRING(tctx, name_register->out.reply_from, ctx->address);
out 6558 source4/torture/nbt/winsreplication.c CHECK_VALUE(tctx, name_register->out.name.type, records[i].name.type);
out 6559 source4/torture/nbt/winsreplication.c CHECK_VALUE_STRING(tctx, name_register->out.name.name, records[i].name.name);
out 6560 source4/torture/nbt/winsreplication.c CHECK_VALUE_STRING(tctx, name_register->out.name.scope, records[i].name.scope);
out 6561 source4/torture/nbt/winsreplication.c CHECK_VALUE_STRING(tctx, name_register->out.reply_addr, records[i].wins.ips[0].ip);
out 6583 source4/torture/nbt/winsreplication.c CHECK_VALUE(tctx, release->out.rcode, 0);
out 6637 source4/torture/nbt/winsreplication.c CHECK_VALUE(tctx, release->out.rcode, 0);
out 9263 source4/torture/nbt/winsreplication.c CHECK_VALUE(tctx, name_register->out.rcode, 0);
out 9264 source4/torture/nbt/winsreplication.c CHECK_VALUE_STRING(tctx, name_register->out.reply_from, ctx->address);
out 9265 source4/torture/nbt/winsreplication.c CHECK_VALUE(tctx, name_register->out.name.type, records[i].name.type);
out 9266 source4/torture/nbt/winsreplication.c CHECK_VALUE_STRING(tctx, name_register->out.name.name, records[i].name.name);
out 9267 source4/torture/nbt/winsreplication.c CHECK_VALUE_STRING(tctx, name_register->out.name.scope, records[i].name.scope);
out 9268 source4/torture/nbt/winsreplication.c CHECK_VALUE_STRING(tctx, name_register->out.reply_addr, records[i].wins.ips[j].ip);
out 9386 source4/torture/nbt/winsreplication.c CHECK_VALUE(tctx, release->out.rcode, 0);
out 83 source4/torture/ndr/atsvc.c torture_assert_int_equal(tctx, r->out.ctr->entries_read, 7, "entries read");
out 84 source4/torture/ndr/atsvc.c torture_assert(tctx, r->out.ctr->first_entry != NULL, "first entry");
out 85 source4/torture/ndr/atsvc.c torture_assert_int_equal(tctx, r->out.ctr->first_entry[0].job_id, 1, "job id");
out 86 source4/torture/ndr/atsvc.c torture_assert_int_equal(tctx, r->out.ctr->first_entry[0].job_time, 84600000, "job time");
out 87 source4/torture/ndr/atsvc.c torture_assert_int_equal(tctx, r->out.ctr->first_entry[0].days_of_week, 0x2, "days of week");
out 88 source4/torture/ndr/atsvc.c torture_assert_int_equal(tctx, r->out.ctr->first_entry[0].flags, 0x13, "flags");
out 89 source4/torture/ndr/atsvc.c torture_assert_str_equal(tctx, r->out.ctr->first_entry[0].command, "foo.exe", "command");
out 90 source4/torture/ndr/atsvc.c torture_assert(tctx, r->out.total_entries != NULL, "total entries ptr");
out 91 source4/torture/ndr/atsvc.c torture_assert_int_equal(tctx, *r->out.total_entries, 7, "total entries");
out 92 source4/torture/ndr/atsvc.c torture_assert(tctx, r->out.resume_handle, "resume handle ptr");
out 93 source4/torture/ndr/atsvc.c torture_assert_int_equal(tctx, *r->out.resume_handle, 0, "resume handle");
out 94 source4/torture/ndr/atsvc.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 129 source4/torture/ndr/atsvc.c torture_assert_int_equal(tctx, *r->out.job_id, 14, "job id");
out 130 source4/torture/ndr/atsvc.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 187 source4/torture/ndr/atsvc.c torture_assert(tctx, *r->out.job_info != NULL, "job info");
out 188 source4/torture/ndr/atsvc.c torture_assert_int_equal(tctx, (*r->out.job_info)->job_time, 84600000, "time");
out 189 source4/torture/ndr/atsvc.c torture_assert_int_equal(tctx, (*r->out.job_info)->days_of_month, 0, "days of month");
out 190 source4/torture/ndr/atsvc.c torture_assert_int_equal(tctx, (*r->out.job_info)->days_of_week, 0x2, "days of week");
out 191 source4/torture/ndr/atsvc.c torture_assert_int_equal(tctx, (*r->out.job_info)->flags, 0x13, "flags");
out 192 source4/torture/ndr/atsvc.c torture_assert_str_equal(tctx, (*r->out.job_info)->command, "foo.exe", "command");
out 32 source4/torture/ndr/dfs.c torture_assert_int_equal(tctx, *r->out.version, 4, "version");
out 87 source4/torture/ndr/dfs.c torture_assert_werr_ok(tctx, r->out.result, "return code");
out 88 source4/torture/ndr/dfs.c torture_assert(tctx, r->out.total != NULL, "total ptr");
out 89 source4/torture/ndr/dfs.c torture_assert_int_equal(tctx, *r->out.total, 3, "total");
out 90 source4/torture/ndr/dfs.c torture_assert(tctx, r->out.info != NULL, "info ptr");
out 91 source4/torture/ndr/dfs.c torture_assert_int_equal(tctx, r->out.info->level, 300, "info level");
out 92 source4/torture/ndr/dfs.c torture_assert(tctx, r->out.info->e.info300 != NULL, "info data ptr");
out 93 source4/torture/ndr/dfs.c torture_assert_int_equal(tctx, r->out.info->e.info300->count, 3, "info enum array");
out 94 source4/torture/ndr/dfs.c torture_assert_str_equal(tctx, r->out.info->e.info300->s[0].dom_root, "\\W2K3DC\\standaloneroot", "info enum array 0");
out 95 source4/torture/ndr/dfs.c torture_assert_int_equal(tctx, r->out.info->e.info300->s[0].flavor, 256, "info enum flavor 0");
out 96 source4/torture/ndr/dfs.c torture_assert_str_equal(tctx, r->out.info->e.info300->s[1].dom_root, "\\W2K3DC\\standaloneroot2", "info enum array 1");
out 97 source4/torture/ndr/dfs.c torture_assert_int_equal(tctx, r->out.info->e.info300->s[1].flavor, 256, "info enum flavor 1");
out 98 source4/torture/ndr/dfs.c torture_assert_str_equal(tctx, r->out.info->e.info300->s[2].dom_root, "\\W2K3DOM\\testdomainroot", "info enum array 2");
out 99 source4/torture/ndr/dfs.c torture_assert_int_equal(tctx, r->out.info->e.info300->s[2].flavor, 512, "info enum flavor 2");
out 61 source4/torture/ndr/epmap.c torture_assert_int_equal(tctx, *r->out.num_towers, 1, "num towers");
out 62 source4/torture/ndr/epmap.c torture_assert_int_equal(tctx, r->out.result, 0x4b, "return code");
out 431 source4/torture/ndr/lsa.c struct lsa_RefDomainList *domains = *(r->out.domains);
out 432 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.domains != NULL, "domains ptr");
out 438 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.count != NULL, "count ptr");
out 439 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, *r->out.count, 100, "count");
out 441 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, r->out.sids->count, 100, "sids count");
out 442 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, r->out.sids->sids[0].sid_type, 4, "sid type");
out 443 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, r->out.sids->sids[0].rid, 0x221, "sid rid");
out 444 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, r->out.sids->sids[0].sid_index, 0, "sid index");
out 1018 source4/torture/ndr/lsa.c struct lsa_RefDomainList *domains = *(r->out.domains);
out 1024 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1058 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1092 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1121 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1144 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1177 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1210 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1243 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1283 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.new_val != NULL, "new val ptr");
out 1284 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.new_mtime != NULL, "new mtime ptr");
out 1286 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.old_val == NULL, "old val ptr");
out 1287 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.old_mtime == NULL, "old mtime ptr");
out 1322 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1364 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.resume_handle != NULL, "resume handle ptr");
out 1365 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, *r->out.resume_handle, 7, "resume handle");
out 1366 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, r->out.sids->num_sids, 7, "num sids");
out 1367 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.sids->sids != NULL, "sids sids");
out 1368 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.sids->sids[0].sid != NULL, "sids sids");
out 1369 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1479 source4/torture/ndr/lsa.c struct lsa_RefDomainList *domains = *(r->out.domains);
out 1481 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.names != NULL, "names ptr");
out 1482 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.domains != NULL, "domains ptr");
out 1486 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, r->out.names->count, 7, "names count");
out 1487 source4/torture/ndr/lsa.c torture_assert_str_equal(tctx, r->out.names->names[0].name.string, "Account Operators", "name str 1");
out 1488 source4/torture/ndr/lsa.c torture_assert_str_equal(tctx, r->out.names->names[1].name.string, "Administrators", "name str 2");
out 1489 source4/torture/ndr/lsa.c torture_assert_str_equal(tctx, r->out.names->names[2].name.string, "SUPPORT_388945a0", "name str 3");
out 1490 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.count != NULL, "count ptr");
out 1491 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, *r->out.count, 7, "count");
out 1492 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1590 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, *r->out.count, 7, "count");
out 1591 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, r->out.sids->count, 7, "sids count");
out 1592 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1700 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, *r->out.count, 7, "count");
out 1701 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, r->out.sids->count, 7, "sids count");
out 1702 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1755 source4/torture/ndr/lsa.c struct lsa_RefDomainList *domains = *(r->out.domains);
out 1757 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.names != NULL, "names ptr");
out 1758 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.domains != NULL, "domains ptr");
out 1762 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, r->out.names->count, 7, "names count");
out 1763 source4/torture/ndr/lsa.c torture_assert_str_equal(tctx, r->out.names->names[0].name.string, "Account Operators", "name str 1");
out 1764 source4/torture/ndr/lsa.c torture_assert_str_equal(tctx, r->out.names->names[1].name.string, "Administrators", "name str 2");
out 1765 source4/torture/ndr/lsa.c torture_assert_str_equal(tctx, r->out.names->names[2].name.string, "SUPPORT_388945a0", "name str 3");
out 1766 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.count != NULL, "count ptr");
out 1767 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, *r->out.count, 7, "count");
out 1768 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 1976 source4/torture/ndr/lsa.c torture_assert(tctx, r->out.resume_handle != NULL, "resume handle ptr");
out 1977 source4/torture/ndr/lsa.c torture_assert_int_equal(tctx, *r->out.resume_handle, 29, "resume handle");
out 1978 source4/torture/ndr/lsa.c torture_assert_str_equal(tctx, r->out.privs->privs[0].name.string, "SeCreateTokenPrivilege", "name");
out 1979 source4/torture/ndr/lsa.c torture_assert_str_equal(tctx, r->out.privs->privs[1].name.string, "SeAssignPrimaryTokenPrivilege", "name");
out 1980 source4/torture/ndr/lsa.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 62 source4/torture/ndr/netlogon.c torture_assert_mem_equal(tctx, cred_expected, r->out.return_credentials->data, 8, "return_credentials");
out 63 source4/torture/ndr/netlogon.c torture_assert_int_equal(tctx, *r->out.negotiate_flags, 0x6007ffff, "negotiate flags");
out 64 source4/torture/ndr/netlogon.c torture_assert_int_equal(tctx, *r->out.rid, 0x454, "rid");
out 65 source4/torture/ndr/netlogon.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 101 source4/torture/ndr/netlogon.c torture_assert_mem_equal(tctx, cred_expected, r->out.return_credentials->data, 8, "return_credentials");
out 102 source4/torture/ndr/netlogon.c torture_assert_ntstatus_ok(tctx, r->out.result, "return code");
out 48 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, ck->out.handle->handle_type, 0, "handle type");
out 49 source4/torture/ndr/winreg.c torture_assert_werr_ok(tctx, ck->out.result, "return code");
out 74 source4/torture/ndr/winreg.c torture_assert(tctx, r->out.handle != NULL, "handle pointer");
out 75 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, r->out.handle->handle_type, 0, "handle_type");
out 76 source4/torture/ndr/winreg.c torture_assert_werr_ok(tctx, r->out.result, "return code");
out 113 source4/torture/ndr/winreg.c torture_assert(tctx, GUID_all_zero(&r->out.new_handle->uuid), "new_handle");
out 114 source4/torture/ndr/winreg.c torture_assert(tctx, r->out.action_taken == NULL, "action_taken pointer");
out 115 source4/torture/ndr/winreg.c torture_assert_werr_equal(tctx, r->out.result, WERR_INVALID_PARAM,
out 165 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, r->out.name->size, 512, "name size");
out 166 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, r->out.name->length, 18, "name length");
out 167 source4/torture/ndr/winreg.c torture_assert_str_equal(tctx, r->out.name->name, "HOMEPATH", "name");
out 168 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, *r->out.type, 1, "type");
out 169 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, *r->out.size, 76, "size");
out 170 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, *r->out.length, 76, "length");
out 171 source4/torture/ndr/winreg.c torture_assert_werr_ok(tctx, r->out.result, "return code");
out 218 source4/torture/ndr/winreg.c torture_assert_werr_ok(tctx, r->out.result, "return code");
out 219 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, *r->out.type, 1, "type");
out 220 source4/torture/ndr/winreg.c torture_assert(tctx, r->out.data == NULL, "data pointer");
out 221 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, *r->out.data_size, 76, "size");
out 222 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, *r->out.data_length, 0, "length");
out 277 source4/torture/ndr/winreg.c torture_assert_str_equal(tctx, r->out.values[0].name->name, "HOMEPATH",
out 280 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, r->out.values[0].type, 0, "type");
out 281 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, r->out.values[0].offset, 0, "offset");
out 282 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, r->out.values[0].length, 0, "length");
out 284 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, *r->out.buffer_size, 76, "buffer size");
out 285 source4/torture/ndr/winreg.c torture_assert_werr_equal(tctx, r->out.result, WERR_MORE_DATA,
out 310 source4/torture/ndr/winreg.c torture_assert_werr_ok(tctx, r->out.result, "return code");
out 340 source4/torture/ndr/winreg.c torture_assert(tctx, GUID_all_zero(&r->out.handle->uuid), "handle");
out 341 source4/torture/ndr/winreg.c torture_assert_werr_equal(tctx, r->out.result, WERR_BADFILE, "return code");
out 367 source4/torture/ndr/winreg.c torture_assert_werr_equal(tctx, r->out.result, WERR_BADFILE, "return code");
out 388 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, *r->out.version, 5, "version");
out 389 source4/torture/ndr/winreg.c torture_assert_werr_ok(tctx, r->out.result, "return code");
out 415 source4/torture/ndr/winreg.c torture_assert(tctx, r->out.classname != NULL, "class out");
out 416 source4/torture/ndr/winreg.c torture_assert(tctx, r->out.classname->name != NULL, "class out name");
out 417 source4/torture/ndr/winreg.c torture_assert_str_equal(tctx, r->out.classname->name, "", "class out name");
out 418 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, *r->out.num_subkeys, 0, "num subkeys");
out 419 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, *r->out.max_subkeylen, 0, "subkey length");
out 420 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, *r->out.max_classlen, 140, "subkey size");
out 421 source4/torture/ndr/winreg.c torture_assert_werr_ok(tctx, r->out.result, "return code");
out 450 source4/torture/ndr/winreg.c torture_assert_werr_equal(tctx, r->out.result, WERR_INVALID_PARAM, "notify change key value");
out 483 source4/torture/ndr/winreg.c torture_assert_werr_ok(tctx, r->out.result, "return code");
out 517 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, r->out.name->size, 1044, "name size");
out 518 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, r->out.name->length, 8, "name len");
out 519 source4/torture/ndr/winreg.c torture_assert(tctx, r->out.keyclass != NULL, "keyclass pointer");
out 520 source4/torture/ndr/winreg.c torture_assert(tctx, r->out.keyclass->name == NULL, "keyclass");
out 521 source4/torture/ndr/winreg.c torture_assert(tctx, r->out.last_changed_time != NULL, "last_changed_time pointer");
out 235 source4/torture/rap/rap.c call->ndr_pull_param = ndr_pull_init_blob(&trans.out.params, call,
out 239 source4/torture/rap/rap.c call->ndr_pull_data = ndr_pull_init_blob(&trans.out.data, call,
out 279 source4/torture/rap/rap.c NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.status));
out 280 source4/torture/rap/rap.c NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.convert));
out 281 source4/torture/rap/rap.c NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.count));
out 282 source4/torture/rap/rap.c NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.available));
out 284 source4/torture/rap/rap.c r->out.info = talloc_array(mem_ctx, union rap_shareenum_info, r->out.count);
out 286 source4/torture/rap/rap.c if (r->out.info == NULL) {
out 291 source4/torture/rap/rap.c for (i=0; i<r->out.count; i++) {
out 295 source4/torture/rap/rap.c (uint8_t *)r->out.info[i].info0.name, 13));
out 299 source4/torture/rap/rap.c (uint8_t *)r->out.info[i].info1.name, 13));
out 301 source4/torture/rap/rap.c (uint8_t *)&r->out.info[i].info1.pad, 1));
out 303 source4/torture/rap/rap.c NDR_SCALARS, &r->out.info[i].info1.type));
out 305 source4/torture/rap/rap.c r->out.convert,
out 306 source4/torture/rap/rap.c &r->out.info[i].info1.comment));
out 330 source4/torture/rap/rap.c for (i=0; i<r.out.count; i++) {
out 331 source4/torture/rap/rap.c printf("%s %d %s\n", r.out.info[i].info1.name,
out 332 source4/torture/rap/rap.c r.out.info[i].info1.type,
out 333 source4/torture/rap/rap.c r.out.info[i].info1.comment);
out 375 source4/torture/rap/rap.c NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.status));
out 376 source4/torture/rap/rap.c NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.convert));
out 377 source4/torture/rap/rap.c NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.count));
out 378 source4/torture/rap/rap.c NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.available));
out 380 source4/torture/rap/rap.c r->out.info = talloc_array(mem_ctx, union rap_server_info, r->out.count);
out 382 source4/torture/rap/rap.c if (r->out.info == NULL) {
out 387 source4/torture/rap/rap.c for (i=0; i<r->out.count; i++) {
out 391 source4/torture/rap/rap.c (uint8_t *)r->out.info[i].info0.name, 16));
out 395 source4/torture/rap/rap.c (uint8_t *)r->out.info[i].info1.name, 16));
out 397 source4/torture/rap/rap.c &r->out.info[i].info1.version_major, 1));
out 399 source4/torture/rap/rap.c &r->out.info[i].info1.version_minor, 1));
out 401 source4/torture/rap/rap.c NDR_SCALARS, &r->out.info[i].info1.servertype));
out 403 source4/torture/rap/rap.c r->out.convert,
out 404 source4/torture/rap/rap.c &r->out.info[i].info1.comment));
out 430 source4/torture/rap/rap.c for (i=0; i<r.out.count; i++) {
out 433 source4/torture/rap/rap.c printf("%s\n", r.out.info[i].info0.name);
out 436 source4/torture/rap/rap.c printf("%s %x %s\n", r.out.info[i].info1.name,
out 437 source4/torture/rap/rap.c r.out.info[i].info1.servertype,
out 438 source4/torture/rap/rap.c r.out.info[i].info1.comment);
out 479 source4/torture/rap/rap.c NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.status));
out 480 source4/torture/rap/rap.c NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.convert));
out 481 source4/torture/rap/rap.c NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.available));
out 486 source4/torture/rap/rap.c (uint8_t *)r->out.info.info0.name, 16));
out 490 source4/torture/rap/rap.c (uint8_t *)r->out.info.info1.name, 16));
out 492 source4/torture/rap/rap.c &r->out.info.info1.version_major, 1));
out 494 source4/torture/rap/rap.c &r->out.info.info1.version_minor, 1));
out 496 source4/torture/rap/rap.c NDR_SCALARS, &r->out.info.info1.servertype));
out 498 source4/torture/rap/rap.c r->out.convert,
out 499 source4/torture/rap/rap.c &r->out.info.info1.comment));
out 75 source4/torture/raw/acls.c fnum = io.ntcreatex.out.file.fnum;
out 85 source4/torture/raw/acls.c sd = q.query_secdesc.out.sd;
out 110 source4/torture/raw/acls.c if (!security_acl_equal(q.query_secdesc.out.sd->dacl, sd->dacl)) {
out 113 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 130 source4/torture/raw/acls.c if (!security_acl_equal(q.query_secdesc.out.sd->dacl, sd->dacl)) {
out 133 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 184 source4/torture/raw/acls.c fnum = io.ntcreatex.out.file.fnum;
out 196 source4/torture/raw/acls.c sd = q.query_secdesc.out.sd;
out 217 source4/torture/raw/acls.c fnum = io.ntcreatex.out.file.fnum;
out 223 source4/torture/raw/acls.c if (!security_acl_equal(q.query_secdesc.out.sd->dacl, sd->dacl)) {
out 226 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 243 source4/torture/raw/acls.c if (_q.access_information.out.access_flags != (flags)) { \
out 245 source4/torture/raw/acls.c __location__, _q.access_information.out.access_flags, (flags)); \
out 289 source4/torture/raw/acls.c fnum = io.ntcreatex.out.file.fnum;
out 306 source4/torture/raw/acls.c if (!(q.query_secdesc.out.sd->type & SEC_DESC_DACL_PRESENT)) {
out 311 source4/torture/raw/acls.c if (q.query_secdesc.out.sd->dacl == NULL) {
out 338 source4/torture/raw/acls.c if (!(q.query_secdesc.out.sd->type & SEC_DESC_DACL_PRESENT)) {
out 343 source4/torture/raw/acls.c if (q.query_secdesc.out.sd->dacl != NULL) {
out 353 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 355 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 361 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 363 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 369 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 371 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 377 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 379 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 385 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 387 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 413 source4/torture/raw/acls.c if (!(q.query_secdesc.out.sd->type & SEC_DESC_DACL_PRESENT)) {
out 418 source4/torture/raw/acls.c if (q.query_secdesc.out.sd->dacl == NULL) {
out 423 source4/torture/raw/acls.c if (q.query_secdesc.out.sd->dacl->num_aces != 0) {
out 425 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->num_aces);
out 434 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 436 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 480 source4/torture/raw/acls.c if (!(q.query_secdesc.out.sd->type & SEC_DESC_DACL_PRESENT)) {
out 485 source4/torture/raw/acls.c if (q.query_secdesc.out.sd->dacl != NULL) {
out 530 source4/torture/raw/acls.c fnum = io.ntcreatex.out.file.fnum;
out 538 source4/torture/raw/acls.c sd_orig = q.query_secdesc.out.sd;
out 598 source4/torture/raw/acls.c if (!security_descriptor_equal(q.query_secdesc.out.sd, sd)) {
out 601 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 616 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 619 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 630 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 632 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 658 source4/torture/raw/acls.c if (!security_descriptor_equal(q.query_secdesc.out.sd, sd2)) {
out 661 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 677 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 680 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 691 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum, SEC_RIGHTS_FILE_READ);
out 692 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 769 source4/torture/raw/acls.c fnum = io.ntcreatex.out.file.fnum;
out 777 source4/torture/raw/acls.c sd_orig = q.query_secdesc.out.sd;
out 839 source4/torture/raw/acls.c if (!security_descriptor_equal(q.query_secdesc.out.sd, sd2)) {
out 842 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 851 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 853 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 887 source4/torture/raw/acls.c if (!security_descriptor_equal(q.query_secdesc.out.sd, sd2)) {
out 890 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 899 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 901 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 934 source4/torture/raw/acls.c fnum = io.ntcreatex.out.file.fnum;
out 942 source4/torture/raw/acls.c sd_orig = q.query_secdesc.out.sd;
out 1004 source4/torture/raw/acls.c if (!security_descriptor_equal(q.query_secdesc.out.sd, sd2)) {
out 1007 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 1016 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 1018 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1052 source4/torture/raw/acls.c if (!security_descriptor_equal(q.query_secdesc.out.sd, sd2)) {
out 1055 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 1064 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum,
out 1066 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1123 source4/torture/raw/acls.c fnum = io.ntcreatex.out.file.fnum;
out 1131 source4/torture/raw/acls.c sd_orig = q.query_secdesc.out.sd;
out 1181 source4/torture/raw/acls.c CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum, bit | SEC_FILE_READ_ATTRIBUTE);
out 1182 source4/torture/raw/acls.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1351 source4/torture/raw/acls.c fnum = io.ntcreatex.out.file.fnum;
out 1359 source4/torture/raw/acls.c sd_orig = q.query_secdesc.out.sd;
out 1402 source4/torture/raw/acls.c fnum2 = io.ntcreatex.out.file.fnum;
out 1412 source4/torture/raw/acls.c if (!security_descriptor_equal(q.query_secdesc.out.sd, sd_def)) {
out 1416 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 1421 source4/torture/raw/acls.c if (q.query_secdesc.out.sd->dacl == NULL ||
out 1422 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->num_aces != 1 ||
out 1423 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->aces[0].access_mask != SEC_FILE_WRITE_DATA ||
out 1424 source4/torture/raw/acls.c !dom_sid_equal(&q.query_secdesc.out.sd->dacl->aces[0].trustee,
out 1427 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 1432 source4/torture/raw/acls.c if (q.query_secdesc.out.sd->dacl->aces[0].flags !=
out 1435 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->aces[0].flags,
out 1447 source4/torture/raw/acls.c fnum2 = io.ntcreatex.out.file.fnum;
out 1459 source4/torture/raw/acls.c if (!security_descriptor_equal(q.query_secdesc.out.sd, sd_def)) {
out 1463 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 1470 source4/torture/raw/acls.c if (q.query_secdesc.out.sd->dacl == NULL ||
out 1471 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->num_aces != 1 ||
out 1472 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->aces[0].access_mask != SEC_FILE_WRITE_DATA ||
out 1473 source4/torture/raw/acls.c !dom_sid_equal(&q.query_secdesc.out.sd->dacl->aces[0].trustee,
out 1475 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->aces[0].flags != test_flags[i].dir_flags) {
out 1478 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 1483 source4/torture/raw/acls.c if (q.query_secdesc.out.sd->dacl == NULL ||
out 1484 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->num_aces != 2 ||
out 1485 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->aces[0].access_mask != SEC_FILE_WRITE_DATA ||
out 1486 source4/torture/raw/acls.c !dom_sid_equal(&q.query_secdesc.out.sd->dacl->aces[0].trustee,
out 1488 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->aces[1].access_mask != SEC_FILE_WRITE_DATA ||
out 1489 source4/torture/raw/acls.c !dom_sid_equal(&q.query_secdesc.out.sd->dacl->aces[1].trustee,
out 1491 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->aces[0].flags != 0 ||
out 1492 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->aces[1].flags !=
out 1496 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 1501 source4/torture/raw/acls.c if (q.query_secdesc.out.sd->dacl == NULL ||
out 1502 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->num_aces != 1 ||
out 1503 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->aces[0].access_mask != SEC_FILE_WRITE_DATA ||
out 1504 source4/torture/raw/acls.c !dom_sid_equal(&q.query_secdesc.out.sd->dacl->aces[0].trustee,
out 1506 source4/torture/raw/acls.c q.query_secdesc.out.sd->dacl->aces[0].flags != test_flags[i].dir_flags) {
out 1509 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 1541 source4/torture/raw/acls.c fnum2 = io.ntcreatex.out.file.fnum;
out 1557 source4/torture/raw/acls.c if (!security_descriptor_equal(q.query_secdesc.out.sd, sd2)) {
out 1560 source4/torture/raw/acls.c NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);
out 1572 source4/torture/raw/acls.c fnum2 = io.ntcreatex.out.file.fnum;
out 1594 source4/torture/raw/acls.c fnum2 = io.ntcreatex.out.file.fnum;
out 1615 source4/torture/raw/acls.c fnum2 = io.ntcreatex.out.file.fnum;
out 1672 source4/torture/raw/acls.c fnum = io.ntcreatex.out.file.fnum;
out 1680 source4/torture/raw/acls.c sd_orig = q.query_secdesc.out.sd;
out 1709 source4/torture/raw/acls.c fnum2 = io.ntcreatex.out.file.fnum;
out 1717 source4/torture/raw/acls.c fnum2 = io.ntcreatex.out.file.fnum;
out 1743 source4/torture/raw/acls.c fnum2 = io.ntcreatex.out.file.fnum;
out 1866 source4/torture/raw/acls.c fnum = io.ntcreatex.out.file.fnum;
out 1886 source4/torture/raw/acls.c fnum = io.ntcreatex.out.file.fnum;
out 1893 source4/torture/raw/acls.c granted = fi.access_information.out.access_flags;
out 1902 source4/torture/raw/acls.c if (fi.query_secdesc.out.sd) {
out 1903 source4/torture/raw/acls.c sd_owner = fi.query_secdesc.out.sd;
out 1921 source4/torture/raw/acls.c if (fi.query_secdesc.out.sd) {
out 1922 source4/torture/raw/acls.c sd_group = fi.query_secdesc.out.sd;
out 1940 source4/torture/raw/acls.c if (fi.query_secdesc.out.sd) {
out 1941 source4/torture/raw/acls.c sd_dacl = fi.query_secdesc.out.sd;
out 1959 source4/torture/raw/acls.c if (fi.query_secdesc.out.sd) {
out 1960 source4/torture/raw/acls.c sd_sacl = fi.query_secdesc.out.sd;
out 97 source4/torture/raw/chkpath.c (!finfo.name_info.out.fname.s ||
out 98 source4/torture/raw/chkpath.c strcmp(finfo.name_info.out.fname.s, path_expected) != 0)) {
out 101 source4/torture/raw/chkpath.c path, finfo.name_info.out.fname.s, path_expected);
out 105 source4/torture/raw/chkpath.c path, finfo.name_info.out.fname.s, path_expected);
out 109 source4/torture/raw/chkpath.c path, finfo.name_info.out.fname.s);
out 78 source4/torture/raw/close.c if (basetime != nt_time_to_unix(finfo.all_info.out.write_time)) {
out 81 source4/torture/raw/close.c nt_time_string(torture, finfo.all_info.out.write_time));
out 89 source4/torture/raw/close.c if (nt_time_equal(&finfo.all_info.out.write_time,
out 90 source4/torture/raw/close.c &finfo.all_info.out.access_time) ||
out 91 source4/torture/raw/close.c nt_time_equal(&finfo.all_info.out.write_time,
out 92 source4/torture/raw/close.c &finfo.all_info.out.create_time) ||
out 93 source4/torture/raw/close.c nt_time_equal(&finfo.all_info.out.write_time,
out 94 source4/torture/raw/close.c &finfo.all_info.out.change_time)) {
out 129 source4/torture/raw/close.c if (!nt_time_equal(&finfo.all_info.out.write_time,
out 130 source4/torture/raw/close.c &finfo2.all_info.out.write_time)) {
out 105 source4/torture/raw/composite.c if (io2.out.size != len) {
out 107 source4/torture/raw/composite.c io2.out.size, (int)len);
out 111 source4/torture/raw/composite.c if (memcmp(io2.out.data, data, len) != 0) {
out 202 source4/torture/raw/composite.c if (io2.out.size != len) {
out 205 source4/torture/raw/composite.c io2.out.size, (int)len);
out 210 source4/torture/raw/composite.c if (memcmp(io2.out.data, data, len) != 0) {
out 320 source4/torture/raw/composite.c security_descriptor_dacl_add(io_orig[i]->out.sd, ace);
out 321 source4/torture/raw/composite.c if (!security_acl_equal(io_orig[i]->out.sd->dacl, io[i]->out.sd->dacl)) {
out 391 source4/torture/raw/composite.c if (io1.out.fsinfo->generic.level != RAW_QFS_OBJECTID_INFORMATION) {
out 394 source4/torture/raw/composite.c io1.out.fsinfo->generic.level, RAW_QFS_OBJECTID_INFORMATION);
out 399 source4/torture/raw/composite.c guid=GUID_string(tctx, &io1.out.fsinfo->objectid_information.out.guid);
out 110 source4/torture/raw/context.c session->vuid = setup.out.vuid;
out 125 source4/torture/raw/context.c session2->vuid = setup.out.vuid;
out 191 source4/torture/raw/context.c fnum = io.ntcreatex.out.file.fnum;
out 208 source4/torture/raw/context.c CHECK_VALUE(wr.writex.out.nwritten, 1);
out 251 source4/torture/raw/context.c sessions[i]->vuid = setups[i].out.vuid;
out 303 source4/torture/raw/context.c tree->tid = tcon.tconx.out.tid;
out 327 source4/torture/raw/context.c fnum = io.ntcreatex.out.file.fnum;
out 344 source4/torture/raw/context.c CHECK_VALUE(wr.writex.out.nwritten, 1);
out 411 source4/torture/raw/context.c session1->vuid = setup.out.vuid;
out 423 source4/torture/raw/context.c tree->tid = tcon.tconx.out.tid;
out 441 source4/torture/raw/context.c fnum1 = io.ntcreatex.out.file.fnum;
out 453 source4/torture/raw/context.c CHECK_VALUE(wr.writex.out.nwritten, 1);
out 468 source4/torture/raw/context.c session2->vuid = setup.out.vuid;
out 489 source4/torture/raw/context.c fnum2 = io.ntcreatex.out.file.fnum;
out 501 source4/torture/raw/context.c CHECK_VALUE(wr.writex.out.nwritten, 1);
out 567 source4/torture/raw/context.c fnum = io.ntcreatex.out.file.fnum;
out 580 source4/torture/raw/context.c CHECK_VALUE(wr.writex.out.nwritten, 1);
out 591 source4/torture/raw/context.c CHECK_VALUE(wr.writex.out.nwritten, 1);
out 602 source4/torture/raw/context.c CHECK_VALUE(wr.writex.out.nwritten, 1);
out 606 source4/torture/raw/context.c CHECK_VALUE(wr.writex.out.nwritten, 1);
out 670 source4/torture/raw/context.c session->vuid = setup.out.vuid;
out 693 source4/torture/raw/context.c fnum = io.ntcreatex.out.file.fnum;
out 707 source4/torture/raw/context.c CHECK_VALUE(wr.writex.out.nwritten, 1);
out 718 source4/torture/raw/context.c CHECK_VALUE(wr.writex.out.nwritten, 1);
out 779 source4/torture/raw/context.c tree->tid = tcon.tconx.out.tid;
out 801 source4/torture/raw/context.c fnum1 = io.ntcreatex.out.file.fnum;
out 814 source4/torture/raw/context.c CHECK_VALUE(wr.writex.out.nwritten, 1);
out 832 source4/torture/raw/context.c fnum2 = io.ntcreatex.out.file.fnum;
out 845 source4/torture/raw/context.c CHECK_VALUE(wr.writex.out.nwritten, 1);
out 75 source4/torture/raw/eas.c fnum = io.ntcreatex.out.file.fnum;
out 300 source4/torture/raw/eas.c fnum = io.ntcreatex.out.file.fnum;
out 412 source4/torture/raw/eas.c fnum = io.ntcreatex.out.file.fnum;
out 432 source4/torture/raw/eas.c fnum = io.ntcreatex.out.file.fnum;
out 637 source4/torture/raw/lock.c session->vuid = setup.out.vuid;
out 650 source4/torture/raw/lock.c tree->tid = tcon.tconx.out.tid;
out 859 source4/torture/raw/lock.c fnum = op.openx.out.file.fnum;
out 863 source4/torture/raw/lock.c fnum2 = op.openx.out.file.fnum;
out 163 source4/torture/raw/lockbench.c state->tree = io->out.tree;
out 69 source4/torture/raw/mux.c fnum1 = io.ntcreatex.out.file.fnum;
out 75 source4/torture/raw/mux.c fnum2 = io.ntcreatex.out.file.fnum;
out 135 source4/torture/raw/mux.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 90 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum;
out 94 source4/torture/raw/notify.c fnum2 = io.ntcreatex.out.file.fnum;
out 119 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 120 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_ADDED);
out 121 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
out 130 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 131 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_REMOVED);
out 132 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
out 144 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 4);
out 145 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_ADDED);
out 146 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
out 147 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[1].action, NOTIFY_ACTION_REMOVED);
out 148 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[1].name, "subdir-name", STR_UNICODE);
out 149 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[2].action, NOTIFY_ACTION_ADDED);
out 150 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[2].name, "subdir-name", STR_UNICODE);
out 151 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[3].action, NOTIFY_ACTION_REMOVED);
out 152 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[3].name, "subdir-name", STR_UNICODE);
out 193 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, count);
out 195 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[i].action, NOTIFY_ACTION_ADDED);
out 197 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "test0.txt", STR_UNICODE);
out 202 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 203 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_REMOVED);
out 204 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "test0.txt", STR_UNICODE);
out 220 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 221 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_REMOVED);
out 222 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "test0.txt", STR_UNICODE);
out 230 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, count-1);
out 231 source4/torture/raw/notify.c for (i=0;i<notify.nttrans.out.num_changes;i++) {
out 232 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[i].action, NOTIFY_ACTION_REMOVED);
out 238 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, count-1);
out 239 source4/torture/raw/notify.c for (i=0;i<notify.nttrans.out.num_changes;i++) {
out 240 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[i].action, NOTIFY_ACTION_REMOVED);
out 256 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 0);
out 327 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum;
out 374 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 11);
out 375 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_ADDED);
out 376 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
out 377 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[1].action, NOTIFY_ACTION_ADDED);
out 378 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[1].name, "subdir-name\\subname1", STR_UNICODE);
out 379 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[2].action, NOTIFY_ACTION_ADDED);
out 380 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[2].name, "subdir-name\\subname2", STR_UNICODE);
out 381 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[3].action, NOTIFY_ACTION_OLD_NAME);
out 382 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[3].name, "subdir-name\\subname1", STR_UNICODE);
out 383 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[4].action, NOTIFY_ACTION_NEW_NAME);
out 384 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[4].name, "subdir-name\\subname1-r", STR_UNICODE);
out 387 source4/torture/raw/notify.c cli, __LINE__, ¬ify.nttrans.out.changes[5],
out 390 source4/torture/raw/notify.c cli, __LINE__, ¬ify.nttrans.out.changes[5],
out 393 source4/torture/raw/notify.c cli, __LINE__, ¬ify.nttrans.out.changes[5],
out 397 source4/torture/raw/notify.c cli, __LINE__, ¬ify.nttrans.out.changes[8],
out 400 source4/torture/raw/notify.c cli, __LINE__, ¬ify.nttrans.out.changes[8],
out 403 source4/torture/raw/notify.c cli, __LINE__, ¬ify.nttrans.out.changes[8],
out 413 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 3);
out 414 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_REMOVED);
out 415 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name\\subname1-r", STR_UNICODE);
out 416 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[1].action, NOTIFY_ACTION_REMOVED);
out 417 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[1].name, "subdir-name", STR_UNICODE);
out 418 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[2].action, NOTIFY_ACTION_REMOVED);
out 419 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[2].name, "subname3-r", STR_UNICODE);
out 458 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum;
out 493 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 494 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_MODIFIED);
out 495 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "tname1", STR_UNICODE);
out 523 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 524 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_MODIFIED);
out 525 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subname2-r", STR_UNICODE);
out 530 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 531 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_MODIFIED);
out 532 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subname3-r", STR_UNICODE);
out 592 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum; \
out 605 source4/torture/raw/notify.c if (nchanges == 2 && notify.nttrans.out.num_changes == 1 && \
out 606 source4/torture/raw/notify.c notify.nttrans.out.changes[0].action == NOTIFY_ACTION_MODIFIED && \
out 610 source4/torture/raw/notify.c } else if (nchanges != notify.nttrans.out.num_changes) { \
out 612 source4/torture/raw/notify.c notify.nttrans.out.num_changes, \
out 614 source4/torture/raw/notify.c notify.nttrans.out.changes[0].action, \
out 617 source4/torture/raw/notify.c } else if (notify.nttrans.out.changes[0].action != Action) { \
out 619 source4/torture/raw/notify.c notify.nttrans.out.num_changes, \
out 620 source4/torture/raw/notify.c notify.nttrans.out.changes[0].action, \
out 624 source4/torture/raw/notify.c } else if (strcmp(notify.nttrans.out.changes[0].name.s, "tname1") != 0) { \
out 626 source4/torture/raw/notify.c notify.nttrans.out.num_changes, \
out 627 source4/torture/raw/notify.c notify.nttrans.out.changes[0].action, \
out 629 source4/torture/raw/notify.c notify.nttrans.out.changes[0].name.s); \
out 809 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum;
out 876 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum;
out 894 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 0);
out 938 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum;
out 955 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 0);
out 999 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum;
out 1016 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 0);
out 1067 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum;
out 1121 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum;
out 1138 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 1139 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
out 1145 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 1146 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name2", STR_UNICODE);
out 1221 source4/torture/raw/notify.c dirs[i].fnum = io.ntcreatex.out.file.fnum;
out 1249 source4/torture/raw/notify.c notify.nttrans.out.num_changes = 0;
out 1251 source4/torture/raw/notify.c dirs[i].counted += notify.nttrans.out.num_changes;
out 1320 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum;
out 1357 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 0);
out 1398 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum;
out 1423 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 1424 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_MODIFIED);
out 1425 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "tname1", STR_UNICODE);
out 1463 source4/torture/raw/notify.c tree->tid = tcon.tconx.out.tid;
out 1504 source4/torture/raw/notify.c fnum = io.ntcreatex.out.file.fnum;
out 1508 source4/torture/raw/notify.c fnum2 = io.ntcreatex.out.file.fnum;
out 1525 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 1526 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_ADDED);
out 1527 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
out 1535 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 1536 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_REMOVED);
out 1537 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
out 1551 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 1552 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_ADDED);
out 1553 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
out 1561 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 1562 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_REMOVED);
out 1563 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
out 1579 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 1580 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_ADDED);
out 1581 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
out 1589 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.num_changes, 1);
out 1590 source4/torture/raw/notify.c CHECK_VAL(notify.nttrans.out.changes[0].action, NOTIFY_ACTION_REMOVED);
out 1591 source4/torture/raw/notify.c CHECK_WSTR(notify.nttrans.out.changes[0].name, "subdir-name", STR_UNICODE);
out 102 source4/torture/raw/offline.c if (state->loadfile->out.size != FILE_SIZE) {
out 104 source4/torture/raw/offline.c state->loadfile->out.size, FILE_SIZE);
out 110 source4/torture/raw/offline.c if (state->loadfile->out.data[i] != 1+(state->fnumber % 255)) {
out 113 source4/torture/raw/offline.c state->loadfile->out.data[i],
out 120 source4/torture/raw/offline.c talloc_steal(state->loadfile, state->loadfile->out.data);
out 199 source4/torture/raw/offline.c if (io.getattr.out.attrib & FILE_ATTRIBUTE_OFFLINE) {
out 97 source4/torture/raw/open.c t2 = nt_time_to_unix(finfo.all_info.out.field) & ~1; \
out 113 source4/torture/raw/open.c t2 = finfo.all_info.out.field; \
out 128 source4/torture/raw/open.c if ((v) != (finfo.all_info.out.field)) { \
out 130 source4/torture/raw/open.c __location__, #field, (int)v, (int)(finfo.all_info.out.field)); \
out 174 source4/torture/raw/open.c fnum = io.openold.out.file.fnum;
out 182 source4/torture/raw/open.c fnum = io.openold.out.file.fnum;
out 187 source4/torture/raw/open.c fnum2 = io.openold.out.file.fnum;
out 200 source4/torture/raw/open.c fnum = io.openold.out.file.fnum;
out 207 source4/torture/raw/open.c fnum = io.openold.out.file.fnum;
out 214 source4/torture/raw/open.c fnum = io.openold.out.file.fnum;
out 222 source4/torture/raw/open.c fnum = io.openold.out.file.fnum;
out 225 source4/torture/raw/open.c if (io.openold.in.open_mode != io.openold.out.rmode) {
out 227 source4/torture/raw/open.c __location__, io.openold.out.rmode, io.openold.in.open_mode);
out 237 source4/torture/raw/open.c fnum2 = io.openold.out.file.fnum;
out 250 source4/torture/raw/open.c fnum = io.openold.out.file.fnum;
out 253 source4/torture/raw/open.c CHECK_TIME(io.openold.out.write_time, write_time);
out 254 source4/torture/raw/open.c CHECK_ALL_INFO(io.openold.out.size, size);
out 255 source4/torture/raw/open.c CHECK_ALL_INFO(io.openold.out.attrib, attrib & ~FILE_ATTRIBUTE_NONINDEXED);
out 331 source4/torture/raw/open.c smbcli_close(cli->tree, io.openx.out.file.fnum);
out 344 source4/torture/raw/open.c fnum = io.openx.out.file.fnum;
out 346 source4/torture/raw/open.c CHECK_ALL_INFO(io.openx.out.size, size);
out 347 source4/torture/raw/open.c CHECK_TIME(io.openx.out.write_time, write_time);
out 348 source4/torture/raw/open.c CHECK_ALL_INFO(io.openx.out.attrib, attrib & ~FILE_ATTRIBUTE_NONINDEXED);
out 349 source4/torture/raw/open.c CHECK_VAL(io.openx.out.access, OPENX_MODE_ACCESS_RDWR);
out 350 source4/torture/raw/open.c CHECK_VAL(io.openx.out.ftype, 0);
out 351 source4/torture/raw/open.c CHECK_VAL(io.openx.out.devstate, 0);
out 352 source4/torture/raw/open.c CHECK_VAL(io.openx.out.action, OPENX_ACTION_CREATED);
out 353 source4/torture/raw/open.c CHECK_VAL(io.openx.out.size, 1024*1024);
out 369 source4/torture/raw/open.c fnum = io.openx.out.file.fnum;
out 371 source4/torture/raw/open.c CHECK_ALL_INFO(io.openx.out.size, size);
out 372 source4/torture/raw/open.c CHECK_TIME(io.openx.out.write_time, write_time);
out 373 source4/torture/raw/open.c CHECK_VAL(io.openx.out.action, OPENX_ACTION_EXISTED);
out 374 source4/torture/raw/open.c CHECK_VAL(io.openx.out.unknown, 0);
out 375 source4/torture/raw/open.c CHECK_ALL_INFO(io.openx.out.attrib, attrib & ~FILE_ATTRIBUTE_NONINDEXED);
out 385 source4/torture/raw/open.c smbcli_close(cli->tree, io.openx.out.file.fnum);
out 390 source4/torture/raw/open.c smbcli_close(cli->tree, io.openx.out.file.fnum);
out 410 source4/torture/raw/open.c smbcli_close(cli->tree, io.openx.out.file.fnum);
out 419 source4/torture/raw/open.c fnum = io.openx.out.file.fnum;
out 446 source4/torture/raw/open.c smbcli_close(cli->tree, io.openx.out.file.fnum);
out 453 source4/torture/raw/open.c CHECK_VAL(io.openx.out.access_mask, SEC_STD_ALL);
out 454 source4/torture/raw/open.c smbcli_close(cli->tree, io.openx.out.file.fnum);
out 480 source4/torture/raw/open.c CHECK_RDWR(io.openx.out.file.fnum, RDWR_RDONLY);
out 481 source4/torture/raw/open.c smbcli_close(cli->tree, io.openx.out.file.fnum);
out 586 source4/torture/raw/open.c smbcli_close(cli->tree, io.t2open.out.file.fnum);
out 599 source4/torture/raw/open.c fnum = io.t2open.out.file.fnum;
out 601 source4/torture/raw/open.c CHECK_ALL_INFO(io.t2open.out.size, size);
out 604 source4/torture/raw/open.c CHECK_VAL(io.t2open.out.write_time, 0);
out 606 source4/torture/raw/open.c CHECK_ALL_INFO(io.t2open.out.attrib, attrib & ~FILE_ATTRIBUTE_NONINDEXED);
out 607 source4/torture/raw/open.c CHECK_VAL(io.t2open.out.access, OPENX_MODE_DENY_NONE | OPENX_MODE_ACCESS_RDWR);
out 608 source4/torture/raw/open.c CHECK_VAL(io.t2open.out.ftype, 0);
out 609 source4/torture/raw/open.c CHECK_VAL(io.t2open.out.devstate, 0);
out 610 source4/torture/raw/open.c CHECK_VAL(io.t2open.out.action, OPENX_ACTION_CREATED);
out 629 source4/torture/raw/open.c smbcli_close(cli->tree, io.t2open.out.file.fnum);
out 633 source4/torture/raw/open.c smbcli_close(cli->tree, io.t2open.out.file.fnum);
out 730 source4/torture/raw/open.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 740 source4/torture/raw/open.c fnum = io.ntcreatex.out.file.fnum;
out 742 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
out 743 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_CREATED);
out 744 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
out 745 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
out 746 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
out 747 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
out 748 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
out 749 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
out 750 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.size, size);
out 751 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
out 752 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
out 767 source4/torture/raw/open.c fnum = io.ntcreatex.out.file.fnum;
out 769 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
out 770 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_EXISTED);
out 771 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
out 772 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
out 773 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
out 774 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
out 775 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
out 776 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
out 777 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.size, size);
out 778 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
out 779 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
out 804 source4/torture/raw/open.c fnum = io.ntcreatex.out.file.fnum;
out 806 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
out 807 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_CREATED);
out 808 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
out 809 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
out 810 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
out 811 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
out 812 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
out 813 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.attrib & ~FILE_ATTRIBUTE_NONINDEXED,
out 815 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
out 816 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.size, size);
out 817 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
out 818 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.is_directory, 1);
out 819 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.size, 0);
out 820 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.alloc_size, 0);
out 821 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
out 907 source4/torture/raw/open.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 917 source4/torture/raw/open.c fnum = io.ntcreatex.out.file.fnum;
out 919 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
out 920 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_CREATED);
out 921 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
out 922 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
out 923 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
out 924 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
out 925 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
out 926 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
out 927 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.size, size);
out 928 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
out 929 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
out 944 source4/torture/raw/open.c fnum = io.ntcreatex.out.file.fnum;
out 946 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
out 947 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_EXISTED);
out 948 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
out 949 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
out 950 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
out 951 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
out 952 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
out 953 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
out 954 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.size, size);
out 955 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
out 956 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
out 963 source4/torture/raw/open.c fnum = io.ntcreatex.out.file.fnum;
out 965 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
out 966 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_EXISTED);
out 967 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
out 968 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
out 969 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
out 970 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
out 971 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
out 972 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
out 973 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.size, size);
out 974 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
out 975 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
out 991 source4/torture/raw/open.c fnum = io.ntcreatex.out.file.fnum;
out 993 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
out 994 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_EXISTED);
out 995 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
out 996 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
out 997 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
out 998 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
out 999 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
out 1000 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
out 1001 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.size, size);
out 1002 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
out 1003 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
out 1028 source4/torture/raw/open.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1068 source4/torture/raw/open.c fnum = io.ntcreatex.out.file.fnum;
out 1070 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
out 1071 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_CREATED);
out 1072 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.create_time, create_time);
out 1073 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.access_time, access_time);
out 1074 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.write_time, write_time);
out 1075 source4/torture/raw/open.c CHECK_NTTIME(io.ntcreatex.out.change_time, change_time);
out 1076 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
out 1077 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.attrib & ~FILE_ATTRIBUTE_NONINDEXED,
out 1079 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.alloc_size, alloc_size);
out 1080 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.size, size);
out 1081 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.is_directory, directory);
out 1082 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.is_directory, 1);
out 1083 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.size, 0);
out 1084 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.alloc_size, 0);
out 1085 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.file_type, FILE_TYPE_DISK);
out 1134 source4/torture/raw/open.c io2.lockx.in.file.fnum = io.ntcreatex.out.file.fnum;
out 1165 source4/torture/raw/open.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1166 source4/torture/raw/open.c smbcli_close(cli->tree, io1.ntcreatex.out.file.fnum);
out 1192 source4/torture/raw/open.c fnum = io.mknew.out.file.fnum;
out 1204 source4/torture/raw/open.c fnum = io.mknew.out.file.fnum;
out 1214 source4/torture/raw/open.c fnum = io.mknew.out.file.fnum;
out 1247 source4/torture/raw/open.c fnum = io.create.out.file.fnum;
out 1252 source4/torture/raw/open.c smbcli_close(cli->tree, io.create.out.file.fnum);
out 1260 source4/torture/raw/open.c fnum = io.create.out.file.fnum;
out 1270 source4/torture/raw/open.c fnum = io.create.out.file.fnum;
out 1303 source4/torture/raw/open.c fnum = io.ctemp.out.file.fnum;
out 1305 source4/torture/raw/open.c name = io.ctemp.out.name;
out 1312 source4/torture/raw/open.c fname = finfo.name_info.out.fname.s;
out 1362 source4/torture/raw/open.c io.openxreadx.out.data = (uint8_t *)buf2;
out 1366 source4/torture/raw/open.c fnum = io.openxreadx.out.file.fnum;
out 1416 source4/torture/raw/open.c fnum = io.openx.out.file.fnum;
out 1461 source4/torture/raw/open.c fnum = io.openx.out.file.fnum;
out 1625 source4/torture/raw/open.c fnum = io.ntcreatex.out.file.fnum;
out 1627 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
out 1629 source4/torture/raw/open.c CHECK_VAL(io.ntcreatex.out.create_action, NTCREATEX_ACTION_CREATED);
out 1630 source4/torture/raw/open.c CHECK_ALL_INFO(io.ntcreatex.out.attrib, attrib);
out 99 source4/torture/raw/openbench.c state->tree = io->out.tree;
out 261 source4/torture/raw/openbench.c state->open_fnum = state->open_parms.ntcreatex.out.file.fnum;
out 242 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 243 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, EXCLUSIVE_OPLOCK_RETURN);
out 310 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 311 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, EXCLUSIVE_OPLOCK_RETURN);
out 316 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 317 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 402 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 403 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, EXCLUSIVE_OPLOCK_RETURN);
out 466 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 467 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, EXCLUSIVE_OPLOCK_RETURN);
out 476 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 477 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, NO_OPLOCK_RETURN);
out 535 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 536 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, EXCLUSIVE_OPLOCK_RETURN);
out 547 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 548 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 603 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 604 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, EXCLUSIVE_OPLOCK_RETURN);
out 673 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 674 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 754 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 755 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 833 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 834 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 898 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 899 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 961 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 962 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1029 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1030 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1036 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 1037 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 1108 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 1109 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1118 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1119 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1176 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1177 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1188 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 1189 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, NO_OPLOCK_RETURN);
out 1245 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1246 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1260 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 1265 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 1279 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 1282 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 1350 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1353 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, 0);
out 1367 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 1370 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 1466 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1469 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1541 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1544 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1613 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1614 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1630 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 1631 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 1689 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1690 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1706 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 1707 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 1770 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1773 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1839 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1840 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1856 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 1857 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 1915 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1916 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 1986 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 1987 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 2058 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 2059 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 2080 source4/torture/raw/oplock.c CHECK_STRMATCH(qfi.all_info.out.fname.s, fname2);
out 2100 source4/torture/raw/oplock.c CHECK_STRMATCH(qfi.all_info.out.fname.s, fname3);
out 2160 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 2161 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, EXCLUSIVE_OPLOCK_RETURN);
out 2182 source4/torture/raw/oplock.c CHECK_STRMATCH(qfi.all_info.out.fname.s, fname2);
out 2202 source4/torture/raw/oplock.c CHECK_STRMATCH(qfi.all_info.out.fname.s, fname3);
out 2260 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 2261 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, EXCLUSIVE_OPLOCK_RETURN);
out 2283 source4/torture/raw/oplock.c CHECK_STRMATCH(qfi.all_info.out.fname.s, fname1);
out 2291 source4/torture/raw/oplock.c CHECK_STRMATCH(qpi.all_info.out.fname.s, fname1);
out 2310 source4/torture/raw/oplock.c CHECK_STRMATCH(qpi.all_info.out.fname.s, fname1);
out 2385 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 2386 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 2407 source4/torture/raw/oplock.c CHECK_STRMATCH(qfi.all_info.out.fname.s, fname2);
out 2420 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 2421 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 2446 source4/torture/raw/oplock.c CHECK_STRMATCH(qfi.all_info.out.fname.s, fname3);
out 2454 source4/torture/raw/oplock.c CHECK_STRMATCH(qfi.all_info.out.fname.s, fname3);
out 2510 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 2511 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 2586 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 2587 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 2608 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 2612 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 2675 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 2676 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 2683 source4/torture/raw/oplock.c fnum3 = io.ntcreatex.out.file.fnum;
out 2684 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, NO_OPLOCK_RETURN);
out 2696 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 2697 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 2762 source4/torture/raw/oplock.c fnum3 = io.ntcreatex.out.file.fnum;
out 2763 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 2770 source4/torture/raw/oplock.c fnum2 = io.ntcreatex.out.file.fnum;
out 2771 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, LEVEL_II_OPLOCK_RETURN);
out 2833 source4/torture/raw/oplock.c fnum = io.ntcreatex.out.file.fnum;
out 2834 source4/torture/raw/oplock.c CHECK_VAL(io.ntcreatex.out.oplock_level, BATCH_OPLOCK_RETURN);
out 3080 source4/torture/raw/oplock.c if (io.ntcreatex.out.oplock_level != BATCH_OPLOCK_RETURN) {
out 3083 source4/torture/raw/oplock.c io.ntcreatex.out.oplock_level);
out 3086 source4/torture/raw/oplock.c hold_info[i].fnum = io.ntcreatex.out.file.fnum;
out 151 source4/torture/raw/pingpong.c io.readx.out.data = c;
out 186 source4/torture/raw/qfileinfo.c #define VAL_EQUAL(n1, v1, n2, v2) do {if (s1->n1.out.v1 != s2->n2.out.v2) { \
out 188 source4/torture/raw/qfileinfo.c #n1, #v1, (uint_t)s1->n1.out.v1, \
out 189 source4/torture/raw/qfileinfo.c #n2, #v2, (uint_t)s2->n2.out.v2, \
out 194 source4/torture/raw/qfileinfo.c #define STR_EQUAL(n1, v1, n2, v2) do {if (strcmp_safe(s1->n1.out.v1.s, s2->n2.out.v2.s) || \
out 195 source4/torture/raw/qfileinfo.c s1->n1.out.v1.private_length != s2->n2.out.v2.private_length) { \
out 197 source4/torture/raw/qfileinfo.c #n1, #v1, s1->n1.out.v1.s, s1->n1.out.v1.private_length, \
out 198 source4/torture/raw/qfileinfo.c #n2, #v2, s2->n2.out.v2.s, s2->n2.out.v2.private_length, \
out 203 source4/torture/raw/qfileinfo.c #define STRUCT_EQUAL(n1, v1, n2, v2) do {if (memcmp(&s1->n1.out.v1,&s2->n2.out.v2,sizeof(s1->n1.out.v1))) { \
out 214 source4/torture/raw/qfileinfo.c #define VAL_UNKNOWN(n1, v1) do {if (s1->n1.out.v1 != 0) { \
out 217 source4/torture/raw/qfileinfo.c (uint_t)s1->n1.out.v1, \
out 218 source4/torture/raw/qfileinfo.c (uint_t)s1->n1.out.v1, \
out 307 source4/torture/raw/qfileinfo.c if (!s1 || s1->stream_info.out.num_streams == 0) {
out 310 source4/torture/raw/qfileinfo.c s1 ? s1->stream_info.out.num_streams : -1);
out 402 source4/torture/raw/qfileinfo.c if (s1 && memcmp(&s1->stype.out.tfield, &correct_time, sizeof(correct_time)) != 0) { \
out 404 source4/torture/raw/qfileinfo.c nt_time_string(mem_ctx, s1->stype.out.tfield), \
out 409 source4/torture/raw/qfileinfo.c if (s1 && memcmp(&s1->stype.out.tfield, &correct_time, sizeof(correct_time)) != 0) { \
out 411 source4/torture/raw/qfileinfo.c nt_time_string(mem_ctx, s1->stype.out.tfield), \
out 418 source4/torture/raw/qfileinfo.c if (s1 && dos_nt_time_cmp(s1->stype.out.tfield, correct_time) != 0) { \
out 420 source4/torture/raw/qfileinfo.c timestring(mem_ctx, s1->stype.out.tfield), \
out 425 source4/torture/raw/qfileinfo.c if (s1 && dos_nt_time_cmp(s1->stype.out.tfield, correct_time) != 0) { \
out 427 source4/torture/raw/qfileinfo.c timestring(mem_ctx, s1->stype.out.tfield), \
out 435 source4/torture/raw/qfileinfo.c if (s1 && unx_nt_time_cmp(s1->stype.out.tfield, correct_time) != 0) { \
out 437 source4/torture/raw/qfileinfo.c timestring(mem_ctx, s1->stype.out.tfield), \
out 442 source4/torture/raw/qfileinfo.c if (s1 && unx_nt_time_cmp(s1->stype.out.tfield, correct_time) != 0) { \
out 444 source4/torture/raw/qfileinfo.c timestring(mem_ctx, s1->stype.out.tfield), \
out 452 source4/torture/raw/qfileinfo.c correct_time = s1->basic_info.out.create_time;
out 464 source4/torture/raw/qfileinfo.c correct_time = s1->basic_info.out.access_time;
out 476 source4/torture/raw/qfileinfo.c correct_time = s1->basic_info.out.write_time;
out 489 source4/torture/raw/qfileinfo.c correct_time = s1->basic_info.out.change_time;
out 500 source4/torture/raw/qfileinfo.c if (s1 && s1->stype.out.tfield != correct_size) { \
out 502 source4/torture/raw/qfileinfo.c (uint_t)s1->stype.out.tfield, \
out 507 source4/torture/raw/qfileinfo.c if (s1 && s1->stype.out.tfield != correct_size) { \
out 509 source4/torture/raw/qfileinfo.c (uint_t)s1->stype.out.tfield, \
out 515 source4/torture/raw/qfileinfo.c correct_size = s1->standard_info.out.size;
out 536 source4/torture/raw/qfileinfo.c correct_size = s1->standard_info.out.alloc_size;
out 554 source4/torture/raw/qfileinfo.c if (s1 && s1->stype.out.tfield != correct_attrib) { \
out 556 source4/torture/raw/qfileinfo.c (uint_t)s1->stype.out.tfield, \
out 561 source4/torture/raw/qfileinfo.c if (s1 && s1->stype.out.tfield != correct_attrib) { \
out 563 source4/torture/raw/qfileinfo.c (uint_t)s1->stype.out.tfield, \
out 569 source4/torture/raw/qfileinfo.c correct_attrib = s1->basic_info.out.attrib;
out 590 source4/torture/raw/qfileinfo.c if (s1 && (strcmp_safe(s1->stype.out.tfield.s, correct_name) != 0 || \
out 591 source4/torture/raw/qfileinfo.c wire_bad_flags(&s1->stype.out.tfield, flags, tree->session->transport))) { \
out 593 source4/torture/raw/qfileinfo.c s1->stype.out.tfield.s, s1->stype.out.tfield.private_length); \
out 597 source4/torture/raw/qfileinfo.c if (s1 && (strcmp_safe(s1->stype.out.tfield.s, correct_name) != 0 || \
out 598 source4/torture/raw/qfileinfo.c wire_bad_flags(&s1->stype.out.tfield, flags, tree->session->transport))) { \
out 600 source4/torture/raw/qfileinfo.c s1->stype.out.tfield.s, s1->stype.out.tfield.private_length); \
out 609 source4/torture/raw/qfileinfo.c if (s1 && !s1->all_info.out.fname.s) {
out 612 source4/torture/raw/qfileinfo.c if (s1 && s1->all_info.out.fname.s) {
out 613 source4/torture/raw/qfileinfo.c char *p = strrchr(s1->all_info.out.fname.s, '\\');
out 616 source4/torture/raw/qfileinfo.c s1->all_info.out.fname.s);
out 621 source4/torture/raw/qfileinfo.c s1->all_info.out.fname.s);
out 625 source4/torture/raw/qfileinfo.c if (wire_bad_flags(&s1->all_info.out.fname, STR_UNICODE, tree->session->transport)) {
out 633 source4/torture/raw/qfileinfo.c correct_name = s1->alt_name_info.out.fname.s;
out 667 source4/torture/raw/qfileinfo.c for (i=0;i<s1->all_eas.out.num_eas;i++) {
out 669 source4/torture/raw/qfileinfo.c s1->all_eas.out.eas[i].flags,
out 670 source4/torture/raw/qfileinfo.c s1->all_eas.out.eas[i].name.s,
out 671 source4/torture/raw/qfileinfo.c (int)s1->all_eas.out.eas[i].value.length,
out 672 source4/torture/raw/qfileinfo.c (int)s1->all_eas.out.eas[i].value.length,
out 673 source4/torture/raw/qfileinfo.c s1->all_eas.out.eas[i].value.data);
out 677 source4/torture/raw/qfileinfo.c if (s1->all_eas.out.num_eas == 0) {
out 678 source4/torture/raw/qfileinfo.c if (s2->all_info.out.ea_size != 0) {
out 680 source4/torture/raw/qfileinfo.c s2->all_info.out.ea_size);
out 683 source4/torture/raw/qfileinfo.c if (s2->all_info.out.ea_size !=
out 684 source4/torture/raw/qfileinfo.c ea_list_size(s1->all_eas.out.num_eas, s1->all_eas.out.eas)) {
out 686 source4/torture/raw/qfileinfo.c (int)ea_list_size(s1->all_eas.out.num_eas, s1->all_eas.out.eas),
out 687 source4/torture/raw/qfileinfo.c (int)s2->all_info.out.ea_size);
out 694 source4/torture/raw/qfileinfo.c for (i=0;i<s1->all_eas.out.num_eas;i++) {
out 703 source4/torture/raw/qfileinfo.c if (s1 && s2 && s1->stype1.out.tfield1 != s2->stype2.out.tfield2) { \
out 706 source4/torture/raw/qfileinfo.c s1->stype1.out.tfield1, s2->stype2.out.tfield2); \
out 710 source4/torture/raw/qfileinfo.c if (s1 && s2 && s1->stype1.out.tfield1 != s2->stype2.out.tfield2) { \
out 713 source4/torture/raw/qfileinfo.c s1->stype1.out.tfield1, s2->stype2.out.tfield2); \
out 717 source4/torture/raw/qfileinfo.c if (s1 && s2 && s1->stype1.out.tfield1 != s2->stype2.out.tfield2) { \
out 720 source4/torture/raw/qfileinfo.c s1->stype1.out.tfield1, s2->stype2.out.tfield2); \
out 724 source4/torture/raw/qfileinfo.c if (s1 && s2 && s1->stype1.out.tfield1 != s2->stype2.out.tfield2) { \
out 727 source4/torture/raw/qfileinfo.c s1->stype1.out.tfield1, s2->stype2.out.tfield2); \
out 739 source4/torture/raw/qfileinfo.c if (s1->basic_info.out.attrib != FILE_ATTRIBUTE_NORMAL) {
out 740 source4/torture/raw/qfileinfo.c printf("(%d) attrib basic_info/nlink incorrect - %d should be %d\n", __LINE__, s1->basic_info.out.attrib, FILE_ATTRIBUTE_NORMAL);
out 746 source4/torture/raw/qfileinfo.c if (s1->standard_info.out.nlink != 1) {
out 747 source4/torture/raw/qfileinfo.c printf("(%d) nlinks standard_info/nlink incorrect - %d should be 1\n", __LINE__, s1->standard_info.out.nlink);
out 750 source4/torture/raw/qfileinfo.c if (s1->standard_info.out.delete_pending != 1) {
out 751 source4/torture/raw/qfileinfo.c printf("(%d) nlinks standard_info/delete_pending incorrect - %d should be 1\n", __LINE__, s1->standard_info.out.delete_pending);
out 772 source4/torture/raw/qfileinfo.c torture_comment(torture, "file_id=%.0f\n", (double)s1->internal_information.out.file_id);
out 779 source4/torture/raw/qfileinfo.c (double)s2->position_information.out.position,
out 780 source4/torture/raw/qfileinfo.c (double)s1->position_information.out.position );
out 795 source4/torture/raw/qfileinfo.c if (s1 && s1->stype.out.tfield != 0) { \
out 798 source4/torture/raw/qfileinfo.c (uint_t)s1->stype.out.tfield); \
out 801 source4/torture/raw/qfileinfo.c if (s1 && s1->stype.out.tfield != 0) { \
out 804 source4/torture/raw/qfileinfo.c (uint_t)s1->stype.out.tfield); \
out 72 source4/torture/raw/qfsinfo.c #define VAL_EQUAL(n1, v1, n2, v2) do {if (s1->n1.out.v1 != s2->n2.out.v2) { \
out 74 source4/torture/raw/qfsinfo.c #n1, #v1, (uint_t)s1->n1.out.v1, \
out 75 source4/torture/raw/qfsinfo.c #n2, #v2, (uint_t)s2->n2.out.v2, \
out 80 source4/torture/raw/qfsinfo.c #define VAL_APPROX_EQUAL(n1, v1, n2, v2) do {if (abs((int)(s1->n1.out.v1) - (int)(s2->n2.out.v2)) > 0.1*s1->n1.out.v1) { \
out 82 source4/torture/raw/qfsinfo.c #n1, #v1, (uint_t)s1->n1.out.v1, \
out 83 source4/torture/raw/qfsinfo.c #n2, #v2, (uint_t)s2->n2.out.v2, \
out 89 source4/torture/raw/qfsinfo.c if (strcmp_safe(s1->n1.out.v1, s2->n2.out.v2)) { \
out 91 source4/torture/raw/qfsinfo.c #n1, #v1, s1->n1.out.v1, \
out 92 source4/torture/raw/qfsinfo.c #n2, #v2, s2->n2.out.v2, \
out 97 source4/torture/raw/qfsinfo.c #define STRUCT_EQUAL(n1, v1, n2, v2) do {if (memcmp(&s1->n1.out.v1,&s2->n2.out.v2,sizeof(s1->n1.out.v1))) { \
out 107 source4/torture/raw/qfsinfo.c #define VAL_UNKNOWN(n1, v1) do {if (s1->n1.out.v1 != 0) { \
out 110 source4/torture/raw/qfsinfo.c (uint_t)s1->n1.out.v1, \
out 111 source4/torture/raw/qfsinfo.c (uint_t)s1->n1.out.v1, \
out 181 source4/torture/raw/qfsinfo.c torture_comment(torture, "volume_info.volume_name = '%s'\n", s1->volume_info.out.volume_name.s);
out 192 source4/torture/raw/qfsinfo.c torture_comment(torture, "attribute_info.fs_type = '%s'\n", s1->attribute_info.out.fs_type.s);
out 200 source4/torture/raw/qfsinfo.c double scale = s1->dskattr.out.blocks_per_unit * s1->dskattr.out.block_size;
out 202 source4/torture/raw/qfsinfo.c s1->dskattr.out.units_total *
out 203 source4/torture/raw/qfsinfo.c s1->dskattr.out.blocks_per_unit *
out 204 source4/torture/raw/qfsinfo.c s1->dskattr.out.block_size / scale;
out 206 source4/torture/raw/qfsinfo.c s2->allocation.out.sectors_per_unit *
out 207 source4/torture/raw/qfsinfo.c s2->allocation.out.total_alloc_units *
out 208 source4/torture/raw/qfsinfo.c s2->allocation.out.bytes_per_sector / scale;
out 222 source4/torture/raw/qfsinfo.c double scale = s1->dskattr.out.blocks_per_unit * s1->dskattr.out.block_size;
out 224 source4/torture/raw/qfsinfo.c s1->dskattr.out.units_free *
out 225 source4/torture/raw/qfsinfo.c s1->dskattr.out.blocks_per_unit *
out 226 source4/torture/raw/qfsinfo.c s1->dskattr.out.block_size / scale;
out 228 source4/torture/raw/qfsinfo.c s2->allocation.out.sectors_per_unit *
out 229 source4/torture/raw/qfsinfo.c s2->allocation.out.avail_alloc_units *
out 230 source4/torture/raw/qfsinfo.c s2->allocation.out.bytes_per_sector / scale;
out 280 source4/torture/raw/qfsinfo.c if (s1->stype.out.field.s && wire_bad_flags(&s1->stype.out.field, flags, cli->transport)) { \
out 118 source4/torture/raw/read.c io.read.out.data = buf;
out 122 source4/torture/raw/read.c CHECK_VALUE(io.read.out.nread, 0);
out 128 source4/torture/raw/read.c CHECK_VALUE(io.read.out.nread, 0);
out 145 source4/torture/raw/read.c CHECK_VALUE(io.read.out.nread, strlen(test_data));
out 157 source4/torture/raw/read.c CHECK_VALUE(io.read.out.nread, strlen(test_data)-1);
out 170 source4/torture/raw/read.c CHECK_VALUE(io.read.out.nread, 0);
out 182 source4/torture/raw/read.c CHECK_BUFFER(buf, seed, io.read.out.nread);
out 245 source4/torture/raw/read.c io.lockread.out.data = buf;
out 249 source4/torture/raw/read.c CHECK_VALUE(io.lockread.out.nread, 0);
out 284 source4/torture/raw/read.c CHECK_VALUE(io.lockread.out.nread, strlen(test_data));
out 300 source4/torture/raw/read.c CHECK_VALUE(io.lockread.out.nread, strlen(test_data)-1);
out 313 source4/torture/raw/read.c CHECK_VALUE(io.lockread.out.nread, 0);
out 328 source4/torture/raw/read.c CHECK_BUFFER(buf, seed, io.lockread.out.nread);
out 392 source4/torture/raw/read.c io.readx.out.data = buf;
out 396 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, 0);
out 397 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.remaining, 0xFFFF);
out 398 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.compaction_mode, 0);
out 405 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, 0);
out 406 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.remaining, 0xFFFF);
out 407 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.compaction_mode, 0);
out 426 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, strlen(test_data));
out 427 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.remaining, 0xFFFF);
out 428 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.compaction_mode, 0);
out 441 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, strlen(test_data)-1);
out 442 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.remaining, 0xFFFF);
out 443 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.compaction_mode, 0);
out 457 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, 0);
out 458 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.remaining, 0xFFFF);
out 459 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.compaction_mode, 0);
out 469 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.remaining, 0xFFFF);
out 470 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.compaction_mode, 0);
out 471 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, strlen(test_data));
out 489 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.remaining, 0xFFFF);
out 490 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.compaction_mode, 0);
out 491 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, io.readx.in.maxcnt);
out 492 source4/torture/raw/read.c CHECK_BUFFER(buf, seed, io.readx.out.nread);
out 500 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.remaining, 0xFFFF);
out 501 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.compaction_mode, 0);
out 504 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, 80000);
out 506 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, 0);
out 508 source4/torture/raw/read.c CHECK_BUFFER(buf, seed, io.readx.out.nread);
out 517 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.remaining, 0xFFFF);
out 518 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.compaction_mode, 0);
out 519 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, io.readx.in.maxcnt);
out 520 source4/torture/raw/read.c CHECK_BUFFER(buf, seed, io.readx.out.nread);
out 529 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.remaining, 0xFFFF);
out 530 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.compaction_mode, 0);
out 531 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, io.readx.in.maxcnt);
out 532 source4/torture/raw/read.c CHECK_BUFFER(buf, seed, io.readx.out.nread);
out 541 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, 0xFFFF);
out 548 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, 0x10000);
out 550 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, 0);
out 558 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, 0x10001);
out 560 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, 0);
out 590 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, 0);
out 600 source4/torture/raw/read.c CHECK_VALUE(io.readx.out.nread, 0);
out 647 source4/torture/raw/read.c io.readbraw.out.data = buf;
out 651 source4/torture/raw/read.c CHECK_VALUE(io.readbraw.out.nread, 0);
out 658 source4/torture/raw/read.c CHECK_VALUE(io.readbraw.out.nread, 0);
out 664 source4/torture/raw/read.c CHECK_VALUE(io.readbraw.out.nread, 0);
out 676 source4/torture/raw/read.c CHECK_VALUE(io.readbraw.out.nread, strlen(test_data));
out 689 source4/torture/raw/read.c CHECK_VALUE(io.readbraw.out.nread, strlen(test_data)-1);
out 703 source4/torture/raw/read.c CHECK_VALUE(io.readbraw.out.nread, 0);
out 716 source4/torture/raw/read.c CHECK_VALUE(io.readbraw.out.nread, 0xFFFF);
out 717 source4/torture/raw/read.c CHECK_BUFFER(buf, seed, io.readbraw.out.nread);
out 726 source4/torture/raw/read.c CHECK_VALUE(io.readbraw.out.nread, io.readbraw.in.maxcnt);
out 727 source4/torture/raw/read.c CHECK_BUFFER(buf, seed, io.readbraw.out.nread);
out 736 source4/torture/raw/read.c CHECK_VALUE(io.readbraw.out.nread, io.readbraw.in.maxcnt);
out 737 source4/torture/raw/read.c CHECK_BUFFER(buf, seed, io.readbraw.out.nread);
out 753 source4/torture/raw/read.c CHECK_VALUE(io.readbraw.out.nread, 0);
out 763 source4/torture/raw/read.c CHECK_VALUE(io.readbraw.out.nread, 0);
out 773 source4/torture/raw/read.c CHECK_VALUE(io.readbraw.out.nread, 0);
out 821 source4/torture/raw/read.c fnum = op.ntcreatex.out.file.fnum;
out 832 source4/torture/raw/read.c CHECK_VALUE(wr.writex.out.nwritten, ARRAY_SIZE(data));
out 852 source4/torture/raw/read.c fnum = op.ntcreatex.out.file.fnum;
out 862 source4/torture/raw/read.c rd.readx.out.data = buf;
out 865 source4/torture/raw/read.c CHECK_VALUE(rd.readx.out.nread, ARRAY_SIZE(data));
out 866 source4/torture/raw/read.c CHECK_VALUE(rd.readx.out.remaining, 0xFFFF);
out 867 source4/torture/raw/read.c CHECK_VALUE(rd.readx.out.compaction_mode, 0);
out 877 source4/torture/raw/read.c rd.readx.out.data = buf;
out 899 source4/torture/raw/read.c fnum = op.ntcreatex.out.file.fnum;
out 909 source4/torture/raw/read.c rd.readx.out.data = buf;
out 912 source4/torture/raw/read.c CHECK_VALUE(rd.readx.out.nread, ARRAY_SIZE(data));
out 913 source4/torture/raw/read.c CHECK_VALUE(rd.readx.out.remaining, 0xFFFF);
out 914 source4/torture/raw/read.c CHECK_VALUE(rd.readx.out.compaction_mode, 0);
out 924 source4/torture/raw/read.c rd.readx.out.data = buf;
out 927 source4/torture/raw/read.c CHECK_VALUE(rd.readx.out.nread, ARRAY_SIZE(data));
out 928 source4/torture/raw/read.c CHECK_VALUE(rd.readx.out.remaining, 0xFFFF);
out 929 source4/torture/raw/read.c CHECK_VALUE(rd.readx.out.compaction_mode, 0);
out 84 source4/torture/raw/rename.c fnum = op.ntcreatex.out.file.fnum;
out 104 source4/torture/raw/rename.c fnum = op.ntcreatex.out.file.fnum;
out 125 source4/torture/raw/rename.c if (strcmp(finfo.all_info.out.fname.s, Fname1) != 0) {
out 128 source4/torture/raw/rename.c finfo.all_info.out.fname.s, Fname1);
out 225 source4/torture/raw/rename.c fnum = op.ntcreatex.out.file.fnum;
out 245 source4/torture/raw/rename.c printf("Name of the file found %s \n", finfo.all_info.out.fname.s);
out 246 source4/torture/raw/rename.c if (strcmp(finfo.all_info.out.fname.s, finfo.all_info.in.file.path) == 0) {
out 248 source4/torture/raw/rename.c printf("Deleting File %s \n", finfo.all_info.out.fname.s);
out 249 source4/torture/raw/rename.c io_un.unlink.in.pattern = finfo.all_info.out.fname.s;
out 265 source4/torture/raw/rename.c printf("File name after rename %s \n",finfo.all_info.out.fname.s);
out 358 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.nlink, 2);
out 359 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.attrib, FILE_ATTRIBUTE_SYSTEM);
out 364 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.nlink, 2);
out 365 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.attrib, FILE_ATTRIBUTE_SYSTEM);
out 374 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.nlink, 1);
out 375 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.attrib, FILE_ATTRIBUTE_NORMAL);
out 389 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.nlink, 1);
out 390 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.attrib, FILE_ATTRIBUTE_NORMAL);
out 396 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.nlink, 1);
out 397 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.attrib, FILE_ATTRIBUTE_NORMAL);
out 405 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.nlink, 1);
out 406 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.attrib, FILE_ATTRIBUTE_NORMAL);
out 411 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.nlink, 1);
out 412 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.attrib, FILE_ATTRIBUTE_SYSTEM);
out 421 source4/torture/raw/rename.c CHECK_VALUE(finfo.all_info.out.nlink, 1);
out 559 source4/torture/raw/rename.c fnum = io.ntcreatex.out.file.fnum;
out 582 source4/torture/raw/rename.c fnum = io.ntcreatex.out.file.fnum;
out 613 source4/torture/raw/rename.c fnum = io.ntcreatex.out.file.fnum;
out 634 source4/torture/raw/rename.c fnum = io.ntcreatex.out.file.fnum;
out 110 source4/torture/raw/samba3misc.c fnum = io.ntcreatex.out.file.fnum;
out 218 source4/torture/raw/samba3misc.c *fnum = open_parms.openx.out.file.fnum;
out 288 source4/torture/raw/samba3misc.c *fnum = io.openx.out.file.fnum;
out 321 source4/torture/raw/samba3misc.c *fnum = io.openx.out.file.fnum;
out 863 source4/torture/raw/samba3misc.c dnum = io.ntcreatex.out.file.fnum;
out 886 source4/torture/raw/samba3misc.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 932 source4/torture/raw/samba3misc.c fnum1 = io.ntcreatex.out.file.fnum;
out 327 source4/torture/raw/search.c if ((s->sname1.field1) != (v.sname2.out.field2)) { \
out 331 source4/torture/raw/search.c #sname2, #field2, (int)v.sname2.out.field2); \
out 339 source4/torture/raw/search.c if (s->sname1.field1 != (~1 & nt_time_to_unix(v.sname2.out.field2))) { \
out 343 source4/torture/raw/search.c #sname2, #field2, nt_time_string(tctx, v.sname2.out.field2)); \
out 351 source4/torture/raw/search.c if (s->sname1.field1 != v.sname2.out.field2) { \
out 355 source4/torture/raw/search.c #sname2, #field2, nt_time_string(tctx, v.sname2.out.field2)); \
out 363 source4/torture/raw/search.c if (!s->sname1.field1 || strcmp(s->sname1.field1, v.sname2.out.field2.s)) { \
out 367 source4/torture/raw/search.c #sname2, #field2, v.sname2.out.field2.s); \
out 376 source4/torture/raw/search.c strcmp(s->sname1.field1.s, v.sname2.out.field2.s) || \
out 381 source4/torture/raw/search.c #sname2, #field2, v.sname2.out.field2.s); \
out 581 source4/torture/raw/search.c io2.t2fnext.in.handle = io.t2ffirst.out.handle;
out 614 source4/torture/raw/search.c if (io2.search_next.out.count == 0) {
out 617 source4/torture/raw/search.c } else if (io2.t2fnext.out.count == 0 ||
out 618 source4/torture/raw/search.c io2.t2fnext.out.end_of_search) {
out 849 source4/torture/raw/search.c io2.t2fnext.in.handle = io.t2ffirst.out.handle;
out 879 source4/torture/raw/search.c io2.t2fnext.in.handle = io.t2ffirst.out.handle;
out 1041 source4/torture/raw/search.c io.search_first.out.count = 0;
out 1045 source4/torture/raw/search.c if (io.search_first.out.count != 1) {
out 1047 source4/torture/raw/search.c __location__, io.search_first.out.count, i, nt_errstr(status));
out 1074 source4/torture/raw/search.c io2.search_next.out.count = 0;
out 1078 source4/torture/raw/search.c if (io2.search_next.out.count != 1) {
out 1080 source4/torture/raw/search.c __location__, io2.search_next.out.count, i, nt_errstr(status));
out 1107 source4/torture/raw/search.c io2.search_next.out.count = 0;
out 1111 source4/torture/raw/search.c if (io2.search_next.out.count != 1) {
out 1113 source4/torture/raw/search.c __location__, io2.search_next.out.count, i, nt_errstr(status));
out 1206 source4/torture/raw/search.c io2.t2fnext.in.handle = io.t2ffirst.out.handle;
out 1326 source4/torture/raw/search.c nxt.t2fnext.in.handle = io.t2ffirst.out.handle;
out 86 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, 17);
out 89 source4/torture/raw/seek.c CHECK_VALUE(finfo.position_information.out.position, 0);
out 97 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, 14);
out 109 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, finfo.all_info.out.size);
out 117 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, 0xffffffff);
out 124 source4/torture/raw/seek.c CHECK_VALUE(finfo.position_information.out.position, 0);
out 132 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, 999);
out 139 source4/torture/raw/seek.c CHECK_VALUE(finfo.position_information.out.position, 0);
out 154 source4/torture/raw/seek.c CHECK_VALUE(finfo.position_information.out.position, 0);
out 161 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, 2);
out 174 source4/torture/raw/seek.c CHECK_VALUE(finfo.position_information.out.position, 1);
out 178 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, 1);
out 197 source4/torture/raw/seek.c CHECK_VALUE(finfo.position_information.out.position, 25);
out 203 source4/torture/raw/seek.c CHECK_VALUE(finfo.position_information.out.position, 1);
out 217 source4/torture/raw/seek.c CHECK_VALUE(finfo.position_information.out.position, 25);
out 223 source4/torture/raw/seek.c CHECK_VALUE(finfo.position_information.out.position, 0);
out 147 source4/torture/raw/setfileinfo.c if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(status2) && finfo2.stype.out.field != value) { \
out 150 source4/torture/raw/setfileinfo.c (uint_t)value, (uint_t)finfo2.stype.out.field); \
out 157 source4/torture/raw/setfileinfo.c if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(status2) && nt_time_to_unix(finfo2.stype.out.field) != value) { \
out 161 source4/torture/raw/setfileinfo.c (uint_t)nt_time_to_unix(finfo2.stype.out.field)); \
out 163 source4/torture/raw/setfileinfo.c printf("\t%s\n", nt_time_string(torture, finfo2.stype.out.field)); \
out 170 source4/torture/raw/setfileinfo.c if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(status2) && strcmp(finfo2.stype.out.field, value) != 0) { \
out 174 source4/torture/raw/setfileinfo.c finfo2.stype.out.field); \
out 160 source4/torture/raw/streams.c if (finfo.stream_info.out.num_streams != num_exp) {
out 163 source4/torture/raw/streams.c finfo.stream_info.out.num_streams);
out 180 source4/torture/raw/streams.c stream_sort = talloc_memdup(tmp_ctx, finfo.stream_info.out.streams,
out 181 source4/torture/raw/streams.c finfo.stream_info.out.num_streams *
out 188 source4/torture/raw/streams.c qsort(stream_sort, finfo.stream_info.out.num_streams,
out 313 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 322 source4/torture/raw/streams.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 336 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 351 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 388 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 401 source4/torture/raw/streams.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 405 source4/torture/raw/streams.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 451 source4/torture/raw/streams.c fnum1 = io.ntcreatex.out.file.fnum;
out 460 source4/torture/raw/streams.c fnum2 = io.ntcreatex.out.file.fnum;
out 540 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 570 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 631 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 715 source4/torture/raw/streams.c fnum1 = io.ntcreatex.out.file.fnum;
out 724 source4/torture/raw/streams.c fnum2 = io.ntcreatex.out.file.fnum;
out 765 source4/torture/raw/streams.c fnum3 = io.ntcreatex.out.file.fnum;
out 811 source4/torture/raw/streams.c fnum1 = io.ntcreatex.out.file.fnum;
out 823 source4/torture/raw/streams.c CHECK_NTTIME(stinfo.all_info.out.create_time,
out 824 source4/torture/raw/streams.c finfo.all_info.out.create_time);
out 825 source4/torture/raw/streams.c CHECK_NTTIME(stinfo.all_info.out.access_time,
out 826 source4/torture/raw/streams.c finfo.all_info.out.access_time);
out 827 source4/torture/raw/streams.c CHECK_NTTIME(stinfo.all_info.out.write_time,
out 828 source4/torture/raw/streams.c finfo.all_info.out.write_time);
out 829 source4/torture/raw/streams.c CHECK_NTTIME(stinfo.all_info.out.change_time,
out 830 source4/torture/raw/streams.c finfo.all_info.out.change_time);
out 832 source4/torture/raw/streams.c CHECK_VALUE(stinfo.all_info.out.attrib,
out 833 source4/torture/raw/streams.c finfo.all_info.out.attrib);
out 834 source4/torture/raw/streams.c CHECK_VALUE(stinfo.all_info.out.size,
out 835 source4/torture/raw/streams.c finfo.all_info.out.size);
out 836 source4/torture/raw/streams.c CHECK_VALUE(stinfo.all_info.out.delete_pending,
out 837 source4/torture/raw/streams.c finfo.all_info.out.delete_pending);
out 838 source4/torture/raw/streams.c CHECK_VALUE(stinfo.all_info.out.directory,
out 839 source4/torture/raw/streams.c finfo.all_info.out.directory);
out 840 source4/torture/raw/streams.c CHECK_VALUE(stinfo.all_info.out.ea_size,
out 841 source4/torture/raw/streams.c finfo.all_info.out.ea_size);
out 848 source4/torture/raw/streams.c CHECK_STR(rpath, stinfo.name_info.out.fname.s);
out 851 source4/torture/raw/streams.c write_time = finfo.all_info.out.write_time;
out 860 source4/torture/raw/streams.c sinfo.basic_info.in.attrib = stinfo.all_info.out.attrib;
out 878 source4/torture/raw/streams.c CHECK_NTTIME(stinfo.all_info.out.write_time,
out 880 source4/torture/raw/streams.c CHECK_VALUE(stinfo.all_info.out.attrib,
out 881 source4/torture/raw/streams.c finfo.all_info.out.attrib);
out 883 source4/torture/raw/streams.c CHECK_VALUE(stinfo.all_info.out.size,
out 885 source4/torture/raw/streams.c CHECK_VALUE(stinfo.all_info.out.delete_pending,
out 886 source4/torture/raw/streams.c finfo.all_info.out.delete_pending);
out 887 source4/torture/raw/streams.c CHECK_VALUE(stinfo.all_info.out.directory,
out 888 source4/torture/raw/streams.c finfo.all_info.out.directory);
out 889 source4/torture/raw/streams.c CHECK_VALUE(stinfo.all_info.out.ea_size,
out 890 source4/torture/raw/streams.c finfo.all_info.out.ea_size);
out 906 source4/torture/raw/streams.c fnum1 = io.ntcreatex.out.file.fnum;
out 982 source4/torture/raw/streams.c fnum1 = io.ntcreatex.out.file.fnum;
out 1080 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 1086 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 1097 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 1156 source4/torture/raw/streams.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1210 source4/torture/raw/streams.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1225 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 1252 source4/torture/raw/streams.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1269 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 1338 source4/torture/raw/streams.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1388 source4/torture/raw/streams.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1400 source4/torture/raw/streams.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1418 source4/torture/raw/streams.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1436 source4/torture/raw/streams.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1456 source4/torture/raw/streams.c smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);
out 1484 source4/torture/raw/streams.c smbcli_close(cli->tree, io.openx.out.file.fnum);
out 1571 source4/torture/raw/streams.c if (finfo.basic_info.out.attrib != FILE_ATTRIBUTE_ARCHIVE) {
out 1573 source4/torture/raw/streams.c __location__, (unsigned int)finfo.basic_info.out.attrib,
out 1598 source4/torture/raw/streams.c fnum = io.ntcreatex.out.file.fnum;
out 1628 source4/torture/raw/streams.c if (finfo.all_info.out.attrib != FILE_ATTRIBUTE_READONLY) {
out 1631 source4/torture/raw/streams.c (unsigned int)finfo.all_info.out.attrib,
out 1637 source4/torture/raw/streams.c if (nt_time_to_unix(finfo.all_info.out.write_time) != basetime) {
out 344 source4/torture/raw/unlink.c fnum = op.ntcreatex.out.file.fnum;
out 376 source4/torture/raw/unlink.c fnum2 = op.ntcreatex.out.file.fnum;
out 411 source4/torture/raw/unlink.c fnum = op.ntcreatex.out.file.fnum;
out 417 source4/torture/raw/unlink.c fnum2 = op.ntcreatex.out.file.fnum;
out 57 source4/torture/raw/write.c if ((v) != finfo.all_info.out.field) { \
out 59 source4/torture/raw/write.c __location__, #field, (double)v, (double)finfo.all_info.out.field); \
out 136 source4/torture/raw/write.c CHECK_VALUE(io.write.out.nwritten, 0);
out 146 source4/torture/raw/write.c CHECK_VALUE(io.write.out.nwritten, io.write.in.count);
out 165 source4/torture/raw/write.c CHECK_VALUE(io.write.out.nwritten, 4000);
out 205 source4/torture/raw/write.c CHECK_VALUE(io.write.out.nwritten, 4000);
out 271 source4/torture/raw/write.c CHECK_VALUE(io.writex.out.nwritten, 0);
out 281 source4/torture/raw/write.c CHECK_VALUE(io.writex.out.nwritten, io.writex.in.count);
out 300 source4/torture/raw/write.c CHECK_VALUE(io.writex.out.nwritten, 4000);
out 326 source4/torture/raw/write.c CHECK_VALUE(io.writex.out.nwritten, io.writex.in.count);
out 331 source4/torture/raw/write.c CHECK_VALUE(io.writex.out.nwritten, io.writex.in.count);
out 365 source4/torture/raw/write.c CHECK_VALUE(io.writex.out.nwritten, 4000);
out 389 source4/torture/raw/write.c CHECK_VALUE(io.writex.out.nwritten, 4000);
out 452 source4/torture/raw/write.c CHECK_VALUE(io.writeunlock.out.nwritten, io.writeunlock.in.count);
out 475 source4/torture/raw/write.c CHECK_VALUE(io.writeunlock.out.nwritten, io.writeunlock.in.count);
out 496 source4/torture/raw/write.c CHECK_VALUE(io.writeunlock.out.nwritten, 4000);
out 536 source4/torture/raw/write.c CHECK_VALUE(io.writeunlock.out.nwritten, 4000);
out 595 source4/torture/raw/write.c CHECK_VALUE(io.writeclose.out.nwritten, io.writeclose.in.count);
out 599 source4/torture/raw/write.c CHECK_VALUE(io.writeclose.out.nwritten, io.writeclose.in.count);
out 627 source4/torture/raw/write.c CHECK_VALUE(io.writeclose.out.nwritten, io.writeclose.in.count);
out 649 source4/torture/raw/write.c CHECK_VALUE(io.writeclose.out.nwritten, 4000);
out 690 source4/torture/raw/write.c CHECK_VALUE(io.writeclose.out.nwritten, 4000);
out 37 source4/torture/rpc/atsvc.c r.out.job_info = &info;
out 75 source4/torture/rpc/atsvc.c r.in.ctr = r.out.ctr = &ctr;
out 77 source4/torture/rpc/atsvc.c r.in.resume_handle = r.out.resume_handle = &resume_handle;
out 78 source4/torture/rpc/atsvc.c r.out.total_entries = &total_entries;
out 84 source4/torture/rpc/atsvc.c for (i = 0; i < r.out.ctr->entries_read; i++) {
out 85 source4/torture/rpc/atsvc.c if (!test_JobGetInfo(p, tctx, r.out.ctr->first_entry[i].job_id)) {
out 117 source4/torture/rpc/atsvc.c if (!test_JobGetInfo(p, tctx, *r.out.job_id)) {
out 121 source4/torture/rpc/atsvc.c if (!test_JobDel(p, tctx, *r.out.job_id, *r.out.job_id)) {
out 43 source4/torture/rpc/autoidl.c r.out.bind_handle = handle;
out 65 source4/torture/rpc/autoidl.c r.out.connect_handle = handle;
out 52 source4/torture/rpc/bench.c r.out.resume_handle = &resume_handle;
out 53 source4/torture/rpc/bench.c r.out.totalentries = &totalentries;
out 54 source4/torture/rpc/bench.c r.out.info_ctr = &info_ctr;
out 89 source4/torture/rpc/bench.c if (!W_ERROR_IS_OK(r.out.result)) {
out 90 source4/torture/rpc/bench.c printf("NetShareEnumAll level %u failed - %s\n", info_ctr.level, win_errstr(r.out.result));
out 51 source4/torture/rpc/browser.c r.out.info = &info;
out 52 source4/torture/rpc/browser.c r.out.total_entries = &total_entries;
out 59 source4/torture/rpc/browser.c torture_assert_werr_ok(tctx, r.out.result, "BrowserrQueryOtherDomains failed");
out 60 source4/torture/rpc/browser.c torture_assert_int_equal(tctx, *r.out.total_entries, 0, "BrowserrQueryOtherDomains");
out 68 source4/torture/rpc/browser.c torture_assert_werr_ok(tctx, r.out.result, "BrowserrQueryOtherDomains failed");
out 69 source4/torture/rpc/browser.c torture_assert_int_equal(tctx, *r.out.total_entries, 0, "BrowserrQueryOtherDomains");
out 74 source4/torture/rpc/browser.c torture_assert_werr_equal(tctx, WERR_INVALID_PARAM, r.out.result,
out 82 source4/torture/rpc/browser.c torture_assert_werr_equal(tctx, WERR_UNKNOWN_LEVEL, r.out.result,
out 91 source4/torture/rpc/browser.c torture_assert_werr_equal(tctx, WERR_UNKNOWN_LEVEL, r.out.result,
out 97 source4/torture/rpc/browser.c torture_assert_werr_equal(tctx, WERR_UNKNOWN_LEVEL, r.out.result,
out 103 source4/torture/rpc/browser.c torture_assert_werr_equal(tctx, WERR_UNKNOWN_LEVEL, r.out.result,
out 109 source4/torture/rpc/browser.c torture_assert_werr_equal(tctx, WERR_UNKNOWN_LEVEL, r.out.result,
out 81 source4/torture/rpc/dfs.c nt_errstr(status), r.out.error_string);
out 111 source4/torture/rpc/dfs.c nt_errstr(status), r.out.error_string);
out 159 source4/torture/rpc/dfs.c r.out.version = version;
out 191 source4/torture/rpc/dfs.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 193 source4/torture/rpc/dfs.c win_errstr(r.out.result));
out 194 source4/torture/rpc/dfs.c IS_DFS_VERSION_UNSUPPORTED_CALL_W2K3(version, r.out.result);
out 220 source4/torture/rpc/dfs.c } else if (!W_ERROR_IS_OK(r.out.result) &&
out 221 source4/torture/rpc/dfs.c !W_ERROR_EQUAL(WERR_NO_MORE_ITEMS, r.out.result)) {
out 222 source4/torture/rpc/dfs.c printf("dfs_GetInfo failed - %s\n", win_errstr(r.out.result));
out 279 source4/torture/rpc/dfs.c if (level == 1 && rex.out.total) {
out 281 source4/torture/rpc/dfs.c for (i=0;i<*rex.out.total;i++) {
out 283 source4/torture/rpc/dfs.c rex.out.info->e.info1->s[i].path);
out 290 source4/torture/rpc/dfs.c if (level == 300 && rex.out.total) {
out 292 source4/torture/rpc/dfs.c for (i=0;i<*rex.out.total;i++) {
out 295 source4/torture/rpc/dfs.c rex.out.info->e.info300->s[i].dom_root);
out 342 source4/torture/rpc/dfs.c } else if (!W_ERROR_IS_OK(r.out.result) &&
out 343 source4/torture/rpc/dfs.c !W_ERROR_EQUAL(WERR_NO_MORE_ITEMS, r.out.result)) {
out 344 source4/torture/rpc/dfs.c printf("dfs_Enum failed - %s\n", win_errstr(r.out.result));
out 348 source4/torture/rpc/dfs.c if (level == 1 && r.out.total) {
out 350 source4/torture/rpc/dfs.c for (i=0;i<*r.out.total;i++) {
out 351 source4/torture/rpc/dfs.c const char *root = r.out.info->e.info1->s[i].path;
out 413 source4/torture/rpc/dfs.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 415 source4/torture/rpc/dfs.c win_errstr(r.out.result));
out 441 source4/torture/rpc/dfs.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 443 source4/torture/rpc/dfs.c win_errstr(r.out.result));
out 474 source4/torture/rpc/dfs.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 476 source4/torture/rpc/dfs.c win_errstr(r.out.result));
out 477 source4/torture/rpc/dfs.c IS_DFS_VERSION_UNSUPPORTED_CALL_W2K3(version, r.out.result);
out 545 source4/torture/rpc/dfs.c r.in.server_fullname = r.out.server_fullname = &ptr;
out 546 source4/torture/rpc/dfs.c r.in.is_root = r.out.is_root = &is_root;
out 547 source4/torture/rpc/dfs.c r.in.ttl = r.out.ttl = &ttl;
out 553 source4/torture/rpc/dfs.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 555 source4/torture/rpc/dfs.c win_errstr(r.out.result));
out 580 source4/torture/rpc/dfs.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 582 source4/torture/rpc/dfs.c win_errstr(r.out.result));
out 626 source4/torture/rpc/dfs.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 628 source4/torture/rpc/dfs.c win_errstr(r.out.result));
out 629 source4/torture/rpc/dfs.c IS_DFS_VERSION_UNSUPPORTED_CALL_W2K3(version, r.out.result);
out 42 source4/torture/rpc/drsuapi.c r.out.bind_handle = &priv->bind_handle;
out 53 source4/torture/rpc/drsuapi.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 105 source4/torture/rpc/drsuapi.c r.out.ctr = &ctr;
out 106 source4/torture/rpc/drsuapi.c r.out.level_out = &level_out;
out 116 source4/torture/rpc/drsuapi.c r.out.result, names[j].expected,
out 119 source4/torture/rpc/drsuapi.c if (!W_ERROR_IS_OK(r.out.result)) {
out 125 source4/torture/rpc/drsuapi.c r.in.req->req1.level, *r.out.level_out,
out 130 source4/torture/rpc/drsuapi.c for (k=0; k < r.out.ctr->ctr1.count; k++) {
out 131 source4/torture/rpc/drsuapi.c if (strcasecmp_m(r.out.ctr->ctr1.array[k].netbios_name,
out 139 source4/torture/rpc/drsuapi.c for (k=0; k < r.out.ctr->ctr2.count; k++) {
out 140 source4/torture/rpc/drsuapi.c if (strcasecmp_m(r.out.ctr->ctr2.array[k].netbios_name,
out 143 source4/torture/rpc/drsuapi.c priv->dcinfo = r.out.ctr->ctr2.array[k];
out 157 source4/torture/rpc/drsuapi.c r.out.ctr = &ctr;
out 158 source4/torture/rpc/drsuapi.c r.out.level_out = &level_out;
out 170 source4/torture/rpc/drsuapi.c torture_assert_werr_ok(torture, r.out.result,
out 177 source4/torture/rpc/drsuapi.c for (k=0; k < r.out.ctr->ctr01.count; k++) {
out 178 source4/torture/rpc/drsuapi.c if (strcasecmp_m(r.out.ctr->ctr01.array[k].client_account,
out 217 source4/torture/rpc/drsuapi.c r.out.res = &res;
out 218 source4/torture/rpc/drsuapi.c r.out.level_out = &level_out;
out 228 source4/torture/rpc/drsuapi.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 229 source4/torture/rpc/drsuapi.c printf("DsWriteAccountSpn failed - %s\n", win_errstr(r.out.result));
out 244 source4/torture/rpc/drsuapi.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 245 source4/torture/rpc/drsuapi.c printf("DsWriteAccountSpn failed - %s\n", win_errstr(r.out.result));
out 364 source4/torture/rpc/drsuapi.c r.out.info = &info;
out 365 source4/torture/rpc/drsuapi.c r.out.info_type = &info_type;
out 380 source4/torture/rpc/drsuapi.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 381 source4/torture/rpc/drsuapi.c printf("DsReplicaGetInfo failed - %s\n", win_errstr(r.out.result));
out 448 source4/torture/rpc/drsuapi.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 449 source4/torture/rpc/drsuapi.c printf("DsReplicaSync failed - %s\n", win_errstr(r.out.result));
out 512 source4/torture/rpc/drsuapi.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 513 source4/torture/rpc/drsuapi.c printf("DsReplicaUpdateRefs failed - %s\n", win_errstr(r.out.result));
out 559 source4/torture/rpc/drsuapi.c r.out.level_out = &level_out;
out 560 source4/torture/rpc/drsuapi.c r.out.ctr = &ctr;
out 631 source4/torture/rpc/drsuapi.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 632 source4/torture/rpc/drsuapi.c printf("DsGetNCChanges failed - %s\n", win_errstr(r.out.result));
out 671 source4/torture/rpc/drsuapi.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 672 source4/torture/rpc/drsuapi.c printf("QuerySitesByCost failed - %s\n", win_errstr(r.out.result));
out 676 source4/torture/rpc/drsuapi.c if (W_ERROR_IS_OK(r.out.result)) {
out 678 source4/torture/rpc/drsuapi.c if (!W_ERROR_EQUAL(r.out.ctr->ctr1.info[0].error_code, WERR_DS_OBJ_NOT_FOUND) ||
out 679 source4/torture/rpc/drsuapi.c !W_ERROR_EQUAL(r.out.ctr->ctr1.info[1].error_code, WERR_DS_OBJ_NOT_FOUND)) {
out 681 source4/torture/rpc/drsuapi.c win_errstr(r.out.ctr->ctr1.info[0].error_code));
out 685 source4/torture/rpc/drsuapi.c if ((r.out.ctr->ctr1.info[0].site_cost != (uint32_t) -1) ||
out 686 source4/torture/rpc/drsuapi.c (r.out.ctr->ctr1.info[1].site_cost != (uint32_t) -1)) {
out 688 source4/torture/rpc/drsuapi.c (uint32_t) -1, r.out.ctr->ctr1.info[0].site_cost);
out 706 source4/torture/rpc/drsuapi.c r.out.bind_handle = &priv->bind_handle;
out 718 source4/torture/rpc/drsuapi.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 719 source4/torture/rpc/drsuapi.c printf("DsBind failed - %s\n", win_errstr(r.out.result));
out 73 source4/torture/rpc/drsuapi_cracknames.c r.out.level_out = &level_out;
out 74 source4/torture/rpc/drsuapi_cracknames.c r.out.ctr = &ctr;
out 93 source4/torture/rpc/drsuapi_cracknames.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 97 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));
out 106 source4/torture/rpc/drsuapi_cracknames.c if (r.out.ctr->ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_NOT_UNIQUE) {
out 108 source4/torture/rpc/drsuapi_cracknames.c r.out.ctr->ctr1->array[0].status);
out 114 source4/torture/rpc/drsuapi_cracknames.c if (r.out.ctr->ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_NO_MAPPING) {
out 116 source4/torture/rpc/drsuapi_cracknames.c r.out.ctr->ctr1->array[0].status);
out 123 source4/torture/rpc/drsuapi_cracknames.c if (r.out.ctr->ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_RESOLVE_ERROR) {
out 125 source4/torture/rpc/drsuapi_cracknames.c r.out.ctr->ctr1->array[0].status);
out 131 source4/torture/rpc/drsuapi_cracknames.c if (r.out.ctr->ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {
out 132 source4/torture/rpc/drsuapi_cracknames.c printf("Error: %d\n", r.out.ctr->ctr1->array[0].status);
out 149 source4/torture/rpc/drsuapi_cracknames.c n_from[i] = r.out.ctr->ctr1->array[0].result_name;
out 172 source4/torture/rpc/drsuapi_cracknames.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 175 source4/torture/rpc/drsuapi_cracknames.c win_errstr(r.out.result));
out 182 source4/torture/rpc/drsuapi_cracknames.c if (r.out.ctr->ctr1->array[0].status == DRSUAPI_DS_NAME_STATUS_OK) {
out 183 source4/torture/rpc/drsuapi_cracknames.c n_matrix[i][j] = r.out.ctr->ctr1->array[0].result_name;
out 256 source4/torture/rpc/drsuapi_cracknames.c r.out.level_out = &level_out;
out 257 source4/torture/rpc/drsuapi_cracknames.c r.out.ctr = &ctr;
out 274 source4/torture/rpc/drsuapi_cracknames.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 275 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));
out 277 source4/torture/rpc/drsuapi_cracknames.c } else if (r.out.ctr->ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {
out 278 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed on name - %d\n", r.out.ctr->ctr1->array[0].status);
out 286 source4/torture/rpc/drsuapi_cracknames.c dns_domain = r.out.ctr->ctr1->array[0].dns_domain_name;
out 287 source4/torture/rpc/drsuapi_cracknames.c nt4_domain = r.out.ctr->ctr1->array[0].result_name;
out 302 source4/torture/rpc/drsuapi_cracknames.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 303 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));
out 305 source4/torture/rpc/drsuapi_cracknames.c } else if (r.out.ctr->ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {
out 306 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed on name - %d\n", r.out.ctr->ctr1->array[0].status);
out 314 source4/torture/rpc/drsuapi_cracknames.c priv->domain_dns_name = r.out.ctr->ctr1->array[0].dns_domain_name;
out 315 source4/torture/rpc/drsuapi_cracknames.c priv->domain_guid_str = r.out.ctr->ctr1->array[0].result_name;
out 331 source4/torture/rpc/drsuapi_cracknames.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 332 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));
out 334 source4/torture/rpc/drsuapi_cracknames.c } else if (r.out.ctr->ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {
out 335 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed on name - %d\n", r.out.ctr->ctr1->array[0].status);
out 345 source4/torture/rpc/drsuapi_cracknames.c realm_dn_str = r.out.ctr->ctr1->array[0].result_name;
out 382 source4/torture/rpc/drsuapi_cracknames.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 383 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));
out 385 source4/torture/rpc/drsuapi_cracknames.c } else if (r.out.ctr->ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {
out 386 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed on name - %d\n", r.out.ctr->ctr1->array[0].status);
out 394 source4/torture/rpc/drsuapi_cracknames.c priv->domain_obj_dn = r.out.ctr->ctr1->array[0].result_name;
out 411 source4/torture/rpc/drsuapi_cracknames.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 412 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));
out 414 source4/torture/rpc/drsuapi_cracknames.c } else if (r.out.ctr->ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {
out 415 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed on name - %d\n", r.out.ctr->ctr1->array[0].status);
out 423 source4/torture/rpc/drsuapi_cracknames.c FQDN_1779_name = r.out.ctr->ctr1->array[0].result_name;
out 440 source4/torture/rpc/drsuapi_cracknames.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 441 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));
out 443 source4/torture/rpc/drsuapi_cracknames.c } else if (r.out.ctr->ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {
out 444 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed on name - %d\n", r.out.ctr->ctr1->array[0].status);
out 452 source4/torture/rpc/drsuapi_cracknames.c if (strcmp(priv->domain_dns_name, r.out.ctr->ctr1->array[0].dns_domain_name) != 0) {
out 453 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed to return same DNS name - expected %s got %s\n", priv->domain_dns_name, r.out.ctr->ctr1->array[0].dns_domain_name);
out 961 source4/torture/rpc/drsuapi_cracknames.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 962 source4/torture/rpc/drsuapi_cracknames.c printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));
out 964 source4/torture/rpc/drsuapi_cracknames.c } else if (r.out.ctr->ctr1->array[0].status != crack[i].status) {
out 966 source4/torture/rpc/drsuapi_cracknames.c if (r.out.ctr->ctr1->array[0].status != crack[i].alternate_status) {
out 968 source4/torture/rpc/drsuapi_cracknames.c r.out.ctr->ctr1->array[0].status,
out 976 source4/torture/rpc/drsuapi_cracknames.c r.out.ctr->ctr1->array[0].status,
out 982 source4/torture/rpc/drsuapi_cracknames.c && (strcmp(r.out.ctr->ctr1->array[0].result_name,
out 984 source4/torture/rpc/drsuapi_cracknames.c if (strcasecmp(r.out.ctr->ctr1->array[0].result_name,
out 987 source4/torture/rpc/drsuapi_cracknames.c r.out.ctr->ctr1->array[0].result_name,
out 992 source4/torture/rpc/drsuapi_cracknames.c r.out.ctr->ctr1->array[0].result_name,
out 996 source4/torture/rpc/drsuapi_cracknames.c && (strcmp(r.out.ctr->ctr1->array[0].dns_domain_name,
out 999 source4/torture/rpc/drsuapi_cracknames.c r.out.ctr->ctr1->array[0].result_name,
out 43 source4/torture/rpc/dssetup.c torture_assert_werr_ok(tctx, r.out.result, "DsRoleGetPrimaryDomainInformation failed");
out 120 source4/torture/rpc/dssync.c ctx->admin.drsuapi.req.out.bind_handle = &ctx->admin.drsuapi.bind_handle;
out 169 source4/torture/rpc/dssync.c ctx->new_dc.drsuapi.req.out.bind_handle = &ctx->new_dc.drsuapi.bind_handle;
out 202 source4/torture/rpc/dssync.c } else if (!W_ERROR_IS_OK(b->req.out.result)) {
out 203 source4/torture/rpc/dssync.c printf("DsBind failed - %s\n", win_errstr(b->req.out.result));
out 208 source4/torture/rpc/dssync.c if (b->req.out.bind_info) {
out 209 source4/torture/rpc/dssync.c switch (b->req.out.bind_info->length) {
out 212 source4/torture/rpc/dssync.c info24 = &b->req.out.bind_info->info.info24;
out 221 source4/torture/rpc/dssync.c info48 = &b->req.out.bind_info->info.info48;
out 229 source4/torture/rpc/dssync.c b->peer_bind_info28 = b->req.out.bind_info->info.info28;
out 233 source4/torture/rpc/dssync.c b->req.out.bind_info->length);
out 290 source4/torture/rpc/dssync.c r.out.level_out = &level_out;
out 291 source4/torture/rpc/dssync.c r.out.ctr = &ctr;
out 301 source4/torture/rpc/dssync.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 302 source4/torture/rpc/dssync.c printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));
out 306 source4/torture/rpc/dssync.c ctx->domain_dn = r.out.ctr->ctr1->array[0].result_name;
out 320 source4/torture/rpc/dssync.c ctx->site_name = talloc_steal(ctx, search.out.netlogon.data.nt5_ex.client_site);
out 322 source4/torture/rpc/dssync.c printf("cldap_netlogon() returned Server Site-Name: %s.\n",search.out.netlogon.data.nt5_ex.server_site);
out 327 source4/torture/rpc/dssync.c struct ldb_dn *dn = samdb_dns_domain_to_dn(ldb, ctx, search.out.netlogon.data.nt5_ex.dns_domain);
out 731 source4/torture/rpc/dssync.c ZERO_STRUCT(r.out);
out 733 source4/torture/rpc/dssync.c r.out.level_out = &_level;
out 734 source4/torture/rpc/dssync.c r.out.ctr = &ctr;
out 756 source4/torture/rpc/dssync.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 757 source4/torture/rpc/dssync.c printf("DsGetNCChanges failed - %s\n", win_errstr(r.out.result));
out 761 source4/torture/rpc/dssync.c if (ret == true && *r.out.level_out == 1) {
out 763 source4/torture/rpc/dssync.c ctr1 = &r.out.ctr->ctr1;
out 764 source4/torture/rpc/dssync.c } else if (ret == true && *r.out.level_out == 2 &&
out 765 source4/torture/rpc/dssync.c r.out.ctr->ctr2.mszip1.ts) {
out 767 source4/torture/rpc/dssync.c ctr1 = &r.out.ctr->ctr2.mszip1.ts->ctr1;
out 783 source4/torture/rpc/dssync.c if (ret == true && *r.out.level_out == 6) {
out 785 source4/torture/rpc/dssync.c ctr6 = &r.out.ctr->ctr6;
out 786 source4/torture/rpc/dssync.c } else if (ret == true && *r.out.level_out == 7
out 787 source4/torture/rpc/dssync.c && r.out.ctr->ctr7.level == 6
out 788 source4/torture/rpc/dssync.c && r.out.ctr->ctr7.type == DRSUAPI_COMPRESSION_TYPE_MSZIP
out 789 source4/torture/rpc/dssync.c && r.out.ctr->ctr7.ctr.mszip6.ts) {
out 791 source4/torture/rpc/dssync.c ctr6 = &r.out.ctr->ctr7.ctr.mszip6.ts->ctr6;
out 792 source4/torture/rpc/dssync.c } else if (ret == true && *r.out.level_out == 7
out 793 source4/torture/rpc/dssync.c && r.out.ctr->ctr7.level == 6
out 794 source4/torture/rpc/dssync.c && r.out.ctr->ctr7.type == DRSUAPI_COMPRESSION_TYPE_XPRESS
out 795 source4/torture/rpc/dssync.c && r.out.ctr->ctr7.ctr.xpress6.ts) {
out 797 source4/torture/rpc/dssync.c ctr6 = &r.out.ctr->ctr7.ctr.xpress6.ts->ctr6;
out 840 source4/torture/rpc/dssync.c r.out.info = &info;
out 841 source4/torture/rpc/dssync.c r.out.level_out = &level_out;
out 863 source4/torture/rpc/dssync.c } else if (W_ERROR_EQUAL(r.out.result, WERR_INVALID_DOMAIN_ROLE)) {
out 866 source4/torture/rpc/dssync.c } else if (!W_ERROR_IS_OK(r.out.result)) {
out 867 source4/torture/rpc/dssync.c printf("DsGetNT4ChangeLog failed - %s\n", win_errstr(r.out.result));
out 869 source4/torture/rpc/dssync.c } else if (*r.out.level_out != 1) {
out 870 source4/torture/rpc/dssync.c printf("DsGetNT4ChangeLog unknown level - %u\n", *r.out.level_out);
out 872 source4/torture/rpc/dssync.c } else if (NT_STATUS_IS_OK(r.out.info->info1.status)) {
out 873 source4/torture/rpc/dssync.c } else if (NT_STATUS_EQUAL(r.out.info->info1.status, STATUS_MORE_ENTRIES)) {
out 874 source4/torture/rpc/dssync.c cookie.length = r.out.info->info1.length1;
out 875 source4/torture/rpc/dssync.c cookie.data = r.out.info->info1.data1;
out 878 source4/torture/rpc/dssync.c printf("DsGetNT4ChangeLog failed - %s\n", nt_errstr(r.out.info->info1.status));
out 36 source4/torture/rpc/echo.c r.out.out_data = &n; \
out 94 source4/torture/rpc/echo.c data_out = r.out.out_data;
out 135 source4/torture/rpc/echo.c uint8_t *v = (uint8_t *)r.out.data;
out 138 source4/torture/rpc/echo.c "bad data 0x%x at %d\n", (uint8_t)r.out.data[i], i));
out 191 source4/torture/rpc/echo.c r.out.s2 = &s;
out 213 source4/torture/rpc/echo.c r.out.info = talloc(tctx, union echo_Info);
out 270 source4/torture/rpc/echo.c torture_assert(tctx, r[i].out.result == r[i].in.seconds,
out 272 source4/torture/rpc/echo.c r[i].out.result, r[i].in.seconds, (uint_t)diff[i].tv_sec));
out 273 source4/torture/rpc/echo.c torture_assert(tctx, r[i].out.result <= rounded_tdiff,
out 275 source4/torture/rpc/echo.c r[i].out.result, (uint_t)diff[i].tv_sec, (uint_t)diff[i].tv_usec));
out 276 source4/torture/rpc/echo.c if (r[i].out.result+1 == rounded_tdiff) {
out 278 source4/torture/rpc/echo.c r[i].out.result, (uint_t)diff[i].tv_sec, (uint_t)diff[i].tv_usec);
out 279 source4/torture/rpc/echo.c } else if (r[i].out.result == rounded_tdiff) {
out 281 source4/torture/rpc/echo.c r[i].out.result, (uint_t)diff[i].tv_sec, (uint_t)diff[i].tv_usec);
out 284 source4/torture/rpc/echo.c r[i].out.result, (uint_t)diff[i].tv_sec, (uint_t)diff[i].tv_usec);
out 309 source4/torture/rpc/echo.c r.out.foo1 = &v;
out 310 source4/torture/rpc/echo.c r.out.foo2 = &e2;
out 311 source4/torture/rpc/echo.c r.out.foo3 = &e3;
out 337 source4/torture/rpc/echo.c r.out.data = talloc(tctx, struct echo_Surrounding);
out 342 source4/torture/rpc/echo.c torture_assert(tctx, r.out.data->x == 2 * r.in.data->x,
out 366 source4/torture/rpc/echo.c torture_assert_int_equal(tctx, value, r.out.result,
out 60 source4/torture/rpc/epmapper.c r.out.entry_handle = &handle;
out 62 source4/torture/rpc/epmapper.c r.out.num_towers = &num_towers;
out 82 source4/torture/rpc/epmapper.c if (NT_STATUS_IS_OK(status) && r.out.result == 0) {
out 83 source4/torture/rpc/epmapper.c for (i=0;i<*r.out.num_towers;i++) {
out 84 source4/torture/rpc/epmapper.c if (r.out.towers[i].twr) {
out 85 source4/torture/rpc/epmapper.c display_tower(mem_ctx, &r.out.towers[i].twr->tower);
out 95 source4/torture/rpc/epmapper.c if (NT_STATUS_IS_OK(status) && r.out.result == 0) {
out 96 source4/torture/rpc/epmapper.c for (i=0;i<*r.out.num_towers;i++) {
out 97 source4/torture/rpc/epmapper.c if (r.out.towers[i].twr) {
out 98 source4/torture/rpc/epmapper.c display_tower(mem_ctx, &r.out.towers[i].twr->tower);
out 108 source4/torture/rpc/epmapper.c if (NT_STATUS_IS_OK(status) && r.out.result == 0) {
out 109 source4/torture/rpc/epmapper.c for (i=0;i<*r.out.num_towers;i++) {
out 110 source4/torture/rpc/epmapper.c if (r.out.towers[i].twr) {
out 111 source4/torture/rpc/epmapper.c display_tower(mem_ctx, &r.out.towers[i].twr->tower);
out 125 source4/torture/rpc/epmapper.c if (NT_STATUS_IS_OK(status) && r.out.result == 0) {
out 126 source4/torture/rpc/epmapper.c for (i=0;i<*r.out.num_towers;i++) {
out 127 source4/torture/rpc/epmapper.c if (r.out.towers[i].twr) {
out 128 source4/torture/rpc/epmapper.c display_tower(mem_ctx, &r.out.towers[i].twr->tower);
out 155 source4/torture/rpc/epmapper.c r.out.entry_handle = &handle;
out 157 source4/torture/rpc/epmapper.c r.out.num_ents = &num_ents;
out 166 source4/torture/rpc/epmapper.c if (!NT_STATUS_IS_OK(status) || r.out.result != 0) {
out 171 source4/torture/rpc/epmapper.c *r.out.num_ents, GUID_string(tctx, &handle.uuid));
out 173 source4/torture/rpc/epmapper.c for (i=0;i<*r.out.num_ents;i++) {
out 174 source4/torture/rpc/epmapper.c printf("\nFound '%s'\n", r.out.entries[i].annotation);
out 175 source4/torture/rpc/epmapper.c display_tower(tctx, &r.out.entries[i].tower->tower);
out 176 source4/torture/rpc/epmapper.c if (r.out.entries[i].tower->tower.num_floors == 5) {
out 177 source4/torture/rpc/epmapper.c test_Map(p, tctx, r.out.entries[i].tower);
out 181 source4/torture/rpc/epmapper.c r.out.result == 0 &&
out 182 source4/torture/rpc/epmapper.c *r.out.num_ents == r.in.max_ents &&
out 204 source4/torture/rpc/epmapper.c if (r.out.result != 0) {
out 205 source4/torture/rpc/epmapper.c printf("Delete failed - %d\n", r.out.result);
out 239 source4/torture/rpc/epmapper.c torture_assert(tctx, r.out.result == 0, "Insert failed");
out 58 source4/torture/rpc/eventlog.c r.out.handle = handle;
out 64 source4/torture/rpc/eventlog.c torture_assert_ntstatus_ok(tctx, r.out.result, "OpenEventLog failed");
out 83 source4/torture/rpc/eventlog.c r.out.number = &number;
out 89 source4/torture/rpc/eventlog.c torture_comment(tctx, "%d records\n", *r.out.number);
out 91 source4/torture/rpc/eventlog.c cr.in.handle = cr.out.handle = &handle;
out 117 source4/torture/rpc/eventlog.c r.out.data = NULL;
out 118 source4/torture/rpc/eventlog.c r.out.sent_size = &sent_size;
out 119 source4/torture/rpc/eventlog.c r.out.real_size = &real_size;
out 123 source4/torture/rpc/eventlog.c torture_assert_ntstatus_equal(tctx, r.out.result, NT_STATUS_INVALID_PARAMETER,
out 137 source4/torture/rpc/eventlog.c r.out.data = NULL;
out 138 source4/torture/rpc/eventlog.c r.out.sent_size = &sent_size;
out 139 source4/torture/rpc/eventlog.c r.out.real_size = &real_size;
out 143 source4/torture/rpc/eventlog.c if (NT_STATUS_EQUAL(r.out.result, NT_STATUS_END_OF_FILE)) {
out 148 source4/torture/rpc/eventlog.c torture_assert_ntstatus_equal(tctx, r.out.result, NT_STATUS_BUFFER_TOO_SMALL,
out 153 source4/torture/rpc/eventlog.c r.in.number_of_bytes = *r.out.real_size;
out 154 source4/torture/rpc/eventlog.c r.out.data = talloc_array(tctx, uint8_t, r.in.number_of_bytes);
out 161 source4/torture/rpc/eventlog.c size = IVAL(r.out.data, pos);
out 165 source4/torture/rpc/eventlog.c blob = data_blob_const(r.out.data + pos, size);
out 181 source4/torture/rpc/eventlog.c if (pos + 4 > *r.out.sent_size) {
out 185 source4/torture/rpc/eventlog.c size = IVAL(r.out.data, pos);
out 194 source4/torture/rpc/eventlog.c cr.in.handle = cr.out.handle = &handle;
out 236 source4/torture/rpc/eventlog.c r.out.record_number = &record_number;
out 237 source4/torture/rpc/eventlog.c r.out.time_written = &time_written;
out 243 source4/torture/rpc/eventlog.c torture_assert_ntstatus_ok(tctx, r.out.result, "ReportEventW failed");
out 245 source4/torture/rpc/eventlog.c cr.in.handle = cr.out.handle = &handle;
out 271 source4/torture/rpc/eventlog.c cr.in.handle = cr.out.handle = &handle;
out 297 source4/torture/rpc/eventlog.c cr.in.handle = cr.out.handle = &handle;
out 321 source4/torture/rpc/eventlog.c r.out.buffer = NULL;
out 322 source4/torture/rpc/eventlog.c r.out.bytes_needed = &bytes_needed;
out 337 source4/torture/rpc/eventlog.c r.out.buffer = talloc_array(tctx, uint8_t, bytes_needed);
out 343 source4/torture/rpc/eventlog.c cr.in.handle = cr.out.handle = &handle;
out 362 source4/torture/rpc/eventlog.c cr.in.handle = cr.out.handle = &handle;
out 409 source4/torture/rpc/eventlog.c cr.in.handle = cr.out.handle = &handle;
out 422 source4/torture/rpc/eventlog.c b.out.handle = &backup_handle;
out 428 source4/torture/rpc/eventlog.c cr.in.handle = cr.out.handle = &backup_handle;
out 39 source4/torture/rpc/frsapi.c r.out.CurrentInterval = CurrentInterval;
out 40 source4/torture/rpc/frsapi.c r.out.DsPollingLongInterval = DsPollingLongInterval;
out 41 source4/torture/rpc/frsapi.c r.out.DsPollingShortInterval = DsPollingShortInterval;
out 47 source4/torture/rpc/frsapi.c torture_assert_werr_ok(tctx, r.out.result,
out 71 source4/torture/rpc/frsapi.c torture_assert_werr_ok(tctx, r.out.result,
out 123 source4/torture/rpc/frsapi.c r.out.unknown1 = &unknown1;
out 124 source4/torture/rpc/frsapi.c r.out.unknown2 = &unknown2;
out 125 source4/torture/rpc/frsapi.c r.out.unknown3 = &unknown3;
out 126 source4/torture/rpc/frsapi.c r.out.replica_set_guid = &guid;
out 132 source4/torture/rpc/frsapi.c torture_assert_werr_equal(tctx, r.out.result, werr,
out 204 source4/torture/rpc/frsapi.c torture_assert_werr_ok(tctx, r.out.result,
out 227 source4/torture/rpc/frsapi.c r.in.info = r.out.info = info;
out 239 source4/torture/rpc/frsapi.c torture_assert_werr_ok(tctx, r.out.result, "InfoW failed");
out 242 source4/torture/rpc/frsapi.c blob = r.out.info->blob;
out 69 source4/torture/rpc/handles.c r.out.handle = &handle;
out 79 source4/torture/rpc/handles.c c.out.handle = &handle2;
out 150 source4/torture/rpc/handles.c r.out.handle = &handle;
out 171 source4/torture/rpc/handles.c qsec.out.sdbuf = &sdbuf;
out 173 source4/torture/rpc/handles.c c.out.handle = &handle2;
out 356 source4/torture/rpc/handles.c r.out.connect_handle = &handle;
out 362 source4/torture/rpc/handles.c c.out.handle = &handle2;
out 416 source4/torture/rpc/handles.c r.out.connect_handle = &handle;
out 423 source4/torture/rpc/handles.c lc.out.handle = &handle2;
out 425 source4/torture/rpc/handles.c sc.out.handle = &handle2;
out 537 source4/torture/rpc/handles.c r.out.bind_handle = &handle;
out 547 source4/torture/rpc/handles.c c.out.bind_handle = &handle2;
out 47 source4/torture/rpc/initshutdown.c torture_assert_werr_ok(tctx, r.out.result, "initshutdown_Abort failed");
out 69 source4/torture/rpc/initshutdown.c torture_assert_werr_ok(tctx, r.out.result, "initshutdown_Init failed");
out 93 source4/torture/rpc/initshutdown.c torture_assert_werr_ok(tctx, r.out.result, "initshutdown_InitEx failed");
out 67 source4/torture/rpc/lsa.c r.out.handle = &handle;
out 115 source4/torture/rpc/lsa.c r.out.handle = *handle;
out 180 source4/torture/rpc/lsa.c r.out.count = &count;
out 181 source4/torture/rpc/lsa.c r.out.sids = &sids;
out 182 source4/torture/rpc/lsa.c r.out.domains = &domains;
out 254 source4/torture/rpc/lsa.c r.out.count = &count;
out 255 source4/torture/rpc/lsa.c r.out.sids = &sids;
out 256 source4/torture/rpc/lsa.c r.out.domains = &domains;
out 351 source4/torture/rpc/lsa.c r.out.count = &count;
out 352 source4/torture/rpc/lsa.c r.out.sids = &sids;
out 353 source4/torture/rpc/lsa.c r.out.domains = &domains;
out 407 source4/torture/rpc/lsa.c r.out.count = &count;
out 408 source4/torture/rpc/lsa.c r.out.sids = &sids;
out 409 source4/torture/rpc/lsa.c r.out.domains = &domains;
out 460 source4/torture/rpc/lsa.c r.out.count = &count;
out 461 source4/torture/rpc/lsa.c r.out.sids = &sids;
out 462 source4/torture/rpc/lsa.c r.out.domains = &domains;
out 505 source4/torture/rpc/lsa.c r.out.count = &count;
out 506 source4/torture/rpc/lsa.c r.out.names = &names;
out 507 source4/torture/rpc/lsa.c r.out.domains = &domains;
out 548 source4/torture/rpc/lsa.c r.out.count = &count;
out 549 source4/torture/rpc/lsa.c r.out.names = &names;
out 550 source4/torture/rpc/lsa.c r.out.domains = &domains;
out 592 source4/torture/rpc/lsa.c r.out.domains = &domains;
out 593 source4/torture/rpc/lsa.c r.out.count = &count;
out 594 source4/torture/rpc/lsa.c r.out.names = &names;
out 651 source4/torture/rpc/lsa.c r.out.count = &count;
out 652 source4/torture/rpc/lsa.c r.out.names = &names;
out 653 source4/torture/rpc/lsa.c r.out.domains = &domains;
out 683 source4/torture/rpc/lsa.c r.out.count = &count;
out 684 source4/torture/rpc/lsa.c r.out.names = &names;
out 685 source4/torture/rpc/lsa.c r.out.domains = &domains;
out 765 source4/torture/rpc/lsa.c r[i].out.count = &count[i];
out 766 source4/torture/rpc/lsa.c r[i].out.names = &names[i];
out 767 source4/torture/rpc/lsa.c r[i].out.domains = &domains;
out 803 source4/torture/rpc/lsa.c r.out.luid = &luid;
out 825 source4/torture/rpc/lsa.c r.out.name = &name;
out 867 source4/torture/rpc/lsa.c r_name.out.name = &name;
out 931 source4/torture/rpc/lsa.c r.out.privs = &privs;
out 967 source4/torture/rpc/lsa.c r.out.access_mask = &access_mask;
out 975 source4/torture/rpc/lsa.c if (r.out.access_mask != NULL) {
out 977 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_INTERACTIVE)
out 979 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_NETWORK)
out 981 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_BATCH)
out 983 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_SERVICE)
out 985 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_PROXY)
out 987 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_DENY_INTERACTIVE)
out 989 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_DENY_NETWORK)
out 991 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_DENY_BATCH)
out 993 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_DENY_SERVICE)
out 995 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_REMOTE_INTERACTIVE)
out 997 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_DENY_REMOTE_INTERACTIVE)
out 999 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_ALL)
out 1001 source4/torture/rpc/lsa.c if (*(r.out.access_mask) & LSA_POLICY_MODE_ALL_NT4)
out 1038 source4/torture/rpc/lsa.c r.out.handle = handle;
out 1065 source4/torture/rpc/lsa.c r.out.acct_handle = &acct_handle;
out 1073 source4/torture/rpc/lsa.c r_o.out.acct_handle = &acct_handle;
out 1108 source4/torture/rpc/lsa.c r.out.trustdom_handle = &trustdom_handle;
out 1192 source4/torture/rpc/lsa.c r.out.sec_handle = &sec_handle;
out 1202 source4/torture/rpc/lsa.c r.out.sec_handle = &sec_handle3;
out 1213 source4/torture/rpc/lsa.c r2.out.sec_handle = &sec_handle2;
out 1284 source4/torture/rpc/lsa.c if (r4.out.new_val == NULL || r4.out.new_val->buf == NULL) {
out 1288 source4/torture/rpc/lsa.c blob1.data = r4.out.new_val->buf->data;
out 1289 source4/torture/rpc/lsa.c blob1.length = r4.out.new_val->buf->size;
out 1345 source4/torture/rpc/lsa.c if (r6.out.new_val->buf == NULL || r6.out.old_val->buf == NULL
out 1346 source4/torture/rpc/lsa.c || r6.out.new_mtime == NULL || r6.out.old_mtime == NULL) {
out 1351 source4/torture/rpc/lsa.c blob1.data = r6.out.new_val->buf->data;
out 1352 source4/torture/rpc/lsa.c blob1.length = r6.out.new_val->buf->size;
out 1364 source4/torture/rpc/lsa.c blob1.data = r6.out.old_val->buf->data;
out 1365 source4/torture/rpc/lsa.c blob1.length = r6.out.old_val->buf->length;
out 1377 source4/torture/rpc/lsa.c if (*r6.out.new_mtime == *r6.out.old_mtime) {
out 1381 source4/torture/rpc/lsa.c nt_time_string(tctx, *r6.out.old_mtime),
out 1382 source4/torture/rpc/lsa.c nt_time_string(tctx, *r6.out.new_mtime));
out 1422 source4/torture/rpc/lsa.c if (!r8.out.new_val || !r8.out.old_val) {
out 1425 source4/torture/rpc/lsa.c } else if (r8.out.new_val->buf != NULL) {
out 1428 source4/torture/rpc/lsa.c } else if (r8.out.old_val->buf == NULL) {
out 1431 source4/torture/rpc/lsa.c } else if (r8.out.new_mtime == NULL || r8.out.old_mtime == NULL) {
out 1435 source4/torture/rpc/lsa.c blob1.data = r8.out.old_val->buf->data;
out 1436 source4/torture/rpc/lsa.c blob1.length = r8.out.old_val->buf->size;
out 1448 source4/torture/rpc/lsa.c if (*r8.out.new_mtime != *r8.out.old_mtime) {
out 1451 source4/torture/rpc/lsa.c nt_time_string(tctx, *r8.out.old_mtime),
out 1452 source4/torture/rpc/lsa.c nt_time_string(tctx, *r8.out.new_mtime));
out 1467 source4/torture/rpc/lsa.c d_o.out.handle = &sec_handle2;
out 1502 source4/torture/rpc/lsa.c r.out.rights = &rights;
out 1533 source4/torture/rpc/lsa.c r.out.sdbuf = &sdbuf;
out 1558 source4/torture/rpc/lsa.c r.out.acct_handle = &acct_handle;
out 1597 source4/torture/rpc/lsa.c r.out.resume_handle = &resume_handle;
out 1598 source4/torture/rpc/lsa.c r.out.sids = &sids1;
out 1638 source4/torture/rpc/lsa.c r.out.sids = &sids2;
out 1673 source4/torture/rpc/lsa.c r.out.returned_language_id = &returned_language_id;
out 1674 source4/torture/rpc/lsa.c r.out.disp_name = &disp_name;
out 1683 source4/torture/rpc/lsa.c r.in.language_id, *r.out.returned_language_id);
out 1703 source4/torture/rpc/lsa.c r.out.sids = &sids;
out 1737 source4/torture/rpc/lsa.c r.out.resume_handle = &resume_handle;
out 1738 source4/torture/rpc/lsa.c r.out.privs = &privs1;
out 1787 source4/torture/rpc/lsa.c r.out.forest_trust_info = &info_ptr;
out 1842 source4/torture/rpc/lsa.c trust.out.trustdom_handle = &trustdom_handle;
out 1852 source4/torture/rpc/lsa.c c.out.handle = &handle2;
out 1855 source4/torture/rpc/lsa.c c_trust.out.handle = &handle2;
out 1862 source4/torture/rpc/lsa.c q.out.info = &info;
out 1882 source4/torture/rpc/lsa.c c.out.handle = &handle2;
out 1901 source4/torture/rpc/lsa.c q.out.info = &info;
out 1919 source4/torture/rpc/lsa.c trust_by_name.out.trustdom_handle = &trustdom_handle;
out 1933 source4/torture/rpc/lsa.c q.out.info = &info;
out 1947 source4/torture/rpc/lsa.c c.out.handle = &handle2;
out 1965 source4/torture/rpc/lsa.c q.out.info = &info;
out 1998 source4/torture/rpc/lsa.c r.out.domains = &domains;
out 1999 source4/torture/rpc/lsa.c r.out.resume_handle = &resume_handle;
out 2020 source4/torture/rpc/lsa.c r.out.domains = &domains;
out 2021 source4/torture/rpc/lsa.c r.out.resume_handle = &resume_handle;
out 2034 source4/torture/rpc/lsa.c if (r.out.domains->count < 3 || r.out.domains->count > 4) {
out 2037 source4/torture/rpc/lsa.c r.out.domains->count, LSA_ENUM_TRUST_DOMAIN_MULTIPLIER * 3,
out 2060 source4/torture/rpc/lsa.c r_ex.out.domains = &domains_ex;
out 2061 source4/torture/rpc/lsa.c r_ex.out.resume_handle = &resume_handle;
out 2075 source4/torture/rpc/lsa.c r_ex.out.domains = &domains_ex;
out 2076 source4/torture/rpc/lsa.c r_ex.out.resume_handle = &resume_handle;
out 2089 source4/torture/rpc/lsa.c if (r_ex.out.domains->count < 3 || r_ex.out.domains->count > 4) {
out 2092 source4/torture/rpc/lsa.c r_ex.out.domains->count,
out 2146 source4/torture/rpc/lsa.c r.out.trustdom_handle = &trustdom_handle[i];
out 2160 source4/torture/rpc/lsa.c q.out.info = &info;
out 2165 source4/torture/rpc/lsa.c } else if (!q.out.info) {
out 2279 source4/torture/rpc/lsa.c r.out.trustdom_handle = &trustdom_handle[i];
out 2293 source4/torture/rpc/lsa.c q.out.info = &info;
out 2298 source4/torture/rpc/lsa.c } else if (!q.out.info) {
out 2357 source4/torture/rpc/lsa.c r.out.info = &info;
out 2396 source4/torture/rpc/lsa.c r.out.info = &info;
out 2530 source4/torture/rpc/lsa.c r.out.account_name = &account_name_p;
out 2542 source4/torture/rpc/lsa.c r.out.account_name = &account_name_p;
out 2565 source4/torture/rpc/lsa.c r.out.handle = &handle2;
out 57 source4/torture/rpc/lsa_lookup.c r.out.handle = *handle;
out 74 source4/torture/rpc/lsa_lookup.c r.out.info = &info;
out 110 source4/torture/rpc/lsa_lookup.c r.out.names = names;
out 111 source4/torture/rpc/lsa_lookup.c r.out.count = &count;
out 112 source4/torture/rpc/lsa_lookup.c r.out.domains = &domains;
out 185 source4/torture/rpc/lsa_lookup.c r.out.domains = &domains;
out 186 source4/torture/rpc/lsa_lookup.c r.out.resume_handle = &resume_handle;
out 207 source4/torture/rpc/lsa_lookup.c q.out.info = &info;
out 372 source4/torture/rpc/lsa_lookup.c r.out.names = &names;
out 373 source4/torture/rpc/lsa_lookup.c r.out.count = &count;
out 374 source4/torture/rpc/lsa_lookup.c r.out.domains = &domains;
out 48 source4/torture/rpc/mgmt.c r.out.if_id_vector = &vector;
out 56 source4/torture/rpc/mgmt.c if (!W_ERROR_IS_OK(r.out.result)) {
out 57 source4/torture/rpc/mgmt.c printf("inq_if_ids gave error code %s\n", win_errstr(r.out.result));
out 92 source4/torture/rpc/mgmt.c r.out.statistics = &statistics;
out 130 source4/torture/rpc/mgmt.c if (W_ERROR_IS_OK(r.out.result)) {
out 135 source4/torture/rpc/mgmt.c i, name, r.out.princ_name);
out 138 source4/torture/rpc/mgmt.c i, r.out.princ_name);
out 155 source4/torture/rpc/mgmt.c r.out.status = talloc(mem_ctx, uint32_t);
out 163 source4/torture/rpc/mgmt.c if (*r.out.status != 0 || r.out.result == 0) {
out 184 source4/torture/rpc/mgmt.c if (!W_ERROR_IS_OK(r.out.result)) {
out 185 source4/torture/rpc/mgmt.c printf("\tserver refused to stop listening - %s\n", win_errstr(r.out.result));
out 52 source4/torture/rpc/netlogon.c r.out.info = &info;
out 70 source4/torture/rpc/netlogon.c r.out.info = &info;
out 101 source4/torture/rpc/netlogon.c r.out.return_credentials = &credentials2;
out 113 source4/torture/rpc/netlogon.c a.out.return_credentials = &credentials3;
out 163 source4/torture/rpc/netlogon.c r.out.return_credentials = &credentials2;
out 175 source4/torture/rpc/netlogon.c a.out.negotiate_flags = &negotiate_flags;
out 177 source4/torture/rpc/netlogon.c a.out.return_credentials = &credentials3;
out 224 source4/torture/rpc/netlogon.c r.out.return_credentials = &credentials2;
out 239 source4/torture/rpc/netlogon.c a.out.return_credentials = &credentials3;
out 240 source4/torture/rpc/netlogon.c a.out.negotiate_flags = &negotiate_flags;
out 241 source4/torture/rpc/netlogon.c a.out.rid = &rid;
out 287 source4/torture/rpc/netlogon.c r.out.return_authenticator = &return_authenticator;
out 303 source4/torture/rpc/netlogon.c if (!creds_client_check(creds, &r.out.return_authenticator->cred)) {
out 321 source4/torture/rpc/netlogon.c if (!creds_client_check(creds, &r.out.return_authenticator->cred)) {
out 379 source4/torture/rpc/netlogon.c r.out.return_authenticator = &return_authenticator;
out 396 source4/torture/rpc/netlogon.c if (!creds_client_check(creds, &r.out.return_authenticator->cred)) {
out 428 source4/torture/rpc/netlogon.c if (!creds_client_check(creds, &r.out.return_authenticator->cred)) {
out 454 source4/torture/rpc/netlogon.c if (!creds_client_check(creds, &r.out.return_authenticator->cred)) {
out 472 source4/torture/rpc/netlogon.c if (!creds_client_check(creds, &r.out.return_authenticator->cred)) {
out 500 source4/torture/rpc/netlogon.c if (!creds_client_check(creds, &r.out.return_authenticator->cred)) {
out 538 source4/torture/rpc/netlogon.c r.out.return_authenticator = &return_authenticator;
out 539 source4/torture/rpc/netlogon.c r.out.password = &password;
out 569 source4/torture/rpc/netlogon.c r.out.return_authenticator = &return_authenticator;
out 570 source4/torture/rpc/netlogon.c r.out.password = &password;
out 571 source4/torture/rpc/netlogon.c r.out.password2 = &password2;
out 643 source4/torture/rpc/netlogon.c r.out.validation = &validation;
out 644 source4/torture/rpc/netlogon.c r.out.authoritative = &authoritative;
out 657 source4/torture/rpc/netlogon.c torture_assert(tctx, creds_client_check(creds, &r.out.return_authenticator->cred),
out 722 source4/torture/rpc/netlogon.c r.out.delta_enum_array = &delta_enum_array;
out 723 source4/torture/rpc/netlogon.c r.out.return_authenticator = &return_authenticator;
out 731 source4/torture/rpc/netlogon.c r.out.sync_context = &sync_context;
out 750 source4/torture/rpc/netlogon.c if (!creds_client_check(creds, &r.out.return_authenticator->cred)) {
out 795 source4/torture/rpc/netlogon.c r.out.return_authenticator = &return_authenticator;
out 796 source4/torture/rpc/netlogon.c r.out.delta_enum_array = &delta_enum_array;
out 1270 source4/torture/rpc/netlogon.c r.out.return_authenticator = &return_authenticator;
out 1271 source4/torture/rpc/netlogon.c r.out.delta_enum_array = &delta_enum_array;
out 1399 source4/torture/rpc/netlogon.c r.out.buffer = &buffer;
out 1400 source4/torture/rpc/netlogon.c r.out.count_returned = &count_returned;
out 1401 source4/torture/rpc/netlogon.c r.out.total_entries = &total_entries;
out 1402 source4/torture/rpc/netlogon.c r.out.recordid = &recordid;
out 1403 source4/torture/rpc/netlogon.c r.out.return_authenticator = &return_authenticator;
out 1444 source4/torture/rpc/netlogon.c r.out.buffer = &buffer;
out 1445 source4/torture/rpc/netlogon.c r.out.count_returned = &count_returned;
out 1446 source4/torture/rpc/netlogon.c r.out.total_entries = &total_entries;
out 1447 source4/torture/rpc/netlogon.c r.out.next_reference = &next_reference;
out 1448 source4/torture/rpc/netlogon.c r.out.recordid = &recordid;
out 1449 source4/torture/rpc/netlogon.c r.out.return_authenticator = &return_authenticator;
out 1470 source4/torture/rpc/netlogon.c r.out.dcname = &dcname;
out 1474 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "GetDcName");
out 1494 source4/torture/rpc/netlogon.c r.out.info = &info;
out 1521 source4/torture/rpc/netlogon.c r.out.dcname = &dcname;
out 1525 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "GetAnyDCName");
out 1553 source4/torture/rpc/netlogon.c r.out.query = &query;
out 1641 source4/torture/rpc/netlogon.c r.out.return_authenticator = &return_authenticator;
out 1642 source4/torture/rpc/netlogon.c r.out.delta_enum_array = &delta_enum_array;
out 1650 source4/torture/rpc/netlogon.c r.out.sync_context = &sync_context;
out 1671 source4/torture/rpc/netlogon.c if (!creds_client_check(creds, &r.out.return_authenticator->cred)) {
out 1700 source4/torture/rpc/netlogon.c r.out.query = &query;
out 1772 source4/torture/rpc/netlogon.c r.out.forest_trust_info = &info_ptr;
out 1778 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "DsRGetForestTrustInformation");
out 1796 source4/torture/rpc/netlogon.c r.out.trusts = &trusts;
out 1800 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "DsrEnumerateDomaintrusts");
out 1806 source4/torture/rpc/netlogon.c if (r.out.trusts->count) {
out 1812 source4/torture/rpc/netlogon.c for (i=0; i<r.out.trusts->count; i++) {
out 1816 source4/torture/rpc/netlogon.c if (r.out.trusts->array[i].trust_attributes & NETR_TRUST_ATTRIBUTE_FOREST_TRANSITIVE) {
out 1818 source4/torture/rpc/netlogon.c r.out.trusts->array[i].dns_name)) {
out 1835 source4/torture/rpc/netlogon.c r.out.trusted_domains_blob = &trusted_domains_blob;
out 1839 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "NetrEnumerateTrustedDomains");
out 1852 source4/torture/rpc/netlogon.c r.out.dom_trust_list = &dom_trust_list;
out 1856 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "NetrEnumerateTrustedDomainsEx");
out 1874 source4/torture/rpc/netlogon.c r.out.site = &site;
out 1879 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "DsRGetSiteName");
out 1888 source4/torture/rpc/netlogon.c torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_COMPUTERNAME, "netr_DsRGetSiteName");
out 1908 source4/torture/rpc/netlogon.c r.out.info = &info;
out 1912 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "DsRGetDCName");
out 1933 source4/torture/rpc/netlogon.c r.out.info = &info;
out 1937 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "netr_DsRGetDCNameEx");
out 1960 source4/torture/rpc/netlogon.c r.out.info = &info;
out 1966 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "netr_DsRGetDCNameEx2");
out 1972 source4/torture/rpc/netlogon.c r.out.info = &info;
out 1976 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "netr_DsRGetDCNameEx2");
out 1989 source4/torture/rpc/netlogon.c r.out.ctr = &ctr;
out 1993 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "failed");
out 2021 source4/torture/rpc/netlogon.c r.out.ctr = &ctr;
out 2025 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "failed");
out 2053 source4/torture/rpc/netlogon.c r.out.ctr = &ctr;
out 2057 source4/torture/rpc/netlogon.c torture_assert_werr_ok(tctx, r.out.result, "failed");
out 2090 source4/torture/rpc/netlogon.c r.out.return_authenticator = &return_authenticator;
out 2091 source4/torture/rpc/netlogon.c r.out.new_owf_password = &new_owf_password;
out 2092 source4/torture/rpc/netlogon.c r.out.old_owf_password = &old_owf_password;
out 2093 source4/torture/rpc/netlogon.c r.out.trust_info = &trust_info;
out 2128 source4/torture/rpc/netlogon.c r.out.return_authenticator = &a;
out 2129 source4/torture/rpc/netlogon.c r.out.info = &info;
out 2194 source4/torture/rpc/netlogon.c r.out.return_authenticator = &a;
out 2195 source4/torture/rpc/netlogon.c r.out.info = &info;
out 2231 source4/torture/rpc/netlogon.c torture_assert_ntstatus_ok(tctx, r.out.result, "netr_LogonGetDomainInfo_async");
out 2290 source4/torture/rpc/netlogon.c o.out.handle = &lsa_handle;
out 2298 source4/torture/rpc/netlogon.c t.out.domains = &domains;
out 2299 source4/torture/rpc/netlogon.c t.out.resume_handle = &resume_handle;
out 2311 source4/torture/rpc/netlogon.c d.out.dcname = &dcname;
out 36 source4/torture/rpc/ntsvcs.c r.out.version = &version;
out 41 source4/torture/rpc/ntsvcs.c torture_assert_werr_ok(tctx, r.out.result, "PNP_GetVersion");
out 55 source4/torture/rpc/ntsvcs.c r.out.size = &size;
out 60 source4/torture/rpc/ntsvcs.c torture_assert_werr_equal(tctx, r.out.result, WERR_CM_INVALID_POINTER,
out 68 source4/torture/rpc/ntsvcs.c torture_assert_werr_ok(tctx, r.out.result,
out 86 source4/torture/rpc/ntsvcs.c r.out.length = &length;
out 87 source4/torture/rpc/ntsvcs.c r.out.buffer = buffer;
out 92 source4/torture/rpc/ntsvcs.c torture_assert_werr_equal(tctx, r.out.result, WERR_CM_INVALID_POINTER,
out 101 source4/torture/rpc/ntsvcs.c if (W_ERROR_EQUAL(r.out.result, WERR_CM_BUFFER_SMALL)) {
out 106 source4/torture/rpc/ntsvcs.c s.out.size = &length;
out 111 source4/torture/rpc/ntsvcs.c torture_assert_werr_ok(tctx, s.out.result,
out 118 source4/torture/rpc/ntsvcs.c r.out.length = &length;
out 119 source4/torture/rpc/ntsvcs.c r.out.buffer = buffer;
out 125 source4/torture/rpc/ntsvcs.c torture_assert_werr_ok(tctx, r.out.result,
out 150 source4/torture/rpc/ntsvcs.c r.out.buffer = buffer;
out 151 source4/torture/rpc/ntsvcs.c r.out.reg_data_type = ®_data_type;
out 152 source4/torture/rpc/ntsvcs.c r.out.buffer_size = &buffer_size;
out 153 source4/torture/rpc/ntsvcs.c r.out.needed = &needed;
out 158 source4/torture/rpc/ntsvcs.c if (W_ERROR_EQUAL(r.out.result, WERR_CM_BUFFER_SMALL)) {
out 62 source4/torture/rpc/object_uuid.c torture_assert_werr_ok(torture, r1.out.result, "DsRoleGetPrimaryDomainInformation failed");
out 69 source4/torture/rpc/object_uuid.c r2.out.account_name = &account_name_p;
out 70 source4/torture/rpc/object_uuid.c r2.out.authority_name = &authority_name_p;
out 78 source4/torture/rpc/object_uuid.c torture_assert_ntstatus_ok(torture, r2.out.result, "lsaClose failed");
out 61 source4/torture/rpc/oxidresolve.c r.out.pOxid = oxid;
out 62 source4/torture/rpc/oxidresolve.c r.out.ipidRemUnknown = oid;
out 70 source4/torture/rpc/oxidresolve.c if(!W_ERROR_IS_OK(r.out.result)) {
out 71 source4/torture/rpc/oxidresolve.c fprintf(stderr, "RemoteActivation: %s\n", win_errstr(r.out.result));
out 75 source4/torture/rpc/oxidresolve.c if(!W_ERROR_IS_OK(*r.out.hr)) {
out 76 source4/torture/rpc/oxidresolve.c fprintf(stderr, "RemoteActivation: %s\n", win_errstr(*r.out.hr));
out 80 source4/torture/rpc/oxidresolve.c if(!W_ERROR_IS_OK(r.out.results[0])) {
out 81 source4/torture/rpc/oxidresolve.c fprintf(stderr, "RemoteActivation: %s\n", win_errstr(r.out.results[0]));
out 99 source4/torture/rpc/oxidresolve.c torture_assert_werr_ok(tctx, r.out.result, "SimplePing");
out 130 source4/torture/rpc/oxidresolve.c if(!W_ERROR_IS_OK(r.out.result)) {
out 131 source4/torture/rpc/oxidresolve.c fprintf(stderr, "ComplexPing: %s\n", win_errstr(r.out.result));
out 148 source4/torture/rpc/oxidresolve.c torture_assert_werr_ok(tctx, r.out.result, "ServerAlive");
out 171 source4/torture/rpc/oxidresolve.c torture_assert_werr_ok(tctx, r.out.result, "ResolveOxid");
out 195 source4/torture/rpc/oxidresolve.c torture_assert_werr_ok(tctx, r.out.result, "ResolveOxid2");
out 197 source4/torture/rpc/oxidresolve.c torture_comment(tctx, "Remote server versions: %d, %d\n", r.out.ComVersion->MajorVersion, r.out.ComVersion->MinorVersion);
out 210 source4/torture/rpc/oxidresolve.c torture_assert_werr_ok(tctx, r.out.result, "ServerAlive2");
out 54 source4/torture/rpc/remact.c torture_assert_werr_ok(tctx, r.out.result, "RemoteActivation");
out 56 source4/torture/rpc/remact.c torture_assert_werr_ok(tctx, *r.out.hr, "RemoteActivation");
out 58 source4/torture/rpc/remact.c torture_assert_werr_ok(tctx, r.out.results[0], "RemoteActivation");
out 68 source4/torture/rpc/remact.c torture_assert_werr_ok(tctx, r.out.result,
out 71 source4/torture/rpc/remact.c torture_assert_werr_ok(tctx, *r.out.hr, "RemoteActivation(GetClassObject)");
out 73 source4/torture/rpc/remact.c torture_assert_werr_ok(tctx, r.out.results[0],
out 179 source4/torture/rpc/remote_pac.c r.out.validation = &validation;
out 180 source4/torture/rpc/remote_pac.c r.out.authoritative = &authoritative;
out 181 source4/torture/rpc/remote_pac.c r.out.return_authenticator = &return_authenticator;
out 206 source4/torture/rpc/remote_pac.c torture_assert(tctx, creds_client_check(creds, &r.out.return_authenticator->cred),
out 228 source4/torture/rpc/remote_pac.c torture_assert(tctx, creds_client_check(creds, &r.out.return_authenticator->cred),
out 275 source4/torture/rpc/remote_pac.c torture_assert(tctx, creds_client_check(creds, &r.out.return_authenticator->cred),
out 322 source4/torture/rpc/remote_pac.c torture_assert(tctx, creds_client_check(creds, &r.out.return_authenticator->cred),
out 131 source4/torture/rpc/samba3rpc.c openpolicy.out.handle = &handle;
out 142 source4/torture/rpc/samba3rpc.c close_handle.out.handle = &handle;
out 174 source4/torture/rpc/samba3rpc.c session2->vuid = setup.out.vuid;
out 252 source4/torture/rpc/samba3rpc.c openpolicy.out.handle = &handle;
out 264 source4/torture/rpc/samba3rpc.c query.out.info = &info;
out 274 source4/torture/rpc/samba3rpc.c close_handle.out.handle = &handle;
out 417 source4/torture/rpc/samba3rpc.c conn.out.connect_handle = &conn_handle;
out 428 source4/torture/rpc/samba3rpc.c enumdom.out.resume_handle = &resume_handle;
out 429 source4/torture/rpc/samba3rpc.c enumdom.out.num_entries = &num_entries;
out 430 source4/torture/rpc/samba3rpc.c enumdom.out.sam = &sam;
out 438 source4/torture/rpc/samba3rpc.c if (*enumdom.out.num_entries != 2) {
out 440 source4/torture/rpc/samba3rpc.c *enumdom.out.num_entries);
out 452 source4/torture/rpc/samba3rpc.c l.out.sid = &sid;
out 462 source4/torture/rpc/samba3rpc.c o.in.sid = *l.out.sid;
out 463 source4/torture/rpc/samba3rpc.c o.out.domain_handle = &domain_handle;
out 477 source4/torture/rpc/samba3rpc.c c.out.user_handle = user_handle;
out 478 source4/torture/rpc/samba3rpc.c c.out.access_granted = &access_granted;
out 479 source4/torture/rpc/samba3rpc.c c.out.rid = &user_rid;
out 491 source4/torture/rpc/samba3rpc.c ln.out.rids = &rids;
out 492 source4/torture/rpc/samba3rpc.c ln.out.types = &types;
out 503 source4/torture/rpc/samba3rpc.c user_rid = ou.in.rid = ln.out.rids->ids[0];
out 504 source4/torture/rpc/samba3rpc.c ou.out.user_handle = user_handle;
out 522 source4/torture/rpc/samba3rpc.c *sid_p = dom_sid_add_rid(mem_ctx, *l.out.sid, user_rid);
out 610 source4/torture/rpc/samba3rpc.c qui.out.info = &info;
out 681 source4/torture/rpc/samba3rpc.c d.out.user_handle = user_handle;
out 739 source4/torture/rpc/samba3rpc.c q.out.info = &info;
out 854 source4/torture/rpc/samba3rpc.c q.out.info = &info;
out 949 source4/torture/rpc/samba3rpc.c r.out.return_credentials = &netr_srv_creds;
out 963 source4/torture/rpc/samba3rpc.c r.out.return_credentials, &mach_pw,
out 973 source4/torture/rpc/samba3rpc.c a.out.negotiate_flags = &negotiate_flags;
out 975 source4/torture/rpc/samba3rpc.c a.out.return_credentials = &netr_cred;
out 984 source4/torture/rpc/samba3rpc.c if (!creds_client_check(creds_state, a.out.return_credentials)) {
out 1120 source4/torture/rpc/samba3rpc.c r.out.validation = &validation;
out 1121 source4/torture/rpc/samba3rpc.c r.out.authoritative = &authoritative;
out 1122 source4/torture/rpc/samba3rpc.c r.out.return_authenticator = &return_authenticator;
out 1131 source4/torture/rpc/samba3rpc.c if ((r.out.return_authenticator == NULL) ||
out 1133 source4/torture/rpc/samba3rpc.c &r.out.return_authenticator->cred))) {
out 1154 source4/torture/rpc/samba3rpc.c r.out.return_authenticator = &return_authenticator;
out 1163 source4/torture/rpc/samba3rpc.c if ((r.out.return_authenticator == NULL) ||
out 1165 source4/torture/rpc/samba3rpc.c &r.out.return_authenticator->cred))) {
out 1186 source4/torture/rpc/samba3rpc.c s.out.return_authenticator = &return_authenticator;
out 1201 source4/torture/rpc/samba3rpc.c &s.out.return_authenticator->cred)) {
out 1576 source4/torture/rpc/samba3rpc.c r.out.handle = &handle;
out 1596 source4/torture/rpc/samba3rpc.c l.out.count = &count;
out 1597 source4/torture/rpc/samba3rpc.c l.out.sids = &sids;
out 1598 source4/torture/rpc/samba3rpc.c l.out.domains = &domains;
out 1609 source4/torture/rpc/samba3rpc.c l.out.sids->sids[0].rid);
out 1612 source4/torture/rpc/samba3rpc.c c.out.handle = &handle;
out 1651 source4/torture/rpc/samba3rpc.c r.out.account_name = &account_name_p;
out 1655 source4/torture/rpc/samba3rpc.c authority_name_p = *r.out.authority_name;
out 1714 source4/torture/rpc/samba3rpc.c result->tid = tcon.tconx.out.tid;
out 1856 source4/torture/rpc/samba3rpc.c session2->vuid = setup.out.vuid;
out 1910 source4/torture/rpc/samba3rpc.c r.out.info = &info;
out 1926 source4/torture/rpc/samba3rpc.c if (!W_ERROR_IS_OK(r.out.result)) {
out 1929 source4/torture/rpc/samba3rpc.c win_errstr(r.out.result));
out 1964 source4/torture/rpc/samba3rpc.c r.out.totalentries = &totalentries;
out 1965 source4/torture/rpc/samba3rpc.c r.out.info_ctr = &info_ctr;
out 2017 source4/torture/rpc/samba3rpc.c if (!W_ERROR_IS_OK(r.out.result)) {
out 2019 source4/torture/rpc/samba3rpc.c info_ctr.level, win_errstr(r.out.result));
out 2023 source4/torture/rpc/samba3rpc.c struct srvsvc_NetShareCtr0 *ctr = r.out.info_ctr->ctr.ctr0;
out 2146 source4/torture/rpc/samba3rpc.c r.out.return_credentials = &netr_srv_creds;
out 2160 source4/torture/rpc/samba3rpc.c r.out.return_credentials, &mach_pw,
out 2170 source4/torture/rpc/samba3rpc.c a.out.negotiate_flags = &negotiate_flags;
out 2172 source4/torture/rpc/samba3rpc.c a.out.return_credentials = &netr_cred;
out 2230 source4/torture/rpc/samba3rpc.c r.out.info = &info;
out 2480 source4/torture/rpc/samba3rpc.c o.out.handle = &lsa_handle;
out 2503 source4/torture/rpc/samba3rpc.c r.out.info = &info;
out 2537 source4/torture/rpc/samba3rpc.c memcpy(servername, r.out.info.info0.name, 16);
out 2585 source4/torture/rpc/samba3rpc.c r.out.totalentries = &totalentries;
out 2586 source4/torture/rpc/samba3rpc.c r.out.info_ctr = &info_ctr;
out 2598 source4/torture/rpc/samba3rpc.c c1 = r.out.info_ctr->ctr.ctr1;
out 2629 source4/torture/rpc/samba3rpc.c r.out.needed = &needed;
out 2630 source4/torture/rpc/samba3rpc.c r.out.count = &count;
out 2631 source4/torture/rpc/samba3rpc.c r.out.info = &info;
out 2640 source4/torture/rpc/samba3rpc.c if (!W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 2643 source4/torture/rpc/samba3rpc.c win_errstr(r.out.result));
out 2657 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
out 2660 source4/torture/rpc/samba3rpc.c win_errstr(r.out.result));
out 2688 source4/torture/rpc/samba3rpc.c r.out.needed = &needed;
out 2698 source4/torture/rpc/samba3rpc.c if (!W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 2701 source4/torture/rpc/samba3rpc.c win_errstr(r.out.result));
out 2718 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
out 2721 source4/torture/rpc/samba3rpc.c win_errstr(r.out.result));
out 2728 source4/torture/rpc/samba3rpc.c *res = talloc_steal(ctx, r.out.info);
out 2808 source4/torture/rpc/samba3rpc.c r.out.handle = &server_handle;
out 2811 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
out 2814 source4/torture/rpc/samba3rpc.c win_errstr(r.out.result));
out 2824 source4/torture/rpc/samba3rpc.c r.out.handle = &server_handle;
out 2827 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
out 2830 source4/torture/rpc/samba3rpc.c win_errstr(r.out.result));
out 2846 source4/torture/rpc/samba3rpc.c r.out.handle = &printer_handle;
out 2849 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
out 2852 source4/torture/rpc/samba3rpc.c win_errstr(r.out.result));
out 2876 source4/torture/rpc/samba3rpc.c r.out.handle = &printer_handle;
out 2971 source4/torture/rpc/samba3rpc.c r.out.info = &info;
out 2974 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
out 2977 source4/torture/rpc/samba3rpc.c win_errstr(r.out.result));
out 2983 source4/torture/rpc/samba3rpc.c r.out.info->info100->server_name) != 0) {
out 2987 source4/torture/rpc/samba3rpc.c r.out.info->info100->server_name);
out 3004 source4/torture/rpc/samba3rpc.c c.in.handle = c.out.handle = handle;
out 3017 source4/torture/rpc/samba3rpc.c if (!W_ERROR_IS_OK(c.out.result)) {
out 3018 source4/torture/rpc/samba3rpc.c return werror_to_ntstatus(c.out.result);
out 3041 source4/torture/rpc/samba3rpc.c r.in.name = r.out.name = &name;
out 3050 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
out 3076 source4/torture/rpc/samba3rpc.c r.out.name = &name;
out 3093 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
out 3101 source4/torture/rpc/samba3rpc.c printf("%s\n", r.out.name->name);
out 3105 source4/torture/rpc/samba3rpc.c o.in.keyname.name = r.out.name->name;
out 3108 source4/torture/rpc/samba3rpc.c o.out.handle = &key_handle;
out 3111 source4/torture/rpc/samba3rpc.c if (NT_STATUS_IS_OK(status) && W_ERROR_IS_OK(o.out.result)) {
out 3139 source4/torture/rpc/samba3rpc.c r.out.handle = &handle;
out 3142 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
out 3144 source4/torture/rpc/samba3rpc.c nt_errstr(status), win_errstr(r.out.result));
out 3244 source4/torture/rpc/samba3rpc.c r.out.info = &info;
out 3247 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
out 3249 source4/torture/rpc/samba3rpc.c nt_errstr(status), win_errstr(r.out.result));
out 3311 source4/torture/rpc/samba3rpc.c r.out.handle = result;
out 3314 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
out 3316 source4/torture/rpc/samba3rpc.c nt_errstr(status), win_errstr(r.out.result));
out 3364 source4/torture/rpc/samba3rpc.c c.out.new_handle = &new_handle;
out 3365 source4/torture/rpc/samba3rpc.c c.out.action_taken = &action_taken;
out 3368 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(c.out.result)) {
out 3370 source4/torture/rpc/samba3rpc.c nt_errstr(status), win_errstr(c.out.result));
out 3375 source4/torture/rpc/samba3rpc.c cl.out.handle = &new_handle;
out 3377 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(cl.out.result)) {
out 3379 source4/torture/rpc/samba3rpc.c nt_errstr(status), win_errstr(cl.out.result));
out 3418 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(d.out.result)) {
out 3420 source4/torture/rpc/samba3rpc.c nt_errstr(status), win_errstr(d.out.result));
out 3459 source4/torture/rpc/samba3rpc.c o.out.handle = &key_handle;
out 3462 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(o.out.result)) {
out 3464 source4/torture/rpc/samba3rpc.c nt_errstr(status), win_errstr(o.out.result));
out 3481 source4/torture/rpc/samba3rpc.c if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(s.out.result)) {
out 3483 source4/torture/rpc/samba3rpc.c nt_errstr(status), win_errstr(s.out.result));
out 158 source4/torture/rpc/samlogon.c r->out.return_authenticator = NULL;
out 160 source4/torture/rpc/samlogon.c if (!r->out.return_authenticator ||
out 161 source4/torture/rpc/samlogon.c !creds_client_check(samlogon_state->creds, &r->out.return_authenticator->cred)) {
out 173 source4/torture/rpc/samlogon.c creds_decrypt_samlogon(samlogon_state->creds, validation_level, r->out.validation);
out 177 source4/torture/rpc/samlogon.c base = &r->out.validation->sam2->base;
out 180 source4/torture/rpc/samlogon.c base = &r->out.validation->sam3->base;
out 183 source4/torture/rpc/samlogon.c base = &r->out.validation->sam6->base;
out 198 source4/torture/rpc/samlogon.c creds_decrypt_samlogon(samlogon_state->creds, validation_level, r_ex->out.validation);
out 202 source4/torture/rpc/samlogon.c base = &r_ex->out.validation->sam2->base;
out 205 source4/torture/rpc/samlogon.c base = &r_ex->out.validation->sam3->base;
out 208 source4/torture/rpc/samlogon.c base = &r_ex->out.validation->sam6->base;
out 216 source4/torture/rpc/samlogon.c r_flags->out.return_authenticator = NULL;
out 218 source4/torture/rpc/samlogon.c if (!r_flags->out.return_authenticator ||
out 219 source4/torture/rpc/samlogon.c !creds_client_check(samlogon_state->creds, &r_flags->out.return_authenticator->cred)) {
out 231 source4/torture/rpc/samlogon.c creds_decrypt_samlogon(samlogon_state->creds, validation_level, r_flags->out.validation);
out 235 source4/torture/rpc/samlogon.c base = &r_flags->out.validation->sam2->base;
out 238 source4/torture/rpc/samlogon.c base = &r_flags->out.validation->sam3->base;
out 241 source4/torture/rpc/samlogon.c base = &r_flags->out.validation->sam6->base;
out 1365 source4/torture/rpc/samlogon.c samlogon_state.r_flags.out.validation = &validation;
out 1366 source4/torture/rpc/samlogon.c samlogon_state.r_flags.out.authoritative = &authoritative;
out 1367 source4/torture/rpc/samlogon.c samlogon_state.r_flags.out.flags = &flags;
out 1373 source4/torture/rpc/samlogon.c samlogon_state.r_ex.out.validation = &validation;
out 1374 source4/torture/rpc/samlogon.c samlogon_state.r_ex.out.authoritative = &authoritative;
out 1375 source4/torture/rpc/samlogon.c samlogon_state.r_ex.out.flags = &flags;
out 1382 source4/torture/rpc/samlogon.c samlogon_state.r.out.validation = &validation;
out 1383 source4/torture/rpc/samlogon.c samlogon_state.r.out.authoritative = &authoritative;
out 1469 source4/torture/rpc/samlogon.c r.out.validation = &validation;
out 1470 source4/torture/rpc/samlogon.c r.out.authoritative = &authoritative;
out 1471 source4/torture/rpc/samlogon.c r.out.flags = &flags;
out 1496 source4/torture/rpc/samlogon.c if (!r.out.return_authenticator
out 1497 source4/torture/rpc/samlogon.c || !creds_client_check(creds, &r.out.return_authenticator->cred)) {
out 98 source4/torture/rpc/samr.c r.out.handle = handle;
out 167 source4/torture/rpc/samr.c r.out.sdbuf = &sdbuf;
out 222 source4/torture/rpc/samr.c q.out.info = &info;
out 622 source4/torture/rpc/samr.c pwp.out.info = &info;
out 626 source4/torture/rpc/samr.c policy_min_pw_len = pwp.out.info->min_password_length;
out 675 source4/torture/rpc/samr.c pwp.out.info = &info;
out 679 source4/torture/rpc/samr.c policy_min_pw_len = pwp.out.info->min_password_length;
out 756 source4/torture/rpc/samr.c pwp.out.info = &info;
out 760 source4/torture/rpc/samr.c policy_min_pw_len = pwp.out.info->min_password_length;
out 840 source4/torture/rpc/samr.c pwp.out.info = &info;
out 844 source4/torture/rpc/samr.c policy_min_pw_len = pwp.out.info->min_password_length;
out 919 source4/torture/rpc/samr.c pwp.out.info = &info;
out 923 source4/torture/rpc/samr.c policy_min_pw_len = pwp.out.info->min_password_length;
out 947 source4/torture/rpc/samr.c DATA_BLOB in,out;
out 949 source4/torture/rpc/samr.c out = data_blob_talloc_zero(tctx, 16);
out 950 source4/torture/rpc/samr.c sess_crypt_blob(&out, &in, &session_key, true);
out 951 source4/torture/rpc/samr.c memcpy(u.info18.nt_pwd.hash, out.data, out.length);
out 954 source4/torture/rpc/samr.c DATA_BLOB in,out;
out 956 source4/torture/rpc/samr.c out = data_blob_talloc_zero(tctx, 16);
out 957 source4/torture/rpc/samr.c sess_crypt_blob(&out, &in, &session_key, true);
out 958 source4/torture/rpc/samr.c memcpy(u.info18.lm_pwd.hash, out.data, out.length);
out 991 source4/torture/rpc/samr.c pwp.out.info = &info;
out 995 source4/torture/rpc/samr.c policy_min_pw_len = pwp.out.info->min_password_length;
out 1032 source4/torture/rpc/samr.c DATA_BLOB in,out;
out 1035 source4/torture/rpc/samr.c out = data_blob_talloc_zero(tctx, 16);
out 1036 source4/torture/rpc/samr.c sess_crypt_blob(&out, &in, &session_key, true);
out 1037 source4/torture/rpc/samr.c u.info21.lm_owf_password.array = (uint16_t *)out.data;
out 1041 source4/torture/rpc/samr.c DATA_BLOB in,out;
out 1044 source4/torture/rpc/samr.c out = data_blob_talloc_zero(tctx, 16);
out 1045 source4/torture/rpc/samr.c sess_crypt_blob(&out, &in, &session_key, true);
out 1046 source4/torture/rpc/samr.c u.info21.nt_owf_password.array = (uint16_t *)out.data;
out 1117 source4/torture/rpc/samr.c pwp.out.info = &info;
out 1121 source4/torture/rpc/samr.c policy_min_pw_len = pwp.out.info->min_password_length;
out 1224 source4/torture/rpc/samr.c DATA_BLOB in,out;
out 1226 source4/torture/rpc/samr.c out = data_blob_talloc_zero(tctx, 16);
out 1227 source4/torture/rpc/samr.c sess_crypt_blob(&out, &in, &session_key, true);
out 1228 source4/torture/rpc/samr.c memcpy(u.info18.nt_pwd.hash, out.data, out.length);
out 1231 source4/torture/rpc/samr.c DATA_BLOB in,out;
out 1233 source4/torture/rpc/samr.c out = data_blob_talloc_zero(tctx, 16);
out 1234 source4/torture/rpc/samr.c sess_crypt_blob(&out, &in, &session_key, true);
out 1235 source4/torture/rpc/samr.c memcpy(u.info18.lm_pwd.hash, out.data, out.length);
out 1241 source4/torture/rpc/samr.c DATA_BLOB in,out;
out 1244 source4/torture/rpc/samr.c out = data_blob_talloc_zero(tctx, 16);
out 1245 source4/torture/rpc/samr.c sess_crypt_blob(&out, &in, &session_key, true);
out 1246 source4/torture/rpc/samr.c u.info21.lm_owf_password.array = (uint16_t *)out.data;
out 1249 source4/torture/rpc/samr.c DATA_BLOB in,out;
out 1252 source4/torture/rpc/samr.c out = data_blob_talloc_zero(tctx, 16);
out 1253 source4/torture/rpc/samr.c sess_crypt_blob(&out, &in, &session_key, true);
out 1254 source4/torture/rpc/samr.c u.info21.nt_owf_password.array = (uint16_t *)out.data;
out 1291 source4/torture/rpc/samr.c s2.out.result,
out 1295 source4/torture/rpc/samr.c s.out.result,
out 1350 source4/torture/rpc/samr.c q.out.info = &info;
out 1373 source4/torture/rpc/samr.c r.out.rids = &rids;
out 1390 source4/torture/rpc/samr.c r.out.info = &info;
out 1428 source4/torture/rpc/samr.c r.out.info = &info;
out 1450 source4/torture/rpc/samr.c n.out.rids = &rids;
out 1451 source4/torture/rpc/samr.c n.out.types = &types;
out 1454 source4/torture/rpc/samr.c *rid = n.out.rids->ids[0];
out 1520 source4/torture/rpc/samr.c r.out.user_handle = user_handle;
out 1616 source4/torture/rpc/samr.c pwp.out.info = &info;
out 1620 source4/torture/rpc/samr.c policy_min_pw_len = pwp.out.info->min_password_length;
out 1892 source4/torture/rpc/samr.c dom_pw_info.out.info = &info;
out 1903 source4/torture/rpc/samr.c policy_min_pw_len = dom_pw_info.out.info->min_password_length;
out 2062 source4/torture/rpc/samr.c dom_pw_info.out.info = &info;
out 2074 source4/torture/rpc/samr.c policy_min_pw_len = dom_pw_info.out.info->min_password_length;
out 2186 source4/torture/rpc/samr.c r.out.dominfo = &dominfo;
out 2187 source4/torture/rpc/samr.c r.out.reject = &reject;
out 2217 source4/torture/rpc/samr.c r.out.dominfo = &dominfo;
out 2218 source4/torture/rpc/samr.c r.out.reject = &reject;
out 2261 source4/torture/rpc/samr.c r.out.dominfo = &dominfo;
out 2262 source4/torture/rpc/samr.c r.out.reject = &reject;
out 2442 source4/torture/rpc/samr.c r.out.dominfo = &dominfo;
out 2443 source4/torture/rpc/samr.c r.out.reject = &reject;
out 2480 source4/torture/rpc/samr.c r.out.dominfo = &dominfo;
out 2481 source4/torture/rpc/samr.c r.out.reject = &reject;
out 2514 source4/torture/rpc/samr.c r.out.sids = &sids;
out 2633 source4/torture/rpc/samr.c r2.out.info = &info;
out 2639 source4/torture/rpc/samr.c r.out.info = &info;
out 2741 source4/torture/rpc/samr.c r.out.validation = &validation;
out 2742 source4/torture/rpc/samr.c r.out.authoritative = &authoritative;
out 2759 source4/torture/rpc/samr.c torture_assert(tctx, creds_client_check(creds, &r.out.return_authenticator->cred),
out 3307 source4/torture/rpc/samr.c r.out.rights = &rights;
out 3348 source4/torture/rpc/samr.c r.out.sids = &lsa_sid_array;
out 3349 source4/torture/rpc/samr.c r.out.resume_handle = &resume_handle;
out 3373 source4/torture/rpc/samr.c r.out.rights = &user_rights;
out 3393 source4/torture/rpc/samr.c r.out.acct_handle = &lsa_acct_handle;
out 3407 source4/torture/rpc/samr.c r.out.access_mask = &access_mask;
out 3420 source4/torture/rpc/samr.c r.out.handle = &lsa_acct_handle;
out 3433 source4/torture/rpc/samr.c r.out.user_handle = user_handle;
out 3451 source4/torture/rpc/samr.c r.out.sids = &lsa_sid_array;
out 3452 source4/torture/rpc/samr.c r.out.resume_handle = &resume_handle;
out 3476 source4/torture/rpc/samr.c r.out.rights = &user_rights;
out 3496 source4/torture/rpc/samr.c r.out.acct_handle = &lsa_acct_handle;
out 3510 source4/torture/rpc/samr.c r.out.access_mask = &access_mask;
out 3523 source4/torture/rpc/samr.c r.out.handle = &lsa_acct_handle;
out 3542 source4/torture/rpc/samr.c r.out.sids = &lsa_sid_array;
out 3543 source4/torture/rpc/samr.c r.out.resume_handle = &resume_handle;
out 3567 source4/torture/rpc/samr.c r.out.rights = &user_rights;
out 3735 source4/torture/rpc/samr.c q.out.info = &info;
out 3861 source4/torture/rpc/samr.c d.out.user_handle = user_handle;
out 3889 source4/torture/rpc/samr.c d.out.user_handle = &user_handle;
out 3921 source4/torture/rpc/samr.c r.out.group_handle = &group_handle;
out 3928 source4/torture/rpc/samr.c d.out.group_handle = &group_handle;
out 3963 source4/torture/rpc/samr.c r.out.alias_handle = &alias_handle;
out 3970 source4/torture/rpc/samr.c d.out.alias_handle = &alias_handle;
out 3993 source4/torture/rpc/samr.c d.out.alias_handle = alias_handle;
out 4021 source4/torture/rpc/samr.c r.out.alias_handle = alias_handle;
out 4022 source4/torture/rpc/samr.c r.out.rid = &rid;
out 4117 source4/torture/rpc/samr.c r.out.info = &info;
out 4176 source4/torture/rpc/samr.c n.out.rids = &rids;
out 4177 source4/torture/rpc/samr.c n.out.types = &types;
out 4187 source4/torture/rpc/samr.c r.in.rid = n.out.rids->ids[0];
out 4188 source4/torture/rpc/samr.c r.out.user_handle = &user_handle;
out 4192 source4/torture/rpc/samr.c printf("OpenUser(%u) failed - %s\n", n.out.rids->ids[0], nt_errstr(status));
out 4198 source4/torture/rpc/samr.c q.out.info = &info;
out 4258 source4/torture/rpc/samr.c r.out.user_handle = &user_handle;
out 4259 source4/torture/rpc/samr.c r.out.rid = &rid;
out 4300 source4/torture/rpc/samr.c q.out.info = &info;
out 4328 source4/torture/rpc/samr.c d.out.user_handle = &user_handle;
out 4395 source4/torture/rpc/samr.c r.out.user_handle = &user_handle;
out 4396 source4/torture/rpc/samr.c r.out.access_granted = &access_granted;
out 4397 source4/torture/rpc/samr.c r.out.rid = &rid;
out 4433 source4/torture/rpc/samr.c q.out.info = &info;
out 4486 source4/torture/rpc/samr.c d.out.user_handle = &user_handle;
out 4517 source4/torture/rpc/samr.c r.out.info = &info;
out 4546 source4/torture/rpc/samr.c r.out.info = &info;
out 4571 source4/torture/rpc/samr.c r.out.rids = &rids;
out 4601 source4/torture/rpc/samr.c r.out.info = &info;
out 4614 source4/torture/rpc/samr.c s.in.info = *r.out.info;
out 4668 source4/torture/rpc/samr.c r.out.info = &info;
out 4698 source4/torture/rpc/samr.c r.out.info = &info;
out 4725 source4/torture/rpc/samr.c r.out.user_handle = &user_handle;
out 4774 source4/torture/rpc/samr.c r.out.group_handle = &group_handle;
out 4816 source4/torture/rpc/samr.c r.out.alias_handle = &alias_handle;
out 4861 source4/torture/rpc/samr.c r.out.user_handle = &user_handle;
out 4871 source4/torture/rpc/samr.c q.out.info = &info;
out 4921 source4/torture/rpc/samr.c r.out.resume_handle = &resume_handle;
out 4922 source4/torture/rpc/samr.c r.out.num_entries = &num_entries;
out 4923 source4/torture/rpc/samr.c r.out.sam = &sam;
out 4953 source4/torture/rpc/samr.c n.out.rids = &rids;
out 4954 source4/torture/rpc/samr.c n.out.types = &types;
out 4969 source4/torture/rpc/samr.c lr.out.names = &names;
out 4970 source4/torture/rpc/samr.c lr.out.types = &types;
out 5003 source4/torture/rpc/samr.c r.out.resume_handle = &resume_handle;
out 5040 source4/torture/rpc/samr.c r.out.resume_handle = &resume_handle;
out 5041 source4/torture/rpc/samr.c r.out.num_entries = &num_entries;
out 5042 source4/torture/rpc/samr.c r.out.sam = &sam;
out 5080 source4/torture/rpc/samr.c r.out.sam = &sam;
out 5081 source4/torture/rpc/samr.c r.out.num_entries = &num_entries;
out 5082 source4/torture/rpc/samr.c r.out.resume_handle = &resume_handle;
out 5124 source4/torture/rpc/samr.c r.out.idx = &idx;
out 5171 source4/torture/rpc/samr.c r.out.idx = &idx;
out 5226 source4/torture/rpc/samr.c if (i >= querydisplayinfo->out.info->info1.count) {
out 5229 source4/torture/rpc/samr.c r.in.rid = querydisplayinfo->out.info->info1.entries[i].rid;
out 5232 source4/torture/rpc/samr.c if (i >= querydisplayinfo->out.info->info2.count) {
out 5235 source4/torture/rpc/samr.c r.in.rid = querydisplayinfo->out.info->info2.entries[i].rid;
out 5245 source4/torture/rpc/samr.c r.out.user_handle = &user_handle;
out 5259 source4/torture/rpc/samr.c q.out.info = &info;
out 5271 source4/torture/rpc/samr.c STRING_EQUAL_QUERY(querydisplayinfo->out.info->info1.entries[i].full_name,
out 5273 source4/torture/rpc/samr.c STRING_EQUAL_QUERY(querydisplayinfo->out.info->info1.entries[i].account_name,
out 5275 source4/torture/rpc/samr.c STRING_EQUAL_QUERY(querydisplayinfo->out.info->info1.entries[i].description,
out 5277 source4/torture/rpc/samr.c INT_EQUAL_QUERY(querydisplayinfo->out.info->info1.entries[i].rid,
out 5279 source4/torture/rpc/samr.c INT_EQUAL_QUERY(querydisplayinfo->out.info->info1.entries[i].acct_flags,
out 5284 source4/torture/rpc/samr.c STRING_EQUAL_QUERY(querydisplayinfo->out.info->info2.entries[i].account_name,
out 5286 source4/torture/rpc/samr.c STRING_EQUAL_QUERY(querydisplayinfo->out.info->info2.entries[i].description,
out 5288 source4/torture/rpc/samr.c INT_EQUAL_QUERY(querydisplayinfo->out.info->info2.entries[i].rid,
out 5290 source4/torture/rpc/samr.c INT_EQUAL_QUERY((querydisplayinfo->out.info->info2.entries[i].acct_flags & ~ACB_NORMAL),
out 5293 source4/torture/rpc/samr.c if (!(querydisplayinfo->out.info->info2.entries[i].acct_flags & ACB_NORMAL)) {
out 5301 source4/torture/rpc/samr.c querydisplayinfo->out.info->info2.entries[i].acct_flags,
out 5343 source4/torture/rpc/samr.c r.out.total_size = &total_size;
out 5344 source4/torture/rpc/samr.c r.out.returned_size = &returned_size;
out 5345 source4/torture/rpc/samr.c r.out.info = &disp_info;
out 5358 source4/torture/rpc/samr.c r.in.start_idx += r.out.info->info1.count;
out 5364 source4/torture/rpc/samr.c r.in.start_idx += r.out.info->info2.count;
out 5367 source4/torture/rpc/samr.c r.in.start_idx += r.out.info->info3.count;
out 5370 source4/torture/rpc/samr.c r.in.start_idx += r.out.info->info4.count;
out 5373 source4/torture/rpc/samr.c r.in.start_idx += r.out.info->info5.count;
out 5379 source4/torture/rpc/samr.c dom_info.out.info = &info;
out 5446 source4/torture/rpc/samr.c r.out.total_size = &total_size;
out 5447 source4/torture/rpc/samr.c r.out.returned_size = &returned_size;
out 5448 source4/torture/rpc/samr.c r.out.info = &info;
out 5481 source4/torture/rpc/samr.c r.out.total_size = &total_size;
out 5482 source4/torture/rpc/samr.c r.out.returned_size = &returned_size;
out 5483 source4/torture/rpc/samr.c r.out.info = &info;
out 5515 source4/torture/rpc/samr.c r.out.total_size = &total_size;
out 5516 source4/torture/rpc/samr.c r.out.returned_size = &returned_size;
out 5517 source4/torture/rpc/samr.c r.out.info = &info;
out 5521 source4/torture/rpc/samr.c if (NT_STATUS_IS_OK(status) && *r.out.returned_size != 0) {
out 5522 source4/torture/rpc/samr.c if (r.out.info->info1.entries[0].idx != r.in.start_idx + 1) {
out 5525 source4/torture/rpc/samr.c r.out.info->info1.entries[0].idx);
out 5539 source4/torture/rpc/samr.c *r.out.returned_size != 0);
out 5576 source4/torture/rpc/samr.c r.out.info = &info;
out 5678 source4/torture/rpc/samr.c r.out.info = &info;
out 5717 source4/torture/rpc/samr.c q1.out.resume_handle = &resume_handle;
out 5718 source4/torture/rpc/samr.c q1.out.num_entries = &num_entries;
out 5719 source4/torture/rpc/samr.c q1.out.sam = &sam;
out 5729 source4/torture/rpc/samr.c for (i=0; i<*q1.out.num_entries; i++) {
out 5745 source4/torture/rpc/samr.c q2.out.total_size = &total_size;
out 5746 source4/torture/rpc/samr.c q2.out.returned_size = &returned_size;
out 5747 source4/torture/rpc/samr.c q2.out.info = &info;
out 5757 source4/torture/rpc/samr.c for (i=0; i<q2.out.info->info5.count; i++) {
out 5759 source4/torture/rpc/samr.c const char *name = q2.out.info->info5.entries[i].account_name.string;
out 5777 source4/torture/rpc/samr.c q2.in.start_idx += q2.out.info->info5.count;
out 5806 source4/torture/rpc/samr.c d.out.group_handle = group_handle;
out 5848 source4/torture/rpc/samr.c r.out.sid = &out_sid;
out 5880 source4/torture/rpc/samr.c r.out.unknown = &unknown;
out 5940 source4/torture/rpc/samr.c q.out.rids = &rids;
out 5974 source4/torture/rpc/samr.c r.out.group_handle = group_handle;
out 5975 source4/torture/rpc/samr.c r.out.rid = &rid;
out 6064 source4/torture/rpc/samr.c r.out.sam = &sam;
out 6065 source4/torture/rpc/samr.c r.out.num_entries = &num_entries;
out 6066 source4/torture/rpc/samr.c r.out.resume_handle = &resume_handle;
out 6103 source4/torture/rpc/samr.c r.out.sam = &sam;
out 6104 source4/torture/rpc/samr.c r.out.num_entries = &num_entries;
out 6105 source4/torture/rpc/samr.c r.out.resume_handle = &resume_handle;
out 6142 source4/torture/rpc/samr.c r.out.sam = &sam;
out 6143 source4/torture/rpc/samr.c r.out.num_entries = &num_entries;
out 6144 source4/torture/rpc/samr.c r.out.resume_handle = &resume_handle;
out 6187 source4/torture/rpc/samr.c r.out.info = &info;
out 6303 source4/torture/rpc/samr.c r.out.domain_handle = &domain_handle;
out 6421 source4/torture/rpc/samr.c r.out.sid = &sid;
out 6444 source4/torture/rpc/samr.c if (!test_OpenDomain(p, tctx, handle, *r.out.sid, which_ops,
out 6468 source4/torture/rpc/samr.c r.out.resume_handle = &resume_handle;
out 6469 source4/torture/rpc/samr.c r.out.num_entries = &num_entries;
out 6470 source4/torture/rpc/samr.c r.out.sam = &sam;
out 6475 source4/torture/rpc/samr.c if (!*r.out.sam) {
out 6512 source4/torture/rpc/samr.c r.out.connect_handle = &h;
out 6527 source4/torture/rpc/samr.c r2.out.connect_handle = &h;
out 6546 source4/torture/rpc/samr.c r3.out.connect_handle = &h;
out 6565 source4/torture/rpc/samr.c r4.out.connect_handle = &h;
out 6587 source4/torture/rpc/samr.c r5.out.level_out = &level_out;
out 6589 source4/torture/rpc/samr.c r5.out.info_out = &info;
out 6590 source4/torture/rpc/samr.c r5.out.connect_handle = &h;
out 42 source4/torture/rpc/samr_accessmask.c cl.out.handle = h;
out 62 source4/torture/rpc/samr_accessmask.c r5.out.info_out = &info;
out 63 source4/torture/rpc/samr_accessmask.c r5.out.level_out = &level_out;
out 64 source4/torture/rpc/samr_accessmask.c r5.out.connect_handle = h;
out 176 source4/torture/rpc/samr_accessmask.c ed.out.resume_handle = &resume_handle;
out 177 source4/torture/rpc/samr_accessmask.c ed.out.num_entries = &num_entries;
out 178 source4/torture/rpc/samr_accessmask.c ed.out.sam = &sam;
out 203 source4/torture/rpc/samr_accessmask.c ed.out.resume_handle = &resume_handle;
out 204 source4/torture/rpc/samr_accessmask.c ed.out.num_entries = &num_entries;
out 205 source4/torture/rpc/samr_accessmask.c ed.out.sam = &sam;
out 266 source4/torture/rpc/samr_accessmask.c qs.out.sdbuf = &sdbuf;
out 431 source4/torture/rpc/samr_accessmask.c ld.out.sid = &sid;
out 456 source4/torture/rpc/samr_accessmask.c ld.out.sid = &sid;
out 510 source4/torture/rpc/samr_accessmask.c ld.out.sid = &sid;
out 541 source4/torture/rpc/samr_accessmask.c od.out.domain_handle = &dh;
out 99 source4/torture/rpc/samsync.c r.out.validation = &validation;
out 100 source4/torture/rpc/samsync.c r.out.authoritative = &authoritative;
out 109 source4/torture/rpc/samsync.c if (!creds_client_check(creds, &r.out.return_authenticator->cred)) {
out 166 source4/torture/rpc/samsync.c l.out.sid = &sid;
out 176 source4/torture/rpc/samsync.c o.in.sid = *l.out.sid;
out 177 source4/torture/rpc/samsync.c o.out.domain_handle = domain_handle;
out 180 source4/torture/rpc/samsync.c *sid_p = *l.out.sid;
out 202 source4/torture/rpc/samsync.c r.out.sdbuf = &sdbuf;
out 223 source4/torture/rpc/samsync.c r.out.sdbuf = &sdbuf;
out 361 source4/torture/rpc/samsync.c q[levels[i]].out.info = &info[levels[i]];
out 458 source4/torture/rpc/samsync.c r.out.user_handle = &user_handle;
out 468 source4/torture/rpc/samsync.c q.out.info = &info;
out 480 source4/torture/rpc/samsync.c getgroups.out.rids = &rids;
out 746 source4/torture/rpc/samsync.c r.out.alias_handle = &alias_handle;
out 756 source4/torture/rpc/samsync.c q.out.info = &info;
out 797 source4/torture/rpc/samsync.c r.out.group_handle = &group_handle;
out 807 source4/torture/rpc/samsync.c q.out.info = &info;
out 866 source4/torture/rpc/samsync.c o.out.sec_handle = &sec_handle;
out 907 source4/torture/rpc/samsync.c if (q.out.old_val->buf == NULL) {
out 910 source4/torture/rpc/samsync.c lsa_blob1.data = q.out.old_val->buf->data;
out 911 source4/torture/rpc/samsync.c lsa_blob1.length = q.out.old_val->buf->length;
out 919 source4/torture/rpc/samsync.c if (!q.out.old_mtime) {
out 923 source4/torture/rpc/samsync.c if (old->mtime != *q.out.old_mtime) {
out 926 source4/torture/rpc/samsync.c nt_time_string(mem_ctx, *q.out.old_mtime));
out 947 source4/torture/rpc/samsync.c if (q.out.new_val->buf == NULL) {
out 950 source4/torture/rpc/samsync.c lsa_blob1.data = q.out.new_val->buf->data;
out 951 source4/torture/rpc/samsync.c lsa_blob1.length = q.out.new_val->buf->length;
out 959 source4/torture/rpc/samsync.c if (!q.out.new_mtime) {
out 963 source4/torture/rpc/samsync.c if (nsec->mtime != *q.out.new_mtime) {
out 966 source4/torture/rpc/samsync.c nt_time_string(mem_ctx, *q.out.new_mtime));
out 1012 source4/torture/rpc/samsync.c t.out.trustdom_handle = &trustdom_handle;
out 1023 source4/torture/rpc/samsync.c q.out.info = &_info;
out 1074 source4/torture/rpc/samsync.c a.out.acct_handle = &acct_handle;
out 1087 source4/torture/rpc/samsync.c e.out.privs = &privs;
out 1115 source4/torture/rpc/samsync.c r.out.name = &name;
out 1123 source4/torture/rpc/samsync.c if (!r.out.name) {
out 1170 source4/torture/rpc/samsync.c r.out.return_authenticator = &return_authenticator;
out 1171 source4/torture/rpc/samsync.c r.out.delta_enum_array = &delta_enum_array;
out 1179 source4/torture/rpc/samsync.c r.out.sync_context = &sync_context;
out 1197 source4/torture/rpc/samsync.c if (!creds_client_check(samsync_state->creds, &r.out.return_authenticator->cred)) {
out 1201 source4/torture/rpc/samsync.c r.in.sync_context = r.out.sync_context;
out 1374 source4/torture/rpc/samsync.c r.out.return_authenticator = &return_authenticator;
out 1375 source4/torture/rpc/samsync.c r.out.delta_enum_array = &delta_enum_array;
out 1383 source4/torture/rpc/samsync.c r.out.sequence_num = &seq_num;
out 1442 source4/torture/rpc/samsync.c r.out.return_authenticator = &return_authenticator;
out 1443 source4/torture/rpc/samsync.c r.out.delta_enum_array = &delta_enum_array;
out 1451 source4/torture/rpc/samsync.c r.out.sync_context = &sync_context;
out 1469 source4/torture/rpc/samsync.c if (!creds_client_check(creds, &r.out.return_authenticator->cred)) {
out 1546 source4/torture/rpc/samsync.c c.out.connect_handle = samsync_state->connect_handle;
out 1609 source4/torture/rpc/samsync.c r.out.handle = samsync_state->lsa_handle;
out 105 source4/torture/rpc/schannel.c r.out.validation = &validation;
out 106 source4/torture/rpc/schannel.c r.out.authoritative = &authoritative;
out 107 source4/torture/rpc/schannel.c r.out.flags = &_flags;
out 141 source4/torture/rpc/schannel.c r.out.info = &info;
out 145 source4/torture/rpc/schannel.c connect_r.out.connect_handle = &handle;
out 162 source4/torture/rpc/schannel.c opendom.out.domain_handle = &domain_handle;
out 204 source4/torture/rpc/schannel.c r.out.account_name = &account_name_p;
out 209 source4/torture/rpc/schannel.c authority_name_p = *r.out.authority_name;
out 217 source4/torture/rpc/schannel.c if (!r.out.account_name) {
out 627 source4/torture/rpc/schannel.c conn->r.out.validation = talloc(conn->tmp, union netr_Validation);
out 628 source4/torture/rpc/schannel.c conn->r.out.authoritative = talloc(conn->tmp, uint8_t);
out 629 source4/torture/rpc/schannel.c conn->r.out.flags = conn->r.in.flags;
out 796 source4/torture/rpc/schannel.c pwset.out.return_authenticator = &return_authenticator;
out 810 source4/torture/rpc/schannel.c &pwset.out.return_authenticator->cred)) {
out 64 source4/torture/rpc/session_key.c r.out.sec_handle = &sec_handle;
out 119 source4/torture/rpc/session_key.c if (r4.out.new_val == NULL || r4.out.new_val->buf == NULL)
out 121 source4/torture/rpc/session_key.c blob1.data = r4.out.new_val->buf->data;
out 122 source4/torture/rpc/session_key.c blob1.length = r4.out.new_val->buf->size;
out 131 source4/torture/rpc/session_key.c d.out.handle = &sec_handle;
out 86 source4/torture/rpc/spoolss.c op.out.handle = &ctx->server_handle;
out 92 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, op.out.result, "dcerpc_spoolss_OpenPrinter failed");
out 117 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 118 source4/torture/rpc/spoolss.c r.out.count = &count;
out 119 source4/torture/rpc/spoolss.c r.out.info = &info;
out 125 source4/torture/rpc/spoolss.c if (W_ERROR_IS_OK(r.out.result)) {
out 129 source4/torture/rpc/spoolss.c torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
out 140 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "EnumPorts failed");
out 213 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 220 source4/torture/rpc/spoolss.c torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
out 231 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "GetPrintProcessorDirectory failed");
out 276 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 283 source4/torture/rpc/spoolss.c torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
out 294 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "GetPrinterDriverDirectory failed");
out 325 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 326 source4/torture/rpc/spoolss.c r.out.count = &count;
out 327 source4/torture/rpc/spoolss.c r.out.info = &info;
out 334 source4/torture/rpc/spoolss.c if (W_ERROR_IS_OK(r.out.result)) {
out 338 source4/torture/rpc/spoolss.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 348 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "EnumPrinterDrivers failed");
out 444 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 445 source4/torture/rpc/spoolss.c r.out.count = &count;
out 446 source4/torture/rpc/spoolss.c r.out.info = &info;
out 452 source4/torture/rpc/spoolss.c if (W_ERROR_IS_OK(r.out.result)) {
out 456 source4/torture/rpc/spoolss.c torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
out 467 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "EnumMonitors failed");
out 520 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 521 source4/torture/rpc/spoolss.c r.out.count = &count;
out 522 source4/torture/rpc/spoolss.c r.out.info = &info;
out 528 source4/torture/rpc/spoolss.c if (W_ERROR_IS_OK(r.out.result)) {
out 532 source4/torture/rpc/spoolss.c torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
out 543 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "EnumPrintProcessors failed");
out 595 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 596 source4/torture/rpc/spoolss.c r.out.count = &count;
out 597 source4/torture/rpc/spoolss.c r.out.info = &info;
out 603 source4/torture/rpc/spoolss.c if (W_ERROR_IS_OK(r.out.result)) {
out 607 source4/torture/rpc/spoolss.c torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
out 618 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "EnumPrintProcDataTypes failed");
out 646 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 647 source4/torture/rpc/spoolss.c r.out.count = &count;
out 648 source4/torture/rpc/spoolss.c r.out.info = &info;
out 654 source4/torture/rpc/spoolss.c if (W_ERROR_IS_OK(r.out.result)) {
out 658 source4/torture/rpc/spoolss.c torture_assert_werr_equal(tctx, r.out.result, WERR_INSUFFICIENT_BUFFER,
out 669 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "EnumPrinters failed");
out 766 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 773 source4/torture/rpc/spoolss.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 783 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "GetPrinter failed");
out 798 source4/torture/rpc/spoolss.c r.out.handle = handle;
out 823 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 830 source4/torture/rpc/spoolss.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 838 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "GetForm failed");
out 840 source4/torture/rpc/spoolss.c torture_assert(tctx, r.out.info, "No form info returned");
out 843 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "GetForm failed");
out 868 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 869 source4/torture/rpc/spoolss.c r.out.count = &count;
out 870 source4/torture/rpc/spoolss.c r.out.info = &info;
out 877 source4/torture/rpc/spoolss.c if ((r.in.level == 2) && (W_ERROR_EQUAL(r.out.result, WERR_UNKNOWN_LEVEL))) {
out 881 source4/torture/rpc/spoolss.c if (print_server && W_ERROR_EQUAL(r.out.result, WERR_BADFID))
out 884 source4/torture/rpc/spoolss.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 903 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "EnumForms failed");
out 924 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "DeleteForm failed");
out 955 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "AddForm failed");
out 978 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "SetForm failed");
out 1004 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 1005 source4/torture/rpc/spoolss.c r.out.count = &count;
out 1006 source4/torture/rpc/spoolss.c r.out.info = &info;
out 1014 source4/torture/rpc/spoolss.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 1050 source4/torture/rpc/spoolss.c if (!W_ERROR_IS_OK(r.out.result)) {
out 1051 source4/torture/rpc/spoolss.c printf("AddPort failed - %s\n", win_errstr(r.out.result));
out 1075 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 1080 source4/torture/rpc/spoolss.c torture_assert_werr_equal(tctx, r.out.result, WERR_UNKNOWN_LEVEL, "Unexpected return code");
out 1092 source4/torture/rpc/spoolss.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 1102 source4/torture/rpc/spoolss.c torture_assert(tctx, r.out.info, "No job info returned");
out 1103 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "GetJob failed");
out 1157 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "SetJob failed");
out 1173 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 1174 source4/torture/rpc/spoolss.c r.in.buffer = r.out.buffer = NULL;
out 1179 source4/torture/rpc/spoolss.c torture_assert_werr_equal(tctx, r.out.result, WERR_UNKNOWN_LEVEL, "AddJob failed");
out 1184 source4/torture/rpc/spoolss.c torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PARAM, "AddJob failed");
out 1206 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 1207 source4/torture/rpc/spoolss.c r.out.count = &count;
out 1208 source4/torture/rpc/spoolss.c r.out.info = &info;
out 1216 source4/torture/rpc/spoolss.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 1239 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "EnumJobs failed");
out 1266 source4/torture/rpc/spoolss.c s.out.job_id = &job_id;
out 1273 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, s.out.result, "StartDocPrinter failed");
out 1283 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, sp.out.result, "StartPagePrinter failed");
out 1289 source4/torture/rpc/spoolss.c w.out.num_written = &num_written;
out 1293 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, w.out.result, "WritePrinter failed");
out 1301 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, ep.out.result, "EndPagePrinter failed");
out 1310 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, e.out.result, "EndDocPrinter failed");
out 1348 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "SetPrinter failed");
out 1381 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "SetPrinter failed");
out 1400 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 1401 source4/torture/rpc/spoolss.c r.out.type = &type;
out 1402 source4/torture/rpc/spoolss.c r.out.data = &data;
out 1409 source4/torture/rpc/spoolss.c if (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA)) {
out 1415 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "GetPrinterData failed");
out 1436 source4/torture/rpc/spoolss.c r.out.type = &type;
out 1437 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 1438 source4/torture/rpc/spoolss.c r.out.buffer = NULL;
out 1451 source4/torture/rpc/spoolss.c if (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA)) {
out 1453 source4/torture/rpc/spoolss.c r.out.buffer = talloc_array(tctx, uint8_t, needed);
out 1458 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "GetPrinterDataEx failed");
out 1480 source4/torture/rpc/spoolss.c r.out.value_needed = &value_size;
out 1482 source4/torture/rpc/spoolss.c r.out.data_needed = &data_size;
out 1484 source4/torture/rpc/spoolss.c r.out.type = &type;
out 1485 source4/torture/rpc/spoolss.c r.out.data = talloc_zero_array(tctx, uint8_t, 0);
out 1494 source4/torture/rpc/spoolss.c r.out.value_name = talloc_zero_array(tctx, const char, value_size);
out 1496 source4/torture/rpc/spoolss.c r.out.data = talloc_zero_array(tctx, uint8_t, data_size);
out 1502 source4/torture/rpc/spoolss.c test_GetPrinterData(tctx, p, handle, r.out.value_name);
out 1506 source4/torture/rpc/spoolss.c r.out.value_name);
out 1510 source4/torture/rpc/spoolss.c } while (W_ERROR_IS_OK(r.out.result));
out 1528 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 1529 source4/torture/rpc/spoolss.c r.out.count = &count;
out 1530 source4/torture/rpc/spoolss.c r.out.info = &info;
out 1623 source4/torture/rpc/spoolss.c cp.out.handle = handle;
out 1650 source4/torture/rpc/spoolss.c op.out.handle = &handle;
out 1656 source4/torture/rpc/spoolss.c if (!W_ERROR_EQUAL(WERR_INVALID_PRINTER_NAME,op.out.result)) {
out 1658 source4/torture/rpc/spoolss.c name, win_errstr(op.out.result));
out 1661 source4/torture/rpc/spoolss.c if (W_ERROR_IS_OK(op.out.result)) {
out 1671 source4/torture/rpc/spoolss.c opEx.out.handle = &handle;
out 1677 source4/torture/rpc/spoolss.c if (!W_ERROR_EQUAL(WERR_INVALID_PARAM,opEx.out.result)) {
out 1679 source4/torture/rpc/spoolss.c name, win_errstr(opEx.out.result));
out 1682 source4/torture/rpc/spoolss.c if (W_ERROR_IS_OK(opEx.out.result)) {
out 1702 source4/torture/rpc/spoolss.c r.out.handle = &handle;
out 1710 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "OpenPrinter failed");
out 1750 source4/torture/rpc/spoolss.c r.out.handle = handle;
out 1766 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "OpenPrinterEx failed");
out 1850 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 1851 source4/torture/rpc/spoolss.c r.out.count = &count;
out 1852 source4/torture/rpc/spoolss.c r.out.info = &info;
out 1859 source4/torture/rpc/spoolss.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 1869 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "EnumPrinters failed");
out 1920 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 1921 source4/torture/rpc/spoolss.c r.out.server_major_version = &server_major_version;
out 1922 source4/torture/rpc/spoolss.c r.out.server_minor_version = &server_minor_version;
out 1932 source4/torture/rpc/spoolss.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 1943 source4/torture/rpc/spoolss.c if (!W_ERROR_IS_OK(r.out.result)) {
out 1945 source4/torture/rpc/spoolss.c win_errstr(r.out.result));
out 1972 source4/torture/rpc/spoolss.c r.out.needed = &needed;
out 1973 source4/torture/rpc/spoolss.c r.out.count = &count;
out 1974 source4/torture/rpc/spoolss.c r.out.info = &info;
out 1982 source4/torture/rpc/spoolss.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 1992 source4/torture/rpc/spoolss.c torture_assert_werr_ok(tctx, r.out.result, "EnumPrinterDrivers failed");
out 96 source4/torture/rpc/spoolss_notify.c r2->out.result = WERR_OK;
out 211 source4/torture/rpc/spoolss_notify.c q.out.handle = &handle;
out 219 source4/torture/rpc/spoolss_notify.c torture_assert_werr_ok(tctx, q.out.result, "OpenPrinter failed");
out 272 source4/torture/rpc/spoolss_notify.c torture_assert_werr_ok(tctx, r.out.result, "error return code for FFPCNEx");
out 275 source4/torture/rpc/spoolss_notify.c cp.out.handle = &handle;
out 307 source4/torture/rpc/spoolss_notify.c r.out.handle = &h;
out 313 source4/torture/rpc/spoolss_notify.c torture_assert_werr_ok(tctx, r.out.result, "error return code");
out 316 source4/torture/rpc/spoolss_notify.c s.out.handle = &h;
out 322 source4/torture/rpc/spoolss_notify.c torture_assert_werr_ok(tctx, r.out.result, "error return code");
out 60 source4/torture/rpc/spoolss_win.c op.out.handle = handle;
out 72 source4/torture/rpc/spoolss_win.c torture_assert_werr_ok(tctx, op.out.result, "OpenPrinterEx failed");
out 101 source4/torture/rpc/spoolss_win.c op.out.handle = &handle;
out 104 source4/torture/rpc/spoolss_win.c cp.out.handle = &handle;
out 111 source4/torture/rpc/spoolss_win.c if (NT_STATUS_IS_OK(status) && W_ERROR_IS_OK(op.out.result)) {
out 168 source4/torture/rpc/spoolss_win.c gpd.out.needed = &needed;
out 169 source4/torture/rpc/spoolss_win.c gpd.out.type = &type;
out 170 source4/torture/rpc/spoolss_win.c gpd.out.data = &data;
out 174 source4/torture/rpc/spoolss_win.c torture_assert_werr_equal(tctx, gpd.out.result, expected_werr,
out 202 source4/torture/rpc/spoolss_win.c ep.out.needed = &needed;
out 203 source4/torture/rpc/spoolss_win.c ep.out.count = &count;
out 204 source4/torture/rpc/spoolss_win.c ep.out.info = &info;
out 209 source4/torture/rpc/spoolss_win.c if (W_ERROR_EQUAL(ep.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 217 source4/torture/rpc/spoolss_win.c torture_assert_werr_ok(tctx, ep.out.result, "EnumPrinters failed.");
out 245 source4/torture/rpc/spoolss_win.c gp.out.needed = &needed;
out 250 source4/torture/rpc/spoolss_win.c if (W_ERROR_EQUAL(gp.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 258 source4/torture/rpc/spoolss_win.c torture_assert_werr_ok(tctx, gp.out.result, "GetPrinter failed");
out 260 source4/torture/rpc/spoolss_win.c ctx->current_info = gp.out.info;
out 262 source4/torture/rpc/spoolss_win.c if (level == 2 && gp.out.info) {
out 263 source4/torture/rpc/spoolss_win.c ctx->printer_has_driver = gp.out.info->info2.drivername &&
out 264 source4/torture/rpc/spoolss_win.c strlen(gp.out.info->info2.drivername);
out 287 source4/torture/rpc/spoolss_win.c ej.out.needed = &needed;
out 288 source4/torture/rpc/spoolss_win.c ej.out.count = &count;
out 289 source4/torture/rpc/spoolss_win.c ej.out.info = &info;
out 293 source4/torture/rpc/spoolss_win.c if (W_ERROR_EQUAL(ej.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 300 source4/torture/rpc/spoolss_win.c torture_assert_werr_ok(tctx, ej.out.result, "EnumJobs failed");
out 326 source4/torture/rpc/spoolss_win.c gpd2.out.needed = &needed;
out 327 source4/torture/rpc/spoolss_win.c gpd2.out.server_major_version = &server_major_version;
out 328 source4/torture/rpc/spoolss_win.c gpd2.out.server_minor_version = &server_minor_version;
out 334 source4/torture/rpc/spoolss_win.c torture_assert_werr_ok(tctx, gpd2.out.result,
out 359 source4/torture/rpc/spoolss_win.c ef.out.needed = &needed;
out 360 source4/torture/rpc/spoolss_win.c ef.out.count = &count;
out 361 source4/torture/rpc/spoolss_win.c ef.out.info = &info;
out 366 source4/torture/rpc/spoolss_win.c if (W_ERROR_EQUAL(ef.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 374 source4/torture/rpc/spoolss_win.c torture_assert_werr_ok(tctx, ef.out.result, "EnumForms failed");
out 395 source4/torture/rpc/spoolss_win.c epk.out.needed = &needed;
out 396 source4/torture/rpc/spoolss_win.c epk.out.key_buffer = &key_buffer;
out 402 source4/torture/rpc/spoolss_win.c if (W_ERROR_EQUAL(epk.out.result, WERR_MORE_DATA)) {
out 409 source4/torture/rpc/spoolss_win.c torture_assert_werr_ok(tctx, epk.out.result, "EnumPrinterKey failed");
out 434 source4/torture/rpc/spoolss_win.c epde.out.needed = &needed;
out 435 source4/torture/rpc/spoolss_win.c epde.out.count = &count;
out 436 source4/torture/rpc/spoolss_win.c epde.out.info = &info;
out 440 source4/torture/rpc/spoolss_win.c if (W_ERROR_EQUAL(epde.out.result, WERR_MORE_DATA)) {
out 447 source4/torture/rpc/spoolss_win.c torture_assert_werr_equal(tctx, epde.out.result, expected_error,
out 461 source4/torture/rpc/spoolss_win.c cp.out.handle = handle;
out 41 source4/torture/rpc/srvsvc.c r.out.info = &info;
out 49 source4/torture/rpc/srvsvc.c torture_assert_werr_ok(tctx, r.out.result, "NetCharDevGetInfo failed");
out 67 source4/torture/rpc/srvsvc.c ZERO_STRUCT(r.out);
out 73 source4/torture/rpc/srvsvc.c torture_assert_werr_ok(tctx, r.out.result, "NetCharDevControl failed");
out 97 source4/torture/rpc/srvsvc.c r.out.info_ctr = &info_ctr;
out 98 source4/torture/rpc/srvsvc.c r.out.totalentries = &totalentries;
out 119 source4/torture/rpc/srvsvc.c if (!W_ERROR_IS_OK(r.out.result)) {
out 120 source4/torture/rpc/srvsvc.c torture_comment(tctx, "NetCharDevEnum failed: %s\n", win_errstr(r.out.result));
out 126 source4/torture/rpc/srvsvc.c for (j=0;j<r.out.info_ctr->ctr.ctr1->count;j++) {
out 128 source4/torture/rpc/srvsvc.c device = r.out.info_ctr->ctr.ctr1->array[j].device;
out 157 source4/torture/rpc/srvsvc.c r.out.info = &info;
out 165 source4/torture/rpc/srvsvc.c torture_assert_werr_ok(tctx, r.out.result, "NetCharDevQGetInfo failed");
out 186 source4/torture/rpc/srvsvc.c ZERO_STRUCT(r.out);
out 215 source4/torture/rpc/srvsvc.c if (!W_ERROR_IS_OK(r.out.result)) {
out 217 source4/torture/rpc/srvsvc.c r.in.level, r.in.queue_name, win_errstr(r.out.result));
out 245 source4/torture/rpc/srvsvc.c r.out.totalentries = &totalentries;
out 246 source4/torture/rpc/srvsvc.c r.out.info_ctr = &info_ctr;
out 266 source4/torture/rpc/srvsvc.c if (!W_ERROR_IS_OK(r.out.result)) {
out 267 source4/torture/rpc/srvsvc.c torture_comment(tctx, "NetCharDevQEnum failed: %s\n", win_errstr(r.out.result));
out 273 source4/torture/rpc/srvsvc.c for (j=0;j<r.out.info_ctr->ctr.ctr1->count;j++) {
out 275 source4/torture/rpc/srvsvc.c device = r.out.info_ctr->ctr.ctr1->array[j].device;
out 308 source4/torture/rpc/srvsvc.c r.out.totalentries = &totalentries;
out 309 source4/torture/rpc/srvsvc.c r.out.info_ctr = &info_ctr;
out 328 source4/torture/rpc/srvsvc.c if (!W_ERROR_IS_OK(r.out.result)) {
out 329 source4/torture/rpc/srvsvc.c torture_comment(tctx, "NetConnEnum failed: %s\n", win_errstr(r.out.result));
out 359 source4/torture/rpc/srvsvc.c r.out.totalentries = &totalentries;
out 360 source4/torture/rpc/srvsvc.c r.out.info_ctr = &info_ctr;
out 378 source4/torture/rpc/srvsvc.c if (!W_ERROR_IS_OK(r.out.result)) {
out 379 source4/torture/rpc/srvsvc.c torture_comment(tctx, "NetFileEnum failed: %s\n", win_errstr(r.out.result));
out 412 source4/torture/rpc/srvsvc.c r.out.totalentries = &totalentries;
out 413 source4/torture/rpc/srvsvc.c r.out.info_ctr = &info_ctr;
out 444 source4/torture/rpc/srvsvc.c if (!W_ERROR_IS_OK(r.out.result)) {
out 445 source4/torture/rpc/srvsvc.c torture_comment(tctx, "NetSessEnum failed: %s\n", win_errstr(r.out.result));
out 464 source4/torture/rpc/srvsvc.c r.out.type = &type;
out 471 source4/torture/rpc/srvsvc.c torture_assert_werr_ok(tctx, r.out.result, "NetShareCheck failed");
out 499 source4/torture/rpc/srvsvc.c r.out.info = &info;
out 513 source4/torture/rpc/srvsvc.c torture_assert_werr_equal(tctx, r.out.result, expected, "NetShareGetInfo failed");
out 516 source4/torture/rpc/srvsvc.c if (!r.out.info->info2 || !r.out.info->info2->path) continue;
out 517 source4/torture/rpc/srvsvc.c if (!test_NetShareCheck(p, tctx, r.out.info->info2->path)) {
out 584 source4/torture/rpc/srvsvc.c torture_assert_werr_ok(tctx, a.out.result, "NetShareAdd level 2 on share 'testshare' failed");
out 593 source4/torture/rpc/srvsvc.c ZERO_STRUCT(r.out);
out 667 source4/torture/rpc/srvsvc.c torture_assert_werr_equal(tctx, r.out.result, levels[i].expected, "NetShareSetInfo failed");
out 670 source4/torture/rpc/srvsvc.c q.out.info = &info;
out 674 source4/torture/rpc/srvsvc.c torture_assert_werr_ok(tctx, q.out.result, "NetShareGetInfo failed");
out 676 source4/torture/rpc/srvsvc.c torture_assert_str_equal(tctx, q.out.info->info502->name, r.in.share_name,
out 683 source4/torture/rpc/srvsvc.c torture_assert_str_equal(tctx, q.out.info->info502->comment, "test comment 1", "comment");
out 686 source4/torture/rpc/srvsvc.c torture_assert_str_equal(tctx, q.out.info->info2->comment, "test comment 2", "comment");
out 687 source4/torture/rpc/srvsvc.c torture_assert_int_equal(tctx, q.out.info->info2->max_users, 2, "max users");
out 688 source4/torture/rpc/srvsvc.c torture_assert_str_equal(tctx, q.out.info->info2->path, "C:\\", "path");
out 691 source4/torture/rpc/srvsvc.c torture_assert_str_equal(tctx, q.out.info->info501->comment, "test comment 501", "comment");
out 694 source4/torture/rpc/srvsvc.c torture_assert_str_equal(tctx, q.out.info->info502->comment, "test comment 502", "comment");
out 695 source4/torture/rpc/srvsvc.c torture_assert_int_equal(tctx, q.out.info->info502->max_users, 502, "max users");
out 696 source4/torture/rpc/srvsvc.c torture_assert_str_equal(tctx, q.out.info->info502->path, "C:\\", "path");
out 699 source4/torture/rpc/srvsvc.c torture_assert_str_equal(tctx, q.out.info->info1004->comment, "test comment 1004",
out 705 source4/torture/rpc/srvsvc.c torture_assert_int_equal(tctx, q.out.info->info1006->max_users, 1006, "Max users");
out 720 source4/torture/rpc/srvsvc.c torture_assert_werr_ok(tctx, a.out.result, "NetShareDel on share 'testshare502' failed");
out 761 source4/torture/rpc/srvsvc.c r.out.resume_handle = &resume_handle;
out 762 source4/torture/rpc/srvsvc.c r.out.totalentries = &totalentries;
out 763 source4/torture/rpc/srvsvc.c r.out.info_ctr = &info_ctr;
out 803 source4/torture/rpc/srvsvc.c torture_assert_werr_equal(tctx, r.out.result, expected, "NetShareEnumAll failed");
out 806 source4/torture/rpc/srvsvc.c if (info_ctr.level == 2 && r.out.info_ctr->ctr.ctr2) {
out 807 source4/torture/rpc/srvsvc.c for (j=0;j<r.out.info_ctr->ctr.ctr2->count;j++) {
out 809 source4/torture/rpc/srvsvc.c name = r.out.info_ctr->ctr.ctr2->array[j].name;
out 861 source4/torture/rpc/srvsvc.c r.out.totalentries = &totalentries;
out 862 source4/torture/rpc/srvsvc.c r.out.info_ctr = &info_ctr;
out 898 source4/torture/rpc/srvsvc.c torture_assert_werr_equal(tctx, r.out.result, expected, "NetShareEnum failed");
out 932 source4/torture/rpc/srvsvc.c r.out.info = &info;
out 936 source4/torture/rpc/srvsvc.c if (!W_ERROR_IS_OK(r.out.result)) {
out 937 source4/torture/rpc/srvsvc.c torture_comment(tctx, "NetSrvGetInfo failed: %s\n", win_errstr(r.out.result));
out 963 source4/torture/rpc/srvsvc.c r.out.info = &info;
out 964 source4/torture/rpc/srvsvc.c r.out.totalentries = &totalentries;
out 965 source4/torture/rpc/srvsvc.c r.out.resume_handle = &resume_handle;
out 968 source4/torture/rpc/srvsvc.c ZERO_STRUCTP(r.out.info);
out 973 source4/torture/rpc/srvsvc.c torture_assert_werr_ok(tctx, r.out.result, "NetDiskEnum failed");
out 1001 source4/torture/rpc/srvsvc.c r.out.totalentries = &totalentries;
out 1002 source4/torture/rpc/srvsvc.c r.out.transports = &transports;
out 1019 source4/torture/rpc/srvsvc.c if (!W_ERROR_IS_OK(r.out.result)) {
out 1020 source4/torture/rpc/srvsvc.c torture_comment(tctx, "unexpected result: %s\n", win_errstr(r.out.result));
out 1038 source4/torture/rpc/srvsvc.c r.out.info = &info;
out 1043 source4/torture/rpc/srvsvc.c torture_assert_werr_ok(tctx, r.out.result, "NetRemoteTOD failed");
out 1079 source4/torture/rpc/srvsvc.c ZERO_STRUCT(r.out);
out 1091 source4/torture/rpc/srvsvc.c if (W_ERROR_IS_OK(r.out.result)) {
out 1123 source4/torture/rpc/srvsvc.c if (!W_ERROR_IS_OK(r.out.result)) {
out 38 source4/torture/rpc/svcctl.c r.out.handle = h;
out 52 source4/torture/rpc/svcctl.c r.out.handle = h;
out 68 source4/torture/rpc/svcctl.c r.out.handle = s;
out 73 source4/torture/rpc/svcctl.c torture_assert_werr_ok(tctx, r.out.result, "OpenServiceW failed!");
out 94 source4/torture/rpc/svcctl.c r.out.service_status = &service_status;
out 98 source4/torture/rpc/svcctl.c torture_assert_werr_ok(tctx, r.out.result, "QueryServiceStatus failed!");
out 131 source4/torture/rpc/svcctl.c r.out.buffer = buffer;
out 132 source4/torture/rpc/svcctl.c r.out.needed = &needed;
out 137 source4/torture/rpc/svcctl.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 140 source4/torture/rpc/svcctl.c r.out.buffer = buffer;
out 144 source4/torture/rpc/svcctl.c torture_assert_werr_ok(tctx, r.out.result, "QueryServiceStatusEx failed!");
out 175 source4/torture/rpc/svcctl.c r.out.query = &query;
out 176 source4/torture/rpc/svcctl.c r.out.needed = &needed;
out 181 source4/torture/rpc/svcctl.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 187 source4/torture/rpc/svcctl.c torture_assert_werr_ok(tctx, r.out.result, "QueryServiceConfigW failed!");
out 220 source4/torture/rpc/svcctl.c r.out.buffer = buffer;
out 221 source4/torture/rpc/svcctl.c r.out.needed = &needed;
out 226 source4/torture/rpc/svcctl.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 229 source4/torture/rpc/svcctl.c r.out.buffer = buffer;
out 233 source4/torture/rpc/svcctl.c torture_assert_werr_ok(tctx, r.out.result, "QueryServiceConfig2W failed!");
out 238 source4/torture/rpc/svcctl.c r.out.buffer = buffer;
out 239 source4/torture/rpc/svcctl.c r.out.needed = &needed;
out 244 source4/torture/rpc/svcctl.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 247 source4/torture/rpc/svcctl.c r.out.buffer = buffer;
out 251 source4/torture/rpc/svcctl.c torture_assert_werr_ok(tctx, r.out.result, "QueryServiceConfig2W failed!");
out 281 source4/torture/rpc/svcctl.c r.out.buffer = NULL;
out 282 source4/torture/rpc/svcctl.c r.out.needed = &needed;
out 287 source4/torture/rpc/svcctl.c torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PARAM,
out 296 source4/torture/rpc/svcctl.c if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
out 299 source4/torture/rpc/svcctl.c r.out.buffer = buffer;
out 305 source4/torture/rpc/svcctl.c torture_assert_werr_ok(tctx, r.out.result, "QueryServiceObjectSecurity failed!");
out 335 source4/torture/rpc/svcctl.c torture_assert_werr_equal(tctx, r.out.result,
out 363 source4/torture/rpc/svcctl.c r.out.service_status = &service_status;
out 368 source4/torture/rpc/svcctl.c torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PARAM,
out 399 source4/torture/rpc/svcctl.c r.out.service = NULL;
out 400 source4/torture/rpc/svcctl.c r.out.resume_handle = &resume_handle;
out 401 source4/torture/rpc/svcctl.c r.out.services_returned = &services_returned;
out 402 source4/torture/rpc/svcctl.c r.out.needed = &needed;
out 408 source4/torture/rpc/svcctl.c if (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA)) {
out 410 source4/torture/rpc/svcctl.c r.out.service = talloc_array(tctx, uint8_t, needed);
out 415 source4/torture/rpc/svcctl.c torture_assert_werr_ok(tctx, r.out.result, "EnumServicesStatus failed");
out 425 source4/torture/rpc/svcctl.c blob.data = talloc_steal(tctx, r.out.service);
out 478 source4/torture/rpc/svcctl.c r.out.service_status = NULL;
out 479 source4/torture/rpc/svcctl.c r.out.services_returned = &services_returned;
out 480 source4/torture/rpc/svcctl.c r.out.needed = &needed;
out 486 source4/torture/rpc/svcctl.c torture_assert_werr_equal(tctx, r.out.result, WERR_INVALID_PARAM,
out 497 source4/torture/rpc/svcctl.c if (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA)) {
out 499 source4/torture/rpc/svcctl.c r.out.service_status = talloc_array(tctx, uint8_t, needed);
out 507 source4/torture/rpc/svcctl.c torture_assert_werr_ok(tctx, r.out.result,
out 71 source4/torture/rpc/testjoin.c n.out.rids = &rids;
out 72 source4/torture/rpc/testjoin.c n.out.types = &types;
out 76 source4/torture/rpc/testjoin.c rid = n.out.rids->ids[0];
out 84 source4/torture/rpc/testjoin.c r.out.user_handle = &user_handle;
out 93 source4/torture/rpc/testjoin.c d.out.user_handle = &user_handle;
out 163 source4/torture/rpc/testjoin.c c.out.connect_handle = &handle;
out 180 source4/torture/rpc/testjoin.c l.out.sid = &sid;
out 188 source4/torture/rpc/testjoin.c talloc_steal(join, *l.out.sid);
out 189 source4/torture/rpc/testjoin.c join->dom_sid = *l.out.sid;
out 195 source4/torture/rpc/testjoin.c o.in.sid = *l.out.sid;
out 196 source4/torture/rpc/testjoin.c o.out.domain_handle = &domain_handle;
out 212 source4/torture/rpc/testjoin.c r.out.user_handle = &join->user_handle;
out 213 source4/torture/rpc/testjoin.c r.out.access_granted = &access_granted;
out 214 source4/torture/rpc/testjoin.c r.out.rid = &rid;
out 233 source4/torture/rpc/testjoin.c pwp.out.info = &info;
out 237 source4/torture/rpc/testjoin.c policy_min_pw_len = pwp.out.info->min_password_length;
out 356 source4/torture/rpc/testjoin.c if (libnet_r->out.error_string) {
out 357 source4/torture/rpc/testjoin.c DEBUG(0, ("Domain join failed - %s\n", libnet_r->out.error_string));
out 364 source4/torture/rpc/testjoin.c tj->p = libnet_r->out.samr_pipe;
out 365 source4/torture/rpc/testjoin.c tj->user_handle = *libnet_r->out.user_handle;
out 366 source4/torture/rpc/testjoin.c tj->dom_sid = libnet_r->out.domain_sid;
out 367 source4/torture/rpc/testjoin.c talloc_steal(tj, libnet_r->out.domain_sid);
out 368 source4/torture/rpc/testjoin.c tj->dom_netbios_name = libnet_r->out.domain_name;
out 369 source4/torture/rpc/testjoin.c talloc_steal(tj, libnet_r->out.domain_name);
out 370 source4/torture/rpc/testjoin.c tj->dom_dns_name = libnet_r->out.realm;
out 371 source4/torture/rpc/testjoin.c talloc_steal(tj, libnet_r->out.realm);
out 372 source4/torture/rpc/testjoin.c tj->user_guid = libnet_r->out.account_guid;
out 404 source4/torture/rpc/testjoin.c cli_credentials_set_domain(*machine_credentials, libnet_r->out.domain_name, CRED_SPECIFIED);
out 405 source4/torture/rpc/testjoin.c if (libnet_r->out.realm) {
out 406 source4/torture/rpc/testjoin.c cli_credentials_set_realm(*machine_credentials, libnet_r->out.realm, CRED_SPECIFIED);
out 409 source4/torture/rpc/testjoin.c cli_credentials_set_password(*machine_credentials, libnet_r->out.join_password, CRED_SPECIFIED);
out 410 source4/torture/rpc/testjoin.c cli_credentials_set_kvno(*machine_credentials, libnet_r->out.kvno);
out 449 source4/torture/rpc/testjoin.c if (!libnet_r->out.server_dn_str) {
out 455 source4/torture/rpc/testjoin.c libnet_r->out.error_string = NULL;
out 461 source4/torture/rpc/testjoin.c libnet_r->out.error_string = NULL;
out 467 source4/torture/rpc/testjoin.c server_dn = ldb_dn_new(tmp_ctx, ldb_ctx, libnet_r->out.server_dn_str);
out 469 source4/torture/rpc/testjoin.c libnet_r->out.error_string = NULL;
out 474 source4/torture/rpc/testjoin.c remote_ldb_url = talloc_asprintf(tmp_ctx, "ldap://%s", libnet_r->out.samr_binding->host);
out 476 source4/torture/rpc/testjoin.c libnet_r->out.error_string = NULL;
out 486 source4/torture/rpc/testjoin.c libnet_r->out.error_string = NULL;
out 493 source4/torture/rpc/testjoin.c libnet_r->out.error_string = NULL;
out 498 source4/torture/rpc/testjoin.c DEBUG(0, ("%s removed successfully.\n", libnet_r->out.server_dn_str));
out 517 source4/torture/rpc/testjoin.c d.out.user_handle = &join->user_handle;
out 572 source4/torture/rpc/testjoin.c return join->libnet_r->out.server_dn_str;
out 39 source4/torture/rpc/unixinfo.c r.out.uid = &uid;
out 57 source4/torture/rpc/unixinfo.c r.out.sid = &sid;
out 80 source4/torture/rpc/unixinfo.c r.out.count = &num_uids;
out 81 source4/torture/rpc/unixinfo.c r.out.infos = talloc_array(tctx, struct unixinfo_GetPWUidInfo, num_uids);
out 102 source4/torture/rpc/unixinfo.c r.out.gid = &gid;
out 120 source4/torture/rpc/unixinfo.c r.out.sid = &sid;
out 67 source4/torture/rpc/winreg.c r.out.version = &v;
out 72 source4/torture/rpc/winreg.c torture_assert_werr_ok(tctx, r.out.result, "GetVersion failed");
out 95 source4/torture/rpc/winreg.c if (!W_ERROR_IS_OK(r.out.result)) {
out 98 source4/torture/rpc/winreg.c win_errstr(r.out.result));
out 115 source4/torture/rpc/winreg.c r.out.new_handle = &newhandle;
out 120 source4/torture/rpc/winreg.c r.in.action_taken = r.out.action_taken = &action_taken;
out 126 source4/torture/rpc/winreg.c torture_assert_werr_ok(tctx, r.out.result, "CreateKey failed");
out 170 source4/torture/rpc/winreg.c r.out.new_handle = newhandle;
out 175 source4/torture/rpc/winreg.c r.in.action_taken = r.out.action_taken = &action_taken;
out 181 source4/torture/rpc/winreg.c torture_assert_werr_ok(tctx, r.out.result, "CreateKey with sd failed");
out 208 source4/torture/rpc/winreg.c r.in.sd = r.out.sd = talloc_zero(tctx, struct KeySecurityData);
out 215 source4/torture/rpc/winreg.c torture_assert_werr_equal(tctx, r.out.result, get_werr,
out 218 source4/torture/rpc/winreg.c sdblob.data = r.out.sd->data;
out 219 source4/torture/rpc/winreg.c sdblob.length = r.out.sd->len;
out 304 source4/torture/rpc/winreg.c torture_assert_werr_equal(tctx, r.out.result, werr,
out 324 source4/torture/rpc/winreg.c r.in.handle = r.out.handle = handle;
out 329 source4/torture/rpc/winreg.c torture_assert_werr_ok(tctx, r.out.result, "CloseKey failed");
out 345 source4/torture/rpc/winreg.c torture_assert_werr_ok(tctx, r.out.result, "FlushKey failed");
out 364 source4/torture/rpc/winreg.c r.out.handle = key_handle;
out 369 source4/torture/rpc/winreg.c torture_assert_werr_equal(tctx, r.out.result, open_werr,
out 372 source4/torture/rpc/winreg.c if (success && W_ERROR_EQUAL(r.out.result, WERR_OK)) {
out 825 source4/torture/rpc/winreg.c goto out;
out 830 source4/torture/rpc/winreg.c goto out;
out 836 source4/torture/rpc/winreg.c goto out;
out 842 source4/torture/rpc/winreg.c goto out;
out 847 source4/torture/rpc/winreg.c goto out;
out 853 source4/torture/rpc/winreg.c goto out;
out 856 source4/torture/rpc/winreg.c out:
out 938 source4/torture/rpc/winreg.c goto out;
out 944 source4/torture/rpc/winreg.c goto out;
out 955 source4/torture/rpc/winreg.c goto out;
out 962 source4/torture/rpc/winreg.c goto out;
out 968 source4/torture/rpc/winreg.c goto out;
out 975 source4/torture/rpc/winreg.c goto out;
out 978 source4/torture/rpc/winreg.c out:
out 1259 source4/torture/rpc/winreg.c goto out;
out 1283 source4/torture/rpc/winreg.c goto out;
out 1307 source4/torture/rpc/winreg.c goto out;
out 1331 source4/torture/rpc/winreg.c goto out;
out 1336 source4/torture/rpc/winreg.c out:
out 1389 source4/torture/rpc/winreg.c torture_assert_werr_ok(tctx, r.out.result, "DeleteKey failed");
out 1406 source4/torture/rpc/winreg.c r.out.num_subkeys = &num_subkeys;
out 1407 source4/torture/rpc/winreg.c r.out.max_subkeylen = &max_subkeylen;
out 1408 source4/torture/rpc/winreg.c r.out.max_classlen = &max_classlen;
out 1409 source4/torture/rpc/winreg.c r.out.num_values = &num_values;
out 1410 source4/torture/rpc/winreg.c r.out.max_valnamelen = &max_valnamelen;
out 1411 source4/torture/rpc/winreg.c r.out.max_valbufsize = &max_valbufsize;
out 1412 source4/torture/rpc/winreg.c r.out.secdescsize = &secdescsize;
out 1413 source4/torture/rpc/winreg.c r.out.last_changed_time = &last_changed_time;
out 1415 source4/torture/rpc/winreg.c r.out.classname = talloc(tctx, struct winreg_String);
out 1424 source4/torture/rpc/winreg.c torture_assert_werr_ok(tctx, r.out.result, "QueryInfoKey failed");
out 1450 source4/torture/rpc/winreg.c r.out.name = &name;
out 1459 source4/torture/rpc/winreg.c if (NT_STATUS_IS_OK(status) && W_ERROR_IS_OK(r.out.result)) {
out 1464 source4/torture/rpc/winreg.c r.out.name->name);
out 1466 source4/torture/rpc/winreg.c if (!test_OpenKey(p, tctx, handle, r.out.name->name,
out 1476 source4/torture/rpc/winreg.c } while (NT_STATUS_IS_OK(status) && W_ERROR_IS_OK(r.out.result));
out 1480 source4/torture/rpc/winreg.c if (!W_ERROR_IS_OK(r.out.result) &&
out 1481 source4/torture/rpc/winreg.c !W_ERROR_EQUAL(r.out.result, WERR_NO_MORE_ITEMS)) {
out 1499 source4/torture/rpc/winreg.c r.in.values = r.out.values = talloc_array(tctx, struct QueryMultipleValue, 1);
out 1507 source4/torture/rpc/winreg.c r.in.buffer_size = r.out.buffer_size = talloc(tctx, uint32_t);
out 1511 source4/torture/rpc/winreg.c r.in.buffer = r.out.buffer = talloc_zero_array(tctx, uint8_t,
out 1521 source4/torture/rpc/winreg.c } while (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA));
out 1523 source4/torture/rpc/winreg.c torture_assert_werr_ok(tctx, r.out.result, "QueryMultipleValues failed");
out 1553 source4/torture/rpc/winreg.c torture_assert_werr_ok(tctx, r.out.result, "QueryValue failed");
out 1576 source4/torture/rpc/winreg.c r.out.name = &name;
out 1587 source4/torture/rpc/winreg.c if (W_ERROR_IS_OK(r.out.result)) {
out 1589 source4/torture/rpc/winreg.c r.out.name->name);
out 1591 source4/torture/rpc/winreg.c r.out.name->name);
out 1595 source4/torture/rpc/winreg.c } while (W_ERROR_IS_OK(r.out.result));
out 1597 source4/torture/rpc/winreg.c torture_assert_werr_equal(tctx, r.out.result, WERR_NO_MORE_ITEMS,
out 1616 source4/torture/rpc/winreg.c torture_assert_werr_ok(tctx, r.out.result,
out 1640 source4/torture/rpc/winreg.c torture_assert_werr_ok(tctx, r.out.result,
out 1666 source4/torture/rpc/winreg.c torture_assert_werr_ok(tctx, r.out.result,
out 1715 source4/torture/rpc/winreg.c r.out.handle = &handle;
out 1789 source4/torture/rpc/winreg.c r.out.handle = &handle;
out 47 source4/torture/rpc/wkssvc.c r.out.info = &info;
out 57 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 86 source4/torture/rpc/wkssvc.c r.out.total_entries = &total_entries;
out 87 source4/torture/rpc/wkssvc.c r.out.info = &info;
out 88 source4/torture/rpc/wkssvc.c r.out.resume_handle = &resume_handle;
out 95 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result, talloc_asprintf(tctx,
out 121 source4/torture/rpc/wkssvc.c r.in.parm_err = r.out.parm_err = &parm_err;
out 128 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result,
out 150 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 191 source4/torture/rpc/wkssvc.c r.in.info = r.out.info = &info;
out 192 source4/torture/rpc/wkssvc.c r.in.resume_handle = r.out.resume_handle = &handle;
out 194 source4/torture/rpc/wkssvc.c r.out.entries_read = &entries_read;
out 202 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 239 source4/torture/rpc/wkssvc.c r.out.info = &info;
out 247 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result,
out 293 source4/torture/rpc/wkssvc.c r.in.info = r.out.info = &info;
out 294 source4/torture/rpc/wkssvc.c r.in.resume_handle = r.out.resume_handle = &handle;
out 296 source4/torture/rpc/wkssvc.c r.out.entries_read = &entries_read;
out 304 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 333 source4/torture/rpc/wkssvc.c r.in.parm_err = r.out.parm_err = &parm_err;
out 341 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result, WERR_UNKNOWN_LEVEL,
out 356 source4/torture/rpc/wkssvc.c r.in.parm_err = r.out.parm_err = &parm_err;
out 364 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 385 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 405 source4/torture/rpc/wkssvc.c r.out.ctr = &ctr;
out 410 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result, werr,
out 436 source4/torture/rpc/wkssvc.c r.in.info = r.out.info = &info;
out 437 source4/torture/rpc/wkssvc.c r.in.resume_handle = r.out.resume_handle = &handle;
out 438 source4/torture/rpc/wkssvc.c r.out.entries_read = &entries_read;
out 443 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 446 source4/torture/rpc/wkssvc.c for (k=0; k < r.out.info->ctr.ctr0->count; k++) {
out 448 source4/torture/rpc/wkssvc.c use_name = r.out.info->ctr.ctr0->array[k].local;
out 462 source4/torture/rpc/wkssvc.c use_name = r.out.info->ctr.ctr0->array[k].remote;
out 493 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result, WERR_NOT_SUPPORTED,
out 511 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result, WERR_NOT_SUPPORTED,
out 532 source4/torture/rpc/wkssvc.c r.out.ctr = &ctr;
out 540 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 609 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result,
out 639 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result,
out 667 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 708 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 743 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 839 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result, WERR_NOT_SUPPORTED,
out 860 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 946 source4/torture/rpc/wkssvc.c r.out.info = &info;
out 953 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 982 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 996 source4/torture/rpc/wkssvc.c r.in.name_buffer = r.out.name_buffer = &name_buffer;
out 997 source4/torture/rpc/wkssvc.c r.out.name_type = &join_status;
out 1004 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 1020 source4/torture/rpc/wkssvc.c r.in.name_buffer = r.out.name_buffer = &name_buffer;
out 1021 source4/torture/rpc/wkssvc.c r.out.name_type = &join_status;
out 1026 source4/torture/rpc/wkssvc.c torture_assert_werr_ok(tctx, r.out.result,
out 1053 source4/torture/rpc/wkssvc.c r.in.num_ous = r.out.num_ous = &num_ous;
out 1054 source4/torture/rpc/wkssvc.c r.out.ous = &ous;
out 1060 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result,
out 1079 source4/torture/rpc/wkssvc.c r.in.num_ous = r.out.num_ous = &num_ous;
out 1080 source4/torture/rpc/wkssvc.c r.out.ous = &ous;
out 1086 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result,
out 1116 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result, WERR_NOT_SUPPORTED,
out 1146 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result, WERR_NOT_SUPPORTED,
out 1265 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result, expected_err,
out 1343 source4/torture/rpc/wkssvc.c torture_assert_werr_equal(tctx, r.out.result, expected_err,
out 49 source4/torture/smb2/connect.c printf("create_time = %s\n", nt_time_string(tmp_ctx, io.out.create_time));
out 50 source4/torture/smb2/connect.c printf("access_time = %s\n", nt_time_string(tmp_ctx, io.out.access_time));
out 51 source4/torture/smb2/connect.c printf("write_time = %s\n", nt_time_string(tmp_ctx, io.out.write_time));
out 52 source4/torture/smb2/connect.c printf("change_time = %s\n", nt_time_string(tmp_ctx, io.out.change_time));
out 53 source4/torture/smb2/connect.c printf("alloc_size = %lld\n", (long long)io.out.alloc_size);
out 54 source4/torture/smb2/connect.c printf("size = %lld\n", (long long)io.out.size);
out 55 source4/torture/smb2/connect.c printf("file_attr = 0x%x\n", io.out.file_attr);
out 128 source4/torture/smb2/connect.c if (data.length != r.out.data.length ||
out 129 source4/torture/smb2/connect.c memcmp(data.data, r.out.data.data, data.length) != 0) {
out 163 source4/torture/smb2/connect.c return io.out.file.handle;
out 168 source4/torture/smb2/connect.c printf("oplock_flags = 0x%x\n", io.out.oplock_level);
out 169 source4/torture/smb2/connect.c printf("create_action = 0x%x\n", io.out.create_action);
out 170 source4/torture/smb2/connect.c printf("create_time = %s\n", nt_time_string(tmp_ctx, io.out.create_time));
out 171 source4/torture/smb2/connect.c printf("access_time = %s\n", nt_time_string(tmp_ctx, io.out.access_time));
out 172 source4/torture/smb2/connect.c printf("write_time = %s\n", nt_time_string(tmp_ctx, io.out.write_time));
out 173 source4/torture/smb2/connect.c printf("change_time = %s\n", nt_time_string(tmp_ctx, io.out.change_time));
out 174 source4/torture/smb2/connect.c printf("alloc_size = %lld\n", (long long)io.out.alloc_size);
out 175 source4/torture/smb2/connect.c printf("size = %lld\n", (long long)io.out.size);
out 176 source4/torture/smb2/connect.c printf("file_attr = 0x%x\n", io.out.file_attr);
out 178 source4/torture/smb2/connect.c (long long)io.out.file.handle.data[0],
out 179 source4/torture/smb2/connect.c (long long)io.out.file.handle.data[1]);
out 184 source4/torture/smb2/connect.c return io.out.file.handle;
out 73 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 128 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 157 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 188 source4/torture/smb2/create.c CHECK_EQUAL(io.out.file_attr, expected);
out 189 source4/torture/smb2/create.c file_attributes_set |= io.out.file_attr;
out 191 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 216 source4/torture/smb2/create.c CHECK_EQUAL(io.out.file_attr, (FILE_ATTRIBUTE_ENCRYPTED | FILE_ATTRIBUTE_ARCHIVE));
out 217 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 235 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 251 source4/torture/smb2/create.c CHECK_EQUAL(io.out.maximal_access, 0x001f01ff);
out 254 source4/torture/smb2/create.c q.access_information.in.file.handle = io.out.file.handle;
out 257 source4/torture/smb2/create.c CHECK_EQUAL(q.access_information.out.access_flags, io.in.desired_access);
out 302 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 309 source4/torture/smb2/create.c CHECK_EQUAL(io.out.alloc_size, io.in.alloc_size);
out 311 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 319 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 326 source4/torture/smb2/create.c CHECK_EQUAL(io.out.maximal_access, 0x001f01ff);
out 328 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 342 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 353 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 404 source4/torture/smb2/create.c q.query_secdesc.in.file.handle = io.out.file.handle;
out 411 source4/torture/smb2/create.c sd = q.query_secdesc.out.sd;
out 413 source4/torture/smb2/create.c status = smb2_util_close(tree, io.out.file.handle);
out 435 source4/torture/smb2/create.c q.query_secdesc.in.file.handle = io.out.file.handle;
out 438 source4/torture/smb2/create.c sd2 = q.query_secdesc.out.sd;
out 48 source4/torture/smb2/find.c if (io.all_info2.out.field != d->stype.field) { \
out 51 source4/torture/smb2/find.c (long long)io.all_info2.out.field, (long long)d->stype.field); \
out 99 source4/torture/smb2/find.c alt_name = talloc_strdup(tree, io.alt_name_info.out.fname.s);
out 85 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 101 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 114 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 127 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 138 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 149 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 160 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 165 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 169 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 174 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 178 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 349 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 360 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 377 source4/torture/smb2/lock.c h2 = cr.out.file.handle;
out 420 source4/torture/smb2/lock.c CHECK_VALUE(lck.out.reserved, 0);
out 94 source4/torture/smb2/maxwrite.c } else if (w.in.data.length != r.out.data.length ||
out 95 source4/torture/smb2/maxwrite.c memcmp(w.in.data.data, r.out.data.data, len) != 0) {
out 87 source4/torture/smb2/notify.c CHECK_VALUE(n.out.num_changes, 1);
out 88 source4/torture/smb2/notify.c CHECK_VALUE(n.out.changes[0].action, NOTIFY_ACTION_REMOVED);
out 89 source4/torture/smb2/notify.c CHECK_WIRE_STR(n.out.changes[0].name, FNAME);
out 128 source4/torture/smb2/notify.c CHECK_VALUE(n.out.num_changes, 3);
out 129 source4/torture/smb2/notify.c CHECK_VALUE(n.out.changes[0].action, NOTIFY_ACTION_REMOVED);
out 130 source4/torture/smb2/notify.c CHECK_WIRE_STR(n.out.changes[0].name, FNAME);
out 131 source4/torture/smb2/notify.c CHECK_VALUE(n.out.changes[1].action, NOTIFY_ACTION_ADDED);
out 132 source4/torture/smb2/notify.c CHECK_WIRE_STR(n.out.changes[1].name, FNAME);
out 133 source4/torture/smb2/notify.c CHECK_VALUE(n.out.changes[2].action, NOTIFY_ACTION_MODIFIED);
out 134 source4/torture/smb2/notify.c CHECK_WIRE_STR(n.out.changes[2].name, FNAME);
out 143 source4/torture/smb2/oplocks.c CHECK_VAL(io.out.oplock_level, SMB2_OPLOCK_LEVEL_BATCH);
out 145 source4/torture/smb2/oplocks.c CHECK_VAL(io.out.create_action, NTCREATEX_ACTION_CREATED);
out 146 source4/torture/smb2/oplocks.c CHECK_VAL(io.out.alloc_size, 0);
out 147 source4/torture/smb2/oplocks.c CHECK_VAL(io.out.size, 0);
out 148 source4/torture/smb2/oplocks.c CHECK_VAL(io.out.file_attr, FILE_ATTRIBUTE_ARCHIVE);
out 149 source4/torture/smb2/oplocks.c CHECK_VAL(io.out.reserved2, 0);
out 152 source4/torture/smb2/oplocks.c h1 = io.out.file.handle;
out 160 source4/torture/smb2/oplocks.c CHECK_VAL(io.out.oplock_level, SMB2_OPLOCK_LEVEL_II);
out 162 source4/torture/smb2/oplocks.c CHECK_VAL(io.out.create_action, NTCREATEX_ACTION_EXISTED);
out 163 source4/torture/smb2/oplocks.c CHECK_VAL(io.out.alloc_size, 0);
out 164 source4/torture/smb2/oplocks.c CHECK_VAL(io.out.size, 0);
out 165 source4/torture/smb2/oplocks.c CHECK_VAL(io.out.file_attr, FILE_ATTRIBUTE_ARCHIVE);
out 166 source4/torture/smb2/oplocks.c CHECK_VAL(io.out.reserved2, 0);
out 168 source4/torture/smb2/oplocks.c h2 = io.out.file.handle;
out 94 source4/torture/smb2/persistent_handles.c CHECK_VAL(io1.out.oplock_level, SMB2_OPLOCK_LEVEL_BATCH);
out 96 source4/torture/smb2/persistent_handles.c CHECK_VAL(io1.out.create_action, NTCREATEX_ACTION_CREATED);
out 97 source4/torture/smb2/persistent_handles.c CHECK_VAL(io1.out.alloc_size, 0);
out 98 source4/torture/smb2/persistent_handles.c CHECK_VAL(io1.out.size, 0);
out 99 source4/torture/smb2/persistent_handles.c CHECK_VAL(io1.out.file_attr, FILE_ATTRIBUTE_ARCHIVE);
out 100 source4/torture/smb2/persistent_handles.c CHECK_VAL(io1.out.reserved2, 0);
out 104 source4/torture/smb2/persistent_handles.c h1 = io1.out.file.handle;
out 111 source4/torture/smb2/persistent_handles.c CHECK_VAL(qfinfo.position_information.out.position, 0);
out 112 source4/torture/smb2/persistent_handles.c pos = qfinfo.position_information.out.position;
out 128 source4/torture/smb2/persistent_handles.c CHECK_VAL(qfinfo.position_information.out.position, 0x1000);
out 129 source4/torture/smb2/persistent_handles.c pos = qfinfo.position_information.out.position;
out 156 source4/torture/smb2/persistent_handles.c CHECK_VAL(io2.out.oplock_level, SMB2_OPLOCK_LEVEL_BATCH);
out 157 source4/torture/smb2/persistent_handles.c CHECK_VAL(io2.out.reserved, 0x00);
out 158 source4/torture/smb2/persistent_handles.c CHECK_VAL(io2.out.create_action, NTCREATEX_ACTION_EXISTED);
out 159 source4/torture/smb2/persistent_handles.c CHECK_VAL(io2.out.alloc_size, 0);
out 160 source4/torture/smb2/persistent_handles.c CHECK_VAL(io2.out.size, 0);
out 161 source4/torture/smb2/persistent_handles.c CHECK_VAL(io2.out.file_attr, FILE_ATTRIBUTE_ARCHIVE);
out 162 source4/torture/smb2/persistent_handles.c CHECK_VAL(io2.out.reserved2, 0);
out 164 source4/torture/smb2/persistent_handles.c h2 = io2.out.file.handle;
out 171 source4/torture/smb2/persistent_handles.c CHECK_VAL(qfinfo.position_information.out.position, 0x1000);
out 172 source4/torture/smb2/persistent_handles.c pos = qfinfo.position_information.out.position;
out 75 source4/torture/smb2/read.c CHECK_VALUE(rd.out.data.length, 10);
out 88 source4/torture/smb2/read.c CHECK_VALUE(rd.out.data.length, 0);
out 101 source4/torture/smb2/read.c CHECK_VALUE(rd.out.data.length, 1);
out 159 source4/torture/smb2/read.c CHECK_VALUE(rd.out.data.length, 10);
out 167 source4/torture/smb2/read.c CHECK_VALUE(info.all_info2.out.position, 0);
out 169 source4/torture/smb2/read.c CHECK_VALUE(info.all_info2.out.position, 10);
out 84 source4/torture/smb2/scan.c (long)io.out.blob.length, nt_errstr(status));
out 85 source4/torture/smb2/scan.c dump_data(1, io.out.blob.data, io.out.blob.length);
out 94 source4/torture/smb2/scan.c (long)io.out.blob.length, nt_errstr(status));
out 95 source4/torture/smb2/scan.c dump_data(1, io.out.blob.data, io.out.blob.length);
out 182 source4/torture/smb2/scan.c io.in.level, (long)io.out.blob.length, nt_errstr(status));
out 183 source4/torture/smb2/scan.c dump_data(1, io.out.blob.data, io.out.blob.length);
out 223 source4/torture/smb2/scan.c SSVAL(req->out.body, 0, 0);
out 108 source4/torture/smb2/setinfo.c if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(status2) && finfo2.stype.out.field != value) { \
out 111 source4/torture/smb2/setinfo.c (uint_t)value, (uint_t)finfo2.stype.out.field); \
out 119 source4/torture/smb2/setinfo.c if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(status2) && nt_time_to_unix(finfo2.stype.out.field) != value) { \
out 123 source4/torture/smb2/setinfo.c (uint_t)nt_time_to_unix(finfo2.stype.out.field)); \
out 125 source4/torture/smb2/setinfo.c printf("\t%s\n", nt_time_string(torture, finfo2.stype.out.field)); \
out 244 source4/torture/smb2/setinfo.c sd = finfo2.query_secdesc.out.sd;
out 262 source4/torture/smb2/setinfo.c if (!security_acl_equal(finfo2.query_secdesc.out.sd->dacl, sd->dacl)) {
out 265 source4/torture/smb2/setinfo.c NDR_PRINT_DEBUG(security_descriptor, finfo2.query_secdesc.out.sd);
out 281 source4/torture/smb2/setinfo.c if (!security_acl_equal(finfo2.query_secdesc.out.sd->dacl, sd->dacl)) {
out 284 source4/torture/smb2/setinfo.c NDR_PRINT_DEBUG(security_descriptor, finfo2.query_secdesc.out.sd);
out 103 source4/torture/smb2/util.c *handle = io.out.file.handle;
out 139 source4/torture/smb2/util.c if (setfile.basic_info.in.field != fileinfo.all_info2.out.field) { \
out 144 source4/torture/smb2/util.c nt_time_string(tree, fileinfo.basic_info.out.field), \
out 145 source4/torture/smb2/util.c (unsigned long long)fileinfo.basic_info.out.field); \
out 195 source4/torture/smb2/util.c d_printf("all_info for '%s'\n", io.all_info2.out.fname.s);
out 196 source4/torture/smb2/util.c d_printf("\tcreate_time: %s\n", nt_time_string(tmp_ctx, io.all_info2.out.create_time));
out 197 source4/torture/smb2/util.c d_printf("\taccess_time: %s\n", nt_time_string(tmp_ctx, io.all_info2.out.access_time));
out 198 source4/torture/smb2/util.c d_printf("\twrite_time: %s\n", nt_time_string(tmp_ctx, io.all_info2.out.write_time));
out 199 source4/torture/smb2/util.c d_printf("\tchange_time: %s\n", nt_time_string(tmp_ctx, io.all_info2.out.change_time));
out 200 source4/torture/smb2/util.c d_printf("\tattrib: 0x%x\n", io.all_info2.out.attrib);
out 201 source4/torture/smb2/util.c d_printf("\tunknown1: 0x%x\n", io.all_info2.out.unknown1);
out 202 source4/torture/smb2/util.c d_printf("\talloc_size: %llu\n", (long long)io.all_info2.out.alloc_size);
out 203 source4/torture/smb2/util.c d_printf("\tsize: %llu\n", (long long)io.all_info2.out.size);
out 204 source4/torture/smb2/util.c d_printf("\tnlink: %u\n", io.all_info2.out.nlink);
out 205 source4/torture/smb2/util.c d_printf("\tdelete_pending: %u\n", io.all_info2.out.delete_pending);
out 206 source4/torture/smb2/util.c d_printf("\tdirectory: %u\n", io.all_info2.out.directory);
out 207 source4/torture/smb2/util.c d_printf("\tfile_id: %llu\n", (long long)io.all_info2.out.file_id);
out 208 source4/torture/smb2/util.c d_printf("\tea_size: %u\n", io.all_info2.out.ea_size);
out 209 source4/torture/smb2/util.c d_printf("\taccess_mask: 0x%08x\n", io.all_info2.out.access_mask);
out 210 source4/torture/smb2/util.c d_printf("\tposition: 0x%llx\n", (long long)io.all_info2.out.position);
out 211 source4/torture/smb2/util.c d_printf("\tmode: 0x%llx\n", (long long)io.all_info2.out.mode);
out 217 source4/torture/smb2/util.c d_printf("\tshort name: '%s'\n", io.alt_name_info.out.fname.s);
out 225 source4/torture/smb2/util.c for (i=0;i<io.all_eas.out.num_eas;i++) {
out 227 source4/torture/smb2/util.c io.all_eas.out.eas[i].flags,
out 228 source4/torture/smb2/util.c (int)io.all_eas.out.eas[i].value.length,
out 229 source4/torture/smb2/util.c io.all_eas.out.eas[i].name.s);
out 238 source4/torture/smb2/util.c for (i=0;i<io.stream_info.out.num_streams;i++) {
out 241 source4/torture/smb2/util.c (long)io.stream_info.out.streams[i].size);
out 243 source4/torture/smb2/util.c (long)io.stream_info.out.streams[i].alloc_size);
out 244 source4/torture/smb2/util.c d_printf("\t\tname %s\n", io.stream_info.out.streams[i].stream_name.s);
out 256 source4/torture/smb2/util.c NDR_PRINT_DEBUG(security_descriptor, io.query_secdesc.out.sd);
out 320 source4/torture/smb2/util.c *handle = io.out.file.handle;
out 353 source4/torture/smb2/util.c *handle = io.out.file.handle;
out 405 source4/torture/smb2/util.c *handle = io.out.file.handle;
out 172 source4/torture/smbiconv.c FILE *out = stdout;
out 200 source4/torture/smbiconv.c out = fopen(output, "w");
out 202 source4/torture/smbiconv.c if(!out) {
out 211 source4/torture/smbiconv.c if (out != stdout) fclose(out);
out 227 source4/torture/smbiconv.c process_fd(cd, fd, out);
out 233 source4/torture/smbiconv.c fclose(out);
out 160 source4/torture/unix/unix_info2.c info2->end_of_file = finfo.unix_info2.out.end_of_file;
out 161 source4/torture/unix/unix_info2.c info2->num_bytes = finfo.unix_info2.out.num_bytes;
out 162 source4/torture/unix/unix_info2.c info2->status_change_time = finfo.unix_info2.out.status_change_time;
out 163 source4/torture/unix/unix_info2.c info2->access_time = finfo.unix_info2.out.access_time;
out 164 source4/torture/unix/unix_info2.c info2->change_time = finfo.unix_info2.out.change_time;
out 165 source4/torture/unix/unix_info2.c info2->uid = finfo.unix_info2.out.uid;
out 166 source4/torture/unix/unix_info2.c info2->gid = finfo.unix_info2.out.gid;
out 167 source4/torture/unix/unix_info2.c info2->file_type = finfo.unix_info2.out.file_type;
out 168 source4/torture/unix/unix_info2.c info2->dev_major = finfo.unix_info2.out.dev_major;
out 169 source4/torture/unix/unix_info2.c info2->dev_minor = finfo.unix_info2.out.dev_minor;
out 170 source4/torture/unix/unix_info2.c info2->unique_id = finfo.unix_info2.out.unique_id;
out 171 source4/torture/unix/unix_info2.c info2->permissions = finfo.unix_info2.out.permissions;
out 172 source4/torture/unix/unix_info2.c info2->nlink = finfo.unix_info2.out.nlink;
out 173 source4/torture/unix/unix_info2.c info2->create_time = finfo.unix_info2.out.create_time;
out 174 source4/torture/unix/unix_info2.c info2->file_flags = finfo.unix_info2.out.file_flags;
out 175 source4/torture/unix/unix_info2.c info2->flags_mask = finfo.unix_info2.out.flags_mask;
out 250 source4/torture/unix/unix_info2.c torture_assert_int_equal(torture, search.t2ffirst.out.count, 1,
out 252 source4/torture/unix/unix_info2.c torture_assert_int_equal(torture, search.t2ffirst.out.end_of_search, 1,
out 171 source4/torture/unix/whoami.c torture_assert(torture, tp.out.params.length == 0,
out 173 source4/torture/unix/whoami.c torture_assert(torture, tp.out.data.length >= WHOAMI_REQUIRED_SIZE,
out 176 source4/torture/unix/whoami.c whoami->mapping_flags = IVAL(tp.out.data.data, 0);
out 177 source4/torture/unix/whoami.c whoami->mapping_mask = IVAL(tp.out.data.data, 4);
out 178 source4/torture/unix/whoami.c whoami->server_uid = BVAL(tp.out.data.data, 8);
out 179 source4/torture/unix/whoami.c whoami->server_gid = BVAL(tp.out.data.data, 16);
out 180 source4/torture/unix/whoami.c whoami->num_gids = IVAL(tp.out.data.data, 24);
out 181 source4/torture/unix/whoami.c whoami->num_sids = IVAL(tp.out.data.data, 28);
out 182 source4/torture/unix/whoami.c whoami->num_sid_bytes = IVAL(tp.out.data.data, 32);
out 183 source4/torture/unix/whoami.c whoami->reserved = IVAL(tp.out.data.data, 36);
out 206 source4/torture/unix/whoami.c if (tp.out.data.length == offset) {
out 218 source4/torture/unix/whoami.c int remain = tp.out.data.length - offset;
out 233 source4/torture/unix/whoami.c whoami->gid_list[i] = BVAL(tp.out.data.data, offset);
out 239 source4/torture/unix/whoami.c if (tp.out.data.length == offset) {
out 247 source4/torture/unix/whoami.c whoami->num_sid_bytes, (tp.out.data.length - offset),
out 259 source4/torture/unix/whoami.c &tp.out.data, &offset,
out 268 source4/torture/unix/whoami.c torture_assert_int_equal(torture, tp.out.data.length, offset,
out 80 source4/torture/util_smb.c *fnum = io.ntcreatex.out.file.fnum;
out 154 source4/torture/util_smb.c if (setfile.setattre.in.create_time != fileinfo.getattre.out.create_time) {
out 157 source4/torture/util_smb.c if (setfile.setattre.in.access_time != fileinfo.getattre.out.access_time) {
out 160 source4/torture/util_smb.c if (setfile.setattre.in.write_time != fileinfo.getattre.out.write_time) {
out 231 source4/torture/util_smb.c if (setfile.setattre.in.create_time != fileinfo.getattre.out.create_time) {
out 234 source4/torture/util_smb.c if (setfile.setattre.in.access_time != fileinfo.getattre.out.access_time) {
out 237 source4/torture/util_smb.c if (setfile.setattre.in.write_time != fileinfo.getattre.out.write_time) {
out 319 source4/torture/util_smb.c d_printf("\tcreate_time: %s\n", nt_time_string(mem_ctx, finfo->all_info.out.create_time));
out 320 source4/torture/util_smb.c d_printf("\taccess_time: %s\n", nt_time_string(mem_ctx, finfo->all_info.out.access_time));
out 321 source4/torture/util_smb.c d_printf("\twrite_time: %s\n", nt_time_string(mem_ctx, finfo->all_info.out.write_time));
out 322 source4/torture/util_smb.c d_printf("\tchange_time: %s\n", nt_time_string(mem_ctx, finfo->all_info.out.change_time));
out 323 source4/torture/util_smb.c d_printf("\tattrib: 0x%x\n", finfo->all_info.out.attrib);
out 324 source4/torture/util_smb.c d_printf("\talloc_size: %llu\n", (long long)finfo->all_info.out.alloc_size);
out 325 source4/torture/util_smb.c d_printf("\tsize: %llu\n", (long long)finfo->all_info.out.size);
out 326 source4/torture/util_smb.c d_printf("\tnlink: %u\n", finfo->all_info.out.nlink);
out 327 source4/torture/util_smb.c d_printf("\tdelete_pending: %u\n", finfo->all_info.out.delete_pending);
out 328 source4/torture/util_smb.c d_printf("\tdirectory: %u\n", finfo->all_info.out.directory);
out 329 source4/torture/util_smb.c d_printf("\tea_size: %u\n", finfo->all_info.out.ea_size);
out 330 source4/torture/util_smb.c d_printf("\tfname: '%s'\n", finfo->all_info.out.fname.s);
out 426 source4/torture/util_smb.c if (info.ea_list.out.num_eas != 1) {
out 432 source4/torture/util_smb.c if (strcasecmp_m(eaname, info.ea_list.out.eas[0].name.s) != 0) {
out 434 source4/torture/util_smb.c eaname, info.ea_list.out.eas[0].name.s);
out 440 source4/torture/util_smb.c if (info.ea_list.out.eas[0].value.length != 0) {
out 449 source4/torture/util_smb.c if (strlen(value) == info.ea_list.out.eas[0].value.length &&
out 450 source4/torture/util_smb.c memcmp(value, info.ea_list.out.eas[0].value.data,
out 451 source4/torture/util_smb.c info.ea_list.out.eas[0].value.length) == 0) {
out 458 source4/torture/util_smb.c (int)info.ea_list.out.eas[0].value.length,
out 459 source4/torture/util_smb.c (int)info.ea_list.out.eas[0].value.length,
out 460 source4/torture/util_smb.c info.ea_list.out.eas[0].value.data,
out 907 source4/torture/util_smb.c result->tid = tcon.tconx.out.tid;
out 218 source4/utils/ad2oLschema.c fprintf(out, "dn: cn=schema\n");
out 292 source4/utils/ad2oLschema.c fprintf(out, "attributetype %s\n\n", schema_entry);
out 295 source4/utils/ad2oLschema.c fprintf(out, "attributeTypes: %s\n", schema_entry);
out 380 source4/utils/ad2oLschema.c fprintf(out, "objectclass %s\n\n", schema_entry);
out 383 source4/utils/ad2oLschema.c fprintf(out, "objectClasses: %s\n", schema_entry);
out 397 source4/utils/ad2oLschema.c FILE *out = stdout;
out 416 source4/utils/ad2oLschema.c out = fopen(options->output, "w");
out 417 source4/utils/ad2oLschema.c if (!out) {
out 434 source4/utils/ad2oLschema.c ret = process_convert(ldb, target, in, out);
out 437 source4/utils/ad2oLschema.c fclose(out);
out 75 source4/utils/net/net_join.c r->out.error_string = NULL;
out 82 source4/utils/net/net_join.c r->out.error_string ? r->out.error_string : nt_errstr(status));
out 87 source4/utils/net/net_join.c d_printf("Joined domain %s (%s)\n", r->out.domain_name, dom_sid_string(ctx, r->out.domain_sid));
out 142 source4/utils/net/net_join.c r->out.error_string = NULL;
out 149 source4/utils/net/net_join.c r->out.error_string ? r->out.error_string : nt_errstr(status));
out 154 source4/utils/net/net_join.c d_printf("Vampired domain %s (%s)\n", r->out.domain_name, dom_sid_string(ctx, r->out.domain_sid));
out 72 source4/utils/net/net_password.c DEBUG(0,("net_password_change: %s\n",r.generic.out.error_string));
out 146 source4/utils/net/net_password.c DEBUG(0,("net_password_set: %s\n",r.generic.out.error_string));
out 59 source4/utils/net/net_time.c DEBUG(0,("net_time: %s\n",r.generic.out.error_string));
out 64 source4/utils/net/net_time.c tm = localtime(&r.generic.out.time);
out 59 source4/utils/net/net_user.c r.out.error_string));
out 99 source4/utils/net/net_user.c r.out.error_string));
out 63 source4/utils/net/net_vampire.c r.out.error_string = NULL;
out 71 source4/utils/net/net_vampire.c r.out.error_string));
out 109 source4/utils/net/net_vampire.c r.out.error_string = NULL;
out 117 source4/utils/net/net_vampire.c r.out.error_string));
out 151 source4/utils/net/net_vampire.c r.out.error_string = NULL;
out 162 source4/utils/net/net_vampire.c r.out.error_string));
out 387 source4/utils/ntlm_auth.c DATA_BLOB out = data_blob(NULL, 0);
out 653 source4/utils/ntlm_auth.c nt_status = gensec_update(state->gensec_state, mem_ctx, in, &out);
out 658 source4/utils/ntlm_auth.c if (out.length) {
out 659 source4/utils/ntlm_auth.c out_base64 = base64_encode_data_blob(mem_ctx, out);
out 506 source4/utils/oLschema2ldif.c ldb_ldif_write_file(ldb_ctx, out, &ldif);
out 530 source4/utils/oLschema2ldif.c ldb_ldif_write_file(ldb_ctx, out, &ldif);
out 563 source4/utils/oLschema2ldif.c FILE *out = stdout;
out 589 source4/utils/oLschema2ldif.c out = fopen(options->output, "w");
out 590 source4/utils/oLschema2ldif.c if (!out) {
out 596 source4/utils/oLschema2ldif.c ret = process_file(in, out);
out 599 source4/utils/oLschema2ldif.c fclose(out);
out 93 source4/winbind/wb_async_helpers.c state->r.out.names = &state->names;
out 94 source4/winbind/wb_async_helpers.c state->r.out.count = &state->count;
out 95 source4/winbind/wb_async_helpers.c state->r.out.domains = &state->domains;
out 118 source4/winbind/wb_async_helpers.c state->ctx->status = state->r.out.result;
out 131 source4/winbind/wb_async_helpers.c &state->r.out.names->names[i];
out 242 source4/winbind/wb_async_helpers.c state->r.out.count = &state->count;
out 243 source4/winbind/wb_async_helpers.c state->r.out.sids = &state->sids;
out 244 source4/winbind/wb_async_helpers.c state->r.out.domains = &state->domains;
out 267 source4/winbind/wb_async_helpers.c state->ctx->status = state->r.out.result;
out 279 source4/winbind/wb_async_helpers.c struct lsa_TranslatedSid *sid = &state->r.out.sids->sids[i];
out 365 source4/winbind/wb_async_helpers.c state->o.out.user_handle = state->user_handle;
out 387 source4/winbind/wb_async_helpers.c state->ctx->status = state->o.out.result;
out 391 source4/winbind/wb_async_helpers.c state->g.out.rids = &state->rid_array;
out 407 source4/winbind/wb_async_helpers.c state->ctx->status = state->g.out.result;
out 411 source4/winbind/wb_async_helpers.c state->c.out.handle = state->user_handle;
out 426 source4/winbind/wb_async_helpers.c state->ctx->status = state->c.out.result;
out 84 source4/winbind/wb_cmd_getdcname.c state->g.out.dcname = talloc(state, const char *);
out 101 source4/winbind/wb_cmd_getdcname.c state->ctx->status = werror_to_ntstatus(state->g.out.result);
out 115 source4/winbind/wb_cmd_getdcname.c const char *p = *(state->g.out.dcname);
out 148 source4/winbind/wb_cmd_getgrgid.c WBSRV_SAMBA3_SET_STRING(gr->gr_name, group_info->out.group_name);
out 124 source4/winbind/wb_cmd_getgrnam.c WBSRV_SAMBA3_SET_STRING(gr->gr_name, group_info->out.group_name);
out 126 source4/winbind/wb_cmd_getgrnam.c gr->num_gr_mem = group_info->out.num_members;
out 131 source4/winbind/wb_cmd_getgrnam.c ctx = wb_sid2gid_send(state, state->service, group_info->out.group_sid);
out 71 source4/winbind/wb_cmd_getpwent.c if (pwent->page_index < pwent->user_list->out.count) {
out 74 source4/winbind/wb_cmd_getpwent.c pwent->user_list->out.users[idx].username);
out 125 source4/winbind/wb_cmd_getpwnam.c WBSRV_SAMBA3_SET_STRING(pw->pw_name, user_info->out.account_name);
out 127 source4/winbind/wb_cmd_getpwnam.c WBSRV_SAMBA3_SET_STRING(pw->pw_gecos, user_info->out.full_name);
out 132 source4/winbind/wb_cmd_getpwnam.c all_string_sub(pw->pw_dir, "%ACCOUNTNAME%", user_info->out.account_name,
out 137 source4/winbind/wb_cmd_getpwnam.c state->group_sid = dom_sid_dup(state, user_info->out.primary_group_sid);
out 142 source4/winbind/wb_cmd_getpwnam.c ctx = wb_sid2uid_send(state, state->service, user_info->out.user_sid);
out 149 source4/winbind/wb_cmd_getpwuid.c WBSRV_SAMBA3_SET_STRING(pw->pw_name, user_info->out.account_name);
out 151 source4/winbind/wb_cmd_getpwuid.c WBSRV_SAMBA3_SET_STRING(pw->pw_gecos, user_info->out.full_name);
out 156 source4/winbind/wb_cmd_getpwuid.c all_string_sub(pw->pw_dir, "%ACCOUNTNAME%", user_info->out.account_name,
out 166 source4/winbind/wb_cmd_getpwuid.c user_info->out.primary_group_sid);
out 144 source4/winbind/wb_cmd_list_groups.c for (i = 0; i < group_list->out.count; ++i) {
out 146 source4/winbind/wb_cmd_list_groups.c group_list->out.groups[i].groupname));
out 149 source4/winbind/wb_cmd_list_groups.c group_list->out.groups[i].groupname);
out 171 source4/winbind/wb_cmd_list_groups.c group_list->in.resume_index = group_list->out.resume_index;
out 114 source4/winbind/wb_cmd_list_trustdom.c state->r.out.resume_handle = &state->resume_handle;
out 115 source4/winbind/wb_cmd_list_trustdom.c state->r.out.domains = &state->domainlist;
out 131 source4/winbind/wb_cmd_list_trustdom.c state->ctx->status = state->r.out.result;
out 142 source4/winbind/wb_cmd_list_trustdom.c state->num_domains += state->r.out.domains->count;
out 149 source4/winbind/wb_cmd_list_trustdom.c for (i=0; i<state->r.out.domains->count; i++) {
out 156 source4/winbind/wb_cmd_list_trustdom.c state->r.out.domains->domains[i].name.string);
out 159 source4/winbind/wb_cmd_list_trustdom.c state->r.out.domains->domains[i].sid);
out 173 source4/winbind/wb_cmd_list_trustdom.c state->r.out.resume_handle = &state->resume_handle;
out 174 source4/winbind/wb_cmd_list_trustdom.c state->r.out.domains = &state->domainlist;
out 144 source4/winbind/wb_cmd_list_users.c for (i = 0; i < user_list->out.count; ++i) {
out 145 source4/winbind/wb_cmd_list_users.c DEBUG(5, ("Appending user '%s'\n", user_list->out.users[i].username));
out 147 source4/winbind/wb_cmd_list_users.c user_list->out.users[i].username);
out 169 source4/winbind/wb_cmd_list_users.c user_list->in.resume_index = user_list->out.resume_index;
out 127 source4/winbind/wb_cmd_usersids.c state->r.out.rids = &state->rids;
out 143 source4/winbind/wb_cmd_usersids.c state->ctx->status = state->r.out.result;
out 146 source4/winbind/wb_cmd_usersids.c state->num_sids = 1 + state->num_domgroups + state->r.out.rids->count;
out 157 source4/winbind/wb_cmd_usersids.c for (i=0; i<state->r.out.rids->count; i++) {
out 160 source4/winbind/wb_cmd_usersids.c state->r.out.rids->ids[i]);
out 98 source4/winbind/wb_connect_lsa.c state->openpolicy.out.handle = state->handle;
out 113 source4/winbind/wb_connect_lsa.c state->ctx->status = state->openpolicy.out.result;
out 101 source4/winbind/wb_connect_sam.c state->c.out.connect_handle = state->connect_handle;
out 116 source4/winbind/wb_connect_sam.c state->ctx->status = state->c.out.result;
out 125 source4/winbind/wb_connect_sam.c state->o.out.domain_handle = state->domain_handle;
out 140 source4/winbind/wb_connect_sam.c state->ctx->status = state->o.out.result;
out 107 source4/winbind/wb_dom_info_trusted.c state->d.out.info = talloc(state, struct netr_DsRGetDCNameInfo *);
out 108 source4/winbind/wb_dom_info_trusted.c if (composite_nomem(state->d.out.info, state->ctx)) return;
out 134 source4/winbind/wb_dom_info_trusted.c werror_to_ntstatus(state->d.out.result);
out 145 source4/winbind/wb_dom_info_trusted.c (*state->d.out.info)->dc_unc);
out 150 source4/winbind/wb_dom_info_trusted.c (*state->d.out.info)->dc_address);
out 155 source4/winbind/wb_dom_info_trusted.c (*state->d.out.info)->domain_name);
out 166 source4/winbind/wb_dom_info_trusted.c state->g.out.dcname = talloc(state, const char *);
out 186 source4/winbind/wb_dom_info_trusted.c state->ctx->status = werror_to_ntstatus(state->g.out.result);
out 193 source4/winbind/wb_dom_info_trusted.c *(state->g.out.dcname));
out 300 source4/winbind/wb_init_domain.c state->lsa_openpolicy.out.handle = &state->domain->libnet_ctx->lsa.handle;
out 319 source4/winbind/wb_init_domain.c || !NT_STATUS_IS_OK(state->lsa_openpolicy.out.result))) {
out 327 source4/winbind/wb_init_domain.c state->ctx->status = state->lsa_openpolicy.out.result;
out 335 source4/winbind/wb_init_domain.c state->queryinfo.out.info = &state->info;
out 352 source4/winbind/wb_init_domain.c state->ctx->status = state->queryinfo.out.result;
out 355 source4/winbind/wb_init_domain.c dominfo = &(*state->queryinfo.out.info)->account_domain;
out 130 source4/winbind/wb_irpc.c status = wb_sids2xids_recv(ctx, &s->req->out.ids);
out 133 source4/winbind/wb_irpc.c status = wb_xids2sids_recv(ctx, &s->req->out.ids);
out 147 source4/winbind/wb_pam_auth.c state->req->out.validation.sam3,
out 163 source4/winbind/wb_pam_auth.c base = &state->req->out.validation.sam3->base;
out 101 source4/winbind/wb_sam_logon.c s->r.out.return_authenticator = NULL;
out 102 source4/winbind/wb_sam_logon.c s->r.out.validation = talloc(s, union netr_Validation);
out 103 source4/winbind/wb_sam_logon.c if (composite_nomem(s->r.out.validation, s->ctx)) return;
out 104 source4/winbind/wb_sam_logon.c s->r.out.authoritative = talloc(s, uint8_t);
out 105 source4/winbind/wb_sam_logon.c if (composite_nomem(s->r.out.authoritative, s->ctx)) return;
out 134 source4/winbind/wb_sam_logon.c s->ctx->status = s->r.out.result;
out 137 source4/winbind/wb_sam_logon.c if ((s->r.out.return_authenticator == NULL) ||
out 139 source4/winbind/wb_sam_logon.c &s->r.out.return_authenticator->cred))) {
out 150 source4/winbind/wb_sam_logon.c s->r.out.validation);
out 165 source4/winbind/wb_sam_logon.c req->out.validation = *s->r.out.validation;
out 166 source4/winbind/wb_sam_logon.c req->out.authoritative = 1;
out 920 source4/wrepl_server/wrepl_apply_records.c r.in.num_addrs = state->r.out.num_addrs;
out 925 source4/wrepl_server/wrepl_apply_records.c r.in.addrs[i].addr = state->r.out.addrs[i].addr;
out 980 source4/wrepl_server/wrepl_apply_records.c for (j=0; j < state->r.out.num_addrs; j++) {
out 981 source4/wrepl_server/wrepl_apply_records.c if (strcmp(state->replica.addresses[i].address, state->r.out.addrs[j].addr) == 0) {
out 1002 source4/wrepl_server/wrepl_apply_records.c for (j=0; j < state->r.out.num_addrs; j++) {
out 1003 source4/wrepl_server/wrepl_apply_records.c if (strcmp(state->rec->addresses[i]->address, state->r.out.addrs[j].addr) == 0) {
out 79 source4/wrepl_server/wrepl_out_helpers.c state->wreplconn->assoc_ctx.peer_ctx = state->assoc_io.out.assoc_ctx;
out 80 source4/wrepl_server/wrepl_out_helpers.c state->wreplconn->assoc_ctx.peer_major = state->assoc_io.out.major_version;
out 246 source4/wrepl_server/wrepl_out_helpers.c } out;
out 358 source4/wrepl_server/wrepl_out_helpers.c state->table_io.out.num_partners = io->in.num_owners;
out 359 source4/wrepl_server/wrepl_out_helpers.c state->table_io.out.partners = io->in.owners;
out 388 source4/wrepl_server/wrepl_out_helpers.c io->out.num_owners = state->table_io.out.num_partners;
out 389 source4/wrepl_server/wrepl_out_helpers.c io->out.owners = talloc_reference(mem_ctx, state->table_io.out.partners);
out 405 source4/wrepl_server/wrepl_out_helpers.c } out;
out 543 source4/wrepl_server/wrepl_out_helpers.c io->out.num_names = state->pull_io.out.num_names;
out 544 source4/wrepl_server/wrepl_out_helpers.c io->out.names = talloc_reference(mem_ctx, state->pull_io.out.names);
out 582 source4/wrepl_server/wrepl_out_helpers.c for (i=state->current; i < state->table_io.out.num_owners; i++) {
out 585 source4/wrepl_server/wrepl_out_helpers.c state->table_io.out.owners[i].address);
out 589 source4/wrepl_server/wrepl_out_helpers.c state->table_io.out.owners[i].address);
out 671 source4/wrepl_server/wrepl_out_helpers.c for (i=0; i < state->table_io.out.num_owners; i++) {
out 675 source4/wrepl_server/wrepl_out_helpers.c state->table_io.out.owners[i].address,
out 676 source4/wrepl_server/wrepl_out_helpers.c state->table_io.out.owners[i].max_version);
out 692 source4/wrepl_server/wrepl_out_helpers.c state->names_io.out.num_names,
out 693 source4/wrepl_server/wrepl_out_helpers.c state->names_io.out.names);
out 696 source4/wrepl_server/wrepl_out_helpers.c talloc_free(state->names_io.out.names);
out 344 source4/wrepl_server/wrepl_scavenging.c for (i=0; i < s->r.out.num_addrs; i++) {
out 347 source4/wrepl_server/wrepl_scavenging.c if (strcmp(s->r.out.addrs[i].addr, rec->addresses[j]->address) == 0) {
out 358 source4/wrepl_server/wrepl_scavenging.c if (s->r.out.num_addrs != 1 || strcmp(s->r.out.addrs[0].addr, "255.255.255.255") != 0) {