Home
last modified time | relevance | path

Searched refs:_hash_map (Results 1 – 4 of 4) sorted by relevance

/f-stack/app/micro_thread/
H A Dmt_mbuf_pool.cpp54 _hash_map = new HashList(10000); in MsgBuffPool()
59 if (!_hash_map) { in ~MsgBuffPool()
64 HashKey* hash_item = _hash_map->HashGetFirst(); in ~MsgBuffPool()
67 _hash_map->HashRemove(hash_item); in ~MsgBuffPool()
71 hash_item = _hash_map->HashGetFirst(); in ~MsgBuffPool()
74 delete _hash_map; in ~MsgBuffPool()
75 _hash_map = NULL; in ~MsgBuffPool()
80 if (!_hash_map) { in GetMsgBuf()
94 _hash_map->HashRemove(hash_item); in GetMsgBuf()
104 _hash_map->HashInsert(msg_map); in GetMsgBuf()
[all …]
H A Dmt_session.cpp63 _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()
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()
105 if (!_hash_map) { in RemoveSession()
106 MTLOG_ERROR("Mngr not init(%p)", _hash_map); in RemoveSession()
[all …]
H A Dmt_session.h124 HashList* _hash_map; variable
H A Dmt_mbuf_pool.h210 HashList* _hash_map; variable