Lines Matching refs:count2
168 long long count1, count2, count3;
209 * sig_handler - fd2 event breakpoint hit -> count2 == 1
217 * sig_handler - fd2 event breakpoint hit -> count2 == 2
225 * sig_handler - fd2 event breakpoint hit -> count2 == 3
261 count2 = bp_count(fd2);
268 pr_debug("count1 %lld, count2 %lld, count3 %lld, overflow %d, overflows_2 %d\n",
269 count1, count2, count3, overflows, overflows_2);
284 if (count2 != 3)
285 pr_debug("failed: wrong count for bp2 (%lld), expected 3\n", count2);
290 return count1 == 1 && overflows == 3 && count2 == 3 && overflows_2 == 3 && count3 == 2 ?