Searched defs:dctx (Results 1 - 7 of 7) sorted by relevance

/external/boringssl/src/crypto/evp/
H A Dp_ec.c85 EC_PKEY_CTX *dctx; local
86 dctx = OPENSSL_malloc(sizeof(EC_PKEY_CTX));
87 if (!dctx) {
90 memset(dctx, 0, sizeof(EC_PKEY_CTX));
92 ctx->data = dctx;
98 EC_PKEY_CTX *dctx, *sctx; local
103 dctx = dst->data;
106 dctx->gen_group = EC_GROUP_dup(sctx->gen_group);
107 if (!dctx->gen_group) {
111 dctx
117 EC_PKEY_CTX *dctx = ctx->data; local
187 EC_PKEY_CTX *dctx = ctx->data; local
230 EC_PKEY_CTX *dctx = ctx->data; local
252 EC_PKEY_CTX *dctx = ctx->data; local
[all...]
H A Dp_rsa.c112 RSA_PKEY_CTX *dctx, *sctx; local
117 dctx = dst->data;
118 dctx->nbits = sctx->nbits;
120 dctx->pub_exp = BN_dup(sctx->pub_exp);
121 if (!dctx->pub_exp) {
126 dctx->pad_mode = sctx->pad_mode;
127 dctx->md = sctx->md;
128 dctx->mgf1md = sctx->mgf1md;
130 OPENSSL_free(dctx->oaep_label);
131 dctx
[all...]
/external/openssh/
H A Ddeattack.c98 deattack_init(struct deattack_ctx *dctx) argument
100 bzero(dctx, sizeof(*dctx));
101 dctx->n = HASH_MINSIZE / HASH_ENTRYSIZE;
106 detect_attack(struct deattack_ctx *dctx, const u_char *buf, u_int32_t len) argument
115 for (l = dctx->n; l < HASH_FACTOR(len / SSH_BLOCKSIZE); l = l << 2)
118 if (dctx->h == NULL) {
119 if ((dctx->h = calloc(l, HASH_ENTRYSIZE)) == NULL)
121 dctx->n = l;
123 if (l > dctx
[all...]
/external/dhcpcd-6.8.2/
H A Deloop.c457 eloop_init(struct dhcpcd_ctx *dctx) argument
468 ctx->ctx = dctx;
H A Dipv6nd.c158 ipv6nd_open(struct dhcpcd_ctx *dctx) argument
164 ctx = dctx->ipv6;
214 eloop_event_add(dctx->eloop, ctx->nd_fd,
215 ipv6nd_handledata, dctx, NULL, NULL);
220 eloop_event_delete(dctx->eloop, ctx->nd_fd, 0);
725 ipv6nd_handlera(struct dhcpcd_ctx *dctx, struct interface *ifp, argument
728 struct ipv6_ctx *ctx = dctx->ipv6;
753 logger(dctx, LOG_ERR,
759 logger(dctx, LOG_ERR,
766 logger(dctx, LOG_DEBU
1552 ipv6nd_handlena(struct dhcpcd_ctx *dctx, struct interface *ifp, struct icmp6_hdr *icp, size_t len) argument
1630 struct dhcpcd_ctx *dctx; local
[all...]
H A Ddhcp6.c2602 struct dhcpcd_ctx *dctx; local
2620 dctx = arg;
2621 ctx = dctx->ipv6;
2625 logger(dctx, LOG_ERR, "%s: recvmsg: %m", __func__);
2627 eloop_event_delete(dctx->eloop, ctx->dhcp_fd, 0);
2635 logger(dctx, LOG_ERR,
2655 logger(dctx, LOG_ERR,
2660 TAILQ_FOREACH(ifp, dctx->ifaces, next) {
2667 logger(dctx, LOG_DEBUG,
2707 logger(dctx, LOG_DEBU
3086 dhcp6_open(struct dhcpcd_ctx *dctx) argument
[all...]
/external/curl/src/
H A Dtool_metalink.c599 digest_context *dctx; local
615 dctx = Curl_digest_init(digest_def->dparams);
616 if(!dctx) {
637 Curl_digest_final(dctx, result);
641 Curl_digest_update(dctx, buf, (unsigned int)len);
643 Curl_digest_final(dctx, result);

Completed in 169 milliseconds