• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/libevent-2.0.20-stable/test/

Lines Matching refs:tt_int_op

465 	tt_int_op(got_read_on_close, ==, EV_READ);
466 tt_int_op(got_write_on_close, ==, EV_WRITE);
467 tt_int_op(premature_event, ==, 0);
649 tt_int_op(count, ==, 1);
711 tt_int_op(res.n, ==, 3);
712 tt_int_op(res.events[0], ==, EV_READ);
713 tt_int_op(res.events[1], ==, EV_TIMEOUT);
714 tt_int_op(res.events[2], ==, EV_TIMEOUT);
760 tt_int_op(ms_100->tv_sec, ==, 0);
761 tt_int_op(ms_200->tv_sec, ==, 0);
762 tt_int_op(ms_100->tv_usec, ==, 100000|0x50000000);
763 tt_int_op(ms_200->tv_usec, ==, 200000|0x50100000);
787 tt_int_op(info[i].count, ==, 6);
791 tt_int_op(ms_diff, >, 500);
792 tt_int_op(ms_diff, <, 700);
794 tt_int_op(ms_diff, >, -100);
795 tt_int_op(ms_diff, <, 100);
1255 tt_int_op(event_pending(&ev1, EV_READ|EV_TIMEOUT|EV_WRITE, NULL),
1260 tt_int_op(event_pending(&ev1, EV_READ|EV_TIMEOUT|EV_WRITE, NULL),
1274 tt_int_op(r,==,-1);
1291 tt_int_op(r, ==, -1);
1308 tt_int_op(r, ==, 1);
1309 tt_int_op(reentrant_cb_run, ==, 1);
1634 tt_int_op(event_base_priority_init(base, 8), ==, 0);
1651 tt_int_op(n_pai_calls, ==, 3);
1652 tt_int_op(call_order[0], ==, 0);
1653 tt_int_op(call_order[1], ==, 2);
1654 tt_int_op(call_order[2], ==, 1);
1778 tt_int_op(evtag_decode_int(&integer, tmp), !=, -1);
1780 tt_int_op(evtag_decode_int64(&big_int, tmp), !=, -1);
1812 tt_int_op(not_failed, <, 10);
1852 tt_int_op(evtag_decode_tag(&integer, tmp), !=, -1);
1871 tt_int_op(evtag_peek(tmp, &u32), ==, 1);
1872 tt_int_op(u32, ==, 30);
1873 tt_int_op(evtag_peek_length(tmp, &u32), ==, 0);
1874 tt_int_op(u32, ==, 1+1+1);
1875 tt_int_op(evtag_consume(tmp), ==, 0);
1877 tt_int_op(evtag_peek(tmp, &u32), ==, 1);
1878 tt_int_op(u32, ==, 40);
1879 tt_int_op(evtag_peek_length(tmp, &u32), ==, 0);
1880 tt_int_op(u32, ==, 1+1+11);
1881 tt_int_op(evtag_payload_length(tmp, &u32), ==, 0);
1882 tt_int_op(u32, ==, 11);
1910 tt_int_op(event_config_avoid_method(cfg, backend), ==, 0);
1942 tt_int_op(vint, ==, LIBEVENT_VERSION_NUMBER);
1946 tt_int_op((vint&0xffffff00), ==, ((major<<24)|(minor<<16)|(patch<<8)));
1963 tt_int_op(EV_FEATURE_ET, ==,
1967 tt_int_op(0, ==, event_base_get_features(base) & EV_FEATURE_ET);
2096 tt_int_op(event, ==, EV_READ);
2105 tt_int_op(event, ==, EV_TIMEOUT);
2123 tt_int_op(r, ==, 0);
2126 tt_int_op(r, ==, 0);
2128 tt_int_op(r, <, 0);
2138 tt_int_op(called, ==, 101);
2177 tt_int_op(diff.tv_sec, ==, 0);
2178 tt_int_op(labs(diff.tv_usec), <, 1000);
2216 tt_int_op(write(data->pair[0], "Hello world",
2221 tt_int_op(dfd, >=, 0);
2229 tt_int_op(ev1_got, ==, EV_READ);
2230 tt_int_op(ev2_got, ==, EV_READ);
2240 tt_int_op(ev2_got, ==, 0);
2247 tt_int_op(dup2(fd, dfd), ==, dfd);
2254 tt_int_op(ev2_got, ==, EV_WRITE);
2385 tt_int_op(called[i], ==, MANY - i + 1);
2387 tt_int_op(called[i], ==, 1);
2403 tt_int_op(event_get_struct_event_size(), <=, sizeof(struct event));