Home | History | Annotate | Download | only in asn1

Lines Matching refs:pval

69 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
70 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
72 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
73 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
74 static int long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx);
94 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
96 *(long *)pval = it->size;
100 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
102 *(long *)pval = it->size;
105 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it)
111 char *cp = (char *)pval;
142 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
148 char *cp = (char *)pval;
175 static int long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it,
178 return BIO_printf(out, "%ld\n", *(long *)pval);