Lines Matching refs:aPathBuffer
121 OUStringBuffer aPathBuffer( 256 ); in getPrinterPathList() local
124 aPathBuffer.append( getOfficePath( psp::NetPath ) ); in getPrinterPathList()
125 if( aPathBuffer.getLength() ) in getPrinterPathList()
127 aPathBuffer.appendAscii( "/share/psprint" ); in getPrinterPathList()
130 aPathBuffer.append( sal_Unicode('/') ); in getPrinterPathList()
131 aPathBuffer.appendAscii( pSubDir ); in getPrinterPathList()
133 rPathList.push_back( aPathBuffer.makeStringAndClear() ); in getPrinterPathList()
136 aPathBuffer.append( getOfficePath( psp::UserPath ) ); in getPrinterPathList()
137 if( aPathBuffer.getLength() ) in getPrinterPathList()
139 aPathBuffer.appendAscii( "/user/psprint" ); in getPrinterPathList()
142 aPathBuffer.append( sal_Unicode('/') ); in getPrinterPathList()
143 aPathBuffer.appendAscii( pSubDir ); in getPrinterPathList()
145 rPathList.push_back( aPathBuffer.makeStringAndClear() ); in getPrinterPathList()
199 OUStringBuffer aPathBuffer( 512 ); in getFontPath() local
208 aPathBuffer.append(aConfigPath); in getFontPath()
209 aPathBuffer.appendAscii("/share/fonts"); in getFontPath()
212 …if( 0 != stat( OUStringToOString( aPathBuffer.makeStringAndClear(), osl_getThreadTextEncoding() ).… in getFontPath()
217 aPathBuffer.append(aConfigPath); in getFontPath()
218 aPathBuffer.appendAscii("/share/fonts"); in getFontPath()
225 aPathBuffer.append( aNetPath ); in getFontPath()
226 aPathBuffer.appendAscii( "/share/fonts/truetype;"); in getFontPath()
227 aPathBuffer.append( aNetPath ); in getFontPath()
228 aPathBuffer.appendAscii( "/share/fonts/type1;" ); in getFontPath()
232 aPathBuffer.append( aUserPath ); in getFontPath()
233 aPathBuffer.appendAscii( "/user/fonts" ); in getFontPath()
239 aPathBuffer.append( sal_Unicode(';') ); in getFontPath()
240 aPathBuffer.append( OStringToOUString( aEnvPath, osl_getThreadTextEncoding() ) ); in getFontPath()
243 aPath = aPathBuffer.makeStringAndClear(); in getFontPath()