Lines Matching refs:count2
167 long long count1, count2, count3;
203 * sig_handler - fd2 event breakpoint hit -> count2 == 1
211 * sig_handler - fd2 event breakpoint hit -> count2 == 2
219 * sig_handler - fd2 event breakpoint hit -> count2 == 3
255 count2 = bp_count(fd2);
262 pr_debug("count1 %lld, count2 %lld, count3 %lld, overflow %d, overflows_2 %d\n",
263 count1, count2, count3, overflows, overflows_2);
278 if (count2 != 3)
279 pr_debug("failed: wrong count for bp2 (%lld), expected 3\n", count2);
284 return count1 == 1 && overflows == 3 && count2 == 3 && overflows_2 == 3 && count3 == 2 ?