| 674 | */ |
| 675 | |
| 676 | bool syncProcessor::addToMatch(esstvMode mode) |
| 677 | { |
| 678 | int i; |
| 679 | |
| 680 | if(syncArrayIndex<1) return false; |
| 681 | for(i=syncArrayIndex-1;i>=0;i--) |
| 682 | { |
| 683 | |
| 684 | if(addToChain(mode,i)) |
| 685 | { |
| 686 | return true; |
| 687 | } |
| 688 | } |
| 689 | return false; |
| 690 | } |
| 691 | |
| 692 | |
| 693 |
nothing calls this directly
no outgoing calls
no test coverage detected