Lines Matching refs:count2
167 long long count1, count2, count3;
208 * sig_handler - fd2 event breakpoint hit -> count2 == 1
216 * sig_handler - fd2 event breakpoint hit -> count2 == 2
224 * sig_handler - fd2 event breakpoint hit -> count2 == 3
260 count2 = bp_count(fd2);
267 pr_debug("count1 %lld, count2 %lld, count3 %lld, overflow %d, overflows_2 %d\n",
268 count1, count2, count3, overflows, overflows_2);
283 if (count2 != 3)
284 pr_debug("failed: wrong count for bp2 (%lld), expected 3\n", count2);
289 return count1 == 1 && overflows == 3 && count2 == 3 && overflows_2 == 3 && count3 == 2 ?