Lines Matching full:results
19 ## results from child processes
20 my $results = {}; # object index -> [ { level, secname }, ... ]
37 ## writes results to the parent process
57 ## reads a result line from a child process and adds it to the $results array
83 if (!exists($results->{$index})) {
84 $results->{$index} = [];
87 push (@{$results->{$index}}, {
96 ## writes results back to the parent process
153 ## waits for any child process to complete, reads the results, and adds them to
154 ## the $results array for later processing
187 ## the results
229 # sort results to retain link order and split to sections per
231 foreach my $index (sort { $a <=> $b } keys(%{$results})) {
232 foreach my $result (@{$results->{$index}}) {