Lines Matching refs:m_pStorageFile

430     m_pStorageFile( NULL )  in PasswordContainer()
438m_pStorageFile = new StorageItem( this, ::rtl::OUString::createFromAscii( "Office.Common/Passwords… in PasswordContainer()
439 if( m_pStorageFile ) in PasswordContainer()
440 if( m_pStorageFile->useStorage() ) in PasswordContainer()
441 m_aContainer = m_pStorageFile->getInfo(); in PasswordContainer()
450 if( m_pStorageFile ) in ~PasswordContainer()
452 delete m_pStorageFile; in ~PasswordContainer()
453 m_pStorageFile = NULL; in ~PasswordContainer()
469 if( m_pStorageFile ) in disposing()
471 delete m_pStorageFile; in disposing()
472 m_pStorageFile = NULL; in disposing()
630m_pStorageFile->update( aURL, aRecord ); // change existing ( aURL, aName ) record in the configfi… in UpdateVector()
641 m_pStorageFile->update( aURL, aRecord ); // add new aName to the existing url in UpdateVector()
739 if( Mode == PERSISTENT_RECORD && m_pStorageFile && m_pStorageFile->useStorage() ) in PrivateAdd()
740 m_pStorageFile->update( Url, aRecord ); in PrivateAdd()
903 if( !m_pStorageFile || !m_pStorageFile->useStorage() ) in GetMasterPassword()
912 if( !m_pStorageFile->getEncodedMP( aEncodedMP ) ) in GetMasterPassword()
933 m_pStorageFile->setEncodedMP( EncodePasswords( aMaster, m_aMasterPasswd ) ); in GetMasterPassword()
985 if( aNPIter->HasPasswords( PERSISTENT_RECORD ) && m_pStorageFile ) in remove()
986 m_pStorageFile->remove( aURL, aName ); // remove record ( aURL, aName ) in remove()
1032 if ( m_pStorageFile ) in removePersistent()
1033 m_pStorageFile->remove( aURL, aName ); // remove record ( aURL, aName ) in removePersistent()
1053 if( m_pStorageFile ) in removeAllPersistent()
1054 m_pStorageFile->clear(); in removeAllPersistent()
1065 if ( m_pStorageFile ) in removeAllPersistent()
1066m_pStorageFile->remove( aIter->first, aNPIter->GetUserName() ); // remove record ( aURL, aName ) in removeAllPersistent()
1128 … if( m_pStorageFile && m_pStorageFile->useStorage() && m_pStorageFile->getEncodedMP( aEncodedMP ) ) in authorizateWithMasterPassword()
1180 if ( m_pStorageFile && m_pStorageFile->useStorage() ) in changeMasterPassword()
1191 if( m_aMasterPasswd.getLength() || m_pStorageFile->getEncodedMP( aEncodedMP ) ) in changeMasterPassword()
1211 m_pStorageFile->setEncodedMP( EncodePasswords( aMaster, m_aMasterPasswd ) ); in changeMasterPassword()
1237 if ( m_pStorageFile ) in removeMasterPassword()
1240m_pStorageFile->setEncodedMP( ::rtl::OUString() ); // let the master password be removed from conf… in removeMasterPassword()
1250 if ( !m_pStorageFile ) in hasMasterPassword()
1254 return ( m_pStorageFile->useStorage() && m_pStorageFile->getEncodedMP( aEncodedMP ) ); in hasMasterPassword()
1263 if ( !m_pStorageFile ) in allowPersistentStoring()
1269 if ( m_pStorageFile->useStorage() == bAllow ) in allowPersistentStoring()
1272 m_pStorageFile->setUseStorage( bAllow ); in allowPersistentStoring()
1282 if ( !m_pStorageFile ) in isPersistentStoringAllowed()
1285 return m_pStorageFile->useStorage(); in isPersistentStoringAllowed()
1296 if ( m_pStorageFile && m_pStorageFile->useStorage() ) in useDefaultMasterPassword()
1307 if( m_pStorageFile->getEncodedMP( aEncodedMP ) && aEncodedMP.getLength() ) in useDefaultMasterPassword()
1324 m_pStorageFile->setEncodedMP( ::rtl::OUString(), sal_True ); in useDefaultMasterPassword()
1349 if ( !m_pStorageFile ) in isDefaultMasterPasswordUsed()
1353 …return ( m_pStorageFile->useStorage() && m_pStorageFile->getEncodedMP( aEncodedMP ) && !aEncodedMP… in isDefaultMasterPasswordUsed()
1402 if ( m_pStorageFile ) in Notify()
1403m_pStorageFile->remove( aIter->first, aNPIter->GetUserName() ); // remove record ( aURL, aName ) in Notify()
1418 if( m_pStorageFile ) in Notify()
1419 addon = m_pStorageFile->getInfo(); in Notify()