// Destructor UtlHashBag::~UtlHashBag() { UtlContainer::acquireIteratorConnectionLock(); OsLock take(mContainerLock); invalidateIterators(); UtlContainer::releaseIteratorConnectionLock(); // still holding the mContainerLock // walk the buckets for (size_t i = 0; i < numberOfBuckets(); i++) { // empty each bucket and release each UtlPair back to the pool while (!mpBucket[i].isUnLinked()) { UtlLink* link = static_cast<UtlLink*>(mpBucket[i].listHead()); link->detachFromList(&mpBucket[i]); link->release(); } } delete [] mpBucket; // free the bucket headers }
void ArrayList<T>::append(const T &elt) { while(numElts >= maxElts) extend(); data[numElts++] = elt; invalidateIterators(); }