Changeset 57978 in vbox for trunk/src/VBox/Runtime/common/path
- Timestamp:
- Sep 30, 2015 7:39:30 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 102976
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/path/RTPathGlob.cpp
r57944 r57978 376 376 /** 377 377 * Implements mapping a glob variable to multiple environment variable values. 378 * 379 * @param a_Name The variable name. 378 380 * @param a_apszVarNames Assumes to be a global variable that RT_ELEMENTS 379 381 * works correctly on. 382 * @param a_cbMaxValue The max expected value size. 380 383 */ 381 384 #define RTPATHMATCHVAR_MULTIPLE_ENVVARS(a_Name, a_apszVarNames, a_cbMaxValue) \ … … 451 454 452 455 /** 453 * @interface_method_impl{RTPATHMATCHVAR,pfnQuery, Enumerates the PATH} .456 * @interface_method_impl{RTPATHMATCHVAR,pfnQuery, Enumerates the PATH} 454 457 */ 455 458 static DECLCALLBACK(int) rtPathVarQuery_Path(uint32_t iItem, char *pszBuf, size_t cbBuf, size_t *pcchValue, … … 996 999 * @param pchPattern The pattern to compile. 997 1000 * @param cchPattern The length of the pattern. 1001 * @param fIgnoreCase Whether to ignore case or not when doing the 1002 * actual matching later on. 998 1003 * @param pAllocator Pointer to the instruction allocator & result 999 1004 * array. The compiled "program" starts at … … 1659 1664 * @param pGlob The glob instance data. 1660 1665 * @param offPath The current path offset/length. 1661 * @param iComp The current component. 1666 * @param iStarStarComp The star-star component index. 1667 * @param offStarStarPath The offset of the star-star component in the 1668 * pattern path. 1662 1669 */ 1663 1670 DECL_NO_INLINE(static, int) rtPathGlobExecRecursiveStarStar(PRTPATHGLOB pGlob, size_t offPath, uint32_t iStarStarComp,
Note:
See TracChangeset
for help on using the changeset viewer.