Lines Matching refs:bDirect
144 && ( !bWrite || !pEntry->bDirect || ( nStreamMode & STREAM_WRITE ) ) ) in Validate_Impl()
202 if( pEntry && pEntry->nRefCnt && pEntry->bDirect && (m_nMode & STREAM_WRITE) ) in ~StorageStream()
381 Storage::Storage( const String& rFile, StreamMode m, sal_Bool bDirect ) in Storage() argument
398 pEntry->bDirect = bDirect; in Storage()
412 Storage::Storage( SvStream& r, sal_Bool bDirect ) in Storage() argument
427 pEntry->bDirect = bDirect; in Storage()
440 Storage::Storage( UCBStorageStream& rStrm, sal_Bool bDirect ) in Storage() argument
472 pEntry->bDirect = bDirect; in Storage()
539 if( pEntry->nRefCnt && pEntry->bDirect && (m_nMode & STREAM_WRITE) ) in ~Storage()
583 BaseStorage* Storage::OpenUCBStorage( const String& rName, StreamMode m, sal_Bool bDirect ) in OpenUCBStorage() argument
591 return OpenStorage( rName, m, bDirect ); in OpenUCBStorage()
594 BaseStorage* Storage::OpenOLEStorage( const String& rName, StreamMode m, sal_Bool bDirect ) in OpenOLEStorage() argument
596 return OpenStorage( rName, m, bDirect ); in OpenOLEStorage()
599 BaseStorage* Storage::OpenStorage( const String& rName, StreamMode m, sal_Bool bDirect ) in OpenStorage() argument
604 if( bDirect && !pEntry->bDirect ) in OpenStorage()
607 bDirect = sal_False; in OpenStorage()
642 p->bDirect = bDirect; in OpenStorage()
647 if( p->bDirect != bDirect ) in OpenStorage()
700 p->bDirect = pEntry->bDirect; in OpenStream()
703 if( p && !p->bDirect ) in OpenStream()
763 …eStorage* p2 = pDest->OpenOLEStorage( rNew, STREAM_WRITE | STREAM_SHARE_DENYALL, pEntry->bDirect ); in CopyTo()
792 …torageStream* p2 = pDest->OpenStream( rNew, STREAM_WRITE | STREAM_SHARE_DENYALL, pEntry->bDirect ); in CopyTo()