Searched refs:fFollowSymlinks (Results 1 - 2 of 2) sorted by relevance

/vbox/include/iprt/
H A Ddir.h429 * @param fFollowSymlinks Whether to follow symbolic links or not.
432 * @a fFollowSymlinks is false, not
438 RTDECL(int) RTDirQueryUnknownType(const char *pszComposedName, bool fFollowSymlinks, RTDIRENTRYTYPE *penmType);
448 * @param fFollowSymlinks Whether to follow symbolic links or not.
453 RTDECL(int) RTDirQueryUnknownTypeEx(const char *pszComposedName, bool fFollowSymlinks, RTDIRENTRYTYPE *penmType, PRTFSOBJINFO pObjInfo);
/vbox/src/VBox/Runtime/r3/
H A Ddir.cpp709 RTDECL(int) RTDirQueryUnknownTypeEx(const char *pszComposedName, bool fFollowSymlinks, argument
713 fFollowSymlinks ? RTPATH_F_FOLLOW_LINK : RTPATH_F_ON_LINK);
740 RTDECL(int) RTDirQueryUnknownType(const char *pszComposedName, bool fFollowSymlinks, RTDIRENTRYTYPE *penmType) argument
743 && ( !fFollowSymlinks
748 return RTDirQueryUnknownTypeEx(pszComposedName, fFollowSymlinks, penmType, &ObjInfo);

Completed in 35 milliseconds