Lines Matching refs:aURL
75 rtl::OString aURL(effective_url); in openFile() local
78 sal_Int32 nLen = aURL.getLength(); in openFile()
79 while( (nLen > 0) && ('/' == aURL[nLen-1]) ) in openFile()
80 aURL = aURL.copy(0, --nLen); in openFile()
83 sal_Int32 nIndex = aURL.lastIndexOf('/'); in openFile()
86 … out.File = out.DestinationDir + rtl::OStringToOUString(aURL.copy(nIndex), RTL_TEXTENCODING_UTF8); in openFile()
260 rtl::OString aURL(rtl::OUStringToOString(rURL, RTL_TEXTENCODING_UTF8)); in curl_run() local
261 curl_easy_setopt(pCURL, CURLOPT_URL, aURL.getStr()); in curl_run()
377 rtl::OUString aURL( rURL ); in start() local
379 sal_Int32 nLen = aURL.getLength(); in start()
380 while( (nLen > 0) && ('/' == aURL[ nLen-1 ]) ) in start()
381 aURL = aURL.copy( 0, --nLen ); in start()
384 sal_Int32 nIndex = aURL.lastIndexOf('/'); in start()
385 aFile = rDestinationDir + aURL.copy( nIndex ); in start()
394 if ( m_aHandler->checkDownloadDestination( aURL.copy( nIndex+1 ) ) ) in start()