Lines Matching refs:_hash_map
63 _hash_map = new HashList(100000); in SessionMgr()
68 if (_hash_map) { in ~SessionMgr()
69 delete _hash_map; in ~SessionMgr()
70 _hash_map = NULL; in ~SessionMgr()
76 if (!_hash_map || !session) { in InsertSession()
77 MTLOG_ERROR("Mngr not init(%p), or session null(%p)", _hash_map, session); in InsertSession()
88 return _hash_map->HashInsert(session); in InsertSession()
93 if (!_hash_map) { in FindSession()
94 MTLOG_ERROR("Mngr not init(%p)", _hash_map); in FindSession()
100 return dynamic_cast<ISession*>(_hash_map->HashFind(&key)); in FindSession()
105 if (!_hash_map) { in RemoveSession()
106 MTLOG_ERROR("Mngr not init(%p)", _hash_map); in RemoveSession()
112 return _hash_map->HashRemove(&key); in RemoveSession()