Lines Matching refs:ustrSystemPath
153 rtl_uString* ustrSystemPath = NULL; in osl_openDirectory() local
162 eRet = osl_getSystemPathFromFileURL_Ex(ustrDirectoryURL, &ustrSystemPath, sal_False); in osl_openDirectory()
167 osl_systemPathRemoveSeparator(ustrSystemPath); in osl_openDirectory()
170 if ( UnicodeToText( path, PATH_MAX, ustrSystemPath->buffer, ustrSystemPath->length ) in osl_openDirectory()
187 pDirImpl->ustrPath = ustrSystemPath; in osl_openDirectory()
206 rtl_uString_release( ustrSystemPath ); in osl_openDirectory()
330 rtl_uString* ustrSystemPath = NULL; in osl_getDirectoryItem() local
337 osl_error = osl_getSystemPathFromFileURL_Ex(ustrFileURL, &ustrSystemPath, sal_False); in osl_getDirectoryItem()
341 osl_systemPathRemoveSeparator(ustrSystemPath); in osl_getDirectoryItem()
343 if (-1 == access_u(ustrSystemPath, F_OK)) in osl_getDirectoryItem()
349 *pItem = new DirectoryItem_Impl(ustrSystemPath); in osl_getDirectoryItem()
351 rtl_uString_release(ustrSystemPath); in osl_getDirectoryItem()