Symbol: decode
crypto/heimdal/appl/ftp/ftp/security.c
180
buf->size = (*mech->decode)(app_data, buf->data, len, data_prot);
crypto/heimdal/appl/ftp/ftp/security.c
353
len = (*mech->decode)(app_data, buf, len, level);
crypto/heimdal/appl/ftp/ftp/security.c
564
len = (*mech->decode)(app_data, buf, len, level);
crypto/heimdal/appl/ftp/ftp/security.h
56
int (*decode)(void *, void*, int, int);
crypto/heimdal/appl/ftp/ftp/security.h
67
int (*decode)(void *, void*, int, int);
crypto/heimdal/appl/ftp/ftpd/security.c
180
buf->size = (*mech->decode)(app_data, buf->data, len, data_prot);
crypto/heimdal/appl/ftp/ftpd/security.c
353
len = (*mech->decode)(app_data, buf, len, level);
crypto/heimdal/appl/ftp/ftpd/security.c
564
len = (*mech->decode)(app_data, buf, len, level);
crypto/heimdal/lib/asn1/asn1-template.h
105
asn1_type_decode decode;
crypto/heimdal/lib/asn1/check-common.c
201
int (ASN1CALL *decode)(unsigned char *, size_t, void *, size_t *),
crypto/heimdal/lib/asn1/check-common.c
285
ret = (*decode) (buf2, sz, data, &consumed_sz);
crypto/heimdal/lib/asn1/check-common.c
357
int (ASN1CALL *decode)(unsigned char *, size_t, void *, size_t *))
crypto/heimdal/lib/asn1/check-common.c
404
ret = (*decode) (buf, tests[i].byte_len, data, &sz);
crypto/heimdal/lib/asn1/check-common.h
55
int (ASN1CALL *decode)(unsigned char *, size_t, void *, size_t *),
crypto/heimdal/lib/asn1/check-common.h
64
int (ASN1CALL *decode)(unsigned char *, size_t, void *, size_t *));
crypto/heimdal/lib/asn1/check-gen.c
1298
type decode; \
crypto/heimdal/lib/asn1/check-gen.c
1304
ret = decode_##type(os.data, os.length, &decode, &size); \
crypto/heimdal/lib/asn1/check-gen.c
1310
free_##type(&decode); \
crypto/heimdal/lib/asn1/template.c
192
ret = (f->decode)(p, len, el, &newsize);
crypto/heimdal/lib/asn1/template.c
310
ret = (prim[type].decode)(p, len, el, &newsize);
crypto/krb5/src/lib/krad/attr.c
308
return attributes[type - 1].decode(ctx, secret, auth, in, outbuf, outlen);
crypto/krb5/src/lib/krad/attr.c
48
attribute_transform_fn decode;
crypto/openssl/crypto/comp/c_brotli.c
388
} decode;
crypto/openssl/crypto/comp/c_brotli.c
457
ctx->decode.bufsize = BROTLI_DEFAULT_BUFSIZE;
crypto/openssl/crypto/comp/c_brotli.c
458
ctx->decode.state = BrotliDecoderCreateInstance(brotli_alloc, brotli_free, NULL);
crypto/openssl/crypto/comp/c_brotli.c
459
if (ctx->decode.state == NULL)
crypto/openssl/crypto/comp/c_brotli.c
473
BrotliDecoderDestroyInstance(ctx->decode.state);
crypto/openssl/crypto/comp/c_brotli.c
488
BrotliDecoderDestroyInstance(ctx->decode.state);
crypto/openssl/crypto/comp/c_brotli.c
489
OPENSSL_free(ctx->decode.buf);
crypto/openssl/crypto/comp/c_brotli.c
520
if (ctx->decode.buf == NULL) {
crypto/openssl/crypto/comp/c_brotli.c
521
ctx->decode.buf = OPENSSL_malloc(ctx->decode.bufsize);
crypto/openssl/crypto/comp/c_brotli.c
522
if (ctx->decode.buf == NULL) {
crypto/openssl/crypto/comp/c_brotli.c
526
ctx->decode.next_in = ctx->decode.buf;
crypto/openssl/crypto/comp/c_brotli.c
527
ctx->decode.avail_in = 0;
crypto/openssl/crypto/comp/c_brotli.c
531
ctx->decode.next_out = (unsigned char *)out;
crypto/openssl/crypto/comp/c_brotli.c
532
ctx->decode.avail_out = (size_t)outl;
crypto/openssl/crypto/comp/c_brotli.c
535
while (ctx->decode.avail_in > 0 || BrotliDecoderHasMoreOutput(ctx->decode.state)) {
crypto/openssl/crypto/comp/c_brotli.c
536
bret = BrotliDecoderDecompressStream(ctx->decode.state, &ctx->decode.avail_in, (const uint8_t **)&ctx->decode.next_in,
crypto/openssl/crypto/comp/c_brotli.c
537
&ctx->decode.avail_out, &ctx->decode.next_out, NULL);
crypto/openssl/crypto/comp/c_brotli.c
540
ERR_add_error_data(1, BrotliDecoderErrorString(BrotliDecoderGetErrorCode(ctx->decode.state)));
crypto/openssl/crypto/comp/c_brotli.c
544
if (BrotliDecoderIsFinished(ctx->decode.state) || ctx->decode.avail_out == 0)
crypto/openssl/crypto/comp/c_brotli.c
545
return (int)(outl - ctx->decode.avail_out);
crypto/openssl/crypto/comp/c_brotli.c
549
if (BrotliDecoderIsFinished(ctx->decode.state))
crypto/openssl/crypto/comp/c_brotli.c
556
ret = BIO_read(next, ctx->decode.buf, ctx->decode.bufsize);
crypto/openssl/crypto/comp/c_brotli.c
559
int tot = outl - ctx->decode.avail_out;
crypto/openssl/crypto/comp/c_brotli.c
566
ctx->decode.avail_in = ret;
crypto/openssl/crypto/comp/c_brotli.c
567
ctx->decode.next_in = ctx->decode.buf;
crypto/openssl/crypto/comp/c_brotli.c
726
ibs = ctx->decode.bufsize;
crypto/openssl/crypto/comp/c_brotli.c
739
if (ibs > 0 && ibs != ctx->decode.bufsize) {
crypto/openssl/crypto/comp/c_brotli.c
741
if (ctx->decode.buf != NULL) {
crypto/openssl/crypto/comp/c_brotli.c
742
tmp = OPENSSL_realloc(ctx->decode.buf, ibs);
crypto/openssl/crypto/comp/c_brotli.c
745
ctx->decode.buf = tmp;
crypto/openssl/crypto/comp/c_brotli.c
747
ctx->decode.bufsize = ibs;
crypto/openssl/crypto/comp/c_brotli.c
777
if (!BrotliDecoderIsFinished(ctx->decode.state))
crypto/openssl/crypto/encode_decode/decoder_lib.c
1125
ok = new_decoder->decode(new_decoderctx, cbio,
crypto/openssl/crypto/encode_decode/decoder_meth.c
262
if (decoder->decode == NULL)
crypto/openssl/crypto/encode_decode/decoder_meth.c
263
decoder->decode = OSSL_FUNC_decoder_decode(fns);
crypto/openssl/crypto/encode_decode/decoder_meth.c
278
|| decoder->decode == NULL) {
crypto/openssl/crypto/encode_decode/encoder_local.h
54
OSSL_FUNC_decoder_decode_fn *decode;
tools/test/ptrace/scescx.c
110
for (i = 0; i < sizeof(decode) / sizeof(decode[0]); i++) {
tools/test/ptrace/scescx.c
111
if ((flags & decode[i].flag) != 0) {
tools/test/ptrace/scescx.c
116
strlcat(c, decode[i].desc, sizeof(c));
tools/test/ptrace/scescx.c
117
flags &= ~decode[i].flag;
tools/test/ptrace/scescx.c
90
} decode[] = {
usr.bin/bintrans/bintrans.c
129
bool decode = false;
usr.bin/bintrans/bintrans.c
145
decode = true;
usr.bin/bintrans/bintrans.c
161
if (decode)
usr.bin/bintrans/uudecode.c
146
rval |= decode();
usr.bin/bintrans/uudecode.c
152
rval = decode();
usr.bin/bintrans/uudecode.c
65
static int decode(void);
usr.bin/bintrans/uudecode.c
84
exit(decode());
usr.bin/logger/logger.c
402
fac = decode(save, facilitynames);
usr.bin/logger/logger.c
411
lev = decode(s, prioritynames);
usr.bin/logger/logger.c
61
static int decode(char *, const CODE *);
usr.bin/morse/morse.c
266
static void decode (char *), fdecode(FILE *);
usr.bin/morse/morse.c
423
decode(*argv);
usr.bin/morse/morse.c
427
decode(p);
usr.bin/morse/morse.c
620
decode(p);
usr.bin/truss/setup.c
472
t->cs.nargs = sc->decode.nargs;
usr.bin/truss/setup.c
473
assert(sc->decode.nargs <= nitems(t->cs.s_args));
usr.bin/truss/setup.c
490
t->cs.args[sc->decode.args[i].offset],
usr.bin/truss/setup.c
493
if (!(sc->decode.args[i].type & OUT)) {
usr.bin/truss/setup.c
494
t->cs.s_args[i] = print_arg(&sc->decode.args[i],
usr.bin/truss/setup.c
552
for (i = 0; i < sc->decode.nargs; i++) {
usr.bin/truss/setup.c
555
if (sc->decode.args[i].type & OUT) {
usr.bin/truss/setup.c
562
(long)t->cs.args[sc->decode.args[i].offset]);
usr.bin/truss/setup.c
564
temp = print_arg(&sc->decode.args[i],
usr.bin/truss/syscall.h
223
struct syscall_decode decode;
usr.bin/truss/syscalls.c
2862
} else if (sc->decode.ret_type == 2 &&
usr.bin/truss/syscalls.c
872
quad_fixup(&sc->decode);
usr.bin/truss/syscalls.c
924
sc->decode = decoded_syscalls[i];
usr.bin/truss/syscalls.c
936
sc->decode.ret_type = 1; /* Assume 1 return value. */
usr.bin/truss/syscalls.c
937
sc->decode.nargs = nargs;
usr.bin/truss/syscalls.c
939
sc->decode.args[i].offset = i;
usr.bin/truss/syscalls.c
941
sc->decode.args[i].type = LongHex;
usr.sbin/bhyve/pci_emul.c
767
int decode;
usr.sbin/bhyve/pci_emul.c
770
decode = porten(pi);
usr.sbin/bhyve/pci_emul.c
772
decode = memen(pi);
usr.sbin/bhyve/pci_emul.c
774
if (decode)
usr.sbin/bhyve/pci_emul.c
794
if (decode)
usr.sbin/syslogd/syslogd.c
2939
pri = decode(buf, prioritynames);
usr.sbin/syslogd/syslogd.c
2963
i = decode(buf, facilitynames);
usr.sbin/syslogd/syslogd.c
342
static int decode(const char *, const CODE *);
usr.sbin/vidcontrol/decode.h
2
int decode(FILE *fd, char *buffer, int len);
usr.sbin/vidcontrol/vidcontrol.c
290
if (decode(fd, (char *)&scrnmap, size) != size) {
usr.sbin/vidcontrol/vidcontrol.c
536
dsize[0] = decode(fd, fontmap, size);
usr.sbin/vidcontrol/vidcontrol.c
564
if (decode(fd, fontmap, size) != size) {