Lines Matching refs:msg_map
63 MsgBufMap* msg_map = NULL; in ~MsgBuffPool() local
68 msg_map = dynamic_cast<MsgBufMap*>(hash_item); in ~MsgBuffPool()
69 delete msg_map; in ~MsgBuffPool()
85 MsgBufMap* msg_map = NULL; in GetMsgBuf() local
89 msg_map = (MsgBufMap*)hash_item->GetDataPtr(); in GetMsgBuf()
90 if (msg_map) { in GetMsgBuf()
91 return msg_map->GetMsgBuf(); in GetMsgBuf()
93 MTLOG_ERROR("Hash item: %p, msg_map: %p impossible, clean it", hash_item, msg_map); in GetMsgBuf()
99 msg_map = new MsgBufMap(max_size, _max_free); in GetMsgBuf()
100 if (!msg_map) { in GetMsgBuf()
104 _hash_map->HashInsert(msg_map); in GetMsgBuf()
106 return msg_map->GetMsgBuf(); in GetMsgBuf()
119 MsgBufMap* msg_map = NULL; in FreeMsgBuf() local
123 msg_map = (MsgBufMap*)hash_item->GetDataPtr(); in FreeMsgBuf()
125 if (!hash_item || !msg_map) { in FreeMsgBuf()
130 msg_map->FreeMsgBuf(msg_buf); in FreeMsgBuf()