Lines Matching refs:ustrSystemPath

665 oslFileError SAL_CALL osl_getFileURLFromSystemPath( rtl_uString *ustrSystemPath, rtl_uString **pust…  in osl_getFileURLFromSystemPath()  argument
667 return _osl_getFileURLFromSystemPath( ustrSystemPath, pustrFileURL ); in osl_getFileURLFromSystemPath()
674 if( 0 == ustrSystemPath->length ) in osl_getFileURLFromSystemPath()
678 rtl_ustr_replaceChar( ustrSystemPath->buffer, '\\', '/' ); in osl_getFileURLFromSystemPath()
681 …if( 0 == rtl_ustr_ascii_shortenedCompare_WithLength( ustrSystemPath->buffer, ustrSystemPath->lengt… in osl_getFileURLFromSystemPath()
706 if( (sal_Unicode) '~' == ustrSystemPath->buffer[0] ) in osl_getFileURLFromSystemPath()
709 if( ( 1 == ustrSystemPath->length ) || ( (sal_Unicode)'/' == ustrSystemPath->buffer[1] ) ) in osl_getFileURLFromSystemPath()
718 rtl_uString_newReplaceStrAt( &pTmp, ustrSystemPath, 0, 1, pTmp ); in osl_getFileURLFromSystemPath()
729 …nIndex = rtl_ustr_indexOfStr_WithLength( ustrSystemPath->buffer, ustrSystemPath->length, pDoubleSl… in osl_getFileURLFromSystemPath()
737 rtl_uString_newFromString( &pTmp, ustrSystemPath ); in osl_getFileURLFromSystemPath()
740 nIndex += pTmp->length - ustrSystemPath->length; in osl_getFileURLFromSystemPath()
756 rtl_uString_assign( &pTmp, ustrSystemPath ); in osl_getFileURLFromSystemPath()
1609 rtl_uString* ustrSystemPath = NULL; in FileURLToPath() local
1610 oslFileError osl_error = osl_getSystemPathFromFileURL(ustrFileURL, &ustrSystemPath); in FileURLToPath()
1615 osl_systemPathRemoveSeparator(ustrSystemPath); in FileURLToPath()
1618 if(!UnicodeToText( buffer, bufLen, ustrSystemPath->buffer, ustrSystemPath->length)) in FileURLToPath()
1621 rtl_uString_release(ustrSystemPath); in FileURLToPath()