Lines Matching refs:pp
172 unsigned char **pp;/* variable */ member
187 const unsigned char **pp;/* variable */ member
576 #define M_i2d_ASN1_OCTET_STRING(a,pp) \ argument
577 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_OCTET_STRING,\
611 #define M_i2d_ASN1_PRINTABLE(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\ argument
612 pp,a->type,V_ASN1_UNIVERSAL)
613 #define M_d2i_ASN1_PRINTABLE(a,pp,l) \ argument
614 d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
619 #define M_i2d_DIRECTORYSTRING(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\ argument
620 pp,a->type,V_ASN1_UNIVERSAL)
621 #define M_d2i_DIRECTORYSTRING(a,pp,l) \ argument
622 d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
627 #define M_i2d_DISPLAYTEXT(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\ argument
628 pp,a->type,V_ASN1_UNIVERSAL)
629 #define M_d2i_DISPLAYTEXT(a,pp,l) \ argument
630 d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \
636 #define M_i2d_ASN1_PRINTABLESTRING(a,pp) \ argument
637 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_PRINTABLESTRING,\
639 #define M_d2i_ASN1_PRINTABLESTRING(a,pp,l) \ argument
641 ((ASN1_STRING **)a,pp,l,B_ASN1_PRINTABLESTRING)
646 #define M_i2d_ASN1_T61STRING(a,pp) \ argument
647 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_T61STRING,\
649 #define M_d2i_ASN1_T61STRING(a,pp,l) \ argument
651 ((ASN1_STRING **)a,pp,l,B_ASN1_T61STRING)
658 #define M_i2d_ASN1_IA5STRING(a,pp) \ argument
659 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_IA5STRING,\
661 #define M_d2i_ASN1_IA5STRING(a,pp,l) \ argument
662 (ASN1_IA5STRING *)d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l,\
686 #define M_i2d_ASN1_GENERALSTRING(a,pp) \ argument
687 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_GENERALSTRING,\
689 #define M_d2i_ASN1_GENERALSTRING(a,pp,l) \ argument
691 ((ASN1_STRING **)a,pp,l,B_ASN1_GENERALSTRING)
696 #define M_i2d_ASN1_UNIVERSALSTRING(a,pp) \ argument
697 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_UNIVERSALSTRING,\
699 #define M_d2i_ASN1_UNIVERSALSTRING(a,pp,l) \ argument
701 ((ASN1_STRING **)a,pp,l,B_ASN1_UNIVERSALSTRING)
706 #define M_i2d_ASN1_BMPSTRING(a,pp) \ argument
707 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_BMPSTRING,\
709 #define M_d2i_ASN1_BMPSTRING(a,pp,l) \ argument
711 ((ASN1_STRING **)a,pp,l,B_ASN1_BMPSTRING)
716 #define M_i2d_ASN1_VISIBLESTRING(a,pp) \ argument
717 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_VISIBLESTRING,\
719 #define M_d2i_ASN1_VISIBLESTRING(a,pp,l) \ argument
721 ((ASN1_STRING **)a,pp,l,B_ASN1_VISIBLESTRING)
726 #define M_i2d_ASN1_UTF8STRING(a,pp) \ argument
727 i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_UTF8STRING,\
729 #define M_d2i_ASN1_UTF8STRING(a,pp,l) \ argument
731 ((ASN1_STRING **)a,pp,l,B_ASN1_UTF8STRING)
746 OPENSSL_EXPORT int i2d_ASN1_OBJECT(ASN1_OBJECT *a,unsigned char **pp);
747 OPENSSL_EXPORT ASN1_OBJECT * c2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
749 OPENSSL_EXPORT ASN1_OBJECT * d2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
772 OPENSSL_EXPORT int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a,unsigned char **pp);
773 OPENSSL_EXPORT ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,const unsigned char **pp, l…
783 OPENSSL_EXPORT int i2d_ASN1_BOOLEAN(int a,unsigned char **pp);
784 OPENSSL_EXPORT int d2i_ASN1_BOOLEAN(int *a,const unsigned char **pp,long length);
787 OPENSSL_EXPORT int i2c_ASN1_INTEGER(ASN1_INTEGER *a,unsigned char **pp);
788 OPENSSL_EXPORT ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a,const unsigned char **pp, long lengt…
789 OPENSSL_EXPORT ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a,const unsigned char **pp, long leng…
844 OPENSSL_EXPORT int i2d_ASN1_SET(STACK_OF(OPENSSL_BLOCK) *a, unsigned char **pp, i2d_of_void *i2d, i…
846 const unsigned char **pp,
877 OPENSSL_EXPORT int i2d_ASN1_bytes(ASN1_STRING *a, unsigned char **pp, int tag, int xclass);
878 OPENSSL_EXPORT ASN1_STRING *d2i_ASN1_bytes(ASN1_STRING **a, const unsigned char **pp, long length, …
881 OPENSSL_EXPORT ASN1_STRING *d2i_ASN1_type_bytes(ASN1_STRING **a,const unsigned char **pp, long leng…
888 OPENSSL_EXPORT int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag, int *pclass,…
891 OPENSSL_EXPORT void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag, int x…
892 OPENSSL_EXPORT int ASN1_put_eoc(unsigned char **pp);
972 OPENSSL_EXPORT int ASN1_parse(BIO *bp,const unsigned char *pp,long len,int indent);
973 OPENSSL_EXPORT int ASN1_parse_dump(BIO *bp,const unsigned char *pp,long len,int indent,int dump);