Home
last modified time | relevance | path

Searched refs:HashKey (Results 1 – 8 of 8) sorted by relevance

/f-stack/app/micro_thread/
H A Dhash_list.h36 class HashKey
39 HashKey* _next_entry;
48 virtual ~HashKey(){}; in ~HashKey()
72 _buckets = (HashKey**)calloc(_max, sizeof(HashKey*));
90 int HashInsert(HashKey* key) { in HashInsert()
112 HashKey* HashFind(HashKey* key) { in HashFind()
119 HashKey* item = _buckets[idx]; in HashFind()
150 void HashRemove(HashKey* key) { in HashRemove()
158 HashKey* prev = NULL; in HashRemove()
194 HashKey* HashGetFirst() { in HashGetFirst()
[all …]
H A Dmt_mbuf_pool.cpp64 HashKey* hash_item = _hash_map->HashGetFirst(); in ~MsgBuffPool()
87 HashKey* hash_item = _hash_map->HashFind(&msg_key); in GetMsgBuf()
121 HashKey* hash_item = _hash_map->HashFind(&msg_key); in FreeMsgBuf()
H A Dmt_session.h41 class ISession : public HashKey
82 virtual int HashCmp(HashKey* rhs){ in HashCmp()
H A Dmt_mbuf_pool.h118 class MsgBufMap : public HashKey
175 virtual int HashCmp(HashKey* rhs){ in HashCmp()
H A Dmt_net.h119 class CNetHandler : public HashKey
133 virtual int HashCmp(HashKey* rhs);
366 class CDestLinks : public CTimerNotify, public HashKey
414 virtual int HashCmp(HashKey* rhs) { in HashCmp()
H A Dmt_connection.h215 class TcpKeepKey : public HashKey
241 virtual int HashCmp(HashKey* rhs){ in HashCmp()
H A Dmt_net.cpp598 int32_t CNetHandler::HashCmp(HashKey* rhs) in HashCmp()
1716 HashKey* hash_item = _ip_hash->HashGetFirst(); in ~CNetMgr()
1729 HashKey* hash_item = _session_hash->HashGetFirst(); in ~CNetMgr()
H A Dmt_connection.cpp483 HashKey* hash_item = _keep_hash->HashGetFirst(); in ~TcpKeepMgr()