Changeset 69691 in vbox for trunk/src/VBox/Runtime/r3/dir.cpp
- Timestamp:
- Nov 14, 2017 3:27:52 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119064
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/dir.cpp
r69674 r69691 506 506 * 507 507 * @returns IPRT status code. 508 * @param ppDir Where to store the directory handle. 509 * @param pszPath The specified path. 510 * @param pszFilter Pointer to where the filter start in the path. NULL if no filter. 511 * @param enmFilter The type of filter to apply. 512 * @param fFlags RTDIR_F_XXX. 513 */ 514 static int rtDirOpenCommon(PRTDIR *ppDir, const char *pszPath, const char *pszFilter, RTDIRFILTER enmFilter, uint32_t fFlags) 508 * @param ppDir Where to store the directory handle. 509 * @param pszPath The specified path. 510 * @param pszFilter Pointer to where the filter start in the path. 511 * NULL if no filter. 512 * @param enmFilter The type of filter to apply. 513 * @param fFlags RTDIR_F_XXX. 514 * @param hRelativeDir The directory @a pvNativeRelative is relative, 515 * ~(uintptr_t)0 if absolute. 516 * @param pvNativeRelative The native relative path. NULL if absolute. 517 */ 518 static int rtDirOpenCommon(PRTDIR *ppDir, const char *pszPath, const char *pszFilter, RTDIRFILTER enmFilter, uint32_t fFlags, 519 uintptr_t hRelativeDir, void *pvNativeRelative) 515 520 { 516 521 /* … … 623 628 * Hand it over to the native part. 624 629 */ 625 rc = rtDirNativeOpen(pDir, szRealPath );630 rc = rtDirNativeOpen(pDir, szRealPath, hRelativeDir, pvNativeRelative); 626 631 if (RT_SUCCESS(rc)) 627 632 *ppDir = pDir; … … 633 638 634 639 635 636 640 RTDECL(int) RTDirOpen(PRTDIR *ppDir, const char *pszPath) 637 641 { … … 645 649 * Take common cause with RTDirOpenFiltered(). 646 650 */ 647 int rc = rtDirOpenCommon(ppDir, pszPath, NULL, RTDIRFILTER_NONE, 0 /*fFlags*/ );651 int rc = rtDirOpenCommon(ppDir, pszPath, NULL, RTDIRFILTER_NONE, 0 /*fFlags*/, ~(uintptr_t)0, NULL); 648 652 LogFlow(("RTDirOpen(%p:{%p}, %p:{%s}): return %Rrc\n", ppDir, *ppDir, pszPath, pszPath, rc)); 649 653 return rc; … … 651 655 652 656 653 RTDECL(int) RTDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fFlags) 657 DECLHIDDEN(int) rtDirOpenRelative(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fFlags, 658 uintptr_t hRelativeDir, void *pvNativeRelative) 654 659 { 655 660 /* … … 689 694 * and initialize the handle, and finally call the backend. 690 695 */ 691 int rc = rtDirOpenCommon(ppDir, pszPath, pszFilter, enmFilter, fFlags );692 693 LogFlow(("RTDirOpenFiltered(%p:{%p}, %p:{%s}, %d, %#x ): return %Rrc\n",694 ppDir, *ppDir, pszPath, pszPath, enmFilter, fFlags, rc));696 int rc = rtDirOpenCommon(ppDir, pszPath, pszFilter, enmFilter, fFlags, hRelativeDir, pvNativeRelative); 697 698 LogFlow(("RTDirOpenFiltered(%p:{%p}, %p:{%s}, %d, %#x, %p, %p): return %Rrc\n", 699 ppDir,*ppDir, pszPath, pszPath, enmFilter, fFlags, hRelativeDir, pvNativeRelative, rc)); 695 700 return rc; 701 } 702 703 704 RTDECL(int) RTDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fFlags) 705 { 706 return rtDirOpenRelative(ppDir, pszPath, enmFilter, fFlags, ~(uintptr_t)0, NULL); 696 707 } 697 708
Note:
See TracChangeset
for help on using the changeset viewer.