Lines Matching defs:pThis
39 RTDECL(int) RTAsn1OctetString_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1OCTETSTRING pThis,
42 pThis->pEncapsulated = NULL;
43 RTAsn1CursorInitAllocation(pCursor, &pThis->EncapsulatedAllocation);
45 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag);
48 rc = RTAsn1CursorMatchTagClassFlagsString(pCursor, &pThis->Asn1Core, ASN1_TAG_OCTET_STRING,
53 if ( !(pThis->Asn1Core.fClass & ASN1_TAGFLAG_CONSTRUCTED)
56 RTAsn1CursorSkip(pCursor, pThis->Asn1Core.cb);
57 pThis->Asn1Core.pOps = &g_RTAsn1OctetString_Vtable;
58 pThis->Asn1Core.fFlags |= RTASN1CORE_F_PRIMITE_TAG_STRUCT;
66 pszErrorTag, pThis->Asn1Core.fClass, pThis->Asn1Core.uTag);
68 RT_ZERO(*pThis);