Changeset 75652 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Nov 21, 2018 9:00:31 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126831
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dir.h
r70890 r75652 99 99 #ifndef RTDIR_AGNOSTIC 100 100 # ifdef RT_OS_WINDOWS 101 /** Set by RTDirRewind. */ 102 bool fRestartScan; 101 103 /** Handle to the opened directory search. */ 102 104 HANDLE hDir; -
trunk/src/VBox/Runtime/r3/nt/direnum-r3-nt.cpp
r73097 r75652 432 432 pThis->cbBufferAlloc, 433 433 RTDIR_NT_SINGLE_RECORD /*ReturnSingleEntry */, 434 FALSE /*RestartScan*/,434 pThis->fRestartScan, 435 435 &pThis->uObjDirCtx, 436 436 (PULONG)&Ios.Information); … … 448 448 RTDIR_NT_SINGLE_RECORD /*ReturnSingleEntry */, 449 449 pThis->pNtFilterStr, 450 FALSE /*RestartScan */);450 pThis->fRestartScan); 451 451 } 452 452 else … … 486 486 RTDIR_NT_SINGLE_RECORD /*ReturnSingleEntry */, 487 487 pThis->pNtFilterStr, 488 FALSE /*RestartScan */);488 pThis->fRestartScan); 489 489 if (NT_SUCCESS(rcNt)) 490 490 { /* likely */ } 491 491 else 492 492 { 493 bool fRestartScan = false;493 bool fRestartScan = pThis->fRestartScan; 494 494 for (unsigned iRetry = 0; iRetry < 2; iRetry++) 495 495 { … … 551 551 return RTErrConvertFromNtStatus(rcNt); 552 552 } 553 pThis->fRestartScan = false; 553 554 AssertMsg( Ios.Information 554 555 > (pThis->enmInfoClass == FileMaximumInformation ? sizeof(*pThis->uCurData.pObjDir) : sizeof(*pThis->uCurData.pBoth)), … … 906 907 } 907 908 909 910 RTDECL(int) RTDirRewind(RTDIR hDir) 911 { 912 /* 913 * Validate and digest input. 914 */ 915 PRTDIRINTERNAL pThis = hDir; 916 AssertPtrReturn(pThis, VERR_INVALID_POINTER); 917 AssertReturn(pThis->u32Magic == RTDIR_MAGIC, VERR_INVALID_HANDLE); 918 919 /* 920 * The work is done on the next call to rtDirNtFetchMore. 921 */ 922 pThis->fRestartScan = true; 923 pThis->fDataUnread = false; 924 925 return VINF_SUCCESS; 926 } 908 927 909 928 -
trunk/src/VBox/Runtime/r3/posix/dir-posix.cpp
r73097 r75652 649 649 650 650 651 RTDECL(int) RTDirRewind(RTDIR hDir) 652 { 653 PRTDIRINTERNAL pDir = hDir; 654 655 /* 656 * Validate and digest input. 657 */ 658 if (!rtDirValidHandle(pDir)) 659 return VERR_INVALID_PARAMETER; 660 661 /* 662 * Do the rewinding. 663 */ 664 /** @todo OS/2 does not rescan the directory as it should. */ 665 rewinddir(pDir->pDir); 666 pDir->fDataUnread = false; 667 668 return VINF_SUCCESS; 669 } 670 671 651 672 RTDECL(int) RTDirRename(const char *pszSrc, const char *pszDst, unsigned fRename) 652 673 {
Note:
See TracChangeset
for help on using the changeset viewer.