Searched refs:pcbDirEntry (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Runtime/r3/posix/
H A Ddir-posix.cpp359 RTDECL(int) RTDirRead(PRTDIR pDir, PRTDIRENTRY pDirEntry, size_t *pcbDirEntry) argument
369 if (pcbDirEntry)
371 AssertMsgReturn(VALID_PTR(pcbDirEntry), ("%p\n", pcbDirEntry), VERR_INVALID_POINTER); local
372 cbDirEntry = *pcbDirEntry;
374 ("Invalid *pcbDirEntry=%d (min %d)\n", *pcbDirEntry, RT_OFFSETOF(RTDIRENTRYEX, szName[2])),
390 if (pcbDirEntry)
391 *pcbDirEntry = cbRequired;
418 pcbDirEntry, pcbDirEntr
456 RTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags) argument
472 AssertMsgReturn(VALID_PTR(pcbDirEntry), ("%p\\n", pcbDirEntry), VERR_INVALID_POINTER); local
[all...]
/vbox/src/VBox/Runtime/r3/win/
H A Ddirenum-win.cpp138 RTDECL(int) RTDirRead(PRTDIR pDir, PRTDIRENTRY pDirEntry, size_t *pcbDirEntry) argument
154 if (pcbDirEntry)
156 cbDirEntry = *pcbDirEntry;
159 AssertMsgFailed(("Invalid *pcbDirEntry=%d (min %d)\n", *pcbDirEntry, RT_OFFSETOF(RTDIRENTRY, szName[2])));
202 if (pcbDirEntry)
203 *pcbDirEntry = cbRequired;
222 RTDECL(int) RTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags) argument
247 if (pcbDirEntry)
249 cbDirEntry = *pcbDirEntry;
[all...]
/vbox/src/VBox/Runtime/r3/nt/
H A Ddirenum-r3-nt.cpp426 RTDECL(int) RTDirRead(PRTDIR pDir, PRTDIRENTRY pDirEntry, size_t *pcbDirEntry) argument
437 if (pcbDirEntry)
439 cbDirEntry = *pcbDirEntry;
441 ("Invalid *pcbDirEntry=%d (min %d)\n", *pcbDirEntry, RT_OFFSETOF(RTDIRENTRY, szName[2])),
468 if (pcbDirEntry)
469 *pcbDirEntry = cbRequired;
522 RTDECL(int) RTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, argument
539 if (pcbDirEntry)
541 cbDirEntry = *pcbDirEntry;
[all...]
/vbox/include/iprt/
H A Ddir.h287 * Using the pcbDirEntry parameter of RTDirRead makes this field variable in size. */
318 * Using the pcbDirEntry parameter of RTDirReadEx makes this field variable in size. */
370 * pcbDirEntry is specified it will be updated with the required buffer size.
376 * @param pcbDirEntry Optional parameter used for variable buffer size.
389 RTDECL(int) RTDirRead(PRTDIR pDir, PRTDIRENTRY pDirEntry, size_t *pcbDirEntry);
397 * pcbDirEntry is specified it will be updated with the required buffer size.
403 * @param pcbDirEntry Optional parameter used for variable buffer size.
420 RTDECL(int) RTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags);
H A Dvfslowlevel.h569 * @param pcbDirEntry Complicated, see RTDirReadEx.
573 DECLCALLBACKMEMBER(int, pfnReadDir)(void *pvThis, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAddAttr);
/vbox/src/VBox/HostServices/SharedFolders/
H A Dteststubs.h42 extern int testRTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags);
/vbox/src/VBox/HostServices/SharedFolders/testcase/
H A DtstShflCase.cpp128 int rtDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags) argument
H A DtstSharedFolderService.cpp179 size_t *pcbDirEntry,
183 /* RTPrintf("%s: pDir=%p, pcbDirEntry=%d, enmAdditionalAttribs=%llu, fFlags=0x%llx\n",
184 __PRETTY_FUNCTION__, pDir, pcbDirEntry ? (int) *pcbDirEntry : -1,
178 testRTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags) argument

Completed in 58 milliseconds