/vbox/src/VBox/Devices/USB/ |
H A D | USBProxyDevice.h | 215 PCUSBPROXYBACK pOps; member in struct:USBPROXYDEV 236 /** Backend specific data, the size is stored in pOps::cbBackend. */
|
H A D | VUSBInternal.h | 302 PCVUSBHUBOPS pOps; member in struct:VUSBHUB 309 AssertCompileMemberAlignment(VUSBHUB, pOps, 8);
|
/vbox/src/VBox/Runtime/common/asn1/ |
H A D | asn1-ut-core.cpp | 83 RTDECL(int) RTAsn1Core_InitEx(PRTASN1CORE pAsn1Core, uint32_t uTag, uint8_t fClass, PCRTASN1COREVTABLE pOps, uint32_t fFlags) argument 93 pAsn1Core->pOps = pOps; 113 pThis->pOps = pSrc->pOps; 218 Assert(pSrc->pOps == &g_RTAsn1Core_Vtable); 232 Assert(pThis->pOps == &g_RTAsn1Core_Vtable); 243 Assert(pThis && (!RTASN1CORE_IS_PRESENT(pThis) || pThis->pOps == &g_RTAsn1Core_Vtable)); 254 Assert(pLeft && (!RTASN1CORE_IS_PRESENT(pLeft) || pLeft->pOps == &g_RTAsn1Core_Vtable)); 255 Assert(pRight && (!RTASN1CORE_IS_PRESENT(pRight) || pRight->pOps [all...] |
H A D | asn1-ut-octetstring.cpp | 269 AssertReturn(pSrc->Asn1Core.pOps == &g_RTAsn1OctetString_Vtable, VERR_INTERNAL_ERROR_3); 282 PCRTASN1COREVTABLE pOps = pSrc->pEncapsulated->pOps; local 283 Assert(!pOps || pOps->pfnClone); 284 if (pOps && pOps->pfnClone) 287 rc = RTAsn1MemAllocZ(&pThis->EncapsulatedAllocation, (void **)&pThis->pEncapsulated, pOps->cbStruct); 290 rc = pOps->pfnClone(pThis->pEncapsulated, pSrc->pEncapsulated, pAllocator); 320 Assert(pThis->Asn1Core.pOps [all...] |
H A D | asn1-ut-bitstring.cpp | 352 AssertReturn(pSrc->Asn1Core.pOps == &g_RTAsn1BitString_Vtable, VERR_INTERNAL_ERROR_3); 369 PCRTASN1COREVTABLE pOps = pSrc->pEncapsulated->pOps; local 370 Assert(!pOps || pOps->pfnClone); 371 if (pOps && pOps->pfnClone) 374 rc = RTAsn1MemAllocZ(&pThis->EncapsulatedAllocation, (void **)&pThis->pEncapsulated, pOps->cbStruct); 377 rc = pOps->pfnClone(pThis->pEncapsulated, pSrc->pEncapsulated, pAllocator); 407 Assert(pThis->Asn1Core.pOps [all...] |
/vbox/include/iprt/ |
H A D | table.h | 151 * @param pOps The table operations. 156 DECLCALLBACKMEMBER(PRTTAB, pfnCreate)(PCRTTABOPS pOps, unsigned fCreateFlags, PRTTABALLOCATOR pAllocator, PFNRTTABCOMP pfnComp); 375 PCRTTABOPS pOps; member in struct:RTTAB 391 * @param pOps The table operations. 396 DECLINLINE(PRTTAB) RTTabCreate(PCRTTABOPS pOps, unsigned fCreateFlags, PRTTABALLOCATOR pAllocator, PFNRTTABCOMP pfnComp) argument 398 return pOps->pfnCreate(pOps, fCreateFlags, pAllocator, pfnComp); 414 return pTab->pOps->pfnDuplicate(pTab, pfnDuplicate, pfnNewCB, pAllocator); 424 pTab->pOps->pfnDestroy(pTab); 450 return pTab->pOps [all...] |
H A D | asn1.h | 473 PCRTASN1COREVTABLE pOps; member in struct:RTASN1CORE 497 * than then type methods (pOps and associates). */ 557 RTDECL(int) RTAsn1Core_InitEx(PRTASN1CORE pAsn1Core, uint32_t uTag, uint8_t fClass, PCRTASN1COREVTABLE pOps, uint32_t fFlags);
|
/vbox/src/VBox/Runtime/include/internal/ |
H A D | ldr.h | 421 PCRTLDROPS pOps; member in struct:RTLDRMODINTERNAL
|
/vbox/src/VBox/Runtime/common/vfs/ |
H A D | vfsbase.cpp | 156 * indicated by RTVFSOBJOPS::enmType via the RTVFSOBJINTERNAL::pOps member. 167 PCRTVFSOBJOPS pOps; member in struct:RTVFSOBJINTERNAL 188 PCRTVFSFSSTREAMOPS pOps; member in struct:RTVFSFSSTREAMINTERNAL 206 PCRTVFSOPS pOps; member in struct:RTVFSINTERNAL 224 PCRTVFSDIROPS pOps; member in struct:RTVFSDIRINTERNAL 242 PCRTVFSSYMLINKOPS pOps; member in struct:RTVFSSYMLINKINTERNAL 262 PCRTVFSIOSTREAMOPS pOps; member in struct:RTVFSIOSTREAMINTERNAL 280 PCRTVFSFILEOPS pOps; member in struct:RTVFSFILEINTERNAL 299 PCRTVFSPIPEOPS pOps; 317 PCRTVFSSOCKETOPS pOps; [all...] |
/vbox/src/VBox/VMM/VMMR3/ |
H A D | SSM.cpp | 398 PCSSMSTRMOPS pOps; member in struct:SSMSTRM 1948 pStrm->pOps = pStreamOps; 2085 pStrm->pOps = &g_ssmR3FileOps; 2358 rc = pStrm->pOps->pfnIsOk(pStrm->pvUser); 2360 rc = pStrm->pOps->pfnWrite(pStrm->pvUser, pCur->offStream, &pCur->abData[0], pCur->cb); 2414 rc = pStrm->pOps->pfnClose(pStrm->pvUser, fCancelled); 2420 rc = pStrm->pOps->pfnClose(pStrm->pvUser, fCancelled); 2434 pStrm->pOps = NULL; 2623 rc = pStrm->pOps->pfnSeek(pStrm->pvUser, pStrm->offNeedSeekTo, RTFILE_SEEK_BEGIN, NULL); 2641 pBuf->offStream = pStrm->pOps [all...] |