Lines Matching defs:ctrl
872 * call, and that the resulting ctrl call will return -2 if it doesn't
873 * known the ctrl command number.
897 * call, and that the resulting ctrl call will return -2 if it doesn't
898 * known the ctrl command number.
950 int ctrl)
962 return EVP_PKEY_CTX_ctrl(ctx, -1, op, ctrl, 0, (void *)(md));
996 const char *param, int op, int ctrl,
1010 return EVP_PKEY_CTX_ctrl(ctx, -1, op, ctrl, datalen, (void *)(data));
1135 int op, int ctrl, uint64_t val)
1147 return EVP_PKEY_CTX_ctrl_uint64(ctx, -1, op, ctrl, val);
1323 if (ctx->pmeth == NULL || ctx->pmeth->ctrl == NULL) {
1330 ret = ctx->pmeth->ctrl(ctx, cmd, p1, p2);
1452 * Check that it's one of the supported commands. The ctrl commands
1590 /* Utility functions to send a string of hex string to a ctrl */
1599 return ctx->pmeth->ctrl(ctx, cmd, len, (void *)str);
1612 rv = ctx->pmeth->ctrl(ctx, cmd, binlen, bin);
1617 /* Pass a message digest to a ctrl */
1805 int (*ctrl) (EVP_PKEY_CTX *ctx, int type, int p1,
1811 pmeth->ctrl = ctrl;
2017 *pctrl = pmeth->ctrl;