MCPcopy Create free account
hub / github.com/TASEmulators/fceux / findNode

Function findNode

src/drivers/win/debuggersp.cpp:633–643  ·  view source on GitHub ↗

* Searches an address node in a list of address nodes. The found node * has the same offset as the passed parameter offs. * * @param node The address node list * @offs The offset to search * @return The node that has the given offset or 0. **/

Source from the content-addressed store, hash-verified

631* @return The node that has the given offset or 0.
632**/
633Name* findNode(Name* node, const char* offset)
634{
635 while (node)
636 {
637 if (!strcmp(node->offset, offset))
638 return node;
639
640 node = node->next;
641 }
642 return 0;
643}
644// same, but with offsetNumeric
645Name* findNode(Name* node, uint16 offsetNumeric)
646{

Callers 7

FCEUD_TraceInstructionFunction · 0.85
UpdateCaptionFunction · 0.85
DisassembleFunction · 0.85
AddDebuggerBookmarkFunction · 0.85
SymbolicNamingCallBFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected