Lines Matching refs:nRC

124 		osl::File::RC nRC = rSourceFile.setPos( osl_Pos_End, 0  );  in encodeFile()  local
125 if( osl::File::E_None == nRC ) in encodeFile()
127 nRC = rSourceFile.getPos( nTemp ); in encodeFile()
128 if( osl::File::E_None == nRC ) in encodeFile()
130 nRC = rSourceFile.setPos( osl_Pos_Absolut, 0 ); in encodeFile()
136 if( osl::File::E_None != nRC ) in encodeFile()
147 nRC = rSourceFile.read( pInBuffer, aInBuffer.getLength(), nTemp ); in encodeFile()
149 if( (nRC != osl::File::E_None) || (0 == nTemp) ) in encodeFile()
273 osl::File::RC nRC; in createSlideFile() local
276 nRC = aInfoFile.open( OpenFlag_Write ); in createSlideFile()
277 if( osl::File::E_None == nRC ) in createSlideFile()
279 nRC = aInfoFile.write( aInfo.getStr(), aInfo.getLength(), nTemp ); in createSlideFile()
280 if( osl::File::E_None == nRC ) in createSlideFile()
282 nRC = aInfoFile.setPos( osl_Pos_Absolut, 0 ); in createSlideFile()
283 if( osl::File::E_None == nRC ) in createSlideFile()
285 nRC = aInfoFile.close(); in createSlideFile()
290 …if( (osl::File::E_None != nRC) || !rZipFile.addFile( aInfoFile, OString( RTL_CONSTASCII_STRINGPARA… in createSlideFile()
317 osl::File::RC nRC; in doExport() local
321 nRC = aTempFile.open( osl_File_OpenFlag_Write|osl_File_OpenFlag_Read ); in doExport()
327 nRC = aTempFile.open( osl_File_OpenFlag_Create|osl_File_OpenFlag_Write|osl_File_OpenFlag_Read ); in doExport()
330 if( osl::File::E_None != nRC ) in doExport()
380 …if( (osl::File::E_None != nRC) || !aZipFile.addFile( aFile, OString( aTemp.getStr(), aTemp.getLeng… in doExport()