Searched refs:pSrc (Results 1 - 25 of 253) sorted by relevance

1234567891011

/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-ut-core.cpp104 static int rtAsn1Core_CloneEx(PRTASN1CORE pThis, PCRTASN1CORE pSrc, PCRTASN1ALLOCATORVTABLE pAllocator, bool fCopyContent) argument
106 Assert(RTASN1CORE_IS_PRESENT(pSrc));
107 pThis->uTag = pSrc->uTag;
108 pThis->fClass = pSrc->fClass;
109 pThis->uRealTag = pSrc->uRealTag;
110 pThis->fRealClass = pSrc->fRealClass;
111 pThis->cbHdr = pSrc->cbHdr;
112 pThis->fFlags = pSrc->fFlags & ~(RTASN1CORE_F_ALLOCATED_CONTENT | RTASN1CORE_F_DECODED_CONTENT);
113 pThis->pOps = pSrc->pOps;
116 if (pSrc
136 RTAsn1Core_CloneContent(PRTASN1CORE pThis, PCRTASN1CORE pSrc, PCRTASN1ALLOCATORVTABLE pAllocator) argument
142 RTAsn1Core_CloneNoContent(PRTASN1CORE pThis, PCRTASN1CORE pSrc) argument
[all...]
H A Dasn1-ut-boolean.cpp112 RTDECL(int) RTAsn1Boolean_Clone(PRTASN1BOOLEAN pThis, PCRTASN1BOOLEAN pSrc, PCRTASN1ALLOCATORVTABLE pAllocator) argument
114 AssertPtr(pSrc); AssertPtr(pThis); AssertPtr(pAllocator);
116 if (RTAsn1Boolean_IsPresent(pSrc))
118 AssertReturn(pSrc->Asn1Core.pOps == &g_RTAsn1Boolean_Vtable, VERR_INTERNAL_ERROR_3);
119 AssertReturn(pSrc->Asn1Core.cb <= 1, VERR_INTERNAL_ERROR_4);
122 if ( pSrc->Asn1Core.cb == 1
123 && pSrc->Asn1Core.uData.pu8[0] != 0x00
124 && pSrc->Asn1Core.uData.pu8[0] != 0xff)
127 rc = RTAsn1Core_CloneContent(&pThis->Asn1Core, &pSrc->Asn1Core, pAllocator);
134 rc = RTAsn1Core_CloneNoContent(&pThis->Asn1Core, &pSrc
[all...]
H A Dasn1-ut-null.cpp73 RTDECL(int) RTAsn1Null_Clone(PRTASN1NULL pThis, PCRTASN1NULL pSrc, PCRTASN1ALLOCATORVTABLE pAllocator) argument
75 AssertPtr(pSrc); AssertPtr(pThis); AssertPtr(pAllocator);
77 if (RTAsn1Null_IsPresent(pSrc))
79 AssertReturn(pSrc->Asn1Core.pOps == &g_RTAsn1Null_Vtable, VERR_INTERNAL_ERROR_3);
80 AssertReturn(pSrc->Asn1Core.cb == 0, VERR_INTERNAL_ERROR_4);
82 int rc = RTAsn1Core_CloneNoContent(&pThis->Asn1Core, &pSrc->Asn1Core);
H A Dasn1-ut-dyntype.cpp52 RTDECL(int) RTAsn1DynType_Clone(PRTASN1DYNTYPE pThis, PCRTASN1DYNTYPE pSrc, PCRTASN1ALLOCATORVTABLE pAllocator) argument
54 AssertPtr(pSrc); AssertPtr(pThis); AssertPtr(pAllocator);
56 if (RTAsn1DynType_IsPresent(pSrc))
59 switch (pSrc->enmType)
61 case RTASN1TYPE_CORE: rc = RTAsn1Core_Clone(&pThis->u.Core, &pSrc->u.Core, pAllocator); break;
62 case RTASN1TYPE_NULL: rc = RTAsn1Null_Clone(&pThis->u.Asn1Null, &pSrc->u.Asn1Null, pAllocator); break;
63 case RTASN1TYPE_INTEGER: rc = RTAsn1Integer_Clone(&pThis->u.Integer, &pSrc->u.Integer, pAllocator); break;
64 case RTASN1TYPE_BOOLEAN: rc = RTAsn1Boolean_Clone(&pThis->u.Boolean, &pSrc->u.Boolean, pAllocator); break;
65 case RTASN1TYPE_STRING: rc = RTAsn1String_Clone(&pThis->u.String, &pSrc->u.String, pAllocator); break;
66 case RTASN1TYPE_OCTET_STRING: rc = RTAsn1OctetString_Clone(&pThis->u.OctetString, &pSrc
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dfbpict.h35 PicturePtr pSrc,
62 PicturePtr pSrc,
69 PicturePtr pSrc,
80 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dfbpict.h35 PicturePtr pSrc,
62 PicturePtr pSrc,
69 PicturePtr pSrc,
76 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A DsafeAlpha.h37 SafeAlphaComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
H A Dcfb8_32.h40 DrawablePtr pSrc,
50 DrawablePtr pSrc,
131 DrawablePtr pSrc,
142 DrawablePtr pSrc,
152 DrawablePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dfbmmx.h50 PicturePtr pSrc,
62 PicturePtr pSrc,
74 PicturePtr pSrc,
86 PicturePtr pSrc,
98 PicturePtr pSrc,
110 PicturePtr pSrc,
122 PicturePtr pSrc,
134 PicturePtr pSrc,
146 PicturePtr pSrc,
158 PicturePtr pSrc,
[all...]
H A DsafeAlpha.h39 SafeAlphaComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
H A Dmipict.h93 PicturePtr pSrc,
124 PicturePtr pSrc,
144 miIsSolidAlpha (PicturePtr pSrc);
158 PicturePtr pSrc,
180 PicturePtr pSrc,
190 PicturePtr pSrc,
200 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dfbmmx.h50 PicturePtr pSrc,
62 PicturePtr pSrc,
74 PicturePtr pSrc,
86 PicturePtr pSrc,
98 PicturePtr pSrc,
110 PicturePtr pSrc,
122 PicturePtr pSrc,
134 PicturePtr pSrc,
146 PicturePtr pSrc,
158 PicturePtr pSrc,
[all...]
H A Ddmxpict.h76 PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
82 PicturePtr pSrc, PicturePtr pDst,
95 PicturePtr pSrc, PicturePtr pDst,
100 PicturePtr pSrc, PicturePtr pDst,
105 PicturePtr pSrc, PicturePtr pDst,
110 PicturePtr pSrc, PicturePtr pDst,
H A DsafeAlpha.h40 SafeAlphaComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dfbmmx.h50 PicturePtr pSrc,
62 PicturePtr pSrc,
74 PicturePtr pSrc,
86 PicturePtr pSrc,
98 PicturePtr pSrc,
110 PicturePtr pSrc,
122 PicturePtr pSrc,
134 PicturePtr pSrc,
146 PicturePtr pSrc,
158 PicturePtr pSrc,
[all...]
H A Ddmxpict.h76 PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
82 PicturePtr pSrc, PicturePtr pDst,
95 PicturePtr pSrc, PicturePtr pDst,
100 PicturePtr pSrc, PicturePtr pDst,
105 PicturePtr pSrc, PicturePtr pDst,
110 PicturePtr pSrc, PicturePtr pDst,
H A DsafeAlpha.h40 SafeAlphaComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
/vbox/src/VBox/VMM/VMMRC/
H A DMMRamRC.cpp80 * @param pSrc Pointer to the data to read.
83 VMMRCDECL(int) MMGCRamRead(PVM pVM, void *pDst, void *pSrc, size_t cb) argument
113 rc = MMGCRamReadNoTrapHandler(pDst, pSrc, cbThisRead);
120 pSrc = (uint8_t *)pSrc + cbThisRead;
137 * @param pSrc Pointer to the data to write.
142 VMMRCDECL(int) MMGCRamWrite(PVM pVM, void *pDst, void *pSrc, size_t cb) argument
148 int rc = MMGCRamWriteNoTrapHandler(pDst, pSrc, cb);
/vbox/src/VBox/Runtime/common/crypto/
H A Dx509-init.cpp41 static int rtCrX509Extension_ExtnValue_Clone(PRTCRX509EXTENSION pThis, PCRTCRX509EXTENSION pSrc) argument
43 pThis->enmValue = pSrc->enmValue;
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A DsafeAlpha.h39 SafeAlphaComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dfbpict.h34 PicturePtr pSrc,
70 PicturePtr pSrc,
80 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dfbpict.h34 PicturePtr pSrc,
70 PicturePtr pSrc,
80 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Dfbpict.h35 PicturePtr pSrc,
62 PicturePtr pSrc,
70 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dfbpict.h35 PicturePtr pSrc,
62 PicturePtr pSrc,
70 PicturePtr pSrc,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dfbpict.h35 PicturePtr pSrc,
62 PicturePtr pSrc,
70 PicturePtr pSrc,

Completed in 142 milliseconds

1234567891011