Lines Matching refs:node
494 listNode *node, *nextnode; in scanGenericCommand() local
606 node = listFirst(keys); in scanGenericCommand()
607 while (node) { in scanGenericCommand()
608 robj *kobj = listNodeValue(node); in scanGenericCommand()
609 nextnode = listNextNode(node); in scanGenericCommand()
633 listDelNode(keys, node); in scanGenericCommand()
640 node = nextnode; in scanGenericCommand()
641 nextnode = listNextNode(node); in scanGenericCommand()
643 kobj = listNodeValue(node); in scanGenericCommand()
645 listDelNode(keys, node); in scanGenericCommand()
648 node = nextnode; in scanGenericCommand()
656 while ((node = listFirst(keys)) != NULL) { in scanGenericCommand()
657 robj *kobj = listNodeValue(node); in scanGenericCommand()
660 listDelNode(keys, node); in scanGenericCommand()