Lines Matching refs:_hash_map
54 _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()
81 MTLOG_ERROR("MsgBuffPoll not init! hash %p,", _hash_map); in GetMsgBuf()
87 HashKey* hash_item = _hash_map->HashFind(&msg_key); in GetMsgBuf()
94 _hash_map->HashRemove(hash_item); in GetMsgBuf()
104 _hash_map->HashInsert(msg_map); in GetMsgBuf()
112 if (!_hash_map || !msg_buf) { in FreeMsgBuf()
113 MTLOG_ERROR("MsgBuffPoll not init or input error! hash %p, msg_buf %p", _hash_map, msg_buf); in FreeMsgBuf()
121 HashKey* hash_item = _hash_map->HashFind(&msg_key); in FreeMsgBuf()