ptc 63 source3/modules/perfcount_test.c struct perfcount_test_counter *ptc;
ptc 67 source3/modules/perfcount_test.c for (ptc = ctxt->ops; ptc != NULL; ) {
ptc 71 source3/modules/perfcount_test.c if (ptc->op > MAX_OP)
ptc 74 source3/modules/perfcount_test.c for (head = g_list[ptc->op]; head != NULL; head = head->next) {
ptc 75 source3/modules/perfcount_test.c if ((ptc->sub_op == head->sub_op) &&
ptc 76 source3/modules/perfcount_test.c (ptc->ioctl == head->ioctl)) {
ptc 77 source3/modules/perfcount_test.c head->bytes_in += ptc->bytes_in;
ptc 78 source3/modules/perfcount_test.c head->bytes_out += ptc->bytes_out;
ptc 80 source3/modules/perfcount_test.c tmp = ptc->next;
ptc 81 source3/modules/perfcount_test.c DLIST_REMOVE(ctxt->ops, ptc);
ptc 82 source3/modules/perfcount_test.c SAFE_FREE(ptc);
ptc 83 source3/modules/perfcount_test.c ptc = tmp;
ptc 91 source3/modules/perfcount_test.c tmp = ptc->next;
ptc 92 source3/modules/perfcount_test.c DLIST_REMOVE(ctxt->ops, ptc);
ptc 93 source3/modules/perfcount_test.c ptc->count = 1;
ptc 94 source3/modules/perfcount_test.c DLIST_ADD(g_list[ptc->op], ptc);
ptc 95 source3/modules/perfcount_test.c ptc = tmp;
ptc 150 source3/modules/perfcount_test.c static void perfcount_test_dump_counter(struct perfcount_test_counter *ptc,
ptc 153 source3/modules/perfcount_test.c DEBUG(lvl, ("OP: %s\n", smb_fn_name(ptc->op)));
ptc 154 source3/modules/perfcount_test.c if (ptc->sub_op > 0) {
ptc 156 source3/modules/perfcount_test.c smb_subop_name(ptc->op, ptc->sub_op)));
ptc 159 source3/modules/perfcount_test.c if (ptc->ioctl > 0) {
ptc 160 source3/modules/perfcount_test.c DEBUG(lvl, ("IOCTL: %d\n", ptc->ioctl));
ptc 163 source3/modules/perfcount_test.c DEBUG(lvl, ("Count: %d\n\n", ptc->count));