/vbox/src/VBox/Runtime/common/asn1/ |
H A D | asn1-ut-boolean-decode.cpp | 40 RTDECL(int) RTAsn1Boolean_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1BOOLEAN pThis, const char *pszErrorTag) argument 43 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag); 46 rc = RTAsn1CursorMatchTagClassFlags(pCursor, &pThis->Asn1Core, ASN1_TAG_BOOLEAN, 52 RTAsn1CursorSkip(pCursor, pThis->Asn1Core.cb); 59 || !(pCursor->fFlags & (RTASN1CURSOR_FLAGS_DER | RTASN1CURSOR_FLAGS_CER)) ) 62 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_BOOLEAN_ENCODING, 67 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_BOOLEAN_ENCODING, "%s: Invalid boolean length, exepcted 1: %#x",
|
H A D | asn1-ut-core-decode.cpp | 37 RTDECL(int) RTAsn1Core_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1CORE pThis, const char *pszErrorTag) argument 39 int rc = RTAsn1CursorReadHdr(pCursor, pThis, pszErrorTag); 42 RTAsn1CursorSkip(pCursor, pThis->cb);
|
H A D | asn1-ut-null-decode.cpp | 39 RTDECL(int) RTAsn1Null_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1NULL pThis, const char *pszErrorTag) argument 41 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag); 44 rc = RTAsn1CursorMatchTagClassFlags(pCursor, &pThis->Asn1Core, ASN1_TAG_NULL, 55 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_NULL_ENCODING,
|
H A D | asn1-ut-octetstring-decode.cpp | 39 RTDECL(int) RTAsn1OctetString_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1OCTETSTRING pThis, argument 43 RTAsn1CursorInitAllocation(pCursor, &pThis->EncapsulatedAllocation); 45 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag); 48 rc = RTAsn1CursorMatchTagClassFlagsString(pCursor, &pThis->Asn1Core, ASN1_TAG_OCTET_STRING, 56 RTAsn1CursorSkip(pCursor, pThis->Asn1Core.cb); 61 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_CONSTRUCTED_STRING_NOT_IMPL, 65 rc = RTAsn1CursorSetInfo(pCursor, rc, "%s: Not OCTET STRING: fClass=%#x / uTag=%#x",
|
H A D | asn1-ut-bitstring-decode.cpp | 40 RTDECL(int) RTAsn1BitString_DecodeAsn1Ex(PRTASN1CURSOR pCursor, uint32_t fFlags, uint32_t cMaxBits, PRTASN1BITSTRING pThis, argument 47 RTAsn1CursorInitAllocation(pCursor, &pThis->EncapsulatedAllocation); 49 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag); 52 rc = RTAsn1CursorMatchTagClassFlagsString(pCursor, &pThis->Asn1Core, ASN1_TAG_BIT_STRING, 71 RTAsn1CursorSkip(pCursor, pThis->Asn1Core.cb); 76 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_BITSTRING_ENCODING, 85 if ( !(pCursor->fFlags & (RTASN1CURSOR_FLAGS_DER | RTASN1CURSOR_FLAGS_CER)) 89 RTAsn1CursorSkip(pCursor, pThis->Asn1Core.cb); 94 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_BITSTRING_ENCODING, 99 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_INVALID_BITSTRING_ENCODIN 118 RTAsn1BitString_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1BITSTRING pThis, const char *pszErrorTag) argument [all...] |
H A D | asn1-ut-dyntype-decode.cpp | 40 RTDECL(int) RTAsn1DynType_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1DYNTYPE pDynType, const char *pszErrorTag) argument 45 uint32_t cbSavedLeft = pCursor->cbLeft; 46 uint8_t const *pbSavedCur = pCursor->pbCur; 48 int rc = RTAsn1CursorReadHdr(pCursor, &pDynType->u.Core, pszErrorTag); 80 return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 SEQUENCE shall be constructed."); 83 return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 SET shall be constructed."); 113 return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_TAG_NOT_IMPL, 123 return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 BOOLEAN shall be primitive."); 126 return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TAG, "ASN.1 BOOLEAN shall be primitive."); 129 return RTAsn1CursorSetInfo(pCursor, VERR_ASN1_DYNTYPE_BAD_TA [all...] |
H A D | asn1-ut-integer-decode.cpp | 39 RTDECL(int) RTAsn1Integer_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1INTEGER pThis, const char *pszErrorTag) argument 42 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag); 45 rc = RTAsn1CursorMatchTagClassFlags(pCursor, &pThis->Asn1Core, ASN1_TAG_INTEGER, 63 RTAsn1CursorSkip(pCursor, pThis->Asn1Core.cb);
|
H A D | asn1-ut-string-decode.cpp | 41 RTDECL(int) RTAsn1String_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1STRING pThis, const char *pszErrorTag) argument 46 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag); 69 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_CURSOR_TAG_MISMATCH, 83 RTAsn1CursorSkip(pCursor, pThis->Asn1Core.cb); 86 RTAsn1CursorInitAllocation(pCursor, &pThis->Allocation); 97 if (pCursor->fFlags & RTASN1CURSOR_FLAGS_DER) 98 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_CURSOR_ILLEGAL_CONSTRUCTED_STRING, 101 else if (pCursor->fFlags & RTASN1CURSOR_FLAGS_CER) 106 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_CURSOR_ILLEGAL_CONSTRUCTED_STRING, 113 rc = RTAsn1CursorSetInfo(pCursor, VERR_ASN1_CONSTRUCTED_STRING_NOT_IMP 138 rtAsn1XxxString_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, uint8_t uTag, PRTASN1STRING pThis, const char *pszErrorTag, const char *pszWhat) argument [all...] |
/vbox/src/VBox/Runtime/common/crypto/ |
H A D | spc-asn1-decoder.cpp | 46 static int rtCrSpcSerializedObject_DecodeMore(PRTASN1CURSOR pCursor, uint32_t fFlags, argument 60 rc = RTAsn1CursorInitSubFromCore(pCursor, &pThis->SerializedData.Asn1Core, &SubCursor, "SerializedData");
|
H A D | x509-asn1-decoder.cpp | 43 RTDECL(int) RTCrX509Extension_ExtnValue_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, argument 52 int rc = RTAsn1CursorInitSubFromCore(pCursor, &pThis->ExtnValue.Asn1Core, &ValueCursor, "ExtnValue"); 55 pCursor = &ValueCursor;
|
H A D | pkcs7-asn1-decoder.cpp | 56 static int rtCrPkcs7ContentInfo_DecodeExtra(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTCRPKCS7CONTENTINFO pThis, argument 97 rc = RTAsn1CursorInitSubFromCore(pCursor, &pThis->Content.Asn1Core, &ContentCursor, "Content"); 110 rc = RTAsn1CursorInitSubFromCore(pCursor, &pOctetString->Asn1Core, &ContentCursor, "CmsContent");
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | mipointrst.h | 38 CursorPtr pCursor; /* current cursor */ member in struct:__anon7814
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/ |
H A D | mipointrst.h | 38 CursorPtr pCursor; /* current cursor */ member in struct:__anon8167
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/ |
H A D | mipointrst.h | 41 CursorPtr pCursor; /* current cursor */ member in struct:__anon8485
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/ |
H A D | mipointrst.h | 41 CursorPtr pCursor; /* current cursor */ member in struct:__anon8806
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/ |
H A D | mipointrst.h | 41 CursorPtr pCursor; /* current cursor */ member in struct:__anon9120
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/ |
H A D | mipointrst.h | 41 CursorPtr pCursor; /* current cursor */ member in struct:__anon9440
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/ |
H A D | mipointrst.h | 41 CursorPtr pCursor; /* current cursor */ member in struct:__anon4966
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/ |
H A D | mipointrst.h | 40 CursorPtr pCursor; /* current cursor */ member in struct:__anon6816
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/ |
H A D | mipointrst.h | 40 CursorPtr pCursor; /* current cursor */ member in struct:__anon7137
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | mipointrst.h | 45 CursorPtr pCursor; /* current cursor */ member in struct:__anon7439
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/ |
H A D | mipointrst.h | 41 CursorPtr pCursor; /* current cursor */ member in struct:__anon5278
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/ |
H A D | mipointrst.h | 41 CursorPtr pCursor; /* current cursor */ member in struct:__anon5590
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/ |
H A D | mipointrst.h | 40 CursorPtr pCursor; /* current cursor */ member in struct:__anon5900
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/ |
H A D | mipointrst.h | 40 CursorPtr pCursor; /* current cursor */ member in struct:__anon6203
|