| /trunk/main/basic/source/runtime/ |
| H A D | methods.cxx | 205 static com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI; in getFileAccess() local 206 if( !xSFI.is() ) in getFileAccess() 211 xSFI = com::sun::star::uno::Reference< XSimpleFileAccess3 >( xSMgr->createInstance in getFileAccess() 215 return xSFI; in getFileAccess() 578 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in implStepRenameUCB() local 579 if( xSFI.is() ) in implStepRenameUCB() 584 if( !xSFI->exists( aSourceFullPath ) ) in implStepRenameUCB() 591 if( xSFI->exists( aDestFullPath ) ) in implStepRenameUCB() 594 xSFI->move( aSourceFullPath, aDestFullPath ); in implStepRenameUCB() 626 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in RTLFUNC() local [all …]
|
| H A D | iosys.cxx | 662 …xSFI( xSMgr->createInstance( ::rtl::OUString::createFromAscii( "com.sun.star.ucb.SimpleFileAccess"… in Open() local 663 if( xSFI.is() ) in Open() 670 xSFI->exists( aNameStr ) && !xSFI->isFolder( aNameStr ) ) in Open() 672 xSFI->kill( aNameStr ); in Open() 677 Reference< XStream > xIS = xSFI->openFileReadWrite( aNameStr ); in Open() 682 Reference< XStream > xIS = xSFI->openFileReadWrite( aNameStr ); in Open() 690 Reference< XInputStream > xIS = xSFI->openFileRead( aNameStr ); in Open()
|
| /trunk/main/basctl/source/basicide/ |
| H A D | baside3.cxx | 747 Reference< XSimpleFileAccess > xSFI( xMSF->createInstance in SaveDialog() local 753 if( xSFI->exists( aCurPath ) ) in SaveDialog() 754 xSFI->kill( aCurPath ); in SaveDialog() 755 xOutput = xSFI->openFileWrite( aCurPath ); in SaveDialog() 812 if( xSFI->isFolder( aURL ) ) in SaveDialog() 814 … Sequence< ::rtl::OUString > aContentSeq = xSFI->getFolderContents( aURL, false ); in SaveDialog() 841 xSFI->kill( aCompleteName ); in SaveDialog() 1015 Reference< XSimpleFileAccess > xSFI( xMSF->createInstance in implImportDialog() local 1019 if( xSFI->exists( aCurPath ) ) in implImportDialog() 1020 xInput = xSFI->openFileRead( aCurPath ); in implImportDialog()
|
| /trunk/main/basic/source/uno/ |
| H A D | namecont.cxx | 550 Reference< XSimpleFileAccess > xSFI ) in checkAndCopyFileImpl() 557 if( !xSFI->exists( aTargetFile ) ) in checkAndCopyFileImpl() 564 xSFI->copy( aSourceFile, aTargetFile ); in checkAndCopyFileImpl() 1466 Reference< XSimpleFileAccess > xSFI = mxSFI; in implStoreLibrary() local 1468 xSFI = xToUseSFI; in implStoreLibrary() 1477 if( !xSFI->isFolder( aLibDirPath ) ) in implStoreLibrary() 1478 xSFI->createFolder( aLibDirPath ); in implStoreLibrary() 1514 if( xSFI->exists( aElementPath ) ) in implStoreLibrary() 1515 xSFI->kill( aElementPath ); in implStoreLibrary() 1516 Reference< XOutputStream > xOutput = xSFI->openFileWrite( aElementPath ); in implStoreLibrary() [all …]
|
| H A D | scriptcont.cxx | 731 Reference< XSimpleFileAccess > xSFI = mxSFI; in implStorePasswordLibrary() local 733 xSFI = xToUseSFI; in implStorePasswordLibrary() 742 if( !xSFI->isFolder( aLibDirPath ) ) in implStorePasswordLibrary() 743 xSFI->createFolder( aLibDirPath ); in implStorePasswordLibrary() 1211 const Reference< XSimpleFileAccess >& xSFI ) in SfxScriptLibrary() 1212 : SfxLibrary( _rModifiable, getCppuType( (const OUString *)0 ), xMSF, xSFI ) in SfxScriptLibrary() 1220 const Reference< XSimpleFileAccess >& xSFI, in SfxScriptLibrary() 1224 : SfxLibrary( _rModifiable, getCppuType( (const OUString *)0 ), xMSF, xSFI, in SfxScriptLibrary()
|
| H A D | dlgcont.cxx | 540 const Reference< XSimpleFileAccess >& xSFI, in SfxDialogLibrary() 542 …SfxLibrary( _rModifiable, getCppuType( (const Reference< XInputStreamProvider > *)0 ), xMSF, xSFI ) in SfxDialogLibrary() 551 const Reference< XSimpleFileAccess >& xSFI, in SfxDialogLibrary() 557 xMSF, xSFI, aLibInfoFileURL, aStorageURL, ReadOnly) in SfxDialogLibrary()
|
| /trunk/main/basic/source/comp/ |
| H A D | sbcomp.cxx | 934 Reference< XSimpleFileAccess3 > xSFI; in dbg_SaveDisassembly() local 940 … Reference< XSimpleFileAccess3 > xSFI = Reference< XSimpleFileAccess3 >( xSMgr->createInstance in dbg_SaveDisassembly() local 942 if( xSFI.is() ) in dbg_SaveDisassembly() 955 if( xSFI->exists( aFile ) ) in dbg_SaveDisassembly() 956 xSFI->kill( aFile ); in dbg_SaveDisassembly() 957 xOut = xSFI->openFileWrite( aFile ); in dbg_SaveDisassembly()
|
| /trunk/main/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/ |
| H A D | filterdetect.cxx | 86 Reference< XSimpleFileAccess > xSFI(mxMSF->createInstance( in detect() local 88 if (sURL.getLength() > 0 && xSFI.is()) in detect() 92 xInStream = xSFI->openFileRead( sURL); in detect()
|
| /trunk/main/scripting/source/dlgprov/ |
| H A D | DialogModelProvider.cxx | 79 Reference< ucb::XSimpleFileAccess > xSFI = in initialize() local 85 Reference< io::XInputStream > xInput = xSFI->openFileRead( sURL ); in initialize()
|
| H A D | dlgprov.cxx | 347 Reference< ucb::XSimpleFileAccess > xSFI = in createDialogModel() local 353 xInput = xSFI->openFileRead( aURL ); in createDialogModel()
|
| /trunk/main/basic/source/inc/ |
| H A D | dlgcont.hxx | 132 const ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XSimpleFileAccess >& xSFI, 141 const ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XSimpleFileAccess >& xSFI,
|
| H A D | scriptcont.hxx | 166 const ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XSimpleFileAccess >& xSFI 173 const ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XSimpleFileAccess >& xSFI,
|
| H A D | namecont.hxx | 627 const ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XSimpleFileAccess >& xSFI 633 const ::com::sun::star::uno::Reference< ::com::sun::star::ucb::XSimpleFileAccess >& xSFI,
|