Lines Matching refs:pPersistStorage
1299 ComSmart< IPersistStorage > pPersistStorage; in IsDirty() local
1300 …HRESULT hr = m_pNativeImpl->m_pObj->QueryInterface( IID_IPersistStorage, (void**)&pPersistStorage … in IsDirty()
1301 if ( FAILED( hr ) || !pPersistStorage ) in IsDirty()
1304 hr = pPersistStorage->IsDirty(); in IsDirty()
1314 ComSmart< IPersistStorage > pPersistStorage; in StoreOwnTmpIfNecessary() local
1315 …HRESULT hr = m_pNativeImpl->m_pObj->QueryInterface( IID_IPersistStorage, (void**)&pPersistStorage … in StoreOwnTmpIfNecessary()
1316 if ( FAILED( hr ) || !pPersistStorage ) in StoreOwnTmpIfNecessary()
1319 if ( m_bWorkaroundActive || pPersistStorage->IsDirty() != S_FALSE ) in StoreOwnTmpIfNecessary()
1321 hr = OleSave( pPersistStorage, m_pNativeImpl->m_pIStorage, TRUE ); in StoreOwnTmpIfNecessary()
1336 hr = pPersistStorage->Save( m_pNativeImpl->m_pIStorage, TRUE ); in StoreOwnTmpIfNecessary()
1347 hr = pPersistStorage->SaveCompleted( NULL ); in StoreOwnTmpIfNecessary()