Home
last modified time | relevance | path

Searched refs:_bTree (Results 1 – 3 of 3) sorted by relevance

/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Internal/Ids/
H A DBTreeIdSystem.cs32 private BTree _bTree; field in Db4objects.Db4o.Internal.Ids.BTreeIdSystem
96_bTree = new BTree(Transaction(), BTreeConfiguration(), BTreeId(), new BTreeIdSystem.IdSlotMapping… in InitializeExisting()
123 _bTree = new BTree(Transaction(), BTreeConfiguration(), new BTreeIdSystem.IdSlotMappingHandler in InitializeNew()
127 , new int[] { _bTree.GetID(), idGeneratorValue, 0 }); in InitializeNew()
143 IdSlotMapping mapping = (IdSlotMapping)_bTree.Search(Transaction(), new IdSlotMapping in CommittedSlot()
161 _bTree.Add(Transaction(), new IdSlotMapping(id, 0, 0)); in NewId()
177 _bTree.Commit(Transaction()); in Commit()
206 this._enclosing._bTree.Remove(this._enclosing.Transaction(), new IdSlotMapping((( in Visit()
212 this._enclosing._bTree.Add(this._enclosing.Transaction(), new IdSlotMapping(((TreeInt in Visit()
238 this._enclosing._bTree.Remove(this._enclosing.Transaction(), new IdSlotMapping((( in Visit()
[all …]
/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Internal/Collections/
H A DBigSet.cs18 private Db4objects.Db4o.Internal.Btree.BTree _bTree; field in Db4objects.Db4o.Internal.Collections.BigSet
29 _bTree = BTreeManager().NewBTree(); in BigSet()
173 if (_bTree != null) in Read()
179 _bTree = BTreeManager().ProduceBTree(id); in Read()
189 if (id != _bTree.GetID()) in AssertCurrentBTreeId()
207 _bTree = null; in Invalidate()
212 if (_bTree == null) in BTree()
216 return _bTree; in BTree()
/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Internal/Btree/
H A DBTreeIterator.cs15 private readonly BTree _bTree; field in Db4objects.Db4o.Internal.Btree.BTreeIterator
24 _bTree = bTree; in BTreeIterator()
47 _currentPointer = _bTree.FirstPointer(_transaction); in MoveNext()