OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pctx_ops
(Results
1 - 3
of
3
) sorted by null
/external/boringssl/src/crypto/digest/
digest.c
96
assert(ctx->pctx == NULL || ctx->
pctx_ops
!= NULL);
97
if (ctx->
pctx_ops
) {
98
ctx->
pctx_ops
->free(ctx->pctx);
147
assert(in->pctx == NULL || in->
pctx_ops
!= NULL);
148
out->
pctx_ops
= in->
pctx_ops
;
149
if (in->pctx && in->
pctx_ops
) {
150
out->pctx = in->
pctx_ops
->dup(in->pctx);
180
assert(ctx->pctx == NULL || ctx->
pctx_ops
!= NULL);
/external/boringssl/src/crypto/evp/
digestsign.c
78
ctx->
pctx_ops
= &md_pctx_ops;
/external/boringssl/src/include/openssl/
digest.h
246
/*
pctx_ops
, if not NULL, points to a vtable that contains functions to
248
const struct evp_md_pctx_ops *
pctx_ops
;
member in struct:env_md_ctx_st
Completed in 67 milliseconds