Searched refs:hVolMgr (Results 1 - 4 of 4) sorted by relevance

/vbox/include/iprt/
H A Ddvm.h179 * @param hVolMgr The volume manager to retain.
181 RTDECL(uint32_t) RTDvmRetain(RTDVM hVolMgr); variable
187 * @param hVolMgr The volume manager to release.
189 RTDECL(uint32_t) RTDvmRelease(RTDVM hVolMgr); variable
197 * @param hVolMgr The volume manager handle.
199 RTDECL(int) RTDvmMapOpen(RTDVM hVolMgr); variable
205 * @param hVolMgr The volume manager handle.
208 RTDECL(int) RTDvmMapInitialize(RTDVM hVolMgr, const char *pszFmt);
214 * @param hVolMgr The volume manager handle.
216 RTDECL(const char *) RTDvmMapGetFormat(RTDVM hVolMgr); variable
224 RTDECL(uint32_t) RTDvmMapGetValidVolumes(RTDVM hVolMgr); variable
232 RTDECL(uint32_t) RTDvmMapGetMaxVolumes(RTDVM hVolMgr); variable
[all...]
/vbox/src/VBox/Runtime/testcase/
H A DtstRTDvm.cpp93 RTDVM hVolMgr; local
94 rc = RTDvmCreate(&hVolMgr, dvmDiskRead, dvmDiskWrite, cb, 512, 0, pDisk);
102 rc = RTDvmMapOpen(hVolMgr);
112 RTTestIPrintf(RTTESTLVL_ALWAYS, "%s Successfully opened map with format: %s.\n", szPrefix, RTDvmMapGetFormat(hVolMgr));
119 rc = RTDvmMapQueryFirstVolume(hVolMgr, &hVol);
155 rc = RTDvmMapQueryNextVolume(hVolMgr, hVol, &hVolNext);
169 RTDvmRelease(hVolMgr);
/vbox/src/VBox/Runtime/common/dvm/
H A Ddvm.cpp217 RTDECL(uint32_t) RTDvmRetain(RTDVM hVolMgr) argument
219 PRTDVMINTERNAL pThis = hVolMgr;
252 RTDECL(uint32_t) RTDvmRelease(RTDVM hVolMgr) argument
254 PRTDVMINTERNAL pThis = hVolMgr;
267 RTDECL(int) RTDvmMapOpen(RTDVM hVolMgr)
272 PRTDVMINTERNAL pThis = hVolMgr;
367 RTDECL(int) RTDvmMapInitialize(RTDVM hVolMgr, const char *pszFmt) argument
370 PRTDVMINTERNAL pThis = hVolMgr;
393 RTDECL(const char *) RTDvmMapGetFormat(RTDVM hVolMgr) argument
395 PRTDVMINTERNAL pThis = hVolMgr;
403 RTDvmMapGetValidVolumes(RTDVM hVolMgr) argument
413 RTDvmMapGetMaxVolumes(RTDVM hVolMgr) argument
423 RTDvmMapQueryFirstVolume(RTDVM hVolMgr, PRTDVMVOLUME phVol) argument
443 RTDvmMapQueryNextVolume(RTDVM hVolMgr, RTDVMVOLUME hVol, PRTDVMVOLUME phVolNext) argument
467 RTDvmMapQueryBlockStatus(RTDVM hVolMgr, uint64_t off, uint64_t cb, bool *pfAllocated) argument
[all...]
/vbox/src/VBox/Storage/testcase/
H A Dvbox-img.cpp1194 RTDVM hVolMgr = (RTDVM)pvUser;
1195 return RTDvmMapQueryBlockStatus(hVolMgr, off, cb, pfUsed);

Completed in 50 milliseconds