MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / find

Method find

Engine/source/app/net/tcpObject.cpp:171–177  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169 );
170
171TCPObject *TCPObject::find(NetSocket tag)
172{
173 for(TCPObject *walk = table[tag.getHash() & TableMask]; walk; walk = walk->mNext)
174 if(walk->mTag.getHash() == tag.getHash())
175 return walk;
176 return NULL;
177}
178
179void TCPObject::addToTable(NetSocket newTag)
180{

Callers 15

findAssetTagMethod · 0.45
renameAssetIdMethod · 0.45
deleteTagMethod · 0.45
getAssetTagMethod · 0.45
tagMethod · 0.45
untagMethod · 0.45
removeDeclaredAssetMethod · 0.45
doesAssetDependOnMethod · 0.45
isAssetDependedOnMethod · 0.45
renameDeclaredAssetMethod · 0.45
deleteAssetMethod · 0.45
refreshAssetMethod · 0.45

Calls 1

getHashMethod · 0.45

Tested by

no test coverage detected