Lines Matching refs:ustrSystemPath
149 rtl_uString* ustrSystemPath = NULL; in osl_openDirectory() local
158 eRet = osl_getSystemPathFromFileURL_Ex(ustrDirectoryURL, &ustrSystemPath, sal_False); in osl_openDirectory()
163 osl_systemPathRemoveSeparator(ustrSystemPath); in osl_openDirectory()
166 if ( UnicodeToText( path, PATH_MAX, ustrSystemPath->buffer, ustrSystemPath->length ) in osl_openDirectory()
183 pDirImpl->ustrPath = ustrSystemPath; in osl_openDirectory()
202 rtl_uString_release( ustrSystemPath ); in osl_openDirectory()
326 rtl_uString* ustrSystemPath = NULL; in osl_getDirectoryItem() local
333 osl_error = osl_getSystemPathFromFileURL_Ex(ustrFileURL, &ustrSystemPath, sal_False); in osl_getDirectoryItem()
337 osl_systemPathRemoveSeparator(ustrSystemPath); in osl_getDirectoryItem()
339 if (-1 == access_u(ustrSystemPath, F_OK)) in osl_getDirectoryItem()
345 *pItem = new DirectoryItem_Impl(ustrSystemPath); in osl_getDirectoryItem()
347 rtl_uString_release(ustrSystemPath); in osl_getDirectoryItem()