Lines Matching refs:m_pStorageFile

430     m_pStorageFile( NULL ), mOldPasswordEncoding(false)  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()
680m_pStorageFile->setEncodedMP( EncodePasswords( getMasterPasswordName(), aMaster, m_aMasterPasswd )… in doChangeMasterPassword()
708m_pStorageFile->update( aURL, aRecord ); // change existing ( aURL, aName ) record in the configfi… in UpdateVector()
719 m_pStorageFile->update( aURL, aRecord ); // add new aName to the existing url in UpdateVector()
817 if( Mode == PERSISTENT_RECORD && m_pStorageFile && m_pStorageFile->useStorage() ) in PrivateAdd()
818 m_pStorageFile->update( Url, aRecord ); in PrivateAdd()
986 if( !m_pStorageFile || !m_pStorageFile->useStorage() ) in GetMasterPassword()
995 if( !m_pStorageFile->getEncodedMP( aEncodedMP ) ) in GetMasterPassword()
1016m_pStorageFile->setEncodedMP( EncodePasswords( getMasterPasswordName(), aMaster, m_aMasterPasswd )… in GetMasterPassword()
1085 if( aNPIter->HasPasswords( PERSISTENT_RECORD ) && m_pStorageFile ) in remove()
1086 m_pStorageFile->remove( aURL, aName ); // remove record ( aURL, aName ) in remove()
1132 if ( m_pStorageFile ) in removePersistent()
1133 m_pStorageFile->remove( aURL, aName ); // remove record ( aURL, aName ) in removePersistent()
1153 if( m_pStorageFile ) in removeAllPersistent()
1154 m_pStorageFile->clear(); in removeAllPersistent()
1225 … if( m_pStorageFile && m_pStorageFile->useStorage() && m_pStorageFile->getEncodedMP( aEncodedMP ) ) in authorizateWithMasterPassword()
1277 if ( m_pStorageFile && m_pStorageFile->useStorage() ) in changeMasterPassword()
1288 if( m_aMasterPasswd.getLength() || m_pStorageFile->getEncodedMP( aEncodedMP ) ) in changeMasterPassword()
1319 if ( m_pStorageFile ) in removeMasterPassword()
1322m_pStorageFile->setEncodedMP( ::rtl::OUString() ); // let the master password be removed from conf… in removeMasterPassword()
1332 if ( !m_pStorageFile ) in hasMasterPassword()
1336 return ( m_pStorageFile->useStorage() && m_pStorageFile->getEncodedMP( aEncodedMP ) ); in hasMasterPassword()
1345 if ( !m_pStorageFile ) in allowPersistentStoring()
1351 if ( m_pStorageFile->useStorage() == bAllow ) in allowPersistentStoring()
1354 m_pStorageFile->setUseStorage( bAllow ); in allowPersistentStoring()
1364 if ( !m_pStorageFile ) in isPersistentStoringAllowed()
1367 return m_pStorageFile->useStorage(); in isPersistentStoringAllowed()
1378 if ( m_pStorageFile && m_pStorageFile->useStorage() ) in useDefaultMasterPassword()
1389 if( m_pStorageFile->getEncodedMP( aEncodedMP ) && aEncodedMP.getLength() ) in useDefaultMasterPassword()
1406 m_pStorageFile->setEncodedMP( ::rtl::OUString(), sal_True ); in useDefaultMasterPassword()
1431 if ( !m_pStorageFile ) in isDefaultMasterPasswordUsed()
1435 …return ( m_pStorageFile->useStorage() && m_pStorageFile->getEncodedMP( aEncodedMP ) && !aEncodedMP… in isDefaultMasterPasswordUsed()
1484 if ( m_pStorageFile ) in Notify()
1485m_pStorageFile->remove( aIter->first, aNPIter->GetUserName() ); // remove record ( aURL, aName ) in Notify()
1500 if( m_pStorageFile ) in Notify()
1501 addon = m_pStorageFile->getInfo(); in Notify()