Home
last modified time | relevance | path

Searched refs:MsgBufMap (Results 1 – 2 of 2) sorted by relevance

/f-stack/app/micro_thread/
H A Dmt_mbuf_pool.cpp63 MsgBufMap* msg_map = NULL; in ~MsgBuffPool()
68 msg_map = dynamic_cast<MsgBufMap*>(hash_item); in ~MsgBuffPool()
85 MsgBufMap* msg_map = NULL; in GetMsgBuf()
86 MsgBufMap msg_key(max_size); in GetMsgBuf()
89 msg_map = (MsgBufMap*)hash_item->GetDataPtr(); in GetMsgBuf()
99 msg_map = new MsgBufMap(max_size, _max_free); in GetMsgBuf()
119 MsgBufMap* msg_map = NULL; in FreeMsgBuf()
120 MsgBufMap msg_key(msg_buf->GetMaxLen()); in FreeMsgBuf()
123 msg_map = (MsgBufMap*)hash_item->GetDataPtr(); in FreeMsgBuf()
H A Dmt_mbuf_pool.h118 class MsgBufMap : public HashKey
122 MsgBufMap(int buff_size, int max_free) { in MsgBufMap() function
130 explicit MsgBufMap(int buff_size) { in MsgBufMap() function
135 ~MsgBufMap() { in ~MsgBufMap()