Lines Matching refs:ustrPath
36 rtl_uString *ustrPath = NULL; in osl_abbreviateSystemPath() local
48 rtl_uString_newFromStr_WithLength( &ustrPath, ustrSystemPath->buffer, iLastSlash ); in osl_abbreviateSystemPath()
53 rtl_uString_new( &ustrPath ); in osl_abbreviateSystemPath()
58 uPathWidth = pfnCalcWidth( ustrPath ); in osl_abbreviateSystemPath()
65 if ( ustrPath->length > 3 ) in osl_abbreviateSystemPath()
67 ustrPath->length--; in osl_abbreviateSystemPath()
68 ustrPath->buffer[ustrPath->length-3] = '.'; in osl_abbreviateSystemPath()
69 ustrPath->buffer[ustrPath->length-2] = '.'; in osl_abbreviateSystemPath()
70 ustrPath->buffer[ustrPath->length-1] = '.'; in osl_abbreviateSystemPath()
71 ustrPath->buffer[ustrPath->length] = 0; in osl_abbreviateSystemPath()
73 uPathWidth = pfnCalcWidth( ustrPath ); in osl_abbreviateSystemPath()
97 rtl_uString_newConcat( pustrCompacted, ustrPath, ustrFile ); in osl_abbreviateSystemPath()
110 if ( ustrPath ) in osl_abbreviateSystemPath()
111 rtl_uString_release( ustrPath ); in osl_abbreviateSystemPath()