Searched defs:pIfIoInt (Results 1 - 2 of 2) sorted by relevance

/vbox/include/VBox/
H A Dvd-ifs-internal.h440 DECLINLINE(int) vdIfIoIntFileOpen(PVDINTERFACEIOINT pIfIoInt, const char *pszFilename, argument
443 return pIfIoInt->pfnOpen(pIfIoInt->Core.pvUser, pszFilename, fOpen, ppStorage);
446 DECLINLINE(int) vdIfIoIntFileClose(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage) argument
448 return pIfIoInt->pfnClose(pIfIoInt->Core.pvUser, pStorage);
451 DECLINLINE(int) vdIfIoIntFileDelete(PVDINTERFACEIOINT pIfIoInt, const char *pszFilename) argument
453 return pIfIoInt->pfnDelete(pIfIoInt->Core.pvUser, pszFilename);
456 DECLINLINE(int) vdIfIoIntFileMove(PVDINTERFACEIOINT pIfIoInt, cons argument
462 vdIfIoIntFileGetFreeSpace(PVDINTERFACEIOINT pIfIoInt, const char *pszFilename, int64_t *pcbFree) argument
468 vdIfIoIntFileGetModificationTime(PVDINTERFACEIOINT pIfIoInt, const char *pcszFilename, PRTTIMESPEC pModificationTime) argument
475 vdIfIoIntFileGetSize(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage, uint64_t *pcbSize) argument
481 vdIfIoIntFileSetSize(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage, uint64_t cbSize) argument
487 vdIfIoIntFileWriteSync(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage, uint64_t uOffset, const void *pvBuffer, size_t cbBuffer) argument
495 vdIfIoIntFileReadSync(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage, uint64_t uOffset, void *pvBuffer, size_t cbBuffer) argument
503 vdIfIoIntFileFlushSync(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage) argument
508 vdIfIoIntFileReadUser(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage, uint64_t uOffset, PVDIOCTX pIoCtx, size_t cbRead) argument
515 vdIfIoIntFileWriteUser(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage, uint64_t uOffset, PVDIOCTX pIoCtx, size_t cbWrite, PFNVDXFERCOMPLETED pfnComplete, void *pvCompleteUser) argument
525 vdIfIoIntFileReadMeta(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage, uint64_t uOffset, void *pvBuffer, size_t cbBuffer, PVDIOCTX pIoCtx, PPVDMETAXFER ppMetaXfer, PFNVDXFERCOMPLETED pfnComplete, void *pvCompleteUser) argument
537 vdIfIoIntFileWriteMeta(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage, uint64_t uOffset, void *pvBuffer, size_t cbBuffer, PVDIOCTX pIoCtx, PFNVDXFERCOMPLETED pfnComplete, void *pvCompleteUser) argument
548 vdIfIoIntMetaXferRelease(PVDINTERFACEIOINT pIfIoInt, PVDMETAXFER pMetaXfer) argument
553 vdIfIoIntFileFlush(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage, PVDIOCTX pIoCtx, PFNVDXFERCOMPLETED pfnComplete, void *pvCompleteUser) argument
561 vdIfIoIntIoCtxCopyTo(PVDINTERFACEIOINT pIfIoInt, PVDIOCTX pIoCtx, const void *pvBuffer, size_t cbBuffer) argument
567 vdIfIoIntIoCtxCopyFrom(PVDINTERFACEIOINT pIfIoInt, PVDIOCTX pIoCtx, void *pvBuffer, size_t cbBuffer) argument
573 vdIfIoIntIoCtxSet(PVDINTERFACEIOINT pIfIoInt, PVDIOCTX pIoCtx, int ch, size_t cbSet) argument
579 vdIfIoIntIoCtxSegArrayCreate(PVDINTERFACEIOINT pIfIoInt, PVDIOCTX pIoCtx, PRTSGSEG paSeg, unsigned *pcSeg, size_t cbData) argument
586 vdIfIoIntIoCtxIsSynchronous(PVDINTERFACEIOINT pIfIoInt, PVDIOCTX pIoCtx) argument
591 vdIfIoIntIoCtxIsZero(PVDINTERFACEIOINT pIfIoInt, PVDIOCTX pIoCtx, size_t cbCheck, bool fAdvance) argument
597 vdIfIoIntIoCtxGetDataUnitSize(PVDINTERFACEIOINT pIfIoInt, PVDIOCTX pIoCtx) argument
[all...]
/vbox/src/VBox/Storage/
H A DVD.cpp5613 * @param pIfIoInt The internal I/O interface to setup.
5615 static void vdIfIoIntCallbacksSetup(PVDINTERFACEIOINT pIfIoInt) argument
5617 pIfIoInt->pfnOpen = vdIOIntOpen;
5618 pIfIoInt->pfnClose = vdIOIntClose;
5619 pIfIoInt->pfnDelete = vdIOIntDelete;
5620 pIfIoInt->pfnMove = vdIOIntMove;
5621 pIfIoInt->pfnGetFreeSpace = vdIOIntGetFreeSpace;
5622 pIfIoInt->pfnGetModificationTime = vdIOIntGetModificationTime;
5623 pIfIoInt->pfnGetSize = vdIOIntGetSize;
5624 pIfIoInt
[all...]

Completed in 51 milliseconds