| 193 | } |
| 194 | |
| 195 | static bool decreffed(int *indexes, void **objects, int step, void *object) { |
| 196 | for (int i = 0; i <= step; i++) { |
| 197 | if (object == objects[indexes[i]]) { |
| 198 | return true; |
| 199 | } |
| 200 | } |
| 201 | return false; |
| 202 | } |
| 203 | |
| 204 | static bool live_descendent(int *indexes, void **objects, int step, |
| 205 | int objidx) { |
no outgoing calls
no test coverage detected