| 45 | // The caller is supposed to lock the mutex via getLock before the start of any use of begin or end. |
| 46 | typename BaseType::iterator begin() { devassert(mMapLock.lockcnt()); return mList.begin(); } |
| 47 | typename BaseType::iterator end() { devassert(mMapLock.lockcnt()); return mList.end(); } |
| 48 | typedef typename BaseType::iterator iterator; |
| 49 | |
| 50 | int size() { |
no outgoing calls
no test coverage detected