Lines Matching refs:ustrFileURL

881 oslFileError SAL_CALL osl_getSystemPathFromFileURL( rtl_uString *ustrFileURL, rtl_uString **pustrSy…  in osl_getSystemPathFromFileURL()  argument
883 return _osl_getSystemPathFromFileURL( ustrFileURL, pustrSystemPath, sal_True ); in osl_getSystemPathFromFileURL()
901 if( ( 0 == ustrFileURL->length ) || ( (sal_Unicode) '/' == ustrFileURL->buffer[0] ) ) in osl_getSystemPathFromFileURL()
907 …if( -1 != rtl_ustr_indexOfStr_WithLength( ustrFileURL->buffer, ustrFileURL->length, encodedSlash, … in osl_getSystemPathFromFileURL()
917 …nIndex = rtl_ustr_indexOfChar_WithLength( ustrFileURL->buffer + nOffset, ustrFileURL->length - nOf… in osl_getSystemPathFromFileURL()
920 rtl_uString_newFromStr_WithLength( &ustrPathToken, ustrFileURL->buffer + nOffset, in osl_getSystemPathFromFileURL()
921 -1 == nIndex ? ustrFileURL->length - nOffset : nIndex++ ); in osl_getSystemPathFromFileURL()
943 rtl_uriDecode( ustrFileURL, rtl_UriDecodeWithCharset, RTL_TEXTENCODING_UTF8, &pTmp ); in osl_getSystemPathFromFileURL()
1028 rtl_uString *ustrFileURL, rtl_uString **pustrSystemPath, sal_Bool bAllowRelative) in osl_getSystemPathFromFileURL_Ex() argument
1030 return _osl_getSystemPathFromFileURL( ustrFileURL, pustrSystemPath, bAllowRelative); in osl_getSystemPathFromFileURL_Ex()
1033 oslFileError osl_error = osl_getSystemPathFromFileURL(ustrFileURL, &temp); in osl_getSystemPathFromFileURL_Ex()
1607 oslFileError FileURLToPath(char * buffer, size_t bufLen, rtl_uString* ustrFileURL) in FileURLToPath() argument
1610 oslFileError osl_error = osl_getSystemPathFromFileURL(ustrFileURL, &ustrSystemPath); in FileURLToPath()